diff --git a/.eslintrc.json b/.eslintrc.json index 7482208e3..10d24f6c8 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,332 +1,22 @@ { - "env": { - "browser": true, - "node": true, - "jasmine": true, - "es6": true, - "jest": true - }, - "parserOptions": { - "ecmaFeatures": { - "arrowFunctions": true, - "blockBindings": true, - "classes": true, - "defaultParams": true, - "destructuring": true, - "forOf": true, - "generators": false, - "modules": true, - "objectLiteralComputedProperties": true, - "objectLiteralDuplicateProperties": false, - "objectLiteralShorthandMethods": true, - "objectLiteralShorthandProperties": true, - "restParams": true, - "spread": true, - "superInFunctions": true, - "templateStrings": true - } - }, - "extends": [ - "eslint:recommended", - "plugin:node/recommended", - "plugin:prettier/recommended" - ], - "rules": { - "no-debugger": 1, - // Possible errors - "comma-dangle": [ - 2, - "never" - ], - "no-cond-assign": [ - 2, - "always" - ], - "no-constant-condition": 2, - "no-control-regex": 2, - "no-dupe-args": 2, - "no-dupe-keys": 2, - "no-duplicate-case": 2, - "no-empty-character-class": 2, - "no-empty": 2, - "no-extra-boolean-cast": 0, - "no-extra-parens": [ - 2, - "functions" - ], - "no-extra-semi": 2, - "no-func-assign": 2, - "no-inner-declarations": 2, - "no-invalid-regexp": 2, - "no-irregular-whitespace": 2, - "no-negated-in-lhs": 2, - "no-obj-calls": 2, - "no-regex-spaces": 2, - "no-sparse-arrays": 2, - "no-unreachable": 2, - "use-isnan": 2, - "valid-typeof": 2, - "no-unexpected-multiline": 0, - // Best Practices - "block-scoped-var": 2, - "complexity": [ - 2, - 50 - ], - "curly": [ - 2, - "multi-line" - ], - "default-case": 2, - "dot-notation": [ - 2, - { - "allowKeywords": true, - "allowPattern": "^([a-z]+(_[a-z]+)+)|[A-Z]+|[A-Z]{1}[a-z]+$" - } - ], - "eqeqeq": 2, - "guard-for-in": 2, - "no-alert": 1, - "no-caller": 2, - "no-case-declarations": 2, - "no-div-regex": 0, - "no-else-return": 2, - "no-eq-null": 2, - "no-eval": 2, - "no-extra-bind": 2, - "no-fallthrough": 2, - "no-floating-decimal": 2, - "no-implied-eval": 2, - "no-iterator": 2, - "no-labels": 2, - "no-lone-blocks": 2, - "no-loop-func": 2, - "no-multi-str": 2, - "no-native-reassign": 2, - "no-new": 2, - "no-new-func": 2, - "no-new-wrappers": 2, - "no-octal": 2, - "no-octal-escape": 2, - "no-param-reassign": 0, - "no-proto": 2, - "no-redeclare": 2, - "no-script-url": 2, - "no-self-compare": 2, - "no-sequences": 2, - "no-unused-expressions": [ - 2, - { - "allowShortCircuit": true, - "allowTernary": false - } - ], - "no-useless-call": 2, - "no-with": 2, - "radix": 2, - "wrap-iife": [ - 2, - "outside" - ], - "yoda": 2, - // ES2015 - "arrow-parens": 0, - "arrow-spacing": [ - 2, - { - "before": true, - "after": true - } - ], - "constructor-super": 2, - "no-class-assign": 2, - "no-const-assign": 2, - "no-this-before-super": 0, - "no-var": 2, - "object-shorthand": [ - 2, - "always" - ], - "prefer-arrow-callback": 2, - "prefer-const": 2, - "prefer-spread": 2, - "prefer-template": 2, - // Strict Mode - "strict": [ - 2, - "never" - ], - // Variables - "no-catch-shadow": 2, - "no-delete-var": 2, - "no-label-var": 2, - "no-shadow-restricted-names": 2, - "no-shadow": 2, - "no-undef-init": 2, - "no-undef": 2, - "no-unused-vars": 2, - // Node.js - "callback-return": 2, - "no-mixed-requires": 2, - "no-path-concat": 2, - "no-sync": 2, - "handle-callback-err": 1, - "no-new-require": 2, - // Stylistic - "array-bracket-spacing": [ - 2, - "never", - { - "singleValue": false, - "objectsInArrays": false, - "arraysInArrays": false - } - ], - "newline-after-var": 0, - "brace-style": [ - 2, - "1tbs" - ], - "comma-spacing": [ - 2, - { - "before": false, - "after": true - } - ], - "comma-style": [ - 2, - "last" - ], - "computed-property-spacing": [ - 2, - "never" - ], - "eol-last": 2, - "func-names": 1, - "func-style": [ - 2, - "declaration", - { - "allowArrowFunctions": true - } - ], - "linebreak-style": 0, - "max-nested-callbacks": [ - 2, - 4 - ], - "new-parens": 2, - "no-array-constructor": 2, - "no-lonely-if": 2, - "no-mixed-spaces-and-tabs": 2, - "no-multiple-empty-lines": [ - 2, - { - "max": 2, - "maxEOF": 1 - } - ], - "no-nested-ternary": 2, - "no-new-object": 2, - "no-spaced-func": 2, - "no-trailing-spaces": 2, - "no-unneeded-ternary": 2, - "object-curly-spacing": [ - 2, - "always" - ], - "one-var": [ - 2, - "never" - ], - "padded-blocks": [ - 2, - "never" - ], - "quotes": [ - 1, - "single", - "avoid-escape" - ], - "semi-spacing": [ - 2, - { - "before": false, - "after": true - } - ], - "semi": [ - 2, - "always" - ], - "keyword-spacing": 2, - "space-before-blocks": 2, - "space-before-function-paren": [ - 2, - { - "anonymous": "always", - "named": "never" - } - ], - "space-in-parens": [ - 2, - "never" - ], - "space-infix-ops": 2, - "space-unary-ops": [ - 2, - { - "words": true, - "nonwords": false - } - ], - "spaced-comment": [ - 2, - "always", - { - "exceptions": [ - "-", - "+" - ], - "markers": [ - "=", - "!" - ] - } - ], - // Legacy - "max-depth": [ - 0, - 4 - ], - "max-params": [ - 2, - 7 - ], - "no-bitwise": 2 - }, - "globals": { - "$": true, - "ga": true, - "__ENV__": true, - "__DEVTOOLS__": true, - "PUBLIC_URL": true, - "jestExpect": true - }, - "overrides": [ - { - "files": [ - "test/**/*.js" - ], - "rules": { - "node/no-unpublished-require": "off", - "max-nested-callbacks": [ - 2, - 10 - ] - } - } - ] + "parser": "@typescript-eslint/parser", + "plugins": ["prettier", "import", "@typescript-eslint"], + "extends": [ + "plugin:prettier/recommended", + "prettier", + "plugin:@typescript-eslint/recommended" + ], + "parserOptions": { "ecmaVersion": 2020, "sourceType": "module" }, + "env": { "es6": true, "browser": true, "node": true }, + "rules": { + "no-debugger": "off", + "no-console": 0, + "class-methods-use-this": "off" + }, + "prettier/prettier": [ + "error", + { + "endOfLine": "auto" + } + ] } diff --git a/.gitignore b/.gitignore index 4a9c4cab8..3c3629e64 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1 @@ node_modules -/.idea/ -/logs/ -.env \ No newline at end of file diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index 6a8af5e9e..000000000 --- a/.prettierrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "tabWidth": 2, - "semi": true, - "singleQuote": true -} diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 4d01bed4f..000000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2020 Student-Java - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index c16828d5e..000000000 --- a/README.md +++ /dev/null @@ -1,146 +0,0 @@ -# LearnWords -A backend part of [React RS.School task](https://github.com/rolling-scopes-school/tasks/blob/master/tasks/react/react-rslang.md) - -#### [Deployed project](https://react-learnwords-example.herokuapp.com) -#### [Swagger docs](https://react-learnwords-example.herokuapp.com/doc/#) - -## Деплой - -Сделайте форк репозитория и следуйте [инструкции по деплою и настройке приложения](https://github.com/rolling-scopes-school/-LearnWords-react/wiki). - -## Примеры получения исходных данных - -Для этого создан REST API по адресу: https://react-learnwords-example.herokuapp.com/ - -Для тестирования API можно пользоваться Swagger докой по адресу: https://react-learnwords-example.herokuapp.com/doc/ - -Описание эндпоинтов(не полное, смотри Swagger Doc): - -### Words - -GET для получения списка слов: -`https://.herokuapp.com/words?page=2&group=0` - получить слова со 2-й страницы группы 0 -Строка запроса должна содержать в себе номер группы и номер страницы. Всего 6 групп(от 0 до 5) и в каждой группе по 30 страниц(от 0 до 29). В каждой странице по 20 слов. Группы разбиты по сложности от самой простой(0) до самой сложной(5). - -### Users - -Система поддерживает разграничение данных по пользователям, в рамках данной задачи вам понадобится создать форму для регистрации пользователя. Для этого надо использовать POST эндпоинт по адресу `/users`. В запросе надо передать JSON объект, который содержит e-mail и password пользователя. Пароль должен содержать не менее 8 символов. Пример запроса: -```javascript -const createUser = async user => { - const rawResponse = await fetch('https://.herokuapp.com/users', { - method: 'POST', - headers: { - 'Accept': 'application/json', - 'Content-Type': 'application/json' - }, - body: JSON.stringify(user) - }); - const content = await rawResponse.json(); - - console.log(content); - }; - -createUser({ "email": "hello@user.com", "password": "Gfhjkm_123" }); -------------------------------------------------------------------- -Console: { - id: "5ec993df4ca9d600178740ae", - email: "hello@user.com" -} -``` - -### Sign In - -Чтобы пользоваться эндпоинтами требующими авторизации необходимо залогиниться в систему и получить JWT токен. Для этого существует POST эндоинт по адресу `/signin`. Токены имеют ограниченный срок жизни, в текущей реализации это 4 часа с момента получения. Пример запроса: -```javascript -const loginUser = async user => { - const rawResponse = await fetch('https://.herokuapp.com/signin', { - method: 'POST', - headers: { - 'Accept': 'application/json', - 'Content-Type': 'application/json' - }, - body: JSON.stringify(user) - }); - const content = await rawResponse.json(); - - console.log(content); -}; - -loginUser({ "email": "hello@user.com", "password": "Gfhjkm_123" }); -------------------------------------------------------------------- -Console: -{ - "message":"Authenticated", - "token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjVlYzk5M2RmNGNhOWQ2MDAxNzg3NDBhZSIsImlhdCI6MTU5MDI2OTE1OCwiZXhwIjoxNTkwMjgzNTU4fQ.XHKmdY_jk1R7PUbgCZfqH8TxH6XQ0USwPBSKNHMdF6I", - "userId":"5ec993df4ca9d600178740ae" -} -``` - -### Users/Words - -Полученный при успешном логине токен надо использовать при каждом запросе к эндпоинтам требующим авторизации (в Swagger такие эндпоинты имеют иконку навесного замка. При работе со Swagger полученный токен надо вставить в соответствующее поле формы, которая появляется при нажатии на кнопку `Authorize` вверху страницы справа). Примеры запросов: -```javascript -const token = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjVlYzk5M2RmNGNhOWQ2MDAxNzg3NDBhZSIsImlhdCI6MTU5MDI2OTE1OCwiZXhwIjoxNTkwMjgzNTU4fQ.XHKmdY_jk1R7PUbgCZfqH8TxH6XQ0USwPBSKNHMdF6I'; -const createUserWord = async ({ userId, wordId, word }) => { - const rawResponse = await fetch(`https://.com/users/${userId}/words/${wordId}`, { - method: 'POST', - withCredentials: true, - headers: { - 'Authorization': `Bearer ${token}`, - 'Accept': 'application/json', - 'Content-Type': 'application/json' - }, - body: JSON.stringify(word) - }); - const content = await rawResponse.json(); - - console.log(content); -}; - -createUserWord({ - userId: "5ec993df4ca9d600178740ae", - wordId: "5e9f5ee35eb9e72bc21af716", - word: { "difficulty": "weak", "optional": {testFieldString: 'test', testFieldBoolean: true} } -}); -------------------------------------------------------------------- -Console: { - "id":"5ec9a92acbbd77001736b167", - "difficulty":"weak", - "optional":{ - "testFieldString":"test", - "testFieldBoolean":true - }, - "wordId":"5e9f5ee35eb9e72bc21af716" -} - -const getUserWord = async ({ userId, wordId }) => { - const rawResponse = await fetch(`https://.herokuapp.com/users/${userId}/words/${wordId}`, { - method: 'GET', - withCredentials: true, - headers: { - 'Authorization': `Bearer ${token}`, - 'Accept': 'application/json', - } - }); - const content = await rawResponse.json(); - - console.log(content); -}; - -getUserWord({ - userId: "5ec993df4ca9d600178740ae", - wordId: "5e9f5ee35eb9e72bc21af716" -}); -------------------------------------------------------------------- -Console: { - "id":"5ec9a92acbbd77001736b167", - "difficulty":"weak", - "optional":{ - "testFieldString":"test", - "testFieldBoolean":true - }, - "wordId":"5e9f5ee35eb9e72bc21af716" -} -``` -Также существуют эндпоинты для сохранения статистики и настроек пользователя. `\users\{id}\statistics` и `\users\{id}\settings` соответственно. Работа с ними основывается на тех же принципах, что описаны и показаны в примерах выше. -Объект `optional` у UserWord, Statistics, Settings имеет ограничение по размеру - не более 30 полей и общая длина объекта после `JSON.stringify()` не должна превышать 1500 символов. Структуру этих объектов вы разрабатываете сами исходя из требований и вашей реализации задачи. diff --git a/doc/api.yaml b/doc/api.yaml deleted file mode 100644 index 52d3bfde1..000000000 --- a/doc/api.yaml +++ /dev/null @@ -1,624 +0,0 @@ -openapi: 3.0.0 -info: - title: React Learn Words - description: a backend part of RSSchool-React "Learn words" task - version: 1.0.0 - -servers: - - url: / - -components: - schemas: - Word: - type: object - properties: - id: - type: string - group: - type: number - page: - type: number - word: - type: string - image: - type: string - audio: - type: string - audioMeaning: - type: string - audioExample: - type: string - textMeaning: - type: string - textExample: - type: string - transcription: - type: string - wordTranslate: - type: string - textMeaningTranslate: - type: string - textExampleTranslate: - type: string - UserWord: - type: object - properties: - difficulty: - type: string - optional: - type: object - items: - type: any - Statistic: - type: object - properties: - learnedWords: - type: number - optional: - type: object - items: - type: any - Setting: - type: object - properties: - wordsPerDay: - type: number - optional: - type: object - items: - type: any - User: - type: object - properties: - name: - type: string - email: - type: string - password: - type: string - Auth: - type: object - properties: - message: - type: string - token: - type: string - refreshToken: - type: string - userId: - type: string - name: - type: string - responses: - UnauthorizedError: - description: Access token is missing or invalid - UnauthenticatedError: - description: Access token is missing, expired or invalid - securitySchemes: - bearerAuth: - type: http - scheme: bearer - bearerFormat: JWT - -security: - - bearerAuth: [] - -paths: - /words: - parameters: - - name: group - in: query - required: false - description: group number - schema: - type: string - - name: page - in: query - required: false - description: page in the group - schema: - type: string - get: - tags: - - Words - security: - [] - summary: Get a chunk of words - description: Gets a chunk of words - responses: - 200: - description: Successful operation - content: - application/json: - schema: - type: array - items: - $ref: "#/components/schemas/Word" - /words/{id}: - parameters: - - name: id - description: wordId - in: path - required: true - schema: - type: string - get: - tags: - - Words - security: - [] - summary: Get a word with assets by id - description: Gets a word with assets by id - responses: - 200: - description: Successful operation - content: - application/json: - schema: - $ref: "#/components/schemas/Word" - /users: - post: - tags: - - Users - security: - [] - summary: Create a new user - description: Creates a new user - requestBody: - required: true - content: - application/json: - schema: - type: object - title: example - properties: - name: - type: string - description: User name - email: - type: string - description: E-mail - password: - type: string - description: Password - responses: - 200: - description: Successful creation. - content: - application/json: - schema: - $ref: "#/components/schemas/User" - 422: - description: Incorrect e-mail or password - /users/{id}: - parameters: - - name: id - description: userId - in: path - required: true - schema: - type: string - get: - tags: - - Users - summary: Get user - description: Gets user - responses: - 200: - description: Successful operation - content: - application/json: - schema: - $ref: "#/components/schemas/User" - 401: - $ref: '#/components/responses/UnauthorizedError' - 404: - description: User not found - put: - tags: - - Users - summary: Update a user - description: Updates a user - requestBody: - required: true - content: - application/json: - schema: - type: object - title: example - properties: - email: - type: string - description: E-mail - password: - type: string - description: Password - responses: - 200: - description: The user has been updated. - content: - application/json: - schema: - $ref: "#/components/schemas/User" - 400: - description: Bad request - 401: - $ref: '#/components/responses/UnauthorizedError' - delete: - tags: - - Users - summary: Delete a user - description: Deletes a user by id - responses: - 204: - description: The user has been deleted - 401: - $ref: '#/components/responses/UnauthorizedError' - /users/{id}/tokens: - parameters: - - name: id - description: user id - in: path - required: true - schema: - type: string - get: - tags: - - Users - summary: Get new user tokens - description: Gets new user tokens - responses: - 200: - description: Successful operation - content: - application/json: - schema: - $ref: "#/components/schemas/Auth" - 403: - $ref: '#/components/responses/UnauthenticatedError' - /users/{id}/words: - parameters: - - name: id - description: userId - in: path - required: true - schema: - type: string - get: - tags: - - Users/Words - summary: Get all user words - description: Gets all user words - responses: - 200: - description: Successful operation - content: - application/json: - schema: - type: array - items: - $ref: "#/components/schemas/UserWord" - 402: - $ref: '#/components/responses/UnauthorizedError' - /users/{id}/words/{wordId}: - parameters: - - name: id - description: userId - in: path - required: true - schema: - type: string - - name: wordId - description: wordId - in: path - required: true - schema: - type: string - post: - tags: - - Users/Words - summary: Create a user word - description: Create a user word by id - requestBody: - required: true - content: - application/json: - schema: - type: object - title: example - properties: - difficulty: - type: string - optional: - type: object - items: - type: any - responses: - 200: - description: The user word has been created. - content: - application/json: - schema: - $ref: "#/components/schemas/UserWord" - 400: - description: Bad request - 401: - $ref: '#/components/responses/UnauthorizedError' - get: - tags: - - Users/Words - summary: Get a user word by id - description: Gets a user word by id - responses: - 200: - description: Successful operation - content: - application/json: - schema: - $ref: "#/components/schemas/UserWord" - 401: - $ref: '#/components/responses/UnauthorizedError' - 404: - description: User's word not found - put: - tags: - - Users/Words - summary: Update a user word - description: Updates a user word by id - requestBody: - required: true - content: - application/json: - schema: - type: object - title: example - properties: - difficulty: - type: string - optional: - type: object - items: - type: any - responses: - 200: - description: The user word has been updated. - content: - application/json: - schema: - $ref: "#/components/schemas/UserWord" - 400: - description: Bad request - 401: - $ref: '#/components/responses/UnauthorizedError' - delete: - tags: - - Users/Words - summary: Delete user word - description: Deletes user words by id - responses: - 204: - description: The user word has been deleted - 401: - $ref: '#/components/responses/UnauthorizedError' - /users/{id}/aggregatedWords: - parameters: - - name: id - description: userId - in: path - required: true - schema: - type: string - - name: group - in: query - required: false - description: group(skip if you want result not depending on a group) - schema: - type: string - - name: page - in: query - required: false - description: page number - schema: - type: string - - name: wordsPerPage - in: query - required: false - description: words per page - schema: - type: string - - name: filter - in: query - required: false - description: Filter by aggreagted word fields. It should be a stringified object which meet MongoDB Query object conditions.
- Get all words that have difficulte="hard AND optional.key="value
{"$and":[{"userWord.difficulty":"hard", "userWord.optional.key":"value"}]}

- Get all words that have difficulty equal="easy" OR do not have the linked userWord
{"$or":[{"userWord.difficulty":"easy"},{"userWord":null}]}

- Get all words that have BOTH difficulty equal="easy" AND optional.repeat=true, OR do not have the linked userWord
{"$or":[{"$and":[{"userWord.difficulty":"easy", "userWord.optional.repeat":true}]},{"userWord":null}]}

- schema: - type: string - get: - tags: - - Users/AggregatedWords - summary: Get all user aggregated words - description: Gets all user aggregated words - responses: - 200: - description: Successful operation - content: - application/json: - schema: - type: array - items: - $ref: "#/components/schemas/Word" - 401: - $ref: '#/components/responses/UnauthorizedError' - /users/{id}/aggregatedWords/{wordId}: - parameters: - - name: id - description: userId - in: path - required: true - schema: - type: string - - name: wordId - description: wordId - in: path - required: true - schema: - type: string - get: - tags: - - Users/AggregatedWords - summary: Get a user aggregated word by id - description: Gets a user aggregated word by id - responses: - 200: - description: Successful operation - content: - application/json: - schema: - $ref: "#/components/schemas/UserWord" - 401: - $ref: '#/components/responses/UnauthorizedError' - 404: - description: User's word not found - /users/{id}/statistics: - parameters: - - name: id - description: userId - in: path - required: true - schema: - type: string - get: - tags: - - Users/Statistic - summary: Get statistics - description: Gets statistics - responses: - 200: - description: Successful operation - content: - application/json: - schema: - $ref: "#/components/schemas/Statistic" - 401: - $ref: '#/components/responses/UnauthorizedError' - 404: - description: Statistics not found - put: - tags: - - Users/Statistic - summary: Upsert statistics - description: Upserts new statistics - requestBody: - required: true - content: - application/json: - schema: - type: object - title: example - properties: - learnedWords: - type: number - description: The number of the total learned words - optional: - type: object - items: - type: any - responses: - 200: - description: The statistics has been created. - content: - application/json: - schema: - $ref: "#/components/schemas/Statistic" - 400: - description: Bad request - 401: - $ref: '#/components/responses/UnauthorizedError' - /users/{id}/settings: - parameters: - - name: id - description: userId - in: path - required: true - schema: - type: string - get: - tags: - - Users/Setting - summary: Get settings - description: Gets settings - responses: - 200: - description: Successful operation - content: - application/json: - schema: - $ref: "#/components/schemas/Setting" - 401: - $ref: '#/components/responses/UnauthorizedError' - 404: - description: Settings not found - put: - tags: - - Users/Setting - summary: Upsert settings - description: Upserts new settings - requestBody: - required: true - content: - application/json: - schema: - type: object - title: example - properties: - wordsPerDay: - type: number - description: The max number of learned words per day - optional: - type: object - items: - type: any - responses: - 200: - description: The settings has been created. - content: - application/json: - schema: - $ref: "#/components/schemas/Setting" - 400: - description: Bad request - 401: - $ref: '#/components/responses/UnauthorizedError' - /signin: - post: - tags: - - Sign In - security: - [] - summary: Sign in - description: Logins a user and returns a JWT-token - requestBody: - required: true - content: - application/json: - schema: - type: object - title: example - properties: - email: - type: string - description: E-mail - password: - type: string - description: Password - responses: - 200: - description: Successful login. - content: - application/json: - schema: - $ref: "#/components/schemas/Auth" - 403: - description: Incorrect e-mail or password diff --git a/files/01_0001.jpg b/files/01_0001.jpg deleted file mode 100644 index 92b0a565d..000000000 Binary files a/files/01_0001.jpg and /dev/null differ diff --git a/files/01_0001.mp3 b/files/01_0001.mp3 deleted file mode 100644 index 04d5d0711..000000000 Binary files a/files/01_0001.mp3 and /dev/null differ diff --git a/files/01_0001_example.mp3 b/files/01_0001_example.mp3 deleted file mode 100644 index c904c5ec9..000000000 Binary files a/files/01_0001_example.mp3 and /dev/null differ diff --git a/files/01_0001_meaning.mp3 b/files/01_0001_meaning.mp3 deleted file mode 100644 index c0ba43028..000000000 Binary files a/files/01_0001_meaning.mp3 and /dev/null differ diff --git a/files/01_0002.jpg b/files/01_0002.jpg deleted file mode 100644 index 50d802721..000000000 Binary files a/files/01_0002.jpg and /dev/null differ diff --git a/files/01_0002.mp3 b/files/01_0002.mp3 deleted file mode 100644 index 58a64ba79..000000000 Binary files a/files/01_0002.mp3 and /dev/null differ diff --git a/files/01_0002_example.mp3 b/files/01_0002_example.mp3 deleted file mode 100644 index 9925c46e0..000000000 Binary files a/files/01_0002_example.mp3 and /dev/null differ diff --git a/files/01_0002_meaning.mp3 b/files/01_0002_meaning.mp3 deleted file mode 100644 index 466cfdce9..000000000 Binary files a/files/01_0002_meaning.mp3 and /dev/null differ diff --git a/files/01_0003.jpg b/files/01_0003.jpg deleted file mode 100644 index 6dac46b77..000000000 Binary files a/files/01_0003.jpg and /dev/null differ diff --git a/files/01_0003.mp3 b/files/01_0003.mp3 deleted file mode 100644 index a941ce53d..000000000 Binary files a/files/01_0003.mp3 and /dev/null differ diff --git a/files/01_0003_example.mp3 b/files/01_0003_example.mp3 deleted file mode 100644 index 6278df8fb..000000000 Binary files a/files/01_0003_example.mp3 and /dev/null differ diff --git a/files/01_0003_meaning.mp3 b/files/01_0003_meaning.mp3 deleted file mode 100644 index 3feb1eeb6..000000000 Binary files a/files/01_0003_meaning.mp3 and /dev/null differ diff --git a/files/01_0004.jpg b/files/01_0004.jpg deleted file mode 100644 index 519050a8c..000000000 Binary files a/files/01_0004.jpg and /dev/null differ diff --git a/files/01_0004.mp3 b/files/01_0004.mp3 deleted file mode 100644 index d99ad4baf..000000000 Binary files a/files/01_0004.mp3 and /dev/null differ diff --git a/files/01_0004_example.mp3 b/files/01_0004_example.mp3 deleted file mode 100644 index e7f0be9cb..000000000 Binary files a/files/01_0004_example.mp3 and /dev/null differ diff --git a/files/01_0004_meaning.mp3 b/files/01_0004_meaning.mp3 deleted file mode 100644 index 956ede924..000000000 Binary files a/files/01_0004_meaning.mp3 and /dev/null differ diff --git a/files/01_0005.jpg b/files/01_0005.jpg deleted file mode 100644 index e2ddb4208..000000000 Binary files a/files/01_0005.jpg and /dev/null differ diff --git a/files/01_0005.mp3 b/files/01_0005.mp3 deleted file mode 100644 index 96976479b..000000000 Binary files a/files/01_0005.mp3 and /dev/null differ diff --git a/files/01_0005_example.mp3 b/files/01_0005_example.mp3 deleted file mode 100644 index 0631d1f14..000000000 Binary files a/files/01_0005_example.mp3 and /dev/null differ diff --git a/files/01_0005_meaning.mp3 b/files/01_0005_meaning.mp3 deleted file mode 100644 index 0a04869c3..000000000 Binary files a/files/01_0005_meaning.mp3 and /dev/null differ diff --git a/files/01_0006.jpg b/files/01_0006.jpg deleted file mode 100644 index d5ba892ad..000000000 Binary files a/files/01_0006.jpg and /dev/null differ diff --git a/files/01_0006.mp3 b/files/01_0006.mp3 deleted file mode 100644 index 3debf92e3..000000000 Binary files a/files/01_0006.mp3 and /dev/null differ diff --git a/files/01_0006_example.mp3 b/files/01_0006_example.mp3 deleted file mode 100644 index 3e38ebf47..000000000 Binary files a/files/01_0006_example.mp3 and /dev/null differ diff --git a/files/01_0006_meaning.mp3 b/files/01_0006_meaning.mp3 deleted file mode 100644 index cdc8433a2..000000000 Binary files a/files/01_0006_meaning.mp3 and /dev/null differ diff --git a/files/01_0007.jpg b/files/01_0007.jpg deleted file mode 100644 index f85f0328c..000000000 Binary files a/files/01_0007.jpg and /dev/null differ diff --git a/files/01_0007.mp3 b/files/01_0007.mp3 deleted file mode 100644 index e89ed098a..000000000 Binary files a/files/01_0007.mp3 and /dev/null differ diff --git a/files/01_0007_example.mp3 b/files/01_0007_example.mp3 deleted file mode 100644 index 611f1e707..000000000 Binary files a/files/01_0007_example.mp3 and /dev/null differ diff --git a/files/01_0007_meaning.mp3 b/files/01_0007_meaning.mp3 deleted file mode 100644 index c4e42dfb7..000000000 Binary files a/files/01_0007_meaning.mp3 and /dev/null differ diff --git a/files/01_0008.jpg b/files/01_0008.jpg deleted file mode 100644 index 67f05c179..000000000 Binary files a/files/01_0008.jpg and /dev/null differ diff --git a/files/01_0008.mp3 b/files/01_0008.mp3 deleted file mode 100644 index e238855c7..000000000 Binary files a/files/01_0008.mp3 and /dev/null differ diff --git a/files/01_0008_example.mp3 b/files/01_0008_example.mp3 deleted file mode 100644 index 479c98225..000000000 Binary files a/files/01_0008_example.mp3 and /dev/null differ diff --git a/files/01_0008_meaning.mp3 b/files/01_0008_meaning.mp3 deleted file mode 100644 index e2fbe25be..000000000 Binary files a/files/01_0008_meaning.mp3 and /dev/null differ diff --git a/files/01_0009.jpg b/files/01_0009.jpg deleted file mode 100644 index 1186d6e47..000000000 Binary files a/files/01_0009.jpg and /dev/null differ diff --git a/files/01_0009.mp3 b/files/01_0009.mp3 deleted file mode 100644 index 9624fd8c7..000000000 Binary files a/files/01_0009.mp3 and /dev/null differ diff --git a/files/01_0009_example.mp3 b/files/01_0009_example.mp3 deleted file mode 100644 index 4657dd8a7..000000000 Binary files a/files/01_0009_example.mp3 and /dev/null differ diff --git a/files/01_0009_meaning.mp3 b/files/01_0009_meaning.mp3 deleted file mode 100644 index 434f2eebf..000000000 Binary files a/files/01_0009_meaning.mp3 and /dev/null differ diff --git a/files/01_0010.jpg b/files/01_0010.jpg deleted file mode 100644 index c1d88322b..000000000 Binary files a/files/01_0010.jpg and /dev/null differ diff --git a/files/01_0010.mp3 b/files/01_0010.mp3 deleted file mode 100644 index 043f97f4b..000000000 Binary files a/files/01_0010.mp3 and /dev/null differ diff --git a/files/01_0010_example.mp3 b/files/01_0010_example.mp3 deleted file mode 100644 index 42f607466..000000000 Binary files a/files/01_0010_example.mp3 and /dev/null differ diff --git a/files/01_0010_meaning.mp3 b/files/01_0010_meaning.mp3 deleted file mode 100644 index 98b01b054..000000000 Binary files a/files/01_0010_meaning.mp3 and /dev/null differ diff --git a/files/01_0011.jpg b/files/01_0011.jpg deleted file mode 100644 index d4ef90e5c..000000000 Binary files a/files/01_0011.jpg and /dev/null differ diff --git a/files/01_0011.mp3 b/files/01_0011.mp3 deleted file mode 100644 index ac312f2f6..000000000 Binary files a/files/01_0011.mp3 and /dev/null differ diff --git a/files/01_0011_example.mp3 b/files/01_0011_example.mp3 deleted file mode 100644 index bfeb36168..000000000 Binary files a/files/01_0011_example.mp3 and /dev/null differ diff --git a/files/01_0011_meaning.mp3 b/files/01_0011_meaning.mp3 deleted file mode 100644 index 193a54ed5..000000000 Binary files a/files/01_0011_meaning.mp3 and /dev/null differ diff --git a/files/01_0012.jpg b/files/01_0012.jpg deleted file mode 100644 index e095cf194..000000000 Binary files a/files/01_0012.jpg and /dev/null differ diff --git a/files/01_0012.mp3 b/files/01_0012.mp3 deleted file mode 100644 index 05447821d..000000000 Binary files a/files/01_0012.mp3 and /dev/null differ diff --git a/files/01_0012_example.mp3 b/files/01_0012_example.mp3 deleted file mode 100644 index a4793d18b..000000000 Binary files a/files/01_0012_example.mp3 and /dev/null differ diff --git a/files/01_0012_meaning.mp3 b/files/01_0012_meaning.mp3 deleted file mode 100644 index 58dc39806..000000000 Binary files a/files/01_0012_meaning.mp3 and /dev/null differ diff --git a/files/01_0013.jpg b/files/01_0013.jpg deleted file mode 100644 index 6e3d1626e..000000000 Binary files a/files/01_0013.jpg and /dev/null differ diff --git a/files/01_0013.mp3 b/files/01_0013.mp3 deleted file mode 100644 index 6d400520e..000000000 Binary files a/files/01_0013.mp3 and /dev/null differ diff --git a/files/01_0013_example.mp3 b/files/01_0013_example.mp3 deleted file mode 100644 index f1faacd2f..000000000 Binary files a/files/01_0013_example.mp3 and /dev/null differ diff --git a/files/01_0013_meaning.mp3 b/files/01_0013_meaning.mp3 deleted file mode 100644 index 15af882ed..000000000 Binary files a/files/01_0013_meaning.mp3 and /dev/null differ diff --git a/files/01_0014.jpg b/files/01_0014.jpg deleted file mode 100644 index ad4438094..000000000 Binary files a/files/01_0014.jpg and /dev/null differ diff --git a/files/01_0014.mp3 b/files/01_0014.mp3 deleted file mode 100644 index 74c06f88b..000000000 Binary files a/files/01_0014.mp3 and /dev/null differ diff --git a/files/01_0014_example.mp3 b/files/01_0014_example.mp3 deleted file mode 100644 index ebb30b2db..000000000 Binary files a/files/01_0014_example.mp3 and /dev/null differ diff --git a/files/01_0014_meaning.mp3 b/files/01_0014_meaning.mp3 deleted file mode 100644 index 241741c3f..000000000 Binary files a/files/01_0014_meaning.mp3 and /dev/null differ diff --git a/files/01_0015.jpg b/files/01_0015.jpg deleted file mode 100644 index 033eb0ad7..000000000 Binary files a/files/01_0015.jpg and /dev/null differ diff --git a/files/01_0015.mp3 b/files/01_0015.mp3 deleted file mode 100644 index a87db138f..000000000 Binary files a/files/01_0015.mp3 and /dev/null differ diff --git a/files/01_0015_example.mp3 b/files/01_0015_example.mp3 deleted file mode 100644 index 81b49437a..000000000 Binary files a/files/01_0015_example.mp3 and /dev/null differ diff --git a/files/01_0015_meaning.mp3 b/files/01_0015_meaning.mp3 deleted file mode 100644 index 1de3b9099..000000000 Binary files a/files/01_0015_meaning.mp3 and /dev/null differ diff --git a/files/01_0016.jpg b/files/01_0016.jpg deleted file mode 100644 index 60631a302..000000000 Binary files a/files/01_0016.jpg and /dev/null differ diff --git a/files/01_0016.mp3 b/files/01_0016.mp3 deleted file mode 100644 index 74cac5f16..000000000 Binary files a/files/01_0016.mp3 and /dev/null differ diff --git a/files/01_0016_example.mp3 b/files/01_0016_example.mp3 deleted file mode 100644 index f4b3055b8..000000000 Binary files a/files/01_0016_example.mp3 and /dev/null differ diff --git a/files/01_0016_meaning.mp3 b/files/01_0016_meaning.mp3 deleted file mode 100644 index 3a793b20d..000000000 Binary files a/files/01_0016_meaning.mp3 and /dev/null differ diff --git a/files/01_0017.jpg b/files/01_0017.jpg deleted file mode 100644 index 4ceaea649..000000000 Binary files a/files/01_0017.jpg and /dev/null differ diff --git a/files/01_0017.mp3 b/files/01_0017.mp3 deleted file mode 100644 index bdcdf99f0..000000000 Binary files a/files/01_0017.mp3 and /dev/null differ diff --git a/files/01_0017_example.mp3 b/files/01_0017_example.mp3 deleted file mode 100644 index 82b230bea..000000000 Binary files a/files/01_0017_example.mp3 and /dev/null differ diff --git a/files/01_0017_meaning.mp3 b/files/01_0017_meaning.mp3 deleted file mode 100644 index d9a989a12..000000000 Binary files a/files/01_0017_meaning.mp3 and /dev/null differ diff --git a/files/01_0018.jpg b/files/01_0018.jpg deleted file mode 100644 index 846799431..000000000 Binary files a/files/01_0018.jpg and /dev/null differ diff --git a/files/01_0018.mp3 b/files/01_0018.mp3 deleted file mode 100644 index ca022ab9a..000000000 Binary files a/files/01_0018.mp3 and /dev/null differ diff --git a/files/01_0018_example.mp3 b/files/01_0018_example.mp3 deleted file mode 100644 index 4a8dc6eab..000000000 Binary files a/files/01_0018_example.mp3 and /dev/null differ diff --git a/files/01_0018_meaning.mp3 b/files/01_0018_meaning.mp3 deleted file mode 100644 index d87e3f15a..000000000 Binary files a/files/01_0018_meaning.mp3 and /dev/null differ diff --git a/files/01_0019.jpg b/files/01_0019.jpg deleted file mode 100644 index 90b5bfe71..000000000 Binary files a/files/01_0019.jpg and /dev/null differ diff --git a/files/01_0019.mp3 b/files/01_0019.mp3 deleted file mode 100644 index bf221497b..000000000 Binary files a/files/01_0019.mp3 and /dev/null differ diff --git a/files/01_0019_example.mp3 b/files/01_0019_example.mp3 deleted file mode 100644 index e69df5311..000000000 Binary files a/files/01_0019_example.mp3 and /dev/null differ diff --git a/files/01_0019_meaning.mp3 b/files/01_0019_meaning.mp3 deleted file mode 100644 index 5fdd12f04..000000000 Binary files a/files/01_0019_meaning.mp3 and /dev/null differ diff --git a/files/01_0020.jpg b/files/01_0020.jpg deleted file mode 100644 index 267f1458b..000000000 Binary files a/files/01_0020.jpg and /dev/null differ diff --git a/files/01_0020.mp3 b/files/01_0020.mp3 deleted file mode 100644 index 77c1120f5..000000000 Binary files a/files/01_0020.mp3 and /dev/null differ diff --git a/files/01_0020_example.mp3 b/files/01_0020_example.mp3 deleted file mode 100644 index db0ec78c3..000000000 Binary files a/files/01_0020_example.mp3 and /dev/null differ diff --git a/files/01_0020_meaning.mp3 b/files/01_0020_meaning.mp3 deleted file mode 100644 index bbceb579a..000000000 Binary files a/files/01_0020_meaning.mp3 and /dev/null differ diff --git a/files/01_0601.jpg b/files/01_0601.jpg deleted file mode 100644 index 44b1869e2..000000000 Binary files a/files/01_0601.jpg and /dev/null differ diff --git a/files/01_0601.mp3 b/files/01_0601.mp3 deleted file mode 100644 index 230a1214c..000000000 Binary files a/files/01_0601.mp3 and /dev/null differ diff --git a/files/01_0601_example.mp3 b/files/01_0601_example.mp3 deleted file mode 100644 index 14ebe7bb8..000000000 Binary files a/files/01_0601_example.mp3 and /dev/null differ diff --git a/files/01_0601_meaning.mp3 b/files/01_0601_meaning.mp3 deleted file mode 100644 index 76d35b3a9..000000000 Binary files a/files/01_0601_meaning.mp3 and /dev/null differ diff --git a/files/01_0602.jpg b/files/01_0602.jpg deleted file mode 100644 index 7c9a90a6e..000000000 Binary files a/files/01_0602.jpg and /dev/null differ diff --git a/files/01_0602.mp3 b/files/01_0602.mp3 deleted file mode 100644 index 3affbb254..000000000 Binary files a/files/01_0602.mp3 and /dev/null differ diff --git a/files/01_0602_example.mp3 b/files/01_0602_example.mp3 deleted file mode 100644 index 303141fb1..000000000 Binary files a/files/01_0602_example.mp3 and /dev/null differ diff --git a/files/01_0602_meaning.mp3 b/files/01_0602_meaning.mp3 deleted file mode 100644 index 8c61e17ca..000000000 Binary files a/files/01_0602_meaning.mp3 and /dev/null differ diff --git a/files/01_0603.jpg b/files/01_0603.jpg deleted file mode 100644 index 39059f4c1..000000000 Binary files a/files/01_0603.jpg and /dev/null differ diff --git a/files/01_0603.mp3 b/files/01_0603.mp3 deleted file mode 100644 index 2ad78925e..000000000 Binary files a/files/01_0603.mp3 and /dev/null differ diff --git a/files/01_0603_example.mp3 b/files/01_0603_example.mp3 deleted file mode 100644 index 4dd794e95..000000000 Binary files a/files/01_0603_example.mp3 and /dev/null differ diff --git a/files/01_0603_meaning.mp3 b/files/01_0603_meaning.mp3 deleted file mode 100644 index 13bfd269b..000000000 Binary files a/files/01_0603_meaning.mp3 and /dev/null differ diff --git a/files/01_0604.jpg b/files/01_0604.jpg deleted file mode 100644 index ad92f2506..000000000 Binary files a/files/01_0604.jpg and /dev/null differ diff --git a/files/01_0604.mp3 b/files/01_0604.mp3 deleted file mode 100644 index 831cde42f..000000000 Binary files a/files/01_0604.mp3 and /dev/null differ diff --git a/files/01_0604_example.mp3 b/files/01_0604_example.mp3 deleted file mode 100644 index a66b4a7d1..000000000 Binary files a/files/01_0604_example.mp3 and /dev/null differ diff --git a/files/01_0604_meaning.mp3 b/files/01_0604_meaning.mp3 deleted file mode 100644 index 3925a9236..000000000 Binary files a/files/01_0604_meaning.mp3 and /dev/null differ diff --git a/files/01_0605.jpg b/files/01_0605.jpg deleted file mode 100644 index 325c8f127..000000000 Binary files a/files/01_0605.jpg and /dev/null differ diff --git a/files/01_0605.mp3 b/files/01_0605.mp3 deleted file mode 100644 index 403e76515..000000000 Binary files a/files/01_0605.mp3 and /dev/null differ diff --git a/files/01_0605_example.mp3 b/files/01_0605_example.mp3 deleted file mode 100644 index 172aa7b13..000000000 Binary files a/files/01_0605_example.mp3 and /dev/null differ diff --git a/files/01_0605_meaning.mp3 b/files/01_0605_meaning.mp3 deleted file mode 100644 index 268c75b05..000000000 Binary files a/files/01_0605_meaning.mp3 and /dev/null differ diff --git a/files/01_0606.jpg b/files/01_0606.jpg deleted file mode 100644 index 6ce1dd4e8..000000000 Binary files a/files/01_0606.jpg and /dev/null differ diff --git a/files/01_0606.mp3 b/files/01_0606.mp3 deleted file mode 100644 index b8f4e0a63..000000000 Binary files a/files/01_0606.mp3 and /dev/null differ diff --git a/files/01_0606_example.mp3 b/files/01_0606_example.mp3 deleted file mode 100644 index c02099e7e..000000000 Binary files a/files/01_0606_example.mp3 and /dev/null differ diff --git a/files/01_0606_meaning.mp3 b/files/01_0606_meaning.mp3 deleted file mode 100644 index 3add65ebd..000000000 Binary files a/files/01_0606_meaning.mp3 and /dev/null differ diff --git a/files/01_0607.jpg b/files/01_0607.jpg deleted file mode 100644 index da017518c..000000000 Binary files a/files/01_0607.jpg and /dev/null differ diff --git a/files/01_0607.mp3 b/files/01_0607.mp3 deleted file mode 100644 index 8a89116da..000000000 Binary files a/files/01_0607.mp3 and /dev/null differ diff --git a/files/01_0607_example.mp3 b/files/01_0607_example.mp3 deleted file mode 100644 index 6b88c799a..000000000 Binary files a/files/01_0607_example.mp3 and /dev/null differ diff --git a/files/01_0607_meaning.mp3 b/files/01_0607_meaning.mp3 deleted file mode 100644 index 15d2a2932..000000000 Binary files a/files/01_0607_meaning.mp3 and /dev/null differ diff --git a/files/01_0608.jpg b/files/01_0608.jpg deleted file mode 100644 index b1ee978de..000000000 Binary files a/files/01_0608.jpg and /dev/null differ diff --git a/files/01_0608.mp3 b/files/01_0608.mp3 deleted file mode 100644 index 686512f82..000000000 Binary files a/files/01_0608.mp3 and /dev/null differ diff --git a/files/01_0608_example.mp3 b/files/01_0608_example.mp3 deleted file mode 100644 index 297f12c96..000000000 Binary files a/files/01_0608_example.mp3 and /dev/null differ diff --git a/files/01_0608_meaning.mp3 b/files/01_0608_meaning.mp3 deleted file mode 100644 index 58a38b223..000000000 Binary files a/files/01_0608_meaning.mp3 and /dev/null differ diff --git a/files/01_0609.jpg b/files/01_0609.jpg deleted file mode 100644 index 8497f5036..000000000 Binary files a/files/01_0609.jpg and /dev/null differ diff --git a/files/01_0609.mp3 b/files/01_0609.mp3 deleted file mode 100644 index 3f78b88c4..000000000 Binary files a/files/01_0609.mp3 and /dev/null differ diff --git a/files/01_0609_example.mp3 b/files/01_0609_example.mp3 deleted file mode 100644 index 68776d968..000000000 Binary files a/files/01_0609_example.mp3 and /dev/null differ diff --git a/files/01_0609_meaning.mp3 b/files/01_0609_meaning.mp3 deleted file mode 100644 index 61909684e..000000000 Binary files a/files/01_0609_meaning.mp3 and /dev/null differ diff --git a/files/01_0610.jpg b/files/01_0610.jpg deleted file mode 100644 index 95a977708..000000000 Binary files a/files/01_0610.jpg and /dev/null differ diff --git a/files/01_0610.mp3 b/files/01_0610.mp3 deleted file mode 100644 index 9db3c0253..000000000 Binary files a/files/01_0610.mp3 and /dev/null differ diff --git a/files/01_0610_example.mp3 b/files/01_0610_example.mp3 deleted file mode 100644 index 7fc155cf9..000000000 Binary files a/files/01_0610_example.mp3 and /dev/null differ diff --git a/files/01_0610_meaning.mp3 b/files/01_0610_meaning.mp3 deleted file mode 100644 index 43560e3af..000000000 Binary files a/files/01_0610_meaning.mp3 and /dev/null differ diff --git a/files/01_0611.jpg b/files/01_0611.jpg deleted file mode 100644 index 383f0e019..000000000 Binary files a/files/01_0611.jpg and /dev/null differ diff --git a/files/01_0611.mp3 b/files/01_0611.mp3 deleted file mode 100644 index 5292e7c88..000000000 Binary files a/files/01_0611.mp3 and /dev/null differ diff --git a/files/01_0611_example.mp3 b/files/01_0611_example.mp3 deleted file mode 100644 index d55ca98c8..000000000 Binary files a/files/01_0611_example.mp3 and /dev/null differ diff --git a/files/01_0611_meaning.mp3 b/files/01_0611_meaning.mp3 deleted file mode 100644 index 65ad064c8..000000000 Binary files a/files/01_0611_meaning.mp3 and /dev/null differ diff --git a/files/01_0612.jpg b/files/01_0612.jpg deleted file mode 100644 index e0beeabed..000000000 Binary files a/files/01_0612.jpg and /dev/null differ diff --git a/files/01_0612.mp3 b/files/01_0612.mp3 deleted file mode 100644 index f93386307..000000000 Binary files a/files/01_0612.mp3 and /dev/null differ diff --git a/files/01_0612_example.mp3 b/files/01_0612_example.mp3 deleted file mode 100644 index fe221a5a0..000000000 Binary files a/files/01_0612_example.mp3 and /dev/null differ diff --git a/files/01_0612_meaning.mp3 b/files/01_0612_meaning.mp3 deleted file mode 100644 index 1321b501c..000000000 Binary files a/files/01_0612_meaning.mp3 and /dev/null differ diff --git a/files/01_0613.jpg b/files/01_0613.jpg deleted file mode 100644 index adca588d9..000000000 Binary files a/files/01_0613.jpg and /dev/null differ diff --git a/files/01_0613.mp3 b/files/01_0613.mp3 deleted file mode 100644 index 10b6a8874..000000000 Binary files a/files/01_0613.mp3 and /dev/null differ diff --git a/files/01_0613_example.mp3 b/files/01_0613_example.mp3 deleted file mode 100644 index 48b7200f8..000000000 Binary files a/files/01_0613_example.mp3 and /dev/null differ diff --git a/files/01_0613_meaning.mp3 b/files/01_0613_meaning.mp3 deleted file mode 100644 index 0f2081dd9..000000000 Binary files a/files/01_0613_meaning.mp3 and /dev/null differ diff --git a/files/01_0614.jpg b/files/01_0614.jpg deleted file mode 100644 index a655971db..000000000 Binary files a/files/01_0614.jpg and /dev/null differ diff --git a/files/01_0614.mp3 b/files/01_0614.mp3 deleted file mode 100644 index ae200c83a..000000000 Binary files a/files/01_0614.mp3 and /dev/null differ diff --git a/files/01_0614_example.mp3 b/files/01_0614_example.mp3 deleted file mode 100644 index aa420fef7..000000000 Binary files a/files/01_0614_example.mp3 and /dev/null differ diff --git a/files/01_0614_meaning.mp3 b/files/01_0614_meaning.mp3 deleted file mode 100644 index b02b4ec88..000000000 Binary files a/files/01_0614_meaning.mp3 and /dev/null differ diff --git a/files/01_0615.jpg b/files/01_0615.jpg deleted file mode 100644 index 49d8f0102..000000000 Binary files a/files/01_0615.jpg and /dev/null differ diff --git a/files/01_0615.mp3 b/files/01_0615.mp3 deleted file mode 100644 index 471e103ce..000000000 Binary files a/files/01_0615.mp3 and /dev/null differ diff --git a/files/01_0615_example.mp3 b/files/01_0615_example.mp3 deleted file mode 100644 index 23833d84b..000000000 Binary files a/files/01_0615_example.mp3 and /dev/null differ diff --git a/files/01_0615_meaning.mp3 b/files/01_0615_meaning.mp3 deleted file mode 100644 index 7d990aa82..000000000 Binary files a/files/01_0615_meaning.mp3 and /dev/null differ diff --git a/files/01_0616.jpg b/files/01_0616.jpg deleted file mode 100644 index 2cdf06ab6..000000000 Binary files a/files/01_0616.jpg and /dev/null differ diff --git a/files/01_0616.mp3 b/files/01_0616.mp3 deleted file mode 100644 index f940532b5..000000000 Binary files a/files/01_0616.mp3 and /dev/null differ diff --git a/files/01_0616_example.mp3 b/files/01_0616_example.mp3 deleted file mode 100644 index fde24c715..000000000 Binary files a/files/01_0616_example.mp3 and /dev/null differ diff --git a/files/01_0616_meaning.mp3 b/files/01_0616_meaning.mp3 deleted file mode 100644 index 6c8d314f9..000000000 Binary files a/files/01_0616_meaning.mp3 and /dev/null differ diff --git a/files/01_0617.jpg b/files/01_0617.jpg deleted file mode 100644 index 8788161fc..000000000 Binary files a/files/01_0617.jpg and /dev/null differ diff --git a/files/01_0617.mp3 b/files/01_0617.mp3 deleted file mode 100644 index b46dacbc0..000000000 Binary files a/files/01_0617.mp3 and /dev/null differ diff --git a/files/01_0617_example.mp3 b/files/01_0617_example.mp3 deleted file mode 100644 index bc54e49fd..000000000 Binary files a/files/01_0617_example.mp3 and /dev/null differ diff --git a/files/01_0617_meaning.mp3 b/files/01_0617_meaning.mp3 deleted file mode 100644 index ceb5e4e8d..000000000 Binary files a/files/01_0617_meaning.mp3 and /dev/null differ diff --git a/files/01_0618.jpg b/files/01_0618.jpg deleted file mode 100644 index 6dd8de498..000000000 Binary files a/files/01_0618.jpg and /dev/null differ diff --git a/files/01_0618.mp3 b/files/01_0618.mp3 deleted file mode 100644 index b1b090d5a..000000000 Binary files a/files/01_0618.mp3 and /dev/null differ diff --git a/files/01_0618_example.mp3 b/files/01_0618_example.mp3 deleted file mode 100644 index 8ac412653..000000000 Binary files a/files/01_0618_example.mp3 and /dev/null differ diff --git a/files/01_0618_meaning.mp3 b/files/01_0618_meaning.mp3 deleted file mode 100644 index b24f96929..000000000 Binary files a/files/01_0618_meaning.mp3 and /dev/null differ diff --git a/files/01_0619.jpg b/files/01_0619.jpg deleted file mode 100644 index afee84375..000000000 Binary files a/files/01_0619.jpg and /dev/null differ diff --git a/files/01_0619.mp3 b/files/01_0619.mp3 deleted file mode 100644 index 40ec5aea1..000000000 Binary files a/files/01_0619.mp3 and /dev/null differ diff --git a/files/01_0619_example.mp3 b/files/01_0619_example.mp3 deleted file mode 100644 index ef3c03623..000000000 Binary files a/files/01_0619_example.mp3 and /dev/null differ diff --git a/files/01_0619_meaning.mp3 b/files/01_0619_meaning.mp3 deleted file mode 100644 index f9efebe2b..000000000 Binary files a/files/01_0619_meaning.mp3 and /dev/null differ diff --git a/files/01_0620.jpg b/files/01_0620.jpg deleted file mode 100644 index d4f4fa7a6..000000000 Binary files a/files/01_0620.jpg and /dev/null differ diff --git a/files/01_0620.mp3 b/files/01_0620.mp3 deleted file mode 100644 index c6d1eb983..000000000 Binary files a/files/01_0620.mp3 and /dev/null differ diff --git a/files/01_0620_example.mp3 b/files/01_0620_example.mp3 deleted file mode 100644 index eb3e1ded6..000000000 Binary files a/files/01_0620_example.mp3 and /dev/null differ diff --git a/files/01_0620_meaning.mp3 b/files/01_0620_meaning.mp3 deleted file mode 100644 index b6f1c7c04..000000000 Binary files a/files/01_0620_meaning.mp3 and /dev/null differ diff --git a/files/01_1201.jpg b/files/01_1201.jpg deleted file mode 100644 index 67d2cdaf5..000000000 Binary files a/files/01_1201.jpg and /dev/null differ diff --git a/files/01_1201.mp3 b/files/01_1201.mp3 deleted file mode 100644 index 68ac4e2d8..000000000 Binary files a/files/01_1201.mp3 and /dev/null differ diff --git a/files/01_1201_example.mp3 b/files/01_1201_example.mp3 deleted file mode 100644 index 290336072..000000000 Binary files a/files/01_1201_example.mp3 and /dev/null differ diff --git a/files/01_1201_meaning.mp3 b/files/01_1201_meaning.mp3 deleted file mode 100644 index 38ea951b9..000000000 Binary files a/files/01_1201_meaning.mp3 and /dev/null differ diff --git a/files/01_1202.jpg b/files/01_1202.jpg deleted file mode 100644 index 363f5f3ee..000000000 Binary files a/files/01_1202.jpg and /dev/null differ diff --git a/files/01_1202.mp3 b/files/01_1202.mp3 deleted file mode 100644 index 3265736f4..000000000 Binary files a/files/01_1202.mp3 and /dev/null differ diff --git a/files/01_1202_example.mp3 b/files/01_1202_example.mp3 deleted file mode 100644 index a89565f59..000000000 Binary files a/files/01_1202_example.mp3 and /dev/null differ diff --git a/files/01_1202_meaning.mp3 b/files/01_1202_meaning.mp3 deleted file mode 100644 index 560e0470a..000000000 Binary files a/files/01_1202_meaning.mp3 and /dev/null differ diff --git a/files/01_1203.jpg b/files/01_1203.jpg deleted file mode 100644 index 870170852..000000000 Binary files a/files/01_1203.jpg and /dev/null differ diff --git a/files/01_1203.mp3 b/files/01_1203.mp3 deleted file mode 100644 index c17ac87b3..000000000 Binary files a/files/01_1203.mp3 and /dev/null differ diff --git a/files/01_1203_example.mp3 b/files/01_1203_example.mp3 deleted file mode 100644 index fcbfff81a..000000000 Binary files a/files/01_1203_example.mp3 and /dev/null differ diff --git a/files/01_1203_meaning.mp3 b/files/01_1203_meaning.mp3 deleted file mode 100644 index 3635fbb45..000000000 Binary files a/files/01_1203_meaning.mp3 and /dev/null differ diff --git a/files/01_1204.jpg b/files/01_1204.jpg deleted file mode 100644 index 08bd3ca75..000000000 Binary files a/files/01_1204.jpg and /dev/null differ diff --git a/files/01_1204.mp3 b/files/01_1204.mp3 deleted file mode 100644 index 7f8502e79..000000000 Binary files a/files/01_1204.mp3 and /dev/null differ diff --git a/files/01_1204_example.mp3 b/files/01_1204_example.mp3 deleted file mode 100644 index 7069de33e..000000000 Binary files a/files/01_1204_example.mp3 and /dev/null differ diff --git a/files/01_1204_meaning.mp3 b/files/01_1204_meaning.mp3 deleted file mode 100644 index 14a5cec49..000000000 Binary files a/files/01_1204_meaning.mp3 and /dev/null differ diff --git a/files/01_1205.jpg b/files/01_1205.jpg deleted file mode 100644 index b53a98ef0..000000000 Binary files a/files/01_1205.jpg and /dev/null differ diff --git a/files/01_1205.mp3 b/files/01_1205.mp3 deleted file mode 100644 index 572a3c313..000000000 Binary files a/files/01_1205.mp3 and /dev/null differ diff --git a/files/01_1205_example.mp3 b/files/01_1205_example.mp3 deleted file mode 100644 index 439cd612a..000000000 Binary files a/files/01_1205_example.mp3 and /dev/null differ diff --git a/files/01_1205_meaning.mp3 b/files/01_1205_meaning.mp3 deleted file mode 100644 index d757ee34d..000000000 Binary files a/files/01_1205_meaning.mp3 and /dev/null differ diff --git a/files/01_1206.jpg b/files/01_1206.jpg deleted file mode 100644 index ed92e8d90..000000000 Binary files a/files/01_1206.jpg and /dev/null differ diff --git a/files/01_1206.mp3 b/files/01_1206.mp3 deleted file mode 100644 index e64abe8a5..000000000 Binary files a/files/01_1206.mp3 and /dev/null differ diff --git a/files/01_1206_example.mp3 b/files/01_1206_example.mp3 deleted file mode 100644 index 4dd795f3d..000000000 Binary files a/files/01_1206_example.mp3 and /dev/null differ diff --git a/files/01_1206_meaning.mp3 b/files/01_1206_meaning.mp3 deleted file mode 100644 index b235d7bce..000000000 Binary files a/files/01_1206_meaning.mp3 and /dev/null differ diff --git a/files/01_1207.jpg b/files/01_1207.jpg deleted file mode 100644 index 16c7e26a5..000000000 Binary files a/files/01_1207.jpg and /dev/null differ diff --git a/files/01_1207.mp3 b/files/01_1207.mp3 deleted file mode 100644 index 5020a7456..000000000 Binary files a/files/01_1207.mp3 and /dev/null differ diff --git a/files/01_1207_example.mp3 b/files/01_1207_example.mp3 deleted file mode 100644 index d683a52a5..000000000 Binary files a/files/01_1207_example.mp3 and /dev/null differ diff --git a/files/01_1207_meaning.mp3 b/files/01_1207_meaning.mp3 deleted file mode 100644 index e6363772c..000000000 Binary files a/files/01_1207_meaning.mp3 and /dev/null differ diff --git a/files/01_1208.jpg b/files/01_1208.jpg deleted file mode 100644 index e587002e3..000000000 Binary files a/files/01_1208.jpg and /dev/null differ diff --git a/files/01_1208.mp3 b/files/01_1208.mp3 deleted file mode 100644 index 51e21731e..000000000 Binary files a/files/01_1208.mp3 and /dev/null differ diff --git a/files/01_1208_example.mp3 b/files/01_1208_example.mp3 deleted file mode 100644 index 4185de1fc..000000000 Binary files a/files/01_1208_example.mp3 and /dev/null differ diff --git a/files/01_1208_meaning.mp3 b/files/01_1208_meaning.mp3 deleted file mode 100644 index 7976fc827..000000000 Binary files a/files/01_1208_meaning.mp3 and /dev/null differ diff --git a/files/01_1209.jpg b/files/01_1209.jpg deleted file mode 100644 index ed0298f92..000000000 Binary files a/files/01_1209.jpg and /dev/null differ diff --git a/files/01_1209.mp3 b/files/01_1209.mp3 deleted file mode 100644 index 571a6c69b..000000000 Binary files a/files/01_1209.mp3 and /dev/null differ diff --git a/files/01_1209_example.mp3 b/files/01_1209_example.mp3 deleted file mode 100644 index 1a0d10c80..000000000 Binary files a/files/01_1209_example.mp3 and /dev/null differ diff --git a/files/01_1209_meaning.mp3 b/files/01_1209_meaning.mp3 deleted file mode 100644 index 8299f959c..000000000 Binary files a/files/01_1209_meaning.mp3 and /dev/null differ diff --git a/files/01_1210.jpg b/files/01_1210.jpg deleted file mode 100644 index 84b9fcfa0..000000000 Binary files a/files/01_1210.jpg and /dev/null differ diff --git a/files/01_1210.mp3 b/files/01_1210.mp3 deleted file mode 100644 index 101c97a40..000000000 Binary files a/files/01_1210.mp3 and /dev/null differ diff --git a/files/01_1210_example.mp3 b/files/01_1210_example.mp3 deleted file mode 100644 index 86878613b..000000000 Binary files a/files/01_1210_example.mp3 and /dev/null differ diff --git a/files/01_1210_meaning.mp3 b/files/01_1210_meaning.mp3 deleted file mode 100644 index e6d23edb5..000000000 Binary files a/files/01_1210_meaning.mp3 and /dev/null differ diff --git a/files/01_1211.jpg b/files/01_1211.jpg deleted file mode 100644 index c916be21b..000000000 Binary files a/files/01_1211.jpg and /dev/null differ diff --git a/files/01_1211.mp3 b/files/01_1211.mp3 deleted file mode 100644 index 84bb98eb8..000000000 Binary files a/files/01_1211.mp3 and /dev/null differ diff --git a/files/01_1211_example.mp3 b/files/01_1211_example.mp3 deleted file mode 100644 index 207a33165..000000000 Binary files a/files/01_1211_example.mp3 and /dev/null differ diff --git a/files/01_1211_meaning.mp3 b/files/01_1211_meaning.mp3 deleted file mode 100644 index df4090a96..000000000 Binary files a/files/01_1211_meaning.mp3 and /dev/null differ diff --git a/files/01_1212.jpg b/files/01_1212.jpg deleted file mode 100644 index 854bc16f0..000000000 Binary files a/files/01_1212.jpg and /dev/null differ diff --git a/files/01_1212.mp3 b/files/01_1212.mp3 deleted file mode 100644 index d0179cef4..000000000 Binary files a/files/01_1212.mp3 and /dev/null differ diff --git a/files/01_1212_example.mp3 b/files/01_1212_example.mp3 deleted file mode 100644 index e8e4c6554..000000000 Binary files a/files/01_1212_example.mp3 and /dev/null differ diff --git a/files/01_1212_meaning.mp3 b/files/01_1212_meaning.mp3 deleted file mode 100644 index 6787b32a4..000000000 Binary files a/files/01_1212_meaning.mp3 and /dev/null differ diff --git a/files/01_1213.jpg b/files/01_1213.jpg deleted file mode 100644 index 83d95b037..000000000 Binary files a/files/01_1213.jpg and /dev/null differ diff --git a/files/01_1213.mp3 b/files/01_1213.mp3 deleted file mode 100644 index 44f3afc23..000000000 Binary files a/files/01_1213.mp3 and /dev/null differ diff --git a/files/01_1213_example.mp3 b/files/01_1213_example.mp3 deleted file mode 100644 index 32114447a..000000000 Binary files a/files/01_1213_example.mp3 and /dev/null differ diff --git a/files/01_1213_meaning.mp3 b/files/01_1213_meaning.mp3 deleted file mode 100644 index 111f6efad..000000000 Binary files a/files/01_1213_meaning.mp3 and /dev/null differ diff --git a/files/01_1214.jpg b/files/01_1214.jpg deleted file mode 100644 index b854b2cd1..000000000 Binary files a/files/01_1214.jpg and /dev/null differ diff --git a/files/01_1214.mp3 b/files/01_1214.mp3 deleted file mode 100644 index 689b8693d..000000000 Binary files a/files/01_1214.mp3 and /dev/null differ diff --git a/files/01_1214_example.mp3 b/files/01_1214_example.mp3 deleted file mode 100644 index 610146e9f..000000000 Binary files a/files/01_1214_example.mp3 and /dev/null differ diff --git a/files/01_1214_meaning.mp3 b/files/01_1214_meaning.mp3 deleted file mode 100644 index f2a25d916..000000000 Binary files a/files/01_1214_meaning.mp3 and /dev/null differ diff --git a/files/01_1215.jpg b/files/01_1215.jpg deleted file mode 100644 index 432cc0c7a..000000000 Binary files a/files/01_1215.jpg and /dev/null differ diff --git a/files/01_1215.mp3 b/files/01_1215.mp3 deleted file mode 100644 index cb9d3f7ef..000000000 Binary files a/files/01_1215.mp3 and /dev/null differ diff --git a/files/01_1215_example.mp3 b/files/01_1215_example.mp3 deleted file mode 100644 index 522195040..000000000 Binary files a/files/01_1215_example.mp3 and /dev/null differ diff --git a/files/01_1215_meaning.mp3 b/files/01_1215_meaning.mp3 deleted file mode 100644 index 13c7bb41a..000000000 Binary files a/files/01_1215_meaning.mp3 and /dev/null differ diff --git a/files/01_1216.jpg b/files/01_1216.jpg deleted file mode 100644 index 934d4c64c..000000000 Binary files a/files/01_1216.jpg and /dev/null differ diff --git a/files/01_1216.mp3 b/files/01_1216.mp3 deleted file mode 100644 index 0757859ee..000000000 Binary files a/files/01_1216.mp3 and /dev/null differ diff --git a/files/01_1216_example.mp3 b/files/01_1216_example.mp3 deleted file mode 100644 index d68ce3234..000000000 Binary files a/files/01_1216_example.mp3 and /dev/null differ diff --git a/files/01_1216_meaning.mp3 b/files/01_1216_meaning.mp3 deleted file mode 100644 index e65fff311..000000000 Binary files a/files/01_1216_meaning.mp3 and /dev/null differ diff --git a/files/01_1217.jpg b/files/01_1217.jpg deleted file mode 100644 index 3cf455494..000000000 Binary files a/files/01_1217.jpg and /dev/null differ diff --git a/files/01_1217.mp3 b/files/01_1217.mp3 deleted file mode 100644 index 1cd9e8682..000000000 Binary files a/files/01_1217.mp3 and /dev/null differ diff --git a/files/01_1217_example.mp3 b/files/01_1217_example.mp3 deleted file mode 100644 index 76c92d1b0..000000000 Binary files a/files/01_1217_example.mp3 and /dev/null differ diff --git a/files/01_1217_meaning.mp3 b/files/01_1217_meaning.mp3 deleted file mode 100644 index cf5f9149d..000000000 Binary files a/files/01_1217_meaning.mp3 and /dev/null differ diff --git a/files/01_1218.jpg b/files/01_1218.jpg deleted file mode 100644 index bd00d5299..000000000 Binary files a/files/01_1218.jpg and /dev/null differ diff --git a/files/01_1218.mp3 b/files/01_1218.mp3 deleted file mode 100644 index 44ec7ad64..000000000 Binary files a/files/01_1218.mp3 and /dev/null differ diff --git a/files/01_1218_example.mp3 b/files/01_1218_example.mp3 deleted file mode 100644 index b8f61bbdb..000000000 Binary files a/files/01_1218_example.mp3 and /dev/null differ diff --git a/files/01_1218_meaning.mp3 b/files/01_1218_meaning.mp3 deleted file mode 100644 index 3021d6ce3..000000000 Binary files a/files/01_1218_meaning.mp3 and /dev/null differ diff --git a/files/01_1219.jpg b/files/01_1219.jpg deleted file mode 100644 index 651d90f73..000000000 Binary files a/files/01_1219.jpg and /dev/null differ diff --git a/files/01_1219.mp3 b/files/01_1219.mp3 deleted file mode 100644 index 154d7db0a..000000000 Binary files a/files/01_1219.mp3 and /dev/null differ diff --git a/files/01_1219_example.mp3 b/files/01_1219_example.mp3 deleted file mode 100644 index 9106d9929..000000000 Binary files a/files/01_1219_example.mp3 and /dev/null differ diff --git a/files/01_1219_meaning.mp3 b/files/01_1219_meaning.mp3 deleted file mode 100644 index be3195b79..000000000 Binary files a/files/01_1219_meaning.mp3 and /dev/null differ diff --git a/files/01_1220.jpg b/files/01_1220.jpg deleted file mode 100644 index a06560bb2..000000000 Binary files a/files/01_1220.jpg and /dev/null differ diff --git a/files/01_1220.mp3 b/files/01_1220.mp3 deleted file mode 100644 index e77ed5946..000000000 Binary files a/files/01_1220.mp3 and /dev/null differ diff --git a/files/01_1220_example.mp3 b/files/01_1220_example.mp3 deleted file mode 100644 index 348c6a78e..000000000 Binary files a/files/01_1220_example.mp3 and /dev/null differ diff --git a/files/01_1220_meaning.mp3 b/files/01_1220_meaning.mp3 deleted file mode 100644 index 04e4b4326..000000000 Binary files a/files/01_1220_meaning.mp3 and /dev/null differ diff --git a/files/01_1801.jpg b/files/01_1801.jpg deleted file mode 100644 index c6737cabe..000000000 Binary files a/files/01_1801.jpg and /dev/null differ diff --git a/files/01_1801.mp3 b/files/01_1801.mp3 deleted file mode 100644 index 2dc75b4e5..000000000 Binary files a/files/01_1801.mp3 and /dev/null differ diff --git a/files/01_1801_example.mp3 b/files/01_1801_example.mp3 deleted file mode 100644 index 7bf62d484..000000000 Binary files a/files/01_1801_example.mp3 and /dev/null differ diff --git a/files/01_1801_meaning.mp3 b/files/01_1801_meaning.mp3 deleted file mode 100644 index fe7bdbee5..000000000 Binary files a/files/01_1801_meaning.mp3 and /dev/null differ diff --git a/files/01_1802.jpg b/files/01_1802.jpg deleted file mode 100644 index 320963640..000000000 Binary files a/files/01_1802.jpg and /dev/null differ diff --git a/files/01_1802.mp3 b/files/01_1802.mp3 deleted file mode 100644 index 1a7d25df8..000000000 Binary files a/files/01_1802.mp3 and /dev/null differ diff --git a/files/01_1802_example.mp3 b/files/01_1802_example.mp3 deleted file mode 100644 index 1be299d15..000000000 Binary files a/files/01_1802_example.mp3 and /dev/null differ diff --git a/files/01_1802_meaning.mp3 b/files/01_1802_meaning.mp3 deleted file mode 100644 index 4418e64c5..000000000 Binary files a/files/01_1802_meaning.mp3 and /dev/null differ diff --git a/files/01_1803.jpg b/files/01_1803.jpg deleted file mode 100644 index be77039c3..000000000 Binary files a/files/01_1803.jpg and /dev/null differ diff --git a/files/01_1803.mp3 b/files/01_1803.mp3 deleted file mode 100644 index 9fe213d13..000000000 Binary files a/files/01_1803.mp3 and /dev/null differ diff --git a/files/01_1803_example.mp3 b/files/01_1803_example.mp3 deleted file mode 100644 index b07d0f5a4..000000000 Binary files a/files/01_1803_example.mp3 and /dev/null differ diff --git a/files/01_1803_meaning.mp3 b/files/01_1803_meaning.mp3 deleted file mode 100644 index f76be4b73..000000000 Binary files a/files/01_1803_meaning.mp3 and /dev/null differ diff --git a/files/01_1804.jpg b/files/01_1804.jpg deleted file mode 100644 index 6b12e81ed..000000000 Binary files a/files/01_1804.jpg and /dev/null differ diff --git a/files/01_1804.mp3 b/files/01_1804.mp3 deleted file mode 100644 index 7aed440c4..000000000 Binary files a/files/01_1804.mp3 and /dev/null differ diff --git a/files/01_1804_example.mp3 b/files/01_1804_example.mp3 deleted file mode 100644 index b856b63ae..000000000 Binary files a/files/01_1804_example.mp3 and /dev/null differ diff --git a/files/01_1804_meaning.mp3 b/files/01_1804_meaning.mp3 deleted file mode 100644 index 77f6c61f5..000000000 Binary files a/files/01_1804_meaning.mp3 and /dev/null differ diff --git a/files/01_1805.jpg b/files/01_1805.jpg deleted file mode 100644 index 38a38dd51..000000000 Binary files a/files/01_1805.jpg and /dev/null differ diff --git a/files/01_1805.mp3 b/files/01_1805.mp3 deleted file mode 100644 index 711284f23..000000000 Binary files a/files/01_1805.mp3 and /dev/null differ diff --git a/files/01_1805_example.mp3 b/files/01_1805_example.mp3 deleted file mode 100644 index f77aa7966..000000000 Binary files a/files/01_1805_example.mp3 and /dev/null differ diff --git a/files/01_1805_meaning.mp3 b/files/01_1805_meaning.mp3 deleted file mode 100644 index eed2721da..000000000 Binary files a/files/01_1805_meaning.mp3 and /dev/null differ diff --git a/files/01_1806.jpg b/files/01_1806.jpg deleted file mode 100644 index 3cb5d99bd..000000000 Binary files a/files/01_1806.jpg and /dev/null differ diff --git a/files/01_1806.mp3 b/files/01_1806.mp3 deleted file mode 100644 index fae7430a7..000000000 Binary files a/files/01_1806.mp3 and /dev/null differ diff --git a/files/01_1806_example.mp3 b/files/01_1806_example.mp3 deleted file mode 100644 index bce60b0c2..000000000 Binary files a/files/01_1806_example.mp3 and /dev/null differ diff --git a/files/01_1806_meaning.mp3 b/files/01_1806_meaning.mp3 deleted file mode 100644 index 280407802..000000000 Binary files a/files/01_1806_meaning.mp3 and /dev/null differ diff --git a/files/01_1807.jpg b/files/01_1807.jpg deleted file mode 100644 index 508d2ffb5..000000000 Binary files a/files/01_1807.jpg and /dev/null differ diff --git a/files/01_1807.mp3 b/files/01_1807.mp3 deleted file mode 100644 index aa6b991d5..000000000 Binary files a/files/01_1807.mp3 and /dev/null differ diff --git a/files/01_1807_example.mp3 b/files/01_1807_example.mp3 deleted file mode 100644 index 96c0967fe..000000000 Binary files a/files/01_1807_example.mp3 and /dev/null differ diff --git a/files/01_1807_meaning.mp3 b/files/01_1807_meaning.mp3 deleted file mode 100644 index 130d8b106..000000000 Binary files a/files/01_1807_meaning.mp3 and /dev/null differ diff --git a/files/01_1808.jpg b/files/01_1808.jpg deleted file mode 100644 index 28fe29e85..000000000 Binary files a/files/01_1808.jpg and /dev/null differ diff --git a/files/01_1808.mp3 b/files/01_1808.mp3 deleted file mode 100644 index 272414d94..000000000 Binary files a/files/01_1808.mp3 and /dev/null differ diff --git a/files/01_1808_example.mp3 b/files/01_1808_example.mp3 deleted file mode 100644 index fd19232c5..000000000 Binary files a/files/01_1808_example.mp3 and /dev/null differ diff --git a/files/01_1808_meaning.mp3 b/files/01_1808_meaning.mp3 deleted file mode 100644 index 843166868..000000000 Binary files a/files/01_1808_meaning.mp3 and /dev/null differ diff --git a/files/01_1809.jpg b/files/01_1809.jpg deleted file mode 100644 index 95aec18fb..000000000 Binary files a/files/01_1809.jpg and /dev/null differ diff --git a/files/01_1809.mp3 b/files/01_1809.mp3 deleted file mode 100644 index 3e49f4793..000000000 Binary files a/files/01_1809.mp3 and /dev/null differ diff --git a/files/01_1809_example.mp3 b/files/01_1809_example.mp3 deleted file mode 100644 index c803b9c15..000000000 Binary files a/files/01_1809_example.mp3 and /dev/null differ diff --git a/files/01_1809_meaning.mp3 b/files/01_1809_meaning.mp3 deleted file mode 100644 index 0953ac2ac..000000000 Binary files a/files/01_1809_meaning.mp3 and /dev/null differ diff --git a/files/01_1810.jpg b/files/01_1810.jpg deleted file mode 100644 index 911c67ff1..000000000 Binary files a/files/01_1810.jpg and /dev/null differ diff --git a/files/01_1810.mp3 b/files/01_1810.mp3 deleted file mode 100644 index a8ff65476..000000000 Binary files a/files/01_1810.mp3 and /dev/null differ diff --git a/files/01_1810_example.mp3 b/files/01_1810_example.mp3 deleted file mode 100644 index ea94541a6..000000000 Binary files a/files/01_1810_example.mp3 and /dev/null differ diff --git a/files/01_1810_meaning.mp3 b/files/01_1810_meaning.mp3 deleted file mode 100644 index 7b2901957..000000000 Binary files a/files/01_1810_meaning.mp3 and /dev/null differ diff --git a/files/01_1811.jpg b/files/01_1811.jpg deleted file mode 100644 index 4cae14e9d..000000000 Binary files a/files/01_1811.jpg and /dev/null differ diff --git a/files/01_1811.mp3 b/files/01_1811.mp3 deleted file mode 100644 index e98a6f14b..000000000 Binary files a/files/01_1811.mp3 and /dev/null differ diff --git a/files/01_1811_example.mp3 b/files/01_1811_example.mp3 deleted file mode 100644 index b9dd07365..000000000 Binary files a/files/01_1811_example.mp3 and /dev/null differ diff --git a/files/01_1811_meaning.mp3 b/files/01_1811_meaning.mp3 deleted file mode 100644 index 2a79283dc..000000000 Binary files a/files/01_1811_meaning.mp3 and /dev/null differ diff --git a/files/01_1812.jpg b/files/01_1812.jpg deleted file mode 100644 index f006600e3..000000000 Binary files a/files/01_1812.jpg and /dev/null differ diff --git a/files/01_1812.mp3 b/files/01_1812.mp3 deleted file mode 100644 index 318b601a3..000000000 Binary files a/files/01_1812.mp3 and /dev/null differ diff --git a/files/01_1812_example.mp3 b/files/01_1812_example.mp3 deleted file mode 100644 index a41124726..000000000 Binary files a/files/01_1812_example.mp3 and /dev/null differ diff --git a/files/01_1812_meaning.mp3 b/files/01_1812_meaning.mp3 deleted file mode 100644 index c98b7a092..000000000 Binary files a/files/01_1812_meaning.mp3 and /dev/null differ diff --git a/files/01_1813.jpg b/files/01_1813.jpg deleted file mode 100644 index 22a7fca80..000000000 Binary files a/files/01_1813.jpg and /dev/null differ diff --git a/files/01_1813.mp3 b/files/01_1813.mp3 deleted file mode 100644 index 846834b0a..000000000 Binary files a/files/01_1813.mp3 and /dev/null differ diff --git a/files/01_1813_example.mp3 b/files/01_1813_example.mp3 deleted file mode 100644 index 8ea75eff6..000000000 Binary files a/files/01_1813_example.mp3 and /dev/null differ diff --git a/files/01_1813_meaning.mp3 b/files/01_1813_meaning.mp3 deleted file mode 100644 index 2807ecc07..000000000 Binary files a/files/01_1813_meaning.mp3 and /dev/null differ diff --git a/files/01_1814.jpg b/files/01_1814.jpg deleted file mode 100644 index 092c770e1..000000000 Binary files a/files/01_1814.jpg and /dev/null differ diff --git a/files/01_1814.mp3 b/files/01_1814.mp3 deleted file mode 100644 index bd9040c04..000000000 Binary files a/files/01_1814.mp3 and /dev/null differ diff --git a/files/01_1814_example.mp3 b/files/01_1814_example.mp3 deleted file mode 100644 index a667a94e6..000000000 Binary files a/files/01_1814_example.mp3 and /dev/null differ diff --git a/files/01_1814_meaning.mp3 b/files/01_1814_meaning.mp3 deleted file mode 100644 index 7ccd57dca..000000000 Binary files a/files/01_1814_meaning.mp3 and /dev/null differ diff --git a/files/01_1815.jpg b/files/01_1815.jpg deleted file mode 100644 index f6d6f1b21..000000000 Binary files a/files/01_1815.jpg and /dev/null differ diff --git a/files/01_1815.mp3 b/files/01_1815.mp3 deleted file mode 100644 index 8f2ad34c1..000000000 Binary files a/files/01_1815.mp3 and /dev/null differ diff --git a/files/01_1815_example.mp3 b/files/01_1815_example.mp3 deleted file mode 100644 index 7dc505073..000000000 Binary files a/files/01_1815_example.mp3 and /dev/null differ diff --git a/files/01_1815_meaning.mp3 b/files/01_1815_meaning.mp3 deleted file mode 100644 index 15c8cb4e2..000000000 Binary files a/files/01_1815_meaning.mp3 and /dev/null differ diff --git a/files/01_1816.jpg b/files/01_1816.jpg deleted file mode 100644 index 30cfb7424..000000000 Binary files a/files/01_1816.jpg and /dev/null differ diff --git a/files/01_1816.mp3 b/files/01_1816.mp3 deleted file mode 100644 index a7480298e..000000000 Binary files a/files/01_1816.mp3 and /dev/null differ diff --git a/files/01_1816_example.mp3 b/files/01_1816_example.mp3 deleted file mode 100644 index 3de321db5..000000000 Binary files a/files/01_1816_example.mp3 and /dev/null differ diff --git a/files/01_1816_meaning.mp3 b/files/01_1816_meaning.mp3 deleted file mode 100644 index 6fbca0e0c..000000000 Binary files a/files/01_1816_meaning.mp3 and /dev/null differ diff --git a/files/01_1817.jpg b/files/01_1817.jpg deleted file mode 100644 index 785ac8be9..000000000 Binary files a/files/01_1817.jpg and /dev/null differ diff --git a/files/01_1817.mp3 b/files/01_1817.mp3 deleted file mode 100644 index 02c3e197b..000000000 Binary files a/files/01_1817.mp3 and /dev/null differ diff --git a/files/01_1817_example.mp3 b/files/01_1817_example.mp3 deleted file mode 100644 index 256835c01..000000000 Binary files a/files/01_1817_example.mp3 and /dev/null differ diff --git a/files/01_1817_meaning.mp3 b/files/01_1817_meaning.mp3 deleted file mode 100644 index 81435d346..000000000 Binary files a/files/01_1817_meaning.mp3 and /dev/null differ diff --git a/files/01_1818.jpg b/files/01_1818.jpg deleted file mode 100644 index 7ba95b6f4..000000000 Binary files a/files/01_1818.jpg and /dev/null differ diff --git a/files/01_1818.mp3 b/files/01_1818.mp3 deleted file mode 100644 index a41700844..000000000 Binary files a/files/01_1818.mp3 and /dev/null differ diff --git a/files/01_1818_example.mp3 b/files/01_1818_example.mp3 deleted file mode 100644 index a9f171ffb..000000000 Binary files a/files/01_1818_example.mp3 and /dev/null differ diff --git a/files/01_1818_meaning.mp3 b/files/01_1818_meaning.mp3 deleted file mode 100644 index ac7bfef00..000000000 Binary files a/files/01_1818_meaning.mp3 and /dev/null differ diff --git a/files/01_1819.jpg b/files/01_1819.jpg deleted file mode 100644 index d2703fcc2..000000000 Binary files a/files/01_1819.jpg and /dev/null differ diff --git a/files/01_1819.mp3 b/files/01_1819.mp3 deleted file mode 100644 index 029b22535..000000000 Binary files a/files/01_1819.mp3 and /dev/null differ diff --git a/files/01_1819_example.mp3 b/files/01_1819_example.mp3 deleted file mode 100644 index a2b92387e..000000000 Binary files a/files/01_1819_example.mp3 and /dev/null differ diff --git a/files/01_1819_meaning.mp3 b/files/01_1819_meaning.mp3 deleted file mode 100644 index 752db6282..000000000 Binary files a/files/01_1819_meaning.mp3 and /dev/null differ diff --git a/files/01_1820.jpg b/files/01_1820.jpg deleted file mode 100644 index 0ec221e86..000000000 Binary files a/files/01_1820.jpg and /dev/null differ diff --git a/files/01_1820.mp3 b/files/01_1820.mp3 deleted file mode 100644 index 3f98f223d..000000000 Binary files a/files/01_1820.mp3 and /dev/null differ diff --git a/files/01_1820_example.mp3 b/files/01_1820_example.mp3 deleted file mode 100644 index 3ca0c0cba..000000000 Binary files a/files/01_1820_example.mp3 and /dev/null differ diff --git a/files/01_1820_meaning.mp3 b/files/01_1820_meaning.mp3 deleted file mode 100644 index 607f6d8c1..000000000 Binary files a/files/01_1820_meaning.mp3 and /dev/null differ diff --git a/files/01_2401.jpg b/files/01_2401.jpg deleted file mode 100644 index 117d1ae9f..000000000 Binary files a/files/01_2401.jpg and /dev/null differ diff --git a/files/01_2401.mp3 b/files/01_2401.mp3 deleted file mode 100644 index f73c5dbdb..000000000 Binary files a/files/01_2401.mp3 and /dev/null differ diff --git a/files/01_2401_example.mp3 b/files/01_2401_example.mp3 deleted file mode 100644 index 7b4db8cd0..000000000 Binary files a/files/01_2401_example.mp3 and /dev/null differ diff --git a/files/01_2401_meaning.mp3 b/files/01_2401_meaning.mp3 deleted file mode 100644 index 97500c2ba..000000000 Binary files a/files/01_2401_meaning.mp3 and /dev/null differ diff --git a/files/01_2402.jpg b/files/01_2402.jpg deleted file mode 100644 index bede773d8..000000000 Binary files a/files/01_2402.jpg and /dev/null differ diff --git a/files/01_2402.mp3 b/files/01_2402.mp3 deleted file mode 100644 index e661d4514..000000000 Binary files a/files/01_2402.mp3 and /dev/null differ diff --git a/files/01_2402_example.mp3 b/files/01_2402_example.mp3 deleted file mode 100644 index 44b3c899d..000000000 Binary files a/files/01_2402_example.mp3 and /dev/null differ diff --git a/files/01_2402_meaning.mp3 b/files/01_2402_meaning.mp3 deleted file mode 100644 index 6cb9788a8..000000000 Binary files a/files/01_2402_meaning.mp3 and /dev/null differ diff --git a/files/01_2403.jpg b/files/01_2403.jpg deleted file mode 100644 index e20e380f1..000000000 Binary files a/files/01_2403.jpg and /dev/null differ diff --git a/files/01_2403.mp3 b/files/01_2403.mp3 deleted file mode 100644 index 3a33c3dda..000000000 Binary files a/files/01_2403.mp3 and /dev/null differ diff --git a/files/01_2403_example.mp3 b/files/01_2403_example.mp3 deleted file mode 100644 index 409fa73af..000000000 Binary files a/files/01_2403_example.mp3 and /dev/null differ diff --git a/files/01_2403_meaning.mp3 b/files/01_2403_meaning.mp3 deleted file mode 100644 index 8efec7cea..000000000 Binary files a/files/01_2403_meaning.mp3 and /dev/null differ diff --git a/files/01_2404.jpg b/files/01_2404.jpg deleted file mode 100644 index 8d3cc1aea..000000000 Binary files a/files/01_2404.jpg and /dev/null differ diff --git a/files/01_2404.mp3 b/files/01_2404.mp3 deleted file mode 100644 index 06aedf7ee..000000000 Binary files a/files/01_2404.mp3 and /dev/null differ diff --git a/files/01_2404_example.mp3 b/files/01_2404_example.mp3 deleted file mode 100644 index 85a6185f9..000000000 Binary files a/files/01_2404_example.mp3 and /dev/null differ diff --git a/files/01_2404_meaning.mp3 b/files/01_2404_meaning.mp3 deleted file mode 100644 index c555b01b0..000000000 Binary files a/files/01_2404_meaning.mp3 and /dev/null differ diff --git a/files/01_2405.jpg b/files/01_2405.jpg deleted file mode 100644 index e4f36f226..000000000 Binary files a/files/01_2405.jpg and /dev/null differ diff --git a/files/01_2405.mp3 b/files/01_2405.mp3 deleted file mode 100644 index f1021accc..000000000 Binary files a/files/01_2405.mp3 and /dev/null differ diff --git a/files/01_2405_example.mp3 b/files/01_2405_example.mp3 deleted file mode 100644 index d90551237..000000000 Binary files a/files/01_2405_example.mp3 and /dev/null differ diff --git a/files/01_2405_meaning.mp3 b/files/01_2405_meaning.mp3 deleted file mode 100644 index 42faaa9ff..000000000 Binary files a/files/01_2405_meaning.mp3 and /dev/null differ diff --git a/files/01_2406.jpg b/files/01_2406.jpg deleted file mode 100644 index f7d5a937c..000000000 Binary files a/files/01_2406.jpg and /dev/null differ diff --git a/files/01_2406.mp3 b/files/01_2406.mp3 deleted file mode 100644 index 0e1dbad14..000000000 Binary files a/files/01_2406.mp3 and /dev/null differ diff --git a/files/01_2406_example.mp3 b/files/01_2406_example.mp3 deleted file mode 100644 index d5fac9a7e..000000000 Binary files a/files/01_2406_example.mp3 and /dev/null differ diff --git a/files/01_2406_meaning.mp3 b/files/01_2406_meaning.mp3 deleted file mode 100644 index 21514b2b5..000000000 Binary files a/files/01_2406_meaning.mp3 and /dev/null differ diff --git a/files/01_2407.jpg b/files/01_2407.jpg deleted file mode 100644 index 1fa5becf9..000000000 Binary files a/files/01_2407.jpg and /dev/null differ diff --git a/files/01_2407.mp3 b/files/01_2407.mp3 deleted file mode 100644 index 61f575487..000000000 Binary files a/files/01_2407.mp3 and /dev/null differ diff --git a/files/01_2407_example.mp3 b/files/01_2407_example.mp3 deleted file mode 100644 index e53b670a8..000000000 Binary files a/files/01_2407_example.mp3 and /dev/null differ diff --git a/files/01_2407_meaning.mp3 b/files/01_2407_meaning.mp3 deleted file mode 100644 index 94d1a62e8..000000000 Binary files a/files/01_2407_meaning.mp3 and /dev/null differ diff --git a/files/01_2408.jpg b/files/01_2408.jpg deleted file mode 100644 index b8c4088da..000000000 Binary files a/files/01_2408.jpg and /dev/null differ diff --git a/files/01_2408.mp3 b/files/01_2408.mp3 deleted file mode 100644 index 86395b10d..000000000 Binary files a/files/01_2408.mp3 and /dev/null differ diff --git a/files/01_2408_example.mp3 b/files/01_2408_example.mp3 deleted file mode 100644 index 43f7ef461..000000000 Binary files a/files/01_2408_example.mp3 and /dev/null differ diff --git a/files/01_2408_meaning.mp3 b/files/01_2408_meaning.mp3 deleted file mode 100644 index 29f06ff18..000000000 Binary files a/files/01_2408_meaning.mp3 and /dev/null differ diff --git a/files/01_2409.jpg b/files/01_2409.jpg deleted file mode 100644 index c570c0cbc..000000000 Binary files a/files/01_2409.jpg and /dev/null differ diff --git a/files/01_2409.mp3 b/files/01_2409.mp3 deleted file mode 100644 index 8b406014d..000000000 Binary files a/files/01_2409.mp3 and /dev/null differ diff --git a/files/01_2409_example.mp3 b/files/01_2409_example.mp3 deleted file mode 100644 index f4a1205cf..000000000 Binary files a/files/01_2409_example.mp3 and /dev/null differ diff --git a/files/01_2409_meaning.mp3 b/files/01_2409_meaning.mp3 deleted file mode 100644 index b65ce3cac..000000000 Binary files a/files/01_2409_meaning.mp3 and /dev/null differ diff --git a/files/01_2410.jpg b/files/01_2410.jpg deleted file mode 100644 index bb9c40def..000000000 Binary files a/files/01_2410.jpg and /dev/null differ diff --git a/files/01_2410.mp3 b/files/01_2410.mp3 deleted file mode 100644 index 5331d7add..000000000 Binary files a/files/01_2410.mp3 and /dev/null differ diff --git a/files/01_2410_example.mp3 b/files/01_2410_example.mp3 deleted file mode 100644 index 8f6e79f0d..000000000 Binary files a/files/01_2410_example.mp3 and /dev/null differ diff --git a/files/01_2410_meaning.mp3 b/files/01_2410_meaning.mp3 deleted file mode 100644 index c142ff507..000000000 Binary files a/files/01_2410_meaning.mp3 and /dev/null differ diff --git a/files/01_2411.jpg b/files/01_2411.jpg deleted file mode 100644 index 1bc5d8744..000000000 Binary files a/files/01_2411.jpg and /dev/null differ diff --git a/files/01_2411.mp3 b/files/01_2411.mp3 deleted file mode 100644 index e8a4a76af..000000000 Binary files a/files/01_2411.mp3 and /dev/null differ diff --git a/files/01_2411_example.mp3 b/files/01_2411_example.mp3 deleted file mode 100644 index 0176aeb42..000000000 Binary files a/files/01_2411_example.mp3 and /dev/null differ diff --git a/files/01_2411_meaning.mp3 b/files/01_2411_meaning.mp3 deleted file mode 100644 index 3220a4bb7..000000000 Binary files a/files/01_2411_meaning.mp3 and /dev/null differ diff --git a/files/01_2412.jpg b/files/01_2412.jpg deleted file mode 100644 index ca6e6d913..000000000 Binary files a/files/01_2412.jpg and /dev/null differ diff --git a/files/01_2412.mp3 b/files/01_2412.mp3 deleted file mode 100644 index 49c85c591..000000000 Binary files a/files/01_2412.mp3 and /dev/null differ diff --git a/files/01_2412_example.mp3 b/files/01_2412_example.mp3 deleted file mode 100644 index 98453fe9a..000000000 Binary files a/files/01_2412_example.mp3 and /dev/null differ diff --git a/files/01_2412_meaning.mp3 b/files/01_2412_meaning.mp3 deleted file mode 100644 index 623105fc5..000000000 Binary files a/files/01_2412_meaning.mp3 and /dev/null differ diff --git a/files/01_2413.jpg b/files/01_2413.jpg deleted file mode 100644 index 501d16315..000000000 Binary files a/files/01_2413.jpg and /dev/null differ diff --git a/files/01_2413.mp3 b/files/01_2413.mp3 deleted file mode 100644 index 7a43c9a24..000000000 Binary files a/files/01_2413.mp3 and /dev/null differ diff --git a/files/01_2413_example.mp3 b/files/01_2413_example.mp3 deleted file mode 100644 index 865be82b8..000000000 Binary files a/files/01_2413_example.mp3 and /dev/null differ diff --git a/files/01_2413_meaning.mp3 b/files/01_2413_meaning.mp3 deleted file mode 100644 index 170400b93..000000000 Binary files a/files/01_2413_meaning.mp3 and /dev/null differ diff --git a/files/01_2414.jpg b/files/01_2414.jpg deleted file mode 100644 index 1717dee33..000000000 Binary files a/files/01_2414.jpg and /dev/null differ diff --git a/files/01_2414.mp3 b/files/01_2414.mp3 deleted file mode 100644 index 3c41627df..000000000 Binary files a/files/01_2414.mp3 and /dev/null differ diff --git a/files/01_2414_example.mp3 b/files/01_2414_example.mp3 deleted file mode 100644 index e4edd0ddd..000000000 Binary files a/files/01_2414_example.mp3 and /dev/null differ diff --git a/files/01_2414_meaning.mp3 b/files/01_2414_meaning.mp3 deleted file mode 100644 index 282490b27..000000000 Binary files a/files/01_2414_meaning.mp3 and /dev/null differ diff --git a/files/01_2415.jpg b/files/01_2415.jpg deleted file mode 100644 index e922f619c..000000000 Binary files a/files/01_2415.jpg and /dev/null differ diff --git a/files/01_2415.mp3 b/files/01_2415.mp3 deleted file mode 100644 index ce64872bc..000000000 Binary files a/files/01_2415.mp3 and /dev/null differ diff --git a/files/01_2415_example.mp3 b/files/01_2415_example.mp3 deleted file mode 100644 index ad20abf81..000000000 Binary files a/files/01_2415_example.mp3 and /dev/null differ diff --git a/files/01_2415_meaning.mp3 b/files/01_2415_meaning.mp3 deleted file mode 100644 index e9d9cc40e..000000000 Binary files a/files/01_2415_meaning.mp3 and /dev/null differ diff --git a/files/01_2416.jpg b/files/01_2416.jpg deleted file mode 100644 index ed08e006b..000000000 Binary files a/files/01_2416.jpg and /dev/null differ diff --git a/files/01_2416.mp3 b/files/01_2416.mp3 deleted file mode 100644 index 472748f9d..000000000 Binary files a/files/01_2416.mp3 and /dev/null differ diff --git a/files/01_2416_example.mp3 b/files/01_2416_example.mp3 deleted file mode 100644 index 4d6945210..000000000 Binary files a/files/01_2416_example.mp3 and /dev/null differ diff --git a/files/01_2416_meaning.mp3 b/files/01_2416_meaning.mp3 deleted file mode 100644 index df35c94d3..000000000 Binary files a/files/01_2416_meaning.mp3 and /dev/null differ diff --git a/files/01_2417.jpg b/files/01_2417.jpg deleted file mode 100644 index 0e5f72a22..000000000 Binary files a/files/01_2417.jpg and /dev/null differ diff --git a/files/01_2417.mp3 b/files/01_2417.mp3 deleted file mode 100644 index 19cc6be18..000000000 Binary files a/files/01_2417.mp3 and /dev/null differ diff --git a/files/01_2417_example.mp3 b/files/01_2417_example.mp3 deleted file mode 100644 index 2a7b88487..000000000 Binary files a/files/01_2417_example.mp3 and /dev/null differ diff --git a/files/01_2417_meaning.mp3 b/files/01_2417_meaning.mp3 deleted file mode 100644 index 956b929fb..000000000 Binary files a/files/01_2417_meaning.mp3 and /dev/null differ diff --git a/files/01_2418.jpg b/files/01_2418.jpg deleted file mode 100644 index a93f744e1..000000000 Binary files a/files/01_2418.jpg and /dev/null differ diff --git a/files/01_2418.mp3 b/files/01_2418.mp3 deleted file mode 100644 index d8c99b650..000000000 Binary files a/files/01_2418.mp3 and /dev/null differ diff --git a/files/01_2418_example.mp3 b/files/01_2418_example.mp3 deleted file mode 100644 index fd7ab2893..000000000 Binary files a/files/01_2418_example.mp3 and /dev/null differ diff --git a/files/01_2418_meaning.mp3 b/files/01_2418_meaning.mp3 deleted file mode 100644 index 9d685f19c..000000000 Binary files a/files/01_2418_meaning.mp3 and /dev/null differ diff --git a/files/01_2419.jpg b/files/01_2419.jpg deleted file mode 100644 index 392b44b17..000000000 Binary files a/files/01_2419.jpg and /dev/null differ diff --git a/files/01_2419.mp3 b/files/01_2419.mp3 deleted file mode 100644 index 6db111ff6..000000000 Binary files a/files/01_2419.mp3 and /dev/null differ diff --git a/files/01_2419_example.mp3 b/files/01_2419_example.mp3 deleted file mode 100644 index 1c23f5761..000000000 Binary files a/files/01_2419_example.mp3 and /dev/null differ diff --git a/files/01_2419_meaning.mp3 b/files/01_2419_meaning.mp3 deleted file mode 100644 index f197f381d..000000000 Binary files a/files/01_2419_meaning.mp3 and /dev/null differ diff --git a/files/01_2420.jpg b/files/01_2420.jpg deleted file mode 100644 index dc7259723..000000000 Binary files a/files/01_2420.jpg and /dev/null differ diff --git a/files/01_2420.mp3 b/files/01_2420.mp3 deleted file mode 100644 index 9780588e1..000000000 Binary files a/files/01_2420.mp3 and /dev/null differ diff --git a/files/01_2420_example.mp3 b/files/01_2420_example.mp3 deleted file mode 100644 index f192c7d9b..000000000 Binary files a/files/01_2420_example.mp3 and /dev/null differ diff --git a/files/01_2420_meaning.mp3 b/files/01_2420_meaning.mp3 deleted file mode 100644 index 9015d37f4..000000000 Binary files a/files/01_2420_meaning.mp3 and /dev/null differ diff --git a/files/01_3001.jpg b/files/01_3001.jpg deleted file mode 100644 index 4d0a64fd1..000000000 Binary files a/files/01_3001.jpg and /dev/null differ diff --git a/files/01_3001.mp3 b/files/01_3001.mp3 deleted file mode 100644 index 452570f48..000000000 Binary files a/files/01_3001.mp3 and /dev/null differ diff --git a/files/01_3001_example.mp3 b/files/01_3001_example.mp3 deleted file mode 100644 index efebf4135..000000000 Binary files a/files/01_3001_example.mp3 and /dev/null differ diff --git a/files/01_3001_meaning.mp3 b/files/01_3001_meaning.mp3 deleted file mode 100644 index f288a9d64..000000000 Binary files a/files/01_3001_meaning.mp3 and /dev/null differ diff --git a/files/01_3002.jpg b/files/01_3002.jpg deleted file mode 100644 index 78409ca0d..000000000 Binary files a/files/01_3002.jpg and /dev/null differ diff --git a/files/01_3002.mp3 b/files/01_3002.mp3 deleted file mode 100644 index e191f736c..000000000 Binary files a/files/01_3002.mp3 and /dev/null differ diff --git a/files/01_3002_example.mp3 b/files/01_3002_example.mp3 deleted file mode 100644 index 2009d7b1a..000000000 Binary files a/files/01_3002_example.mp3 and /dev/null differ diff --git a/files/01_3002_meaning.mp3 b/files/01_3002_meaning.mp3 deleted file mode 100644 index 8fd3ce109..000000000 Binary files a/files/01_3002_meaning.mp3 and /dev/null differ diff --git a/files/01_3003.jpg b/files/01_3003.jpg deleted file mode 100644 index 94c3df00a..000000000 Binary files a/files/01_3003.jpg and /dev/null differ diff --git a/files/01_3003.mp3 b/files/01_3003.mp3 deleted file mode 100644 index 2ad3600f3..000000000 Binary files a/files/01_3003.mp3 and /dev/null differ diff --git a/files/01_3003_example.mp3 b/files/01_3003_example.mp3 deleted file mode 100644 index c862cc5ab..000000000 Binary files a/files/01_3003_example.mp3 and /dev/null differ diff --git a/files/01_3003_meaning.mp3 b/files/01_3003_meaning.mp3 deleted file mode 100644 index 54018fddc..000000000 Binary files a/files/01_3003_meaning.mp3 and /dev/null differ diff --git a/files/01_3004.jpg b/files/01_3004.jpg deleted file mode 100644 index bad4e8569..000000000 Binary files a/files/01_3004.jpg and /dev/null differ diff --git a/files/01_3004.mp3 b/files/01_3004.mp3 deleted file mode 100644 index eff1ef356..000000000 Binary files a/files/01_3004.mp3 and /dev/null differ diff --git a/files/01_3004_example.mp3 b/files/01_3004_example.mp3 deleted file mode 100644 index c48480c8f..000000000 Binary files a/files/01_3004_example.mp3 and /dev/null differ diff --git a/files/01_3004_meaning.mp3 b/files/01_3004_meaning.mp3 deleted file mode 100644 index 4d0153171..000000000 Binary files a/files/01_3004_meaning.mp3 and /dev/null differ diff --git a/files/01_3005.jpg b/files/01_3005.jpg deleted file mode 100644 index e048cb8a7..000000000 Binary files a/files/01_3005.jpg and /dev/null differ diff --git a/files/01_3005.mp3 b/files/01_3005.mp3 deleted file mode 100644 index 903126877..000000000 Binary files a/files/01_3005.mp3 and /dev/null differ diff --git a/files/01_3005_example.mp3 b/files/01_3005_example.mp3 deleted file mode 100644 index ff69ff0be..000000000 Binary files a/files/01_3005_example.mp3 and /dev/null differ diff --git a/files/01_3005_meaning.mp3 b/files/01_3005_meaning.mp3 deleted file mode 100644 index ca22fb880..000000000 Binary files a/files/01_3005_meaning.mp3 and /dev/null differ diff --git a/files/01_3006.jpg b/files/01_3006.jpg deleted file mode 100644 index 74e4cc1be..000000000 Binary files a/files/01_3006.jpg and /dev/null differ diff --git a/files/01_3006.mp3 b/files/01_3006.mp3 deleted file mode 100644 index 77cd7711a..000000000 Binary files a/files/01_3006.mp3 and /dev/null differ diff --git a/files/01_3006_example.mp3 b/files/01_3006_example.mp3 deleted file mode 100644 index a97b11435..000000000 Binary files a/files/01_3006_example.mp3 and /dev/null differ diff --git a/files/01_3006_meaning.mp3 b/files/01_3006_meaning.mp3 deleted file mode 100644 index 7d5cc57d3..000000000 Binary files a/files/01_3006_meaning.mp3 and /dev/null differ diff --git a/files/01_3007.jpg b/files/01_3007.jpg deleted file mode 100644 index 56f2391c7..000000000 Binary files a/files/01_3007.jpg and /dev/null differ diff --git a/files/01_3007.mp3 b/files/01_3007.mp3 deleted file mode 100644 index 331bcbdd6..000000000 Binary files a/files/01_3007.mp3 and /dev/null differ diff --git a/files/01_3007_example.mp3 b/files/01_3007_example.mp3 deleted file mode 100644 index 7dadcca4a..000000000 Binary files a/files/01_3007_example.mp3 and /dev/null differ diff --git a/files/01_3007_meaning.mp3 b/files/01_3007_meaning.mp3 deleted file mode 100644 index d6c323ee6..000000000 Binary files a/files/01_3007_meaning.mp3 and /dev/null differ diff --git a/files/01_3008.jpg b/files/01_3008.jpg deleted file mode 100644 index 66bfb59ea..000000000 Binary files a/files/01_3008.jpg and /dev/null differ diff --git a/files/01_3008.mp3 b/files/01_3008.mp3 deleted file mode 100644 index 4aacbfdfd..000000000 Binary files a/files/01_3008.mp3 and /dev/null differ diff --git a/files/01_3008_example.mp3 b/files/01_3008_example.mp3 deleted file mode 100644 index 763f2d4fc..000000000 Binary files a/files/01_3008_example.mp3 and /dev/null differ diff --git a/files/01_3008_meaning.mp3 b/files/01_3008_meaning.mp3 deleted file mode 100644 index 92903add8..000000000 Binary files a/files/01_3008_meaning.mp3 and /dev/null differ diff --git a/files/01_3009.jpg b/files/01_3009.jpg deleted file mode 100644 index f032244bd..000000000 Binary files a/files/01_3009.jpg and /dev/null differ diff --git a/files/01_3009.mp3 b/files/01_3009.mp3 deleted file mode 100644 index fe18fe0eb..000000000 Binary files a/files/01_3009.mp3 and /dev/null differ diff --git a/files/01_3009_example.mp3 b/files/01_3009_example.mp3 deleted file mode 100644 index e33e39353..000000000 Binary files a/files/01_3009_example.mp3 and /dev/null differ diff --git a/files/01_3009_meaning.mp3 b/files/01_3009_meaning.mp3 deleted file mode 100644 index 5da3f3f3a..000000000 Binary files a/files/01_3009_meaning.mp3 and /dev/null differ diff --git a/files/01_3010.jpg b/files/01_3010.jpg deleted file mode 100644 index 96e02255b..000000000 Binary files a/files/01_3010.jpg and /dev/null differ diff --git a/files/01_3010.mp3 b/files/01_3010.mp3 deleted file mode 100644 index 19e6e55ff..000000000 Binary files a/files/01_3010.mp3 and /dev/null differ diff --git a/files/01_3010_example.mp3 b/files/01_3010_example.mp3 deleted file mode 100644 index ceec82078..000000000 Binary files a/files/01_3010_example.mp3 and /dev/null differ diff --git a/files/01_3010_meaning.mp3 b/files/01_3010_meaning.mp3 deleted file mode 100644 index 5410322e3..000000000 Binary files a/files/01_3010_meaning.mp3 and /dev/null differ diff --git a/files/01_3011.jpg b/files/01_3011.jpg deleted file mode 100644 index a1b6da2d3..000000000 Binary files a/files/01_3011.jpg and /dev/null differ diff --git a/files/01_3011.mp3 b/files/01_3011.mp3 deleted file mode 100644 index c9e75f3a5..000000000 Binary files a/files/01_3011.mp3 and /dev/null differ diff --git a/files/01_3011_example.mp3 b/files/01_3011_example.mp3 deleted file mode 100644 index 08614ff16..000000000 Binary files a/files/01_3011_example.mp3 and /dev/null differ diff --git a/files/01_3011_meaning.mp3 b/files/01_3011_meaning.mp3 deleted file mode 100644 index 25cc18e68..000000000 Binary files a/files/01_3011_meaning.mp3 and /dev/null differ diff --git a/files/01_3012.jpg b/files/01_3012.jpg deleted file mode 100644 index c46952de4..000000000 Binary files a/files/01_3012.jpg and /dev/null differ diff --git a/files/01_3012.mp3 b/files/01_3012.mp3 deleted file mode 100644 index ab25ce86c..000000000 Binary files a/files/01_3012.mp3 and /dev/null differ diff --git a/files/01_3012_example.mp3 b/files/01_3012_example.mp3 deleted file mode 100644 index ac485e01b..000000000 Binary files a/files/01_3012_example.mp3 and /dev/null differ diff --git a/files/01_3012_meaning.mp3 b/files/01_3012_meaning.mp3 deleted file mode 100644 index b1d1722d0..000000000 Binary files a/files/01_3012_meaning.mp3 and /dev/null differ diff --git a/files/01_3013.jpg b/files/01_3013.jpg deleted file mode 100644 index 8865d93d0..000000000 Binary files a/files/01_3013.jpg and /dev/null differ diff --git a/files/01_3013.mp3 b/files/01_3013.mp3 deleted file mode 100644 index 98148006b..000000000 Binary files a/files/01_3013.mp3 and /dev/null differ diff --git a/files/01_3013_example.mp3 b/files/01_3013_example.mp3 deleted file mode 100644 index 2026e45e8..000000000 Binary files a/files/01_3013_example.mp3 and /dev/null differ diff --git a/files/01_3013_meaning.mp3 b/files/01_3013_meaning.mp3 deleted file mode 100644 index ecaa57c47..000000000 Binary files a/files/01_3013_meaning.mp3 and /dev/null differ diff --git a/files/01_3014.jpg b/files/01_3014.jpg deleted file mode 100644 index 598196630..000000000 Binary files a/files/01_3014.jpg and /dev/null differ diff --git a/files/01_3014.mp3 b/files/01_3014.mp3 deleted file mode 100644 index ae4dd5a30..000000000 Binary files a/files/01_3014.mp3 and /dev/null differ diff --git a/files/01_3014_example.mp3 b/files/01_3014_example.mp3 deleted file mode 100644 index 94039f019..000000000 Binary files a/files/01_3014_example.mp3 and /dev/null differ diff --git a/files/01_3014_meaning.mp3 b/files/01_3014_meaning.mp3 deleted file mode 100644 index 9a9c3dd68..000000000 Binary files a/files/01_3014_meaning.mp3 and /dev/null differ diff --git a/files/01_3015.jpg b/files/01_3015.jpg deleted file mode 100644 index f4403a29f..000000000 Binary files a/files/01_3015.jpg and /dev/null differ diff --git a/files/01_3015.mp3 b/files/01_3015.mp3 deleted file mode 100644 index 2767d1933..000000000 Binary files a/files/01_3015.mp3 and /dev/null differ diff --git a/files/01_3015_example.mp3 b/files/01_3015_example.mp3 deleted file mode 100644 index 3e5a1dd0f..000000000 Binary files a/files/01_3015_example.mp3 and /dev/null differ diff --git a/files/01_3015_meaning.mp3 b/files/01_3015_meaning.mp3 deleted file mode 100644 index b45d00545..000000000 Binary files a/files/01_3015_meaning.mp3 and /dev/null differ diff --git a/files/01_3016.jpg b/files/01_3016.jpg deleted file mode 100644 index 11f9dc7f9..000000000 Binary files a/files/01_3016.jpg and /dev/null differ diff --git a/files/01_3016.mp3 b/files/01_3016.mp3 deleted file mode 100644 index b4a7db12e..000000000 Binary files a/files/01_3016.mp3 and /dev/null differ diff --git a/files/01_3016_example.mp3 b/files/01_3016_example.mp3 deleted file mode 100644 index 4b9f2d552..000000000 Binary files a/files/01_3016_example.mp3 and /dev/null differ diff --git a/files/01_3016_meaning.mp3 b/files/01_3016_meaning.mp3 deleted file mode 100644 index 6f1648558..000000000 Binary files a/files/01_3016_meaning.mp3 and /dev/null differ diff --git a/files/01_3017.jpg b/files/01_3017.jpg deleted file mode 100644 index 28e6168e8..000000000 Binary files a/files/01_3017.jpg and /dev/null differ diff --git a/files/01_3017.mp3 b/files/01_3017.mp3 deleted file mode 100644 index 9dd51f8c5..000000000 Binary files a/files/01_3017.mp3 and /dev/null differ diff --git a/files/01_3017_example.mp3 b/files/01_3017_example.mp3 deleted file mode 100644 index c519474df..000000000 Binary files a/files/01_3017_example.mp3 and /dev/null differ diff --git a/files/01_3017_meaning.mp3 b/files/01_3017_meaning.mp3 deleted file mode 100644 index 872db6ada..000000000 Binary files a/files/01_3017_meaning.mp3 and /dev/null differ diff --git a/files/01_3018.jpg b/files/01_3018.jpg deleted file mode 100644 index c690c0d68..000000000 Binary files a/files/01_3018.jpg and /dev/null differ diff --git a/files/01_3018.mp3 b/files/01_3018.mp3 deleted file mode 100644 index 219178b79..000000000 Binary files a/files/01_3018.mp3 and /dev/null differ diff --git a/files/01_3018_example.mp3 b/files/01_3018_example.mp3 deleted file mode 100644 index 692a7d428..000000000 Binary files a/files/01_3018_example.mp3 and /dev/null differ diff --git a/files/01_3018_meaning.mp3 b/files/01_3018_meaning.mp3 deleted file mode 100644 index 90a5ee6ef..000000000 Binary files a/files/01_3018_meaning.mp3 and /dev/null differ diff --git a/files/01_3019.jpg b/files/01_3019.jpg deleted file mode 100644 index 8e5a5dad8..000000000 Binary files a/files/01_3019.jpg and /dev/null differ diff --git a/files/01_3019.mp3 b/files/01_3019.mp3 deleted file mode 100644 index 298777420..000000000 Binary files a/files/01_3019.mp3 and /dev/null differ diff --git a/files/01_3019_example.mp3 b/files/01_3019_example.mp3 deleted file mode 100644 index 882cc9cbe..000000000 Binary files a/files/01_3019_example.mp3 and /dev/null differ diff --git a/files/01_3019_meaning.mp3 b/files/01_3019_meaning.mp3 deleted file mode 100644 index 2f47b733f..000000000 Binary files a/files/01_3019_meaning.mp3 and /dev/null differ diff --git a/files/01_3020.jpg b/files/01_3020.jpg deleted file mode 100644 index 6136365a4..000000000 Binary files a/files/01_3020.jpg and /dev/null differ diff --git a/files/01_3020.mp3 b/files/01_3020.mp3 deleted file mode 100644 index 5ee118aa6..000000000 Binary files a/files/01_3020.mp3 and /dev/null differ diff --git a/files/01_3020_example.mp3 b/files/01_3020_example.mp3 deleted file mode 100644 index 0cace1414..000000000 Binary files a/files/01_3020_example.mp3 and /dev/null differ diff --git a/files/01_3020_meaning.mp3 b/files/01_3020_meaning.mp3 deleted file mode 100644 index 5040b1b81..000000000 Binary files a/files/01_3020_meaning.mp3 and /dev/null differ diff --git a/files/02_0021.jpg b/files/02_0021.jpg deleted file mode 100644 index c4e4017e8..000000000 Binary files a/files/02_0021.jpg and /dev/null differ diff --git a/files/02_0021.mp3 b/files/02_0021.mp3 deleted file mode 100644 index 25e711642..000000000 Binary files a/files/02_0021.mp3 and /dev/null differ diff --git a/files/02_0021_example.mp3 b/files/02_0021_example.mp3 deleted file mode 100644 index a2e139ff0..000000000 Binary files a/files/02_0021_example.mp3 and /dev/null differ diff --git a/files/02_0021_meaning.mp3 b/files/02_0021_meaning.mp3 deleted file mode 100644 index b59da1ed5..000000000 Binary files a/files/02_0021_meaning.mp3 and /dev/null differ diff --git a/files/02_0022.jpg b/files/02_0022.jpg deleted file mode 100644 index b1dcc909b..000000000 Binary files a/files/02_0022.jpg and /dev/null differ diff --git a/files/02_0022.mp3 b/files/02_0022.mp3 deleted file mode 100644 index 6b8a898cd..000000000 Binary files a/files/02_0022.mp3 and /dev/null differ diff --git a/files/02_0022_example.mp3 b/files/02_0022_example.mp3 deleted file mode 100644 index 56a385c80..000000000 Binary files a/files/02_0022_example.mp3 and /dev/null differ diff --git a/files/02_0022_meaning.mp3 b/files/02_0022_meaning.mp3 deleted file mode 100644 index 9d34f9c3c..000000000 Binary files a/files/02_0022_meaning.mp3 and /dev/null differ diff --git a/files/02_0023.jpg b/files/02_0023.jpg deleted file mode 100644 index 87560d312..000000000 Binary files a/files/02_0023.jpg and /dev/null differ diff --git a/files/02_0023.mp3 b/files/02_0023.mp3 deleted file mode 100644 index 5083c2e81..000000000 Binary files a/files/02_0023.mp3 and /dev/null differ diff --git a/files/02_0023_example.mp3 b/files/02_0023_example.mp3 deleted file mode 100644 index 4d3c32f91..000000000 Binary files a/files/02_0023_example.mp3 and /dev/null differ diff --git a/files/02_0023_meaning.mp3 b/files/02_0023_meaning.mp3 deleted file mode 100644 index 225066504..000000000 Binary files a/files/02_0023_meaning.mp3 and /dev/null differ diff --git a/files/02_0024.jpg b/files/02_0024.jpg deleted file mode 100644 index ff4ab8cf1..000000000 Binary files a/files/02_0024.jpg and /dev/null differ diff --git a/files/02_0024.mp3 b/files/02_0024.mp3 deleted file mode 100644 index b6b03e23f..000000000 Binary files a/files/02_0024.mp3 and /dev/null differ diff --git a/files/02_0024_example.mp3 b/files/02_0024_example.mp3 deleted file mode 100644 index a42e705a7..000000000 Binary files a/files/02_0024_example.mp3 and /dev/null differ diff --git a/files/02_0024_meaning.mp3 b/files/02_0024_meaning.mp3 deleted file mode 100644 index fc2efb32a..000000000 Binary files a/files/02_0024_meaning.mp3 and /dev/null differ diff --git a/files/02_0025.jpg b/files/02_0025.jpg deleted file mode 100644 index edc85c44c..000000000 Binary files a/files/02_0025.jpg and /dev/null differ diff --git a/files/02_0025.mp3 b/files/02_0025.mp3 deleted file mode 100644 index 1df96a6e8..000000000 Binary files a/files/02_0025.mp3 and /dev/null differ diff --git a/files/02_0025_example.mp3 b/files/02_0025_example.mp3 deleted file mode 100644 index 9421136f5..000000000 Binary files a/files/02_0025_example.mp3 and /dev/null differ diff --git a/files/02_0025_meaning.mp3 b/files/02_0025_meaning.mp3 deleted file mode 100644 index e45e5c0c5..000000000 Binary files a/files/02_0025_meaning.mp3 and /dev/null differ diff --git a/files/02_0026.jpg b/files/02_0026.jpg deleted file mode 100644 index 05f4491a3..000000000 Binary files a/files/02_0026.jpg and /dev/null differ diff --git a/files/02_0026.mp3 b/files/02_0026.mp3 deleted file mode 100644 index ac3cbe607..000000000 Binary files a/files/02_0026.mp3 and /dev/null differ diff --git a/files/02_0026_example.mp3 b/files/02_0026_example.mp3 deleted file mode 100644 index 84099fca6..000000000 Binary files a/files/02_0026_example.mp3 and /dev/null differ diff --git a/files/02_0026_meaning.mp3 b/files/02_0026_meaning.mp3 deleted file mode 100644 index 4b4f2734d..000000000 Binary files a/files/02_0026_meaning.mp3 and /dev/null differ diff --git a/files/02_0027.jpg b/files/02_0027.jpg deleted file mode 100644 index f15888eeb..000000000 Binary files a/files/02_0027.jpg and /dev/null differ diff --git a/files/02_0027.mp3 b/files/02_0027.mp3 deleted file mode 100644 index fd238103e..000000000 Binary files a/files/02_0027.mp3 and /dev/null differ diff --git a/files/02_0027_example.mp3 b/files/02_0027_example.mp3 deleted file mode 100644 index c1a05e8d6..000000000 Binary files a/files/02_0027_example.mp3 and /dev/null differ diff --git a/files/02_0027_meaning.mp3 b/files/02_0027_meaning.mp3 deleted file mode 100644 index 9964af9f9..000000000 Binary files a/files/02_0027_meaning.mp3 and /dev/null differ diff --git a/files/02_0028.jpg b/files/02_0028.jpg deleted file mode 100644 index 8981739d0..000000000 Binary files a/files/02_0028.jpg and /dev/null differ diff --git a/files/02_0028.mp3 b/files/02_0028.mp3 deleted file mode 100644 index 1801493af..000000000 Binary files a/files/02_0028.mp3 and /dev/null differ diff --git a/files/02_0028_example.mp3 b/files/02_0028_example.mp3 deleted file mode 100644 index a0818bcdc..000000000 Binary files a/files/02_0028_example.mp3 and /dev/null differ diff --git a/files/02_0028_meaning.mp3 b/files/02_0028_meaning.mp3 deleted file mode 100644 index 56bfec604..000000000 Binary files a/files/02_0028_meaning.mp3 and /dev/null differ diff --git a/files/02_0029.jpg b/files/02_0029.jpg deleted file mode 100644 index 19123f54c..000000000 Binary files a/files/02_0029.jpg and /dev/null differ diff --git a/files/02_0029.mp3 b/files/02_0029.mp3 deleted file mode 100644 index 6f6b10b22..000000000 Binary files a/files/02_0029.mp3 and /dev/null differ diff --git a/files/02_0029_example.mp3 b/files/02_0029_example.mp3 deleted file mode 100644 index 712acd97c..000000000 Binary files a/files/02_0029_example.mp3 and /dev/null differ diff --git a/files/02_0029_meaning.mp3 b/files/02_0029_meaning.mp3 deleted file mode 100644 index b4bbc305a..000000000 Binary files a/files/02_0029_meaning.mp3 and /dev/null differ diff --git a/files/02_0030.jpg b/files/02_0030.jpg deleted file mode 100644 index 68a04647a..000000000 Binary files a/files/02_0030.jpg and /dev/null differ diff --git a/files/02_0030.mp3 b/files/02_0030.mp3 deleted file mode 100644 index e27138b1d..000000000 Binary files a/files/02_0030.mp3 and /dev/null differ diff --git a/files/02_0030_example.mp3 b/files/02_0030_example.mp3 deleted file mode 100644 index b5ab833d4..000000000 Binary files a/files/02_0030_example.mp3 and /dev/null differ diff --git a/files/02_0030_meaning.mp3 b/files/02_0030_meaning.mp3 deleted file mode 100644 index 53f663d66..000000000 Binary files a/files/02_0030_meaning.mp3 and /dev/null differ diff --git a/files/02_0031.jpg b/files/02_0031.jpg deleted file mode 100644 index e498418ea..000000000 Binary files a/files/02_0031.jpg and /dev/null differ diff --git a/files/02_0031.mp3 b/files/02_0031.mp3 deleted file mode 100644 index 19a60db6b..000000000 Binary files a/files/02_0031.mp3 and /dev/null differ diff --git a/files/02_0031_example.mp3 b/files/02_0031_example.mp3 deleted file mode 100644 index 623977ad5..000000000 Binary files a/files/02_0031_example.mp3 and /dev/null differ diff --git a/files/02_0031_meaning.mp3 b/files/02_0031_meaning.mp3 deleted file mode 100644 index d024af45f..000000000 Binary files a/files/02_0031_meaning.mp3 and /dev/null differ diff --git a/files/02_0032.jpg b/files/02_0032.jpg deleted file mode 100644 index 3abea226b..000000000 Binary files a/files/02_0032.jpg and /dev/null differ diff --git a/files/02_0032.mp3 b/files/02_0032.mp3 deleted file mode 100644 index 0e3b29b06..000000000 Binary files a/files/02_0032.mp3 and /dev/null differ diff --git a/files/02_0032_example.mp3 b/files/02_0032_example.mp3 deleted file mode 100644 index 28eb4330a..000000000 Binary files a/files/02_0032_example.mp3 and /dev/null differ diff --git a/files/02_0032_meaning.mp3 b/files/02_0032_meaning.mp3 deleted file mode 100644 index 0c26d6ab5..000000000 Binary files a/files/02_0032_meaning.mp3 and /dev/null differ diff --git a/files/02_0033.jpg b/files/02_0033.jpg deleted file mode 100644 index 4ca279ccc..000000000 Binary files a/files/02_0033.jpg and /dev/null differ diff --git a/files/02_0033.mp3 b/files/02_0033.mp3 deleted file mode 100644 index 656ad6760..000000000 Binary files a/files/02_0033.mp3 and /dev/null differ diff --git a/files/02_0033_example.mp3 b/files/02_0033_example.mp3 deleted file mode 100644 index aea8e6b04..000000000 Binary files a/files/02_0033_example.mp3 and /dev/null differ diff --git a/files/02_0033_meaning.mp3 b/files/02_0033_meaning.mp3 deleted file mode 100644 index 62e0d9cc0..000000000 Binary files a/files/02_0033_meaning.mp3 and /dev/null differ diff --git a/files/02_0034.jpg b/files/02_0034.jpg deleted file mode 100644 index e825e2f1d..000000000 Binary files a/files/02_0034.jpg and /dev/null differ diff --git a/files/02_0034.mp3 b/files/02_0034.mp3 deleted file mode 100644 index e80166405..000000000 Binary files a/files/02_0034.mp3 and /dev/null differ diff --git a/files/02_0034_example.mp3 b/files/02_0034_example.mp3 deleted file mode 100644 index ebfd32097..000000000 Binary files a/files/02_0034_example.mp3 and /dev/null differ diff --git a/files/02_0034_meaning.mp3 b/files/02_0034_meaning.mp3 deleted file mode 100644 index c25ba0475..000000000 Binary files a/files/02_0034_meaning.mp3 and /dev/null differ diff --git a/files/02_0035.jpg b/files/02_0035.jpg deleted file mode 100644 index 4fc8487d1..000000000 Binary files a/files/02_0035.jpg and /dev/null differ diff --git a/files/02_0035.mp3 b/files/02_0035.mp3 deleted file mode 100644 index 60fc43e3a..000000000 Binary files a/files/02_0035.mp3 and /dev/null differ diff --git a/files/02_0035_example.mp3 b/files/02_0035_example.mp3 deleted file mode 100644 index d7257a405..000000000 Binary files a/files/02_0035_example.mp3 and /dev/null differ diff --git a/files/02_0035_meaning.mp3 b/files/02_0035_meaning.mp3 deleted file mode 100644 index d253b43bd..000000000 Binary files a/files/02_0035_meaning.mp3 and /dev/null differ diff --git a/files/02_0036.jpg b/files/02_0036.jpg deleted file mode 100644 index 77b7bb45a..000000000 Binary files a/files/02_0036.jpg and /dev/null differ diff --git a/files/02_0036.mp3 b/files/02_0036.mp3 deleted file mode 100644 index e16005351..000000000 Binary files a/files/02_0036.mp3 and /dev/null differ diff --git a/files/02_0036_example.mp3 b/files/02_0036_example.mp3 deleted file mode 100644 index 589bbfbcd..000000000 Binary files a/files/02_0036_example.mp3 and /dev/null differ diff --git a/files/02_0036_meaning.mp3 b/files/02_0036_meaning.mp3 deleted file mode 100644 index 7673a8372..000000000 Binary files a/files/02_0036_meaning.mp3 and /dev/null differ diff --git a/files/02_0037.jpg b/files/02_0037.jpg deleted file mode 100644 index 32f1ef039..000000000 Binary files a/files/02_0037.jpg and /dev/null differ diff --git a/files/02_0037.mp3 b/files/02_0037.mp3 deleted file mode 100644 index 7992ae1ca..000000000 Binary files a/files/02_0037.mp3 and /dev/null differ diff --git a/files/02_0037_example.mp3 b/files/02_0037_example.mp3 deleted file mode 100644 index ef9463efa..000000000 Binary files a/files/02_0037_example.mp3 and /dev/null differ diff --git a/files/02_0037_meaning.mp3 b/files/02_0037_meaning.mp3 deleted file mode 100644 index 0a5d4b1ce..000000000 Binary files a/files/02_0037_meaning.mp3 and /dev/null differ diff --git a/files/02_0038.jpg b/files/02_0038.jpg deleted file mode 100644 index 88fa8fe42..000000000 Binary files a/files/02_0038.jpg and /dev/null differ diff --git a/files/02_0038.mp3 b/files/02_0038.mp3 deleted file mode 100644 index dec8b1a00..000000000 Binary files a/files/02_0038.mp3 and /dev/null differ diff --git a/files/02_0038_example.mp3 b/files/02_0038_example.mp3 deleted file mode 100644 index b132ec497..000000000 Binary files a/files/02_0038_example.mp3 and /dev/null differ diff --git a/files/02_0038_meaning.mp3 b/files/02_0038_meaning.mp3 deleted file mode 100644 index 4db480366..000000000 Binary files a/files/02_0038_meaning.mp3 and /dev/null differ diff --git a/files/02_0039.jpg b/files/02_0039.jpg deleted file mode 100644 index 94efab9c2..000000000 Binary files a/files/02_0039.jpg and /dev/null differ diff --git a/files/02_0039.mp3 b/files/02_0039.mp3 deleted file mode 100644 index 39797ae02..000000000 Binary files a/files/02_0039.mp3 and /dev/null differ diff --git a/files/02_0039_example.mp3 b/files/02_0039_example.mp3 deleted file mode 100644 index dd0d87d0c..000000000 Binary files a/files/02_0039_example.mp3 and /dev/null differ diff --git a/files/02_0039_meaning.mp3 b/files/02_0039_meaning.mp3 deleted file mode 100644 index 66b38f614..000000000 Binary files a/files/02_0039_meaning.mp3 and /dev/null differ diff --git a/files/02_0040.jpg b/files/02_0040.jpg deleted file mode 100644 index d00dbb266..000000000 Binary files a/files/02_0040.jpg and /dev/null differ diff --git a/files/02_0040.mp3 b/files/02_0040.mp3 deleted file mode 100644 index cfcfed048..000000000 Binary files a/files/02_0040.mp3 and /dev/null differ diff --git a/files/02_0040_example.mp3 b/files/02_0040_example.mp3 deleted file mode 100644 index 851750577..000000000 Binary files a/files/02_0040_example.mp3 and /dev/null differ diff --git a/files/02_0040_meaning.mp3 b/files/02_0040_meaning.mp3 deleted file mode 100644 index 4a4973987..000000000 Binary files a/files/02_0040_meaning.mp3 and /dev/null differ diff --git a/files/02_0621.jpg b/files/02_0621.jpg deleted file mode 100644 index 22e973eb3..000000000 Binary files a/files/02_0621.jpg and /dev/null differ diff --git a/files/02_0621.mp3 b/files/02_0621.mp3 deleted file mode 100644 index bf21b2df0..000000000 Binary files a/files/02_0621.mp3 and /dev/null differ diff --git a/files/02_0621_example.mp3 b/files/02_0621_example.mp3 deleted file mode 100644 index 2b7adc06e..000000000 Binary files a/files/02_0621_example.mp3 and /dev/null differ diff --git a/files/02_0621_meaning.mp3 b/files/02_0621_meaning.mp3 deleted file mode 100644 index b4d2c3b51..000000000 Binary files a/files/02_0621_meaning.mp3 and /dev/null differ diff --git a/files/02_0622.jpg b/files/02_0622.jpg deleted file mode 100644 index 430afc2b8..000000000 Binary files a/files/02_0622.jpg and /dev/null differ diff --git a/files/02_0622.mp3 b/files/02_0622.mp3 deleted file mode 100644 index 4c3d25113..000000000 Binary files a/files/02_0622.mp3 and /dev/null differ diff --git a/files/02_0622_example.mp3 b/files/02_0622_example.mp3 deleted file mode 100644 index efc6bdd52..000000000 Binary files a/files/02_0622_example.mp3 and /dev/null differ diff --git a/files/02_0622_meaning.mp3 b/files/02_0622_meaning.mp3 deleted file mode 100644 index 60295cc69..000000000 Binary files a/files/02_0622_meaning.mp3 and /dev/null differ diff --git a/files/02_0623.jpg b/files/02_0623.jpg deleted file mode 100644 index d71693db6..000000000 Binary files a/files/02_0623.jpg and /dev/null differ diff --git a/files/02_0623.mp3 b/files/02_0623.mp3 deleted file mode 100644 index c148726aa..000000000 Binary files a/files/02_0623.mp3 and /dev/null differ diff --git a/files/02_0623_example.mp3 b/files/02_0623_example.mp3 deleted file mode 100644 index 78080b4e7..000000000 Binary files a/files/02_0623_example.mp3 and /dev/null differ diff --git a/files/02_0623_meaning.mp3 b/files/02_0623_meaning.mp3 deleted file mode 100644 index 7b247bfc3..000000000 Binary files a/files/02_0623_meaning.mp3 and /dev/null differ diff --git a/files/02_0624.jpg b/files/02_0624.jpg deleted file mode 100644 index b10153695..000000000 Binary files a/files/02_0624.jpg and /dev/null differ diff --git a/files/02_0624.mp3 b/files/02_0624.mp3 deleted file mode 100644 index 0f9e7e6d7..000000000 Binary files a/files/02_0624.mp3 and /dev/null differ diff --git a/files/02_0624_example.mp3 b/files/02_0624_example.mp3 deleted file mode 100644 index 2b67affff..000000000 Binary files a/files/02_0624_example.mp3 and /dev/null differ diff --git a/files/02_0624_meaning.mp3 b/files/02_0624_meaning.mp3 deleted file mode 100644 index 4769cea98..000000000 Binary files a/files/02_0624_meaning.mp3 and /dev/null differ diff --git a/files/02_0625.jpg b/files/02_0625.jpg deleted file mode 100644 index 963e07aea..000000000 Binary files a/files/02_0625.jpg and /dev/null differ diff --git a/files/02_0625.mp3 b/files/02_0625.mp3 deleted file mode 100644 index 8da0492ac..000000000 Binary files a/files/02_0625.mp3 and /dev/null differ diff --git a/files/02_0625_example.mp3 b/files/02_0625_example.mp3 deleted file mode 100644 index 470279432..000000000 Binary files a/files/02_0625_example.mp3 and /dev/null differ diff --git a/files/02_0625_meaning.mp3 b/files/02_0625_meaning.mp3 deleted file mode 100644 index 2abc0be96..000000000 Binary files a/files/02_0625_meaning.mp3 and /dev/null differ diff --git a/files/02_0626.jpg b/files/02_0626.jpg deleted file mode 100644 index e1b0ca1dd..000000000 Binary files a/files/02_0626.jpg and /dev/null differ diff --git a/files/02_0626.mp3 b/files/02_0626.mp3 deleted file mode 100644 index 27c8ff1c2..000000000 Binary files a/files/02_0626.mp3 and /dev/null differ diff --git a/files/02_0626_example.mp3 b/files/02_0626_example.mp3 deleted file mode 100644 index 468cba329..000000000 Binary files a/files/02_0626_example.mp3 and /dev/null differ diff --git a/files/02_0626_meaning.mp3 b/files/02_0626_meaning.mp3 deleted file mode 100644 index 9a203a9e7..000000000 Binary files a/files/02_0626_meaning.mp3 and /dev/null differ diff --git a/files/02_0627.jpg b/files/02_0627.jpg deleted file mode 100644 index 7a0a3db52..000000000 Binary files a/files/02_0627.jpg and /dev/null differ diff --git a/files/02_0627.mp3 b/files/02_0627.mp3 deleted file mode 100644 index f611cbfe0..000000000 Binary files a/files/02_0627.mp3 and /dev/null differ diff --git a/files/02_0627_example.mp3 b/files/02_0627_example.mp3 deleted file mode 100644 index ca14bc167..000000000 Binary files a/files/02_0627_example.mp3 and /dev/null differ diff --git a/files/02_0627_meaning.mp3 b/files/02_0627_meaning.mp3 deleted file mode 100644 index ea90a02ec..000000000 Binary files a/files/02_0627_meaning.mp3 and /dev/null differ diff --git a/files/02_0628.jpg b/files/02_0628.jpg deleted file mode 100644 index 485b91894..000000000 Binary files a/files/02_0628.jpg and /dev/null differ diff --git a/files/02_0628.mp3 b/files/02_0628.mp3 deleted file mode 100644 index a9db9354e..000000000 Binary files a/files/02_0628.mp3 and /dev/null differ diff --git a/files/02_0628_example.mp3 b/files/02_0628_example.mp3 deleted file mode 100644 index 87e725e86..000000000 Binary files a/files/02_0628_example.mp3 and /dev/null differ diff --git a/files/02_0628_meaning.mp3 b/files/02_0628_meaning.mp3 deleted file mode 100644 index 82c20ee1b..000000000 Binary files a/files/02_0628_meaning.mp3 and /dev/null differ diff --git a/files/02_0629.jpg b/files/02_0629.jpg deleted file mode 100644 index 574fd0686..000000000 Binary files a/files/02_0629.jpg and /dev/null differ diff --git a/files/02_0629.mp3 b/files/02_0629.mp3 deleted file mode 100644 index f20a38748..000000000 Binary files a/files/02_0629.mp3 and /dev/null differ diff --git a/files/02_0629_example.mp3 b/files/02_0629_example.mp3 deleted file mode 100644 index 2f484abb8..000000000 Binary files a/files/02_0629_example.mp3 and /dev/null differ diff --git a/files/02_0629_meaning.mp3 b/files/02_0629_meaning.mp3 deleted file mode 100644 index 51fad9018..000000000 Binary files a/files/02_0629_meaning.mp3 and /dev/null differ diff --git a/files/02_0630.jpg b/files/02_0630.jpg deleted file mode 100644 index 84f41986c..000000000 Binary files a/files/02_0630.jpg and /dev/null differ diff --git a/files/02_0630.mp3 b/files/02_0630.mp3 deleted file mode 100644 index 6b4ac2643..000000000 Binary files a/files/02_0630.mp3 and /dev/null differ diff --git a/files/02_0630_example.mp3 b/files/02_0630_example.mp3 deleted file mode 100644 index d104a2b3c..000000000 Binary files a/files/02_0630_example.mp3 and /dev/null differ diff --git a/files/02_0630_meaning.mp3 b/files/02_0630_meaning.mp3 deleted file mode 100644 index 7cde5f681..000000000 Binary files a/files/02_0630_meaning.mp3 and /dev/null differ diff --git a/files/02_0631.jpg b/files/02_0631.jpg deleted file mode 100644 index 56c48f91b..000000000 Binary files a/files/02_0631.jpg and /dev/null differ diff --git a/files/02_0631.mp3 b/files/02_0631.mp3 deleted file mode 100644 index e38a62ab4..000000000 Binary files a/files/02_0631.mp3 and /dev/null differ diff --git a/files/02_0631_example.mp3 b/files/02_0631_example.mp3 deleted file mode 100644 index 4ad04653b..000000000 Binary files a/files/02_0631_example.mp3 and /dev/null differ diff --git a/files/02_0631_meaning.mp3 b/files/02_0631_meaning.mp3 deleted file mode 100644 index 0adbcab9d..000000000 Binary files a/files/02_0631_meaning.mp3 and /dev/null differ diff --git a/files/02_0632.jpg b/files/02_0632.jpg deleted file mode 100644 index de8676634..000000000 Binary files a/files/02_0632.jpg and /dev/null differ diff --git a/files/02_0632.mp3 b/files/02_0632.mp3 deleted file mode 100644 index 15a8e50af..000000000 Binary files a/files/02_0632.mp3 and /dev/null differ diff --git a/files/02_0632_example.mp3 b/files/02_0632_example.mp3 deleted file mode 100644 index ee59d6c54..000000000 Binary files a/files/02_0632_example.mp3 and /dev/null differ diff --git a/files/02_0632_meaning.mp3 b/files/02_0632_meaning.mp3 deleted file mode 100644 index 85c38af24..000000000 Binary files a/files/02_0632_meaning.mp3 and /dev/null differ diff --git a/files/02_0633.jpg b/files/02_0633.jpg deleted file mode 100644 index 2edfd4ecb..000000000 Binary files a/files/02_0633.jpg and /dev/null differ diff --git a/files/02_0633.mp3 b/files/02_0633.mp3 deleted file mode 100644 index 23fdf8408..000000000 Binary files a/files/02_0633.mp3 and /dev/null differ diff --git a/files/02_0633_example.mp3 b/files/02_0633_example.mp3 deleted file mode 100644 index 5fc699fa6..000000000 Binary files a/files/02_0633_example.mp3 and /dev/null differ diff --git a/files/02_0633_meaning.mp3 b/files/02_0633_meaning.mp3 deleted file mode 100644 index 915c1b06d..000000000 Binary files a/files/02_0633_meaning.mp3 and /dev/null differ diff --git a/files/02_0634.jpg b/files/02_0634.jpg deleted file mode 100644 index 7ed6a9d77..000000000 Binary files a/files/02_0634.jpg and /dev/null differ diff --git a/files/02_0634.mp3 b/files/02_0634.mp3 deleted file mode 100644 index 3d44bae07..000000000 Binary files a/files/02_0634.mp3 and /dev/null differ diff --git a/files/02_0634_example.mp3 b/files/02_0634_example.mp3 deleted file mode 100644 index 6e559b9fe..000000000 Binary files a/files/02_0634_example.mp3 and /dev/null differ diff --git a/files/02_0634_meaning.mp3 b/files/02_0634_meaning.mp3 deleted file mode 100644 index b8d5f6916..000000000 Binary files a/files/02_0634_meaning.mp3 and /dev/null differ diff --git a/files/02_0635.jpg b/files/02_0635.jpg deleted file mode 100644 index b8be61380..000000000 Binary files a/files/02_0635.jpg and /dev/null differ diff --git a/files/02_0635.mp3 b/files/02_0635.mp3 deleted file mode 100644 index 432072634..000000000 Binary files a/files/02_0635.mp3 and /dev/null differ diff --git a/files/02_0635_example.mp3 b/files/02_0635_example.mp3 deleted file mode 100644 index 1c88d60c1..000000000 Binary files a/files/02_0635_example.mp3 and /dev/null differ diff --git a/files/02_0635_meaning.mp3 b/files/02_0635_meaning.mp3 deleted file mode 100644 index 2a181096b..000000000 Binary files a/files/02_0635_meaning.mp3 and /dev/null differ diff --git a/files/02_0636.jpg b/files/02_0636.jpg deleted file mode 100644 index ceef2cf7f..000000000 Binary files a/files/02_0636.jpg and /dev/null differ diff --git a/files/02_0636.mp3 b/files/02_0636.mp3 deleted file mode 100644 index 9ca2422ca..000000000 Binary files a/files/02_0636.mp3 and /dev/null differ diff --git a/files/02_0636_example.mp3 b/files/02_0636_example.mp3 deleted file mode 100644 index 0a17919a8..000000000 Binary files a/files/02_0636_example.mp3 and /dev/null differ diff --git a/files/02_0636_meaning.mp3 b/files/02_0636_meaning.mp3 deleted file mode 100644 index 3e48a029d..000000000 Binary files a/files/02_0636_meaning.mp3 and /dev/null differ diff --git a/files/02_0637.jpg b/files/02_0637.jpg deleted file mode 100644 index 1c3ef747d..000000000 Binary files a/files/02_0637.jpg and /dev/null differ diff --git a/files/02_0637.mp3 b/files/02_0637.mp3 deleted file mode 100644 index d34fd8572..000000000 Binary files a/files/02_0637.mp3 and /dev/null differ diff --git a/files/02_0637_example.mp3 b/files/02_0637_example.mp3 deleted file mode 100644 index e91555d96..000000000 Binary files a/files/02_0637_example.mp3 and /dev/null differ diff --git a/files/02_0637_meaning.mp3 b/files/02_0637_meaning.mp3 deleted file mode 100644 index 1b8c58543..000000000 Binary files a/files/02_0637_meaning.mp3 and /dev/null differ diff --git a/files/02_0638.jpg b/files/02_0638.jpg deleted file mode 100644 index d8979fd90..000000000 Binary files a/files/02_0638.jpg and /dev/null differ diff --git a/files/02_0638.mp3 b/files/02_0638.mp3 deleted file mode 100644 index e6356df82..000000000 Binary files a/files/02_0638.mp3 and /dev/null differ diff --git a/files/02_0638_example.mp3 b/files/02_0638_example.mp3 deleted file mode 100644 index 9c7ef4974..000000000 Binary files a/files/02_0638_example.mp3 and /dev/null differ diff --git a/files/02_0638_meaning.mp3 b/files/02_0638_meaning.mp3 deleted file mode 100644 index 5bcc06efc..000000000 Binary files a/files/02_0638_meaning.mp3 and /dev/null differ diff --git a/files/02_0639.jpg b/files/02_0639.jpg deleted file mode 100644 index 85eb7bed4..000000000 Binary files a/files/02_0639.jpg and /dev/null differ diff --git a/files/02_0639.mp3 b/files/02_0639.mp3 deleted file mode 100644 index 2956abf9d..000000000 Binary files a/files/02_0639.mp3 and /dev/null differ diff --git a/files/02_0639_example.mp3 b/files/02_0639_example.mp3 deleted file mode 100644 index af7087629..000000000 Binary files a/files/02_0639_example.mp3 and /dev/null differ diff --git a/files/02_0639_meaning.mp3 b/files/02_0639_meaning.mp3 deleted file mode 100644 index 508dfa009..000000000 Binary files a/files/02_0639_meaning.mp3 and /dev/null differ diff --git a/files/02_0640.jpg b/files/02_0640.jpg deleted file mode 100644 index 392e158f6..000000000 Binary files a/files/02_0640.jpg and /dev/null differ diff --git a/files/02_0640.mp3 b/files/02_0640.mp3 deleted file mode 100644 index b9f84b52c..000000000 Binary files a/files/02_0640.mp3 and /dev/null differ diff --git a/files/02_0640_example.mp3 b/files/02_0640_example.mp3 deleted file mode 100644 index 6acc335a6..000000000 Binary files a/files/02_0640_example.mp3 and /dev/null differ diff --git a/files/02_0640_meaning.mp3 b/files/02_0640_meaning.mp3 deleted file mode 100644 index 67498024b..000000000 Binary files a/files/02_0640_meaning.mp3 and /dev/null differ diff --git a/files/02_1221.jpg b/files/02_1221.jpg deleted file mode 100644 index 1aaa5a589..000000000 Binary files a/files/02_1221.jpg and /dev/null differ diff --git a/files/02_1221.mp3 b/files/02_1221.mp3 deleted file mode 100644 index 51cadfcfe..000000000 Binary files a/files/02_1221.mp3 and /dev/null differ diff --git a/files/02_1221_example.mp3 b/files/02_1221_example.mp3 deleted file mode 100644 index df0c95b90..000000000 Binary files a/files/02_1221_example.mp3 and /dev/null differ diff --git a/files/02_1221_meaning.mp3 b/files/02_1221_meaning.mp3 deleted file mode 100644 index 9b3755acb..000000000 Binary files a/files/02_1221_meaning.mp3 and /dev/null differ diff --git a/files/02_1222.jpg b/files/02_1222.jpg deleted file mode 100644 index fd7d28975..000000000 Binary files a/files/02_1222.jpg and /dev/null differ diff --git a/files/02_1222.mp3 b/files/02_1222.mp3 deleted file mode 100644 index da869a28c..000000000 Binary files a/files/02_1222.mp3 and /dev/null differ diff --git a/files/02_1222_example.mp3 b/files/02_1222_example.mp3 deleted file mode 100644 index a9b94b4ac..000000000 Binary files a/files/02_1222_example.mp3 and /dev/null differ diff --git a/files/02_1222_meaning.mp3 b/files/02_1222_meaning.mp3 deleted file mode 100644 index 1c5a001b8..000000000 Binary files a/files/02_1222_meaning.mp3 and /dev/null differ diff --git a/files/02_1223.jpg b/files/02_1223.jpg deleted file mode 100644 index 58f5fd4ef..000000000 Binary files a/files/02_1223.jpg and /dev/null differ diff --git a/files/02_1223.mp3 b/files/02_1223.mp3 deleted file mode 100644 index 42dfaa55b..000000000 Binary files a/files/02_1223.mp3 and /dev/null differ diff --git a/files/02_1223_example.mp3 b/files/02_1223_example.mp3 deleted file mode 100644 index 0cdadc320..000000000 Binary files a/files/02_1223_example.mp3 and /dev/null differ diff --git a/files/02_1223_meaning.mp3 b/files/02_1223_meaning.mp3 deleted file mode 100644 index 744d3f73c..000000000 Binary files a/files/02_1223_meaning.mp3 and /dev/null differ diff --git a/files/02_1224.jpg b/files/02_1224.jpg deleted file mode 100644 index 706020985..000000000 Binary files a/files/02_1224.jpg and /dev/null differ diff --git a/files/02_1224.mp3 b/files/02_1224.mp3 deleted file mode 100644 index 22fec5254..000000000 Binary files a/files/02_1224.mp3 and /dev/null differ diff --git a/files/02_1224_example.mp3 b/files/02_1224_example.mp3 deleted file mode 100644 index 8dfefdd1a..000000000 Binary files a/files/02_1224_example.mp3 and /dev/null differ diff --git a/files/02_1224_meaning.mp3 b/files/02_1224_meaning.mp3 deleted file mode 100644 index 0485b42f5..000000000 Binary files a/files/02_1224_meaning.mp3 and /dev/null differ diff --git a/files/02_1225.jpg b/files/02_1225.jpg deleted file mode 100644 index 19772fdfc..000000000 Binary files a/files/02_1225.jpg and /dev/null differ diff --git a/files/02_1225.mp3 b/files/02_1225.mp3 deleted file mode 100644 index 0aa93790a..000000000 Binary files a/files/02_1225.mp3 and /dev/null differ diff --git a/files/02_1225_example.mp3 b/files/02_1225_example.mp3 deleted file mode 100644 index c4ef07086..000000000 Binary files a/files/02_1225_example.mp3 and /dev/null differ diff --git a/files/02_1225_meaning.mp3 b/files/02_1225_meaning.mp3 deleted file mode 100644 index 898d47a7e..000000000 Binary files a/files/02_1225_meaning.mp3 and /dev/null differ diff --git a/files/02_1226.jpg b/files/02_1226.jpg deleted file mode 100644 index 508dbf587..000000000 Binary files a/files/02_1226.jpg and /dev/null differ diff --git a/files/02_1226.mp3 b/files/02_1226.mp3 deleted file mode 100644 index 78e2d2336..000000000 Binary files a/files/02_1226.mp3 and /dev/null differ diff --git a/files/02_1226_example.mp3 b/files/02_1226_example.mp3 deleted file mode 100644 index 87512a017..000000000 Binary files a/files/02_1226_example.mp3 and /dev/null differ diff --git a/files/02_1226_meaning.mp3 b/files/02_1226_meaning.mp3 deleted file mode 100644 index 578ab919e..000000000 Binary files a/files/02_1226_meaning.mp3 and /dev/null differ diff --git a/files/02_1227.jpg b/files/02_1227.jpg deleted file mode 100644 index d593e4c4c..000000000 Binary files a/files/02_1227.jpg and /dev/null differ diff --git a/files/02_1227.mp3 b/files/02_1227.mp3 deleted file mode 100644 index 32950c836..000000000 Binary files a/files/02_1227.mp3 and /dev/null differ diff --git a/files/02_1227_example.mp3 b/files/02_1227_example.mp3 deleted file mode 100644 index 2a59f4e32..000000000 Binary files a/files/02_1227_example.mp3 and /dev/null differ diff --git a/files/02_1227_meaning.mp3 b/files/02_1227_meaning.mp3 deleted file mode 100644 index 4eb617b19..000000000 Binary files a/files/02_1227_meaning.mp3 and /dev/null differ diff --git a/files/02_1228.jpg b/files/02_1228.jpg deleted file mode 100644 index df1491814..000000000 Binary files a/files/02_1228.jpg and /dev/null differ diff --git a/files/02_1228.mp3 b/files/02_1228.mp3 deleted file mode 100644 index 9dba40c55..000000000 Binary files a/files/02_1228.mp3 and /dev/null differ diff --git a/files/02_1228_example.mp3 b/files/02_1228_example.mp3 deleted file mode 100644 index 41232a3db..000000000 Binary files a/files/02_1228_example.mp3 and /dev/null differ diff --git a/files/02_1228_meaning.mp3 b/files/02_1228_meaning.mp3 deleted file mode 100644 index 44aebeb88..000000000 Binary files a/files/02_1228_meaning.mp3 and /dev/null differ diff --git a/files/02_1229.jpg b/files/02_1229.jpg deleted file mode 100644 index fdd73a5e6..000000000 Binary files a/files/02_1229.jpg and /dev/null differ diff --git a/files/02_1229.mp3 b/files/02_1229.mp3 deleted file mode 100644 index 9adc95e5f..000000000 Binary files a/files/02_1229.mp3 and /dev/null differ diff --git a/files/02_1229_example.mp3 b/files/02_1229_example.mp3 deleted file mode 100644 index a28277e0e..000000000 Binary files a/files/02_1229_example.mp3 and /dev/null differ diff --git a/files/02_1229_meaning.mp3 b/files/02_1229_meaning.mp3 deleted file mode 100644 index d0993c856..000000000 Binary files a/files/02_1229_meaning.mp3 and /dev/null differ diff --git a/files/02_1230.jpg b/files/02_1230.jpg deleted file mode 100644 index 00ca65813..000000000 Binary files a/files/02_1230.jpg and /dev/null differ diff --git a/files/02_1230.mp3 b/files/02_1230.mp3 deleted file mode 100644 index 51a200ab6..000000000 Binary files a/files/02_1230.mp3 and /dev/null differ diff --git a/files/02_1230_example.mp3 b/files/02_1230_example.mp3 deleted file mode 100644 index c956cf553..000000000 Binary files a/files/02_1230_example.mp3 and /dev/null differ diff --git a/files/02_1230_meaning.mp3 b/files/02_1230_meaning.mp3 deleted file mode 100644 index 11adaec8b..000000000 Binary files a/files/02_1230_meaning.mp3 and /dev/null differ diff --git a/files/02_1231.jpg b/files/02_1231.jpg deleted file mode 100644 index c7567d16a..000000000 Binary files a/files/02_1231.jpg and /dev/null differ diff --git a/files/02_1231.mp3 b/files/02_1231.mp3 deleted file mode 100644 index 9472bff50..000000000 Binary files a/files/02_1231.mp3 and /dev/null differ diff --git a/files/02_1231_example.mp3 b/files/02_1231_example.mp3 deleted file mode 100644 index 764887746..000000000 Binary files a/files/02_1231_example.mp3 and /dev/null differ diff --git a/files/02_1231_meaning.mp3 b/files/02_1231_meaning.mp3 deleted file mode 100644 index 3c6e67ca4..000000000 Binary files a/files/02_1231_meaning.mp3 and /dev/null differ diff --git a/files/02_1232.jpg b/files/02_1232.jpg deleted file mode 100644 index 15bcf9307..000000000 Binary files a/files/02_1232.jpg and /dev/null differ diff --git a/files/02_1232.mp3 b/files/02_1232.mp3 deleted file mode 100644 index 35bd0d755..000000000 Binary files a/files/02_1232.mp3 and /dev/null differ diff --git a/files/02_1232_example.mp3 b/files/02_1232_example.mp3 deleted file mode 100644 index 8ace6c7a5..000000000 Binary files a/files/02_1232_example.mp3 and /dev/null differ diff --git a/files/02_1232_meaning.mp3 b/files/02_1232_meaning.mp3 deleted file mode 100644 index 452d3f1d7..000000000 Binary files a/files/02_1232_meaning.mp3 and /dev/null differ diff --git a/files/02_1233.jpg b/files/02_1233.jpg deleted file mode 100644 index ed994becd..000000000 Binary files a/files/02_1233.jpg and /dev/null differ diff --git a/files/02_1233.mp3 b/files/02_1233.mp3 deleted file mode 100644 index 843ada3f8..000000000 Binary files a/files/02_1233.mp3 and /dev/null differ diff --git a/files/02_1233_example.mp3 b/files/02_1233_example.mp3 deleted file mode 100644 index 4c73da5fa..000000000 Binary files a/files/02_1233_example.mp3 and /dev/null differ diff --git a/files/02_1233_meaning.mp3 b/files/02_1233_meaning.mp3 deleted file mode 100644 index 6b4425073..000000000 Binary files a/files/02_1233_meaning.mp3 and /dev/null differ diff --git a/files/02_1234.jpg b/files/02_1234.jpg deleted file mode 100644 index fefede230..000000000 Binary files a/files/02_1234.jpg and /dev/null differ diff --git a/files/02_1234.mp3 b/files/02_1234.mp3 deleted file mode 100644 index 90e35fb22..000000000 Binary files a/files/02_1234.mp3 and /dev/null differ diff --git a/files/02_1234_example.mp3 b/files/02_1234_example.mp3 deleted file mode 100644 index 0db1530ae..000000000 Binary files a/files/02_1234_example.mp3 and /dev/null differ diff --git a/files/02_1234_meaning.mp3 b/files/02_1234_meaning.mp3 deleted file mode 100644 index b80713e11..000000000 Binary files a/files/02_1234_meaning.mp3 and /dev/null differ diff --git a/files/02_1235.jpg b/files/02_1235.jpg deleted file mode 100644 index eb10ee5a4..000000000 Binary files a/files/02_1235.jpg and /dev/null differ diff --git a/files/02_1235.mp3 b/files/02_1235.mp3 deleted file mode 100644 index 91a469ab9..000000000 Binary files a/files/02_1235.mp3 and /dev/null differ diff --git a/files/02_1235_example.mp3 b/files/02_1235_example.mp3 deleted file mode 100644 index 309ebf3bc..000000000 Binary files a/files/02_1235_example.mp3 and /dev/null differ diff --git a/files/02_1235_meaning.mp3 b/files/02_1235_meaning.mp3 deleted file mode 100644 index 4ce161738..000000000 Binary files a/files/02_1235_meaning.mp3 and /dev/null differ diff --git a/files/02_1236.jpg b/files/02_1236.jpg deleted file mode 100644 index 9cf64bbfa..000000000 Binary files a/files/02_1236.jpg and /dev/null differ diff --git a/files/02_1236.mp3 b/files/02_1236.mp3 deleted file mode 100644 index 6e7214442..000000000 Binary files a/files/02_1236.mp3 and /dev/null differ diff --git a/files/02_1236_example.mp3 b/files/02_1236_example.mp3 deleted file mode 100644 index 1bb1f23b8..000000000 Binary files a/files/02_1236_example.mp3 and /dev/null differ diff --git a/files/02_1236_meaning.mp3 b/files/02_1236_meaning.mp3 deleted file mode 100644 index 3c7746389..000000000 Binary files a/files/02_1236_meaning.mp3 and /dev/null differ diff --git a/files/02_1237.jpg b/files/02_1237.jpg deleted file mode 100644 index bb8b6a41e..000000000 Binary files a/files/02_1237.jpg and /dev/null differ diff --git a/files/02_1237.mp3 b/files/02_1237.mp3 deleted file mode 100644 index 7e09be0de..000000000 Binary files a/files/02_1237.mp3 and /dev/null differ diff --git a/files/02_1237_example.mp3 b/files/02_1237_example.mp3 deleted file mode 100644 index 7fc2ba919..000000000 Binary files a/files/02_1237_example.mp3 and /dev/null differ diff --git a/files/02_1237_meaning.mp3 b/files/02_1237_meaning.mp3 deleted file mode 100644 index cd9f5dc17..000000000 Binary files a/files/02_1237_meaning.mp3 and /dev/null differ diff --git a/files/02_1238.jpg b/files/02_1238.jpg deleted file mode 100644 index e4570856c..000000000 Binary files a/files/02_1238.jpg and /dev/null differ diff --git a/files/02_1238.mp3 b/files/02_1238.mp3 deleted file mode 100644 index 73de42673..000000000 Binary files a/files/02_1238.mp3 and /dev/null differ diff --git a/files/02_1238_example.mp3 b/files/02_1238_example.mp3 deleted file mode 100644 index f6e3098be..000000000 Binary files a/files/02_1238_example.mp3 and /dev/null differ diff --git a/files/02_1238_meaning.mp3 b/files/02_1238_meaning.mp3 deleted file mode 100644 index 5751f4437..000000000 Binary files a/files/02_1238_meaning.mp3 and /dev/null differ diff --git a/files/02_1239.jpg b/files/02_1239.jpg deleted file mode 100644 index a2bb480f6..000000000 Binary files a/files/02_1239.jpg and /dev/null differ diff --git a/files/02_1239.mp3 b/files/02_1239.mp3 deleted file mode 100644 index 052bd6399..000000000 Binary files a/files/02_1239.mp3 and /dev/null differ diff --git a/files/02_1239_example.mp3 b/files/02_1239_example.mp3 deleted file mode 100644 index 9c7cde15a..000000000 Binary files a/files/02_1239_example.mp3 and /dev/null differ diff --git a/files/02_1239_meaning.mp3 b/files/02_1239_meaning.mp3 deleted file mode 100644 index 21042086b..000000000 Binary files a/files/02_1239_meaning.mp3 and /dev/null differ diff --git a/files/02_1240.jpg b/files/02_1240.jpg deleted file mode 100644 index be1c39520..000000000 Binary files a/files/02_1240.jpg and /dev/null differ diff --git a/files/02_1240.mp3 b/files/02_1240.mp3 deleted file mode 100644 index 193bedab9..000000000 Binary files a/files/02_1240.mp3 and /dev/null differ diff --git a/files/02_1240_example.mp3 b/files/02_1240_example.mp3 deleted file mode 100644 index be6fa5b23..000000000 Binary files a/files/02_1240_example.mp3 and /dev/null differ diff --git a/files/02_1240_meaning.mp3 b/files/02_1240_meaning.mp3 deleted file mode 100644 index 3d1311e28..000000000 Binary files a/files/02_1240_meaning.mp3 and /dev/null differ diff --git a/files/02_1821.jpg b/files/02_1821.jpg deleted file mode 100644 index 2c189e863..000000000 Binary files a/files/02_1821.jpg and /dev/null differ diff --git a/files/02_1821.mp3 b/files/02_1821.mp3 deleted file mode 100644 index 05d3ec6a8..000000000 Binary files a/files/02_1821.mp3 and /dev/null differ diff --git a/files/02_1821_example.mp3 b/files/02_1821_example.mp3 deleted file mode 100644 index a05f970f4..000000000 Binary files a/files/02_1821_example.mp3 and /dev/null differ diff --git a/files/02_1821_meaning.mp3 b/files/02_1821_meaning.mp3 deleted file mode 100644 index 6356e3909..000000000 Binary files a/files/02_1821_meaning.mp3 and /dev/null differ diff --git a/files/02_1822.jpg b/files/02_1822.jpg deleted file mode 100644 index 0905f35f5..000000000 Binary files a/files/02_1822.jpg and /dev/null differ diff --git a/files/02_1822.mp3 b/files/02_1822.mp3 deleted file mode 100644 index 1b8df1246..000000000 Binary files a/files/02_1822.mp3 and /dev/null differ diff --git a/files/02_1822_example.mp3 b/files/02_1822_example.mp3 deleted file mode 100644 index 5448b7077..000000000 Binary files a/files/02_1822_example.mp3 and /dev/null differ diff --git a/files/02_1822_meaning.mp3 b/files/02_1822_meaning.mp3 deleted file mode 100644 index 956e2b6fa..000000000 Binary files a/files/02_1822_meaning.mp3 and /dev/null differ diff --git a/files/02_1823.jpg b/files/02_1823.jpg deleted file mode 100644 index 76ad04d4d..000000000 Binary files a/files/02_1823.jpg and /dev/null differ diff --git a/files/02_1823.mp3 b/files/02_1823.mp3 deleted file mode 100644 index 010d43c08..000000000 Binary files a/files/02_1823.mp3 and /dev/null differ diff --git a/files/02_1823_example.mp3 b/files/02_1823_example.mp3 deleted file mode 100644 index 89e54fef7..000000000 Binary files a/files/02_1823_example.mp3 and /dev/null differ diff --git a/files/02_1823_meaning.mp3 b/files/02_1823_meaning.mp3 deleted file mode 100644 index c8bb52e4e..000000000 Binary files a/files/02_1823_meaning.mp3 and /dev/null differ diff --git a/files/02_1824.jpg b/files/02_1824.jpg deleted file mode 100644 index 43aeb950f..000000000 Binary files a/files/02_1824.jpg and /dev/null differ diff --git a/files/02_1824.mp3 b/files/02_1824.mp3 deleted file mode 100644 index c6adec5f4..000000000 Binary files a/files/02_1824.mp3 and /dev/null differ diff --git a/files/02_1824_example.mp3 b/files/02_1824_example.mp3 deleted file mode 100644 index 8e75ff077..000000000 Binary files a/files/02_1824_example.mp3 and /dev/null differ diff --git a/files/02_1824_meaning.mp3 b/files/02_1824_meaning.mp3 deleted file mode 100644 index 4150f7751..000000000 Binary files a/files/02_1824_meaning.mp3 and /dev/null differ diff --git a/files/02_1825.jpg b/files/02_1825.jpg deleted file mode 100644 index 3a522d21c..000000000 Binary files a/files/02_1825.jpg and /dev/null differ diff --git a/files/02_1825.mp3 b/files/02_1825.mp3 deleted file mode 100644 index f186d4f41..000000000 Binary files a/files/02_1825.mp3 and /dev/null differ diff --git a/files/02_1825_example.mp3 b/files/02_1825_example.mp3 deleted file mode 100644 index eeca038cd..000000000 Binary files a/files/02_1825_example.mp3 and /dev/null differ diff --git a/files/02_1825_meaning.mp3 b/files/02_1825_meaning.mp3 deleted file mode 100644 index 0d9eccdbc..000000000 Binary files a/files/02_1825_meaning.mp3 and /dev/null differ diff --git a/files/02_1826.jpg b/files/02_1826.jpg deleted file mode 100644 index bd23e3871..000000000 Binary files a/files/02_1826.jpg and /dev/null differ diff --git a/files/02_1826.mp3 b/files/02_1826.mp3 deleted file mode 100644 index ef74c21cb..000000000 Binary files a/files/02_1826.mp3 and /dev/null differ diff --git a/files/02_1826_example.mp3 b/files/02_1826_example.mp3 deleted file mode 100644 index 959ac5e5d..000000000 Binary files a/files/02_1826_example.mp3 and /dev/null differ diff --git a/files/02_1826_meaning.mp3 b/files/02_1826_meaning.mp3 deleted file mode 100644 index e0da232ca..000000000 Binary files a/files/02_1826_meaning.mp3 and /dev/null differ diff --git a/files/02_1827.jpg b/files/02_1827.jpg deleted file mode 100644 index 08492969d..000000000 Binary files a/files/02_1827.jpg and /dev/null differ diff --git a/files/02_1827.mp3 b/files/02_1827.mp3 deleted file mode 100644 index b0ad6e4be..000000000 Binary files a/files/02_1827.mp3 and /dev/null differ diff --git a/files/02_1827_example.mp3 b/files/02_1827_example.mp3 deleted file mode 100644 index d702c1d45..000000000 Binary files a/files/02_1827_example.mp3 and /dev/null differ diff --git a/files/02_1827_meaning.mp3 b/files/02_1827_meaning.mp3 deleted file mode 100644 index a2b63ea1d..000000000 Binary files a/files/02_1827_meaning.mp3 and /dev/null differ diff --git a/files/02_1828.jpg b/files/02_1828.jpg deleted file mode 100644 index 9b925aa57..000000000 Binary files a/files/02_1828.jpg and /dev/null differ diff --git a/files/02_1828.mp3 b/files/02_1828.mp3 deleted file mode 100644 index c2524cbc8..000000000 Binary files a/files/02_1828.mp3 and /dev/null differ diff --git a/files/02_1828_example.mp3 b/files/02_1828_example.mp3 deleted file mode 100644 index 4d3558258..000000000 Binary files a/files/02_1828_example.mp3 and /dev/null differ diff --git a/files/02_1828_meaning.mp3 b/files/02_1828_meaning.mp3 deleted file mode 100644 index 27f2f82a3..000000000 Binary files a/files/02_1828_meaning.mp3 and /dev/null differ diff --git a/files/02_1829.jpg b/files/02_1829.jpg deleted file mode 100644 index e51b87a84..000000000 Binary files a/files/02_1829.jpg and /dev/null differ diff --git a/files/02_1829.mp3 b/files/02_1829.mp3 deleted file mode 100644 index 1ffaa345c..000000000 Binary files a/files/02_1829.mp3 and /dev/null differ diff --git a/files/02_1829_example.mp3 b/files/02_1829_example.mp3 deleted file mode 100644 index 802b9db93..000000000 Binary files a/files/02_1829_example.mp3 and /dev/null differ diff --git a/files/02_1829_meaning.mp3 b/files/02_1829_meaning.mp3 deleted file mode 100644 index a117d1d24..000000000 Binary files a/files/02_1829_meaning.mp3 and /dev/null differ diff --git a/files/02_1830.jpg b/files/02_1830.jpg deleted file mode 100644 index 0e40dff57..000000000 Binary files a/files/02_1830.jpg and /dev/null differ diff --git a/files/02_1830.mp3 b/files/02_1830.mp3 deleted file mode 100644 index 216ed6aa2..000000000 Binary files a/files/02_1830.mp3 and /dev/null differ diff --git a/files/02_1830_example.mp3 b/files/02_1830_example.mp3 deleted file mode 100644 index d699e2017..000000000 Binary files a/files/02_1830_example.mp3 and /dev/null differ diff --git a/files/02_1830_meaning.mp3 b/files/02_1830_meaning.mp3 deleted file mode 100644 index b7b14b266..000000000 Binary files a/files/02_1830_meaning.mp3 and /dev/null differ diff --git a/files/02_1831.jpg b/files/02_1831.jpg deleted file mode 100644 index 277488f08..000000000 Binary files a/files/02_1831.jpg and /dev/null differ diff --git a/files/02_1831.mp3 b/files/02_1831.mp3 deleted file mode 100644 index 279607460..000000000 Binary files a/files/02_1831.mp3 and /dev/null differ diff --git a/files/02_1831_example.mp3 b/files/02_1831_example.mp3 deleted file mode 100644 index 4957efe6f..000000000 Binary files a/files/02_1831_example.mp3 and /dev/null differ diff --git a/files/02_1831_meaning.mp3 b/files/02_1831_meaning.mp3 deleted file mode 100644 index 759885c10..000000000 Binary files a/files/02_1831_meaning.mp3 and /dev/null differ diff --git a/files/02_1832.jpg b/files/02_1832.jpg deleted file mode 100644 index 053745c4c..000000000 Binary files a/files/02_1832.jpg and /dev/null differ diff --git a/files/02_1832.mp3 b/files/02_1832.mp3 deleted file mode 100644 index b98e04b0b..000000000 Binary files a/files/02_1832.mp3 and /dev/null differ diff --git a/files/02_1832_example.mp3 b/files/02_1832_example.mp3 deleted file mode 100644 index 640e4bef7..000000000 Binary files a/files/02_1832_example.mp3 and /dev/null differ diff --git a/files/02_1832_meaning.mp3 b/files/02_1832_meaning.mp3 deleted file mode 100644 index 65f97cbb0..000000000 Binary files a/files/02_1832_meaning.mp3 and /dev/null differ diff --git a/files/02_1833.jpg b/files/02_1833.jpg deleted file mode 100644 index 7dcde2c87..000000000 Binary files a/files/02_1833.jpg and /dev/null differ diff --git a/files/02_1833.mp3 b/files/02_1833.mp3 deleted file mode 100644 index 0bb5296a6..000000000 Binary files a/files/02_1833.mp3 and /dev/null differ diff --git a/files/02_1833_example.mp3 b/files/02_1833_example.mp3 deleted file mode 100644 index 27db431cc..000000000 Binary files a/files/02_1833_example.mp3 and /dev/null differ diff --git a/files/02_1833_meaning.mp3 b/files/02_1833_meaning.mp3 deleted file mode 100644 index 83ddf3152..000000000 Binary files a/files/02_1833_meaning.mp3 and /dev/null differ diff --git a/files/02_1834.jpg b/files/02_1834.jpg deleted file mode 100644 index a2e64a1a2..000000000 Binary files a/files/02_1834.jpg and /dev/null differ diff --git a/files/02_1834.mp3 b/files/02_1834.mp3 deleted file mode 100644 index 96f690ebe..000000000 Binary files a/files/02_1834.mp3 and /dev/null differ diff --git a/files/02_1834_example.mp3 b/files/02_1834_example.mp3 deleted file mode 100644 index 498b41c8c..000000000 Binary files a/files/02_1834_example.mp3 and /dev/null differ diff --git a/files/02_1834_meaning.mp3 b/files/02_1834_meaning.mp3 deleted file mode 100644 index 6033cee71..000000000 Binary files a/files/02_1834_meaning.mp3 and /dev/null differ diff --git a/files/02_1835.jpg b/files/02_1835.jpg deleted file mode 100644 index 15c31c7ce..000000000 Binary files a/files/02_1835.jpg and /dev/null differ diff --git a/files/02_1835.mp3 b/files/02_1835.mp3 deleted file mode 100644 index 26377511e..000000000 Binary files a/files/02_1835.mp3 and /dev/null differ diff --git a/files/02_1835_example.mp3 b/files/02_1835_example.mp3 deleted file mode 100644 index 5614257a3..000000000 Binary files a/files/02_1835_example.mp3 and /dev/null differ diff --git a/files/02_1835_meaning.mp3 b/files/02_1835_meaning.mp3 deleted file mode 100644 index bc8f02ace..000000000 Binary files a/files/02_1835_meaning.mp3 and /dev/null differ diff --git a/files/02_1836.jpg b/files/02_1836.jpg deleted file mode 100644 index 4094aba18..000000000 Binary files a/files/02_1836.jpg and /dev/null differ diff --git a/files/02_1836.mp3 b/files/02_1836.mp3 deleted file mode 100644 index 64568d2bb..000000000 Binary files a/files/02_1836.mp3 and /dev/null differ diff --git a/files/02_1836_example.mp3 b/files/02_1836_example.mp3 deleted file mode 100644 index aae7ded3b..000000000 Binary files a/files/02_1836_example.mp3 and /dev/null differ diff --git a/files/02_1836_meaning.mp3 b/files/02_1836_meaning.mp3 deleted file mode 100644 index 38e3e499d..000000000 Binary files a/files/02_1836_meaning.mp3 and /dev/null differ diff --git a/files/02_1837.jpg b/files/02_1837.jpg deleted file mode 100644 index 135fdf529..000000000 Binary files a/files/02_1837.jpg and /dev/null differ diff --git a/files/02_1837.mp3 b/files/02_1837.mp3 deleted file mode 100644 index e9d6d18e5..000000000 Binary files a/files/02_1837.mp3 and /dev/null differ diff --git a/files/02_1837_example.mp3 b/files/02_1837_example.mp3 deleted file mode 100644 index e6e8345b7..000000000 Binary files a/files/02_1837_example.mp3 and /dev/null differ diff --git a/files/02_1837_meaning.mp3 b/files/02_1837_meaning.mp3 deleted file mode 100644 index 8c0118885..000000000 Binary files a/files/02_1837_meaning.mp3 and /dev/null differ diff --git a/files/02_1838.jpg b/files/02_1838.jpg deleted file mode 100644 index 27f79fc10..000000000 Binary files a/files/02_1838.jpg and /dev/null differ diff --git a/files/02_1838.mp3 b/files/02_1838.mp3 deleted file mode 100644 index b36ba5208..000000000 Binary files a/files/02_1838.mp3 and /dev/null differ diff --git a/files/02_1838_example.mp3 b/files/02_1838_example.mp3 deleted file mode 100644 index 713eaf035..000000000 Binary files a/files/02_1838_example.mp3 and /dev/null differ diff --git a/files/02_1838_meaning.mp3 b/files/02_1838_meaning.mp3 deleted file mode 100644 index 22bcd55be..000000000 Binary files a/files/02_1838_meaning.mp3 and /dev/null differ diff --git a/files/02_1839.jpg b/files/02_1839.jpg deleted file mode 100644 index 694074227..000000000 Binary files a/files/02_1839.jpg and /dev/null differ diff --git a/files/02_1839.mp3 b/files/02_1839.mp3 deleted file mode 100644 index ce7c07d95..000000000 Binary files a/files/02_1839.mp3 and /dev/null differ diff --git a/files/02_1839_example.mp3 b/files/02_1839_example.mp3 deleted file mode 100644 index 66e2147ba..000000000 Binary files a/files/02_1839_example.mp3 and /dev/null differ diff --git a/files/02_1839_meaning.mp3 b/files/02_1839_meaning.mp3 deleted file mode 100644 index e2da387f0..000000000 Binary files a/files/02_1839_meaning.mp3 and /dev/null differ diff --git a/files/02_1840.jpg b/files/02_1840.jpg deleted file mode 100644 index 4e771b1be..000000000 Binary files a/files/02_1840.jpg and /dev/null differ diff --git a/files/02_1840.mp3 b/files/02_1840.mp3 deleted file mode 100644 index f90153ced..000000000 Binary files a/files/02_1840.mp3 and /dev/null differ diff --git a/files/02_1840_example.mp3 b/files/02_1840_example.mp3 deleted file mode 100644 index 849b614dc..000000000 Binary files a/files/02_1840_example.mp3 and /dev/null differ diff --git a/files/02_1840_meaning.mp3 b/files/02_1840_meaning.mp3 deleted file mode 100644 index 588ad9e07..000000000 Binary files a/files/02_1840_meaning.mp3 and /dev/null differ diff --git a/files/02_2421.jpg b/files/02_2421.jpg deleted file mode 100644 index 301aa8486..000000000 Binary files a/files/02_2421.jpg and /dev/null differ diff --git a/files/02_2421.mp3 b/files/02_2421.mp3 deleted file mode 100644 index 2940c9048..000000000 Binary files a/files/02_2421.mp3 and /dev/null differ diff --git a/files/02_2421_example.mp3 b/files/02_2421_example.mp3 deleted file mode 100644 index 1364f0149..000000000 Binary files a/files/02_2421_example.mp3 and /dev/null differ diff --git a/files/02_2421_meaning.mp3 b/files/02_2421_meaning.mp3 deleted file mode 100644 index fcecfc98a..000000000 Binary files a/files/02_2421_meaning.mp3 and /dev/null differ diff --git a/files/02_2422.jpg b/files/02_2422.jpg deleted file mode 100644 index cfcea733c..000000000 Binary files a/files/02_2422.jpg and /dev/null differ diff --git a/files/02_2422.mp3 b/files/02_2422.mp3 deleted file mode 100644 index 10959adbd..000000000 Binary files a/files/02_2422.mp3 and /dev/null differ diff --git a/files/02_2422_example.mp3 b/files/02_2422_example.mp3 deleted file mode 100644 index 50719dff0..000000000 Binary files a/files/02_2422_example.mp3 and /dev/null differ diff --git a/files/02_2422_meaning.mp3 b/files/02_2422_meaning.mp3 deleted file mode 100644 index 2957a3b31..000000000 Binary files a/files/02_2422_meaning.mp3 and /dev/null differ diff --git a/files/02_2423.jpg b/files/02_2423.jpg deleted file mode 100644 index 93a0e4b36..000000000 Binary files a/files/02_2423.jpg and /dev/null differ diff --git a/files/02_2423.mp3 b/files/02_2423.mp3 deleted file mode 100644 index a0ad9c333..000000000 Binary files a/files/02_2423.mp3 and /dev/null differ diff --git a/files/02_2423_example.mp3 b/files/02_2423_example.mp3 deleted file mode 100644 index 03ceae803..000000000 Binary files a/files/02_2423_example.mp3 and /dev/null differ diff --git a/files/02_2423_meaning.mp3 b/files/02_2423_meaning.mp3 deleted file mode 100644 index 3005fc5f4..000000000 Binary files a/files/02_2423_meaning.mp3 and /dev/null differ diff --git a/files/02_2424.jpg b/files/02_2424.jpg deleted file mode 100644 index 0fabb3557..000000000 Binary files a/files/02_2424.jpg and /dev/null differ diff --git a/files/02_2424.mp3 b/files/02_2424.mp3 deleted file mode 100644 index 2df4cbe53..000000000 Binary files a/files/02_2424.mp3 and /dev/null differ diff --git a/files/02_2424_example.mp3 b/files/02_2424_example.mp3 deleted file mode 100644 index 6791dc596..000000000 Binary files a/files/02_2424_example.mp3 and /dev/null differ diff --git a/files/02_2424_meaning.mp3 b/files/02_2424_meaning.mp3 deleted file mode 100644 index 54a259dc9..000000000 Binary files a/files/02_2424_meaning.mp3 and /dev/null differ diff --git a/files/02_2425.jpg b/files/02_2425.jpg deleted file mode 100644 index adc4ecdd3..000000000 Binary files a/files/02_2425.jpg and /dev/null differ diff --git a/files/02_2425.mp3 b/files/02_2425.mp3 deleted file mode 100644 index af2201bf3..000000000 Binary files a/files/02_2425.mp3 and /dev/null differ diff --git a/files/02_2425_example.mp3 b/files/02_2425_example.mp3 deleted file mode 100644 index e9e455396..000000000 Binary files a/files/02_2425_example.mp3 and /dev/null differ diff --git a/files/02_2425_meaning.mp3 b/files/02_2425_meaning.mp3 deleted file mode 100644 index d36df7241..000000000 Binary files a/files/02_2425_meaning.mp3 and /dev/null differ diff --git a/files/02_2426.jpg b/files/02_2426.jpg deleted file mode 100644 index c4e696b50..000000000 Binary files a/files/02_2426.jpg and /dev/null differ diff --git a/files/02_2426.mp3 b/files/02_2426.mp3 deleted file mode 100644 index 9765139d2..000000000 Binary files a/files/02_2426.mp3 and /dev/null differ diff --git a/files/02_2426_example.mp3 b/files/02_2426_example.mp3 deleted file mode 100644 index f544915ab..000000000 Binary files a/files/02_2426_example.mp3 and /dev/null differ diff --git a/files/02_2426_meaning.mp3 b/files/02_2426_meaning.mp3 deleted file mode 100644 index 960e4d8b0..000000000 Binary files a/files/02_2426_meaning.mp3 and /dev/null differ diff --git a/files/02_2427.jpg b/files/02_2427.jpg deleted file mode 100644 index 04f08ac51..000000000 Binary files a/files/02_2427.jpg and /dev/null differ diff --git a/files/02_2427.mp3 b/files/02_2427.mp3 deleted file mode 100644 index 10839dd0c..000000000 Binary files a/files/02_2427.mp3 and /dev/null differ diff --git a/files/02_2427_example.mp3 b/files/02_2427_example.mp3 deleted file mode 100644 index a9041ca95..000000000 Binary files a/files/02_2427_example.mp3 and /dev/null differ diff --git a/files/02_2427_meaning.mp3 b/files/02_2427_meaning.mp3 deleted file mode 100644 index 481ed16d4..000000000 Binary files a/files/02_2427_meaning.mp3 and /dev/null differ diff --git a/files/02_2428.jpg b/files/02_2428.jpg deleted file mode 100644 index 0d6020c46..000000000 Binary files a/files/02_2428.jpg and /dev/null differ diff --git a/files/02_2428.mp3 b/files/02_2428.mp3 deleted file mode 100644 index 4c9a17975..000000000 Binary files a/files/02_2428.mp3 and /dev/null differ diff --git a/files/02_2428_example.mp3 b/files/02_2428_example.mp3 deleted file mode 100644 index b7eb302af..000000000 Binary files a/files/02_2428_example.mp3 and /dev/null differ diff --git a/files/02_2428_meaning.mp3 b/files/02_2428_meaning.mp3 deleted file mode 100644 index 49bcf70b8..000000000 Binary files a/files/02_2428_meaning.mp3 and /dev/null differ diff --git a/files/02_2429.jpg b/files/02_2429.jpg deleted file mode 100644 index 3ecdfa2c1..000000000 Binary files a/files/02_2429.jpg and /dev/null differ diff --git a/files/02_2429.mp3 b/files/02_2429.mp3 deleted file mode 100644 index 8034abefd..000000000 Binary files a/files/02_2429.mp3 and /dev/null differ diff --git a/files/02_2429_example.mp3 b/files/02_2429_example.mp3 deleted file mode 100644 index 165e83cf3..000000000 Binary files a/files/02_2429_example.mp3 and /dev/null differ diff --git a/files/02_2429_meaning.mp3 b/files/02_2429_meaning.mp3 deleted file mode 100644 index be64cb025..000000000 Binary files a/files/02_2429_meaning.mp3 and /dev/null differ diff --git a/files/02_2430.jpg b/files/02_2430.jpg deleted file mode 100644 index fda5adbd7..000000000 Binary files a/files/02_2430.jpg and /dev/null differ diff --git a/files/02_2430.mp3 b/files/02_2430.mp3 deleted file mode 100644 index 99ee4efc2..000000000 Binary files a/files/02_2430.mp3 and /dev/null differ diff --git a/files/02_2430_example.mp3 b/files/02_2430_example.mp3 deleted file mode 100644 index f6fcda3c5..000000000 Binary files a/files/02_2430_example.mp3 and /dev/null differ diff --git a/files/02_2430_meaning.mp3 b/files/02_2430_meaning.mp3 deleted file mode 100644 index 3f28bf615..000000000 Binary files a/files/02_2430_meaning.mp3 and /dev/null differ diff --git a/files/02_2431.jpg b/files/02_2431.jpg deleted file mode 100644 index 9f16cf713..000000000 Binary files a/files/02_2431.jpg and /dev/null differ diff --git a/files/02_2431.mp3 b/files/02_2431.mp3 deleted file mode 100644 index d45dc87f9..000000000 Binary files a/files/02_2431.mp3 and /dev/null differ diff --git a/files/02_2431_example.mp3 b/files/02_2431_example.mp3 deleted file mode 100644 index d9f2d8f01..000000000 Binary files a/files/02_2431_example.mp3 and /dev/null differ diff --git a/files/02_2431_meaning.mp3 b/files/02_2431_meaning.mp3 deleted file mode 100644 index ecdde37a8..000000000 Binary files a/files/02_2431_meaning.mp3 and /dev/null differ diff --git a/files/02_2432.jpg b/files/02_2432.jpg deleted file mode 100644 index 4ba6cf8b2..000000000 Binary files a/files/02_2432.jpg and /dev/null differ diff --git a/files/02_2432.mp3 b/files/02_2432.mp3 deleted file mode 100644 index 3a79cfe98..000000000 Binary files a/files/02_2432.mp3 and /dev/null differ diff --git a/files/02_2432_example.mp3 b/files/02_2432_example.mp3 deleted file mode 100644 index a440efbfa..000000000 Binary files a/files/02_2432_example.mp3 and /dev/null differ diff --git a/files/02_2432_meaning.mp3 b/files/02_2432_meaning.mp3 deleted file mode 100644 index 1b9ad9081..000000000 Binary files a/files/02_2432_meaning.mp3 and /dev/null differ diff --git a/files/02_2433.jpg b/files/02_2433.jpg deleted file mode 100644 index 4edf9925c..000000000 Binary files a/files/02_2433.jpg and /dev/null differ diff --git a/files/02_2433.mp3 b/files/02_2433.mp3 deleted file mode 100644 index 6a4241bdb..000000000 Binary files a/files/02_2433.mp3 and /dev/null differ diff --git a/files/02_2433_example.mp3 b/files/02_2433_example.mp3 deleted file mode 100644 index 85c2c47a6..000000000 Binary files a/files/02_2433_example.mp3 and /dev/null differ diff --git a/files/02_2433_meaning.mp3 b/files/02_2433_meaning.mp3 deleted file mode 100644 index 63038528a..000000000 Binary files a/files/02_2433_meaning.mp3 and /dev/null differ diff --git a/files/02_2434.jpg b/files/02_2434.jpg deleted file mode 100644 index 4a0baa8b4..000000000 Binary files a/files/02_2434.jpg and /dev/null differ diff --git a/files/02_2434.mp3 b/files/02_2434.mp3 deleted file mode 100644 index fadfee4b9..000000000 Binary files a/files/02_2434.mp3 and /dev/null differ diff --git a/files/02_2434_example.mp3 b/files/02_2434_example.mp3 deleted file mode 100644 index 3e9ecf980..000000000 Binary files a/files/02_2434_example.mp3 and /dev/null differ diff --git a/files/02_2434_meaning.mp3 b/files/02_2434_meaning.mp3 deleted file mode 100644 index 5b0a3dec2..000000000 Binary files a/files/02_2434_meaning.mp3 and /dev/null differ diff --git a/files/02_2435.jpg b/files/02_2435.jpg deleted file mode 100644 index 16b526f76..000000000 Binary files a/files/02_2435.jpg and /dev/null differ diff --git a/files/02_2435.mp3 b/files/02_2435.mp3 deleted file mode 100644 index 932eaced8..000000000 Binary files a/files/02_2435.mp3 and /dev/null differ diff --git a/files/02_2435_example.mp3 b/files/02_2435_example.mp3 deleted file mode 100644 index 417e23a5c..000000000 Binary files a/files/02_2435_example.mp3 and /dev/null differ diff --git a/files/02_2435_meaning.mp3 b/files/02_2435_meaning.mp3 deleted file mode 100644 index cc7c3e730..000000000 Binary files a/files/02_2435_meaning.mp3 and /dev/null differ diff --git a/files/02_2436.jpg b/files/02_2436.jpg deleted file mode 100644 index 7aa586c45..000000000 Binary files a/files/02_2436.jpg and /dev/null differ diff --git a/files/02_2436.mp3 b/files/02_2436.mp3 deleted file mode 100644 index 5f39da3e1..000000000 Binary files a/files/02_2436.mp3 and /dev/null differ diff --git a/files/02_2436_example.mp3 b/files/02_2436_example.mp3 deleted file mode 100644 index a530cfcbd..000000000 Binary files a/files/02_2436_example.mp3 and /dev/null differ diff --git a/files/02_2436_meaning.mp3 b/files/02_2436_meaning.mp3 deleted file mode 100644 index e1b48c0f2..000000000 Binary files a/files/02_2436_meaning.mp3 and /dev/null differ diff --git a/files/02_2437.jpg b/files/02_2437.jpg deleted file mode 100644 index 4fa785c84..000000000 Binary files a/files/02_2437.jpg and /dev/null differ diff --git a/files/02_2437.mp3 b/files/02_2437.mp3 deleted file mode 100644 index a7ee5f6e3..000000000 Binary files a/files/02_2437.mp3 and /dev/null differ diff --git a/files/02_2437_example.mp3 b/files/02_2437_example.mp3 deleted file mode 100644 index 7ebdb21e1..000000000 Binary files a/files/02_2437_example.mp3 and /dev/null differ diff --git a/files/02_2437_meaning.mp3 b/files/02_2437_meaning.mp3 deleted file mode 100644 index 53aa5377c..000000000 Binary files a/files/02_2437_meaning.mp3 and /dev/null differ diff --git a/files/02_2438.jpg b/files/02_2438.jpg deleted file mode 100644 index 87a02587c..000000000 Binary files a/files/02_2438.jpg and /dev/null differ diff --git a/files/02_2438.mp3 b/files/02_2438.mp3 deleted file mode 100644 index 0c270cbc0..000000000 Binary files a/files/02_2438.mp3 and /dev/null differ diff --git a/files/02_2438_example.mp3 b/files/02_2438_example.mp3 deleted file mode 100644 index 03d743023..000000000 Binary files a/files/02_2438_example.mp3 and /dev/null differ diff --git a/files/02_2438_meaning.mp3 b/files/02_2438_meaning.mp3 deleted file mode 100644 index 8629aaf6e..000000000 Binary files a/files/02_2438_meaning.mp3 and /dev/null differ diff --git a/files/02_2439.jpg b/files/02_2439.jpg deleted file mode 100644 index e6fa466d5..000000000 Binary files a/files/02_2439.jpg and /dev/null differ diff --git a/files/02_2439.mp3 b/files/02_2439.mp3 deleted file mode 100644 index 5a7eb902f..000000000 Binary files a/files/02_2439.mp3 and /dev/null differ diff --git a/files/02_2439_example.mp3 b/files/02_2439_example.mp3 deleted file mode 100644 index 2dc96da47..000000000 Binary files a/files/02_2439_example.mp3 and /dev/null differ diff --git a/files/02_2439_meaning.mp3 b/files/02_2439_meaning.mp3 deleted file mode 100644 index 56279467f..000000000 Binary files a/files/02_2439_meaning.mp3 and /dev/null differ diff --git a/files/02_2440.jpg b/files/02_2440.jpg deleted file mode 100644 index 15fa2cd8e..000000000 Binary files a/files/02_2440.jpg and /dev/null differ diff --git a/files/02_2440.mp3 b/files/02_2440.mp3 deleted file mode 100644 index fe2f9a987..000000000 Binary files a/files/02_2440.mp3 and /dev/null differ diff --git a/files/02_2440_example.mp3 b/files/02_2440_example.mp3 deleted file mode 100644 index 8a7c04d40..000000000 Binary files a/files/02_2440_example.mp3 and /dev/null differ diff --git a/files/02_2440_meaning.mp3 b/files/02_2440_meaning.mp3 deleted file mode 100644 index 405140cac..000000000 Binary files a/files/02_2440_meaning.mp3 and /dev/null differ diff --git a/files/02_3021.jpg b/files/02_3021.jpg deleted file mode 100644 index d1d7cc490..000000000 Binary files a/files/02_3021.jpg and /dev/null differ diff --git a/files/02_3021.mp3 b/files/02_3021.mp3 deleted file mode 100644 index dee656228..000000000 Binary files a/files/02_3021.mp3 and /dev/null differ diff --git a/files/02_3021_example.mp3 b/files/02_3021_example.mp3 deleted file mode 100644 index 2346243d1..000000000 Binary files a/files/02_3021_example.mp3 and /dev/null differ diff --git a/files/02_3021_meaning.mp3 b/files/02_3021_meaning.mp3 deleted file mode 100644 index bc2fc2e2f..000000000 Binary files a/files/02_3021_meaning.mp3 and /dev/null differ diff --git a/files/02_3022.jpg b/files/02_3022.jpg deleted file mode 100644 index 05fb5ed8d..000000000 Binary files a/files/02_3022.jpg and /dev/null differ diff --git a/files/02_3022.mp3 b/files/02_3022.mp3 deleted file mode 100644 index 8ae343616..000000000 Binary files a/files/02_3022.mp3 and /dev/null differ diff --git a/files/02_3022_example.mp3 b/files/02_3022_example.mp3 deleted file mode 100644 index 06bd8727e..000000000 Binary files a/files/02_3022_example.mp3 and /dev/null differ diff --git a/files/02_3022_meaning.mp3 b/files/02_3022_meaning.mp3 deleted file mode 100644 index 913d6f1c9..000000000 Binary files a/files/02_3022_meaning.mp3 and /dev/null differ diff --git a/files/02_3023.jpg b/files/02_3023.jpg deleted file mode 100644 index 9ed6f93a9..000000000 Binary files a/files/02_3023.jpg and /dev/null differ diff --git a/files/02_3023.mp3 b/files/02_3023.mp3 deleted file mode 100644 index 1b321b7fb..000000000 Binary files a/files/02_3023.mp3 and /dev/null differ diff --git a/files/02_3023_example.mp3 b/files/02_3023_example.mp3 deleted file mode 100644 index cc405a50a..000000000 Binary files a/files/02_3023_example.mp3 and /dev/null differ diff --git a/files/02_3023_meaning.mp3 b/files/02_3023_meaning.mp3 deleted file mode 100644 index 3a0f1f4da..000000000 Binary files a/files/02_3023_meaning.mp3 and /dev/null differ diff --git a/files/02_3024.jpg b/files/02_3024.jpg deleted file mode 100644 index 4e5ad035b..000000000 Binary files a/files/02_3024.jpg and /dev/null differ diff --git a/files/02_3024.mp3 b/files/02_3024.mp3 deleted file mode 100644 index 741f166c0..000000000 Binary files a/files/02_3024.mp3 and /dev/null differ diff --git a/files/02_3024_example.mp3 b/files/02_3024_example.mp3 deleted file mode 100644 index 033d970c7..000000000 Binary files a/files/02_3024_example.mp3 and /dev/null differ diff --git a/files/02_3024_meaning.mp3 b/files/02_3024_meaning.mp3 deleted file mode 100644 index 04f67825b..000000000 Binary files a/files/02_3024_meaning.mp3 and /dev/null differ diff --git a/files/02_3025.jpg b/files/02_3025.jpg deleted file mode 100644 index daf6321b4..000000000 Binary files a/files/02_3025.jpg and /dev/null differ diff --git a/files/02_3025.mp3 b/files/02_3025.mp3 deleted file mode 100644 index 834670111..000000000 Binary files a/files/02_3025.mp3 and /dev/null differ diff --git a/files/02_3025_example.mp3 b/files/02_3025_example.mp3 deleted file mode 100644 index 5977a75bc..000000000 Binary files a/files/02_3025_example.mp3 and /dev/null differ diff --git a/files/02_3025_meaning.mp3 b/files/02_3025_meaning.mp3 deleted file mode 100644 index 60adf491b..000000000 Binary files a/files/02_3025_meaning.mp3 and /dev/null differ diff --git a/files/02_3026.jpg b/files/02_3026.jpg deleted file mode 100644 index 4218543cb..000000000 Binary files a/files/02_3026.jpg and /dev/null differ diff --git a/files/02_3026.mp3 b/files/02_3026.mp3 deleted file mode 100644 index ccbf9f29f..000000000 Binary files a/files/02_3026.mp3 and /dev/null differ diff --git a/files/02_3026_example.mp3 b/files/02_3026_example.mp3 deleted file mode 100644 index cafe3fb1e..000000000 Binary files a/files/02_3026_example.mp3 and /dev/null differ diff --git a/files/02_3026_meaning.mp3 b/files/02_3026_meaning.mp3 deleted file mode 100644 index 17a03af45..000000000 Binary files a/files/02_3026_meaning.mp3 and /dev/null differ diff --git a/files/02_3027.jpg b/files/02_3027.jpg deleted file mode 100644 index af8e6ad5a..000000000 Binary files a/files/02_3027.jpg and /dev/null differ diff --git a/files/02_3027.mp3 b/files/02_3027.mp3 deleted file mode 100644 index 8f065449c..000000000 Binary files a/files/02_3027.mp3 and /dev/null differ diff --git a/files/02_3027_example.mp3 b/files/02_3027_example.mp3 deleted file mode 100644 index 9f905228a..000000000 Binary files a/files/02_3027_example.mp3 and /dev/null differ diff --git a/files/02_3027_meaning.mp3 b/files/02_3027_meaning.mp3 deleted file mode 100644 index 6ddb14c02..000000000 Binary files a/files/02_3027_meaning.mp3 and /dev/null differ diff --git a/files/02_3028.jpg b/files/02_3028.jpg deleted file mode 100644 index ab3cf0010..000000000 Binary files a/files/02_3028.jpg and /dev/null differ diff --git a/files/02_3028.mp3 b/files/02_3028.mp3 deleted file mode 100644 index b23337839..000000000 Binary files a/files/02_3028.mp3 and /dev/null differ diff --git a/files/02_3028_example.mp3 b/files/02_3028_example.mp3 deleted file mode 100644 index 7fec02928..000000000 Binary files a/files/02_3028_example.mp3 and /dev/null differ diff --git a/files/02_3028_meaning.mp3 b/files/02_3028_meaning.mp3 deleted file mode 100644 index 4adc30691..000000000 Binary files a/files/02_3028_meaning.mp3 and /dev/null differ diff --git a/files/02_3029.jpg b/files/02_3029.jpg deleted file mode 100644 index ef3403e24..000000000 Binary files a/files/02_3029.jpg and /dev/null differ diff --git a/files/02_3029.mp3 b/files/02_3029.mp3 deleted file mode 100644 index 5b8c4f749..000000000 Binary files a/files/02_3029.mp3 and /dev/null differ diff --git a/files/02_3029_example.mp3 b/files/02_3029_example.mp3 deleted file mode 100644 index 733ff5bb4..000000000 Binary files a/files/02_3029_example.mp3 and /dev/null differ diff --git a/files/02_3029_meaning.mp3 b/files/02_3029_meaning.mp3 deleted file mode 100644 index 9a0abdd6f..000000000 Binary files a/files/02_3029_meaning.mp3 and /dev/null differ diff --git a/files/02_3030.jpg b/files/02_3030.jpg deleted file mode 100644 index fee201092..000000000 Binary files a/files/02_3030.jpg and /dev/null differ diff --git a/files/02_3030.mp3 b/files/02_3030.mp3 deleted file mode 100644 index 297ad1138..000000000 Binary files a/files/02_3030.mp3 and /dev/null differ diff --git a/files/02_3030_example.mp3 b/files/02_3030_example.mp3 deleted file mode 100644 index d6edf77f5..000000000 Binary files a/files/02_3030_example.mp3 and /dev/null differ diff --git a/files/02_3030_meaning.mp3 b/files/02_3030_meaning.mp3 deleted file mode 100644 index 9a67a2f44..000000000 Binary files a/files/02_3030_meaning.mp3 and /dev/null differ diff --git a/files/02_3031.jpg b/files/02_3031.jpg deleted file mode 100644 index 8a71765f6..000000000 Binary files a/files/02_3031.jpg and /dev/null differ diff --git a/files/02_3031.mp3 b/files/02_3031.mp3 deleted file mode 100644 index 0777a9334..000000000 Binary files a/files/02_3031.mp3 and /dev/null differ diff --git a/files/02_3031_example.mp3 b/files/02_3031_example.mp3 deleted file mode 100644 index 22a25371d..000000000 Binary files a/files/02_3031_example.mp3 and /dev/null differ diff --git a/files/02_3031_meaning.mp3 b/files/02_3031_meaning.mp3 deleted file mode 100644 index e0afb81ea..000000000 Binary files a/files/02_3031_meaning.mp3 and /dev/null differ diff --git a/files/02_3032.jpg b/files/02_3032.jpg deleted file mode 100644 index 131e2cbc4..000000000 Binary files a/files/02_3032.jpg and /dev/null differ diff --git a/files/02_3032.mp3 b/files/02_3032.mp3 deleted file mode 100644 index d0af9efab..000000000 Binary files a/files/02_3032.mp3 and /dev/null differ diff --git a/files/02_3032_example.mp3 b/files/02_3032_example.mp3 deleted file mode 100644 index 796415bd5..000000000 Binary files a/files/02_3032_example.mp3 and /dev/null differ diff --git a/files/02_3032_meaning.mp3 b/files/02_3032_meaning.mp3 deleted file mode 100644 index 12d18b357..000000000 Binary files a/files/02_3032_meaning.mp3 and /dev/null differ diff --git a/files/02_3033.jpg b/files/02_3033.jpg deleted file mode 100644 index 41fed66f4..000000000 Binary files a/files/02_3033.jpg and /dev/null differ diff --git a/files/02_3033.mp3 b/files/02_3033.mp3 deleted file mode 100644 index 4c7b53ade..000000000 Binary files a/files/02_3033.mp3 and /dev/null differ diff --git a/files/02_3033_example.mp3 b/files/02_3033_example.mp3 deleted file mode 100644 index feddec49a..000000000 Binary files a/files/02_3033_example.mp3 and /dev/null differ diff --git a/files/02_3033_meaning.mp3 b/files/02_3033_meaning.mp3 deleted file mode 100644 index 0cc8d8c1b..000000000 Binary files a/files/02_3033_meaning.mp3 and /dev/null differ diff --git a/files/02_3034.jpg b/files/02_3034.jpg deleted file mode 100644 index b3a2020fe..000000000 Binary files a/files/02_3034.jpg and /dev/null differ diff --git a/files/02_3034.mp3 b/files/02_3034.mp3 deleted file mode 100644 index b36819000..000000000 Binary files a/files/02_3034.mp3 and /dev/null differ diff --git a/files/02_3034_example.mp3 b/files/02_3034_example.mp3 deleted file mode 100644 index 63292bbe3..000000000 Binary files a/files/02_3034_example.mp3 and /dev/null differ diff --git a/files/02_3034_meaning.mp3 b/files/02_3034_meaning.mp3 deleted file mode 100644 index 4c9c8380e..000000000 Binary files a/files/02_3034_meaning.mp3 and /dev/null differ diff --git a/files/02_3035.jpg b/files/02_3035.jpg deleted file mode 100644 index b6db69bb2..000000000 Binary files a/files/02_3035.jpg and /dev/null differ diff --git a/files/02_3035.mp3 b/files/02_3035.mp3 deleted file mode 100644 index 0da373aad..000000000 Binary files a/files/02_3035.mp3 and /dev/null differ diff --git a/files/02_3035_example.mp3 b/files/02_3035_example.mp3 deleted file mode 100644 index d1995bd97..000000000 Binary files a/files/02_3035_example.mp3 and /dev/null differ diff --git a/files/02_3035_meaning.mp3 b/files/02_3035_meaning.mp3 deleted file mode 100644 index 4a429a73a..000000000 Binary files a/files/02_3035_meaning.mp3 and /dev/null differ diff --git a/files/02_3036.jpg b/files/02_3036.jpg deleted file mode 100644 index 2021ff8c8..000000000 Binary files a/files/02_3036.jpg and /dev/null differ diff --git a/files/02_3036.mp3 b/files/02_3036.mp3 deleted file mode 100644 index 6d514073d..000000000 Binary files a/files/02_3036.mp3 and /dev/null differ diff --git a/files/02_3036_example.mp3 b/files/02_3036_example.mp3 deleted file mode 100644 index f3667cc26..000000000 Binary files a/files/02_3036_example.mp3 and /dev/null differ diff --git a/files/02_3036_meaning.mp3 b/files/02_3036_meaning.mp3 deleted file mode 100644 index c472fe9e4..000000000 Binary files a/files/02_3036_meaning.mp3 and /dev/null differ diff --git a/files/02_3037.jpg b/files/02_3037.jpg deleted file mode 100644 index 912a817f5..000000000 Binary files a/files/02_3037.jpg and /dev/null differ diff --git a/files/02_3037.mp3 b/files/02_3037.mp3 deleted file mode 100644 index d7802c51e..000000000 Binary files a/files/02_3037.mp3 and /dev/null differ diff --git a/files/02_3037_example.mp3 b/files/02_3037_example.mp3 deleted file mode 100644 index cae9e040f..000000000 Binary files a/files/02_3037_example.mp3 and /dev/null differ diff --git a/files/02_3037_meaning.mp3 b/files/02_3037_meaning.mp3 deleted file mode 100644 index 51764bb18..000000000 Binary files a/files/02_3037_meaning.mp3 and /dev/null differ diff --git a/files/02_3038.jpg b/files/02_3038.jpg deleted file mode 100644 index 79ceb25d6..000000000 Binary files a/files/02_3038.jpg and /dev/null differ diff --git a/files/02_3038.mp3 b/files/02_3038.mp3 deleted file mode 100644 index 6eed675e7..000000000 Binary files a/files/02_3038.mp3 and /dev/null differ diff --git a/files/02_3038_example.mp3 b/files/02_3038_example.mp3 deleted file mode 100644 index ddada1ef9..000000000 Binary files a/files/02_3038_example.mp3 and /dev/null differ diff --git a/files/02_3038_meaning.mp3 b/files/02_3038_meaning.mp3 deleted file mode 100644 index d73bb7473..000000000 Binary files a/files/02_3038_meaning.mp3 and /dev/null differ diff --git a/files/02_3039.jpg b/files/02_3039.jpg deleted file mode 100644 index 1711d818e..000000000 Binary files a/files/02_3039.jpg and /dev/null differ diff --git a/files/02_3039.mp3 b/files/02_3039.mp3 deleted file mode 100644 index bfd5057b6..000000000 Binary files a/files/02_3039.mp3 and /dev/null differ diff --git a/files/02_3039_example.mp3 b/files/02_3039_example.mp3 deleted file mode 100644 index 7bf88083e..000000000 Binary files a/files/02_3039_example.mp3 and /dev/null differ diff --git a/files/02_3039_meaning.mp3 b/files/02_3039_meaning.mp3 deleted file mode 100644 index 334b730e5..000000000 Binary files a/files/02_3039_meaning.mp3 and /dev/null differ diff --git a/files/02_3040.jpg b/files/02_3040.jpg deleted file mode 100644 index b57f46f7f..000000000 Binary files a/files/02_3040.jpg and /dev/null differ diff --git a/files/02_3040.mp3 b/files/02_3040.mp3 deleted file mode 100644 index 77d6d95ee..000000000 Binary files a/files/02_3040.mp3 and /dev/null differ diff --git a/files/02_3040_example.mp3 b/files/02_3040_example.mp3 deleted file mode 100644 index e5c269aad..000000000 Binary files a/files/02_3040_example.mp3 and /dev/null differ diff --git a/files/02_3040_meaning.mp3 b/files/02_3040_meaning.mp3 deleted file mode 100644 index 71eded811..000000000 Binary files a/files/02_3040_meaning.mp3 and /dev/null differ diff --git a/files/03_0041.jpg b/files/03_0041.jpg deleted file mode 100644 index eb6d3c916..000000000 Binary files a/files/03_0041.jpg and /dev/null differ diff --git a/files/03_0041.mp3 b/files/03_0041.mp3 deleted file mode 100644 index 4c6727064..000000000 Binary files a/files/03_0041.mp3 and /dev/null differ diff --git a/files/03_0041_example.mp3 b/files/03_0041_example.mp3 deleted file mode 100644 index f3c90febf..000000000 Binary files a/files/03_0041_example.mp3 and /dev/null differ diff --git a/files/03_0041_meaning.mp3 b/files/03_0041_meaning.mp3 deleted file mode 100644 index 6ce143cf7..000000000 Binary files a/files/03_0041_meaning.mp3 and /dev/null differ diff --git a/files/03_0042.jpg b/files/03_0042.jpg deleted file mode 100644 index dcbd5fa3c..000000000 Binary files a/files/03_0042.jpg and /dev/null differ diff --git a/files/03_0042.mp3 b/files/03_0042.mp3 deleted file mode 100644 index 0be65c310..000000000 Binary files a/files/03_0042.mp3 and /dev/null differ diff --git a/files/03_0042_example.mp3 b/files/03_0042_example.mp3 deleted file mode 100644 index d6be43f9e..000000000 Binary files a/files/03_0042_example.mp3 and /dev/null differ diff --git a/files/03_0042_meaning.mp3 b/files/03_0042_meaning.mp3 deleted file mode 100644 index 18ee3ca1f..000000000 Binary files a/files/03_0042_meaning.mp3 and /dev/null differ diff --git a/files/03_0043.jpg b/files/03_0043.jpg deleted file mode 100644 index 3a929ef99..000000000 Binary files a/files/03_0043.jpg and /dev/null differ diff --git a/files/03_0043.mp3 b/files/03_0043.mp3 deleted file mode 100644 index bc814db03..000000000 Binary files a/files/03_0043.mp3 and /dev/null differ diff --git a/files/03_0043_example.mp3 b/files/03_0043_example.mp3 deleted file mode 100644 index 8bef7e42d..000000000 Binary files a/files/03_0043_example.mp3 and /dev/null differ diff --git a/files/03_0043_meaning.mp3 b/files/03_0043_meaning.mp3 deleted file mode 100644 index 4f5f85043..000000000 Binary files a/files/03_0043_meaning.mp3 and /dev/null differ diff --git a/files/03_0044.jpg b/files/03_0044.jpg deleted file mode 100644 index 0d3dd107e..000000000 Binary files a/files/03_0044.jpg and /dev/null differ diff --git a/files/03_0044.mp3 b/files/03_0044.mp3 deleted file mode 100644 index d23504710..000000000 Binary files a/files/03_0044.mp3 and /dev/null differ diff --git a/files/03_0044_example.mp3 b/files/03_0044_example.mp3 deleted file mode 100644 index e10aa5fac..000000000 Binary files a/files/03_0044_example.mp3 and /dev/null differ diff --git a/files/03_0044_meaning.mp3 b/files/03_0044_meaning.mp3 deleted file mode 100644 index 1c4b21d9b..000000000 Binary files a/files/03_0044_meaning.mp3 and /dev/null differ diff --git a/files/03_0045.jpg b/files/03_0045.jpg deleted file mode 100644 index fb292b278..000000000 Binary files a/files/03_0045.jpg and /dev/null differ diff --git a/files/03_0045.mp3 b/files/03_0045.mp3 deleted file mode 100644 index bf6ba0a94..000000000 Binary files a/files/03_0045.mp3 and /dev/null differ diff --git a/files/03_0045_example.mp3 b/files/03_0045_example.mp3 deleted file mode 100644 index a25991a5f..000000000 Binary files a/files/03_0045_example.mp3 and /dev/null differ diff --git a/files/03_0045_meaning.mp3 b/files/03_0045_meaning.mp3 deleted file mode 100644 index d02e1dafa..000000000 Binary files a/files/03_0045_meaning.mp3 and /dev/null differ diff --git a/files/03_0046.jpg b/files/03_0046.jpg deleted file mode 100644 index 9a2c457dc..000000000 Binary files a/files/03_0046.jpg and /dev/null differ diff --git a/files/03_0046.mp3 b/files/03_0046.mp3 deleted file mode 100644 index 0b7e9657b..000000000 Binary files a/files/03_0046.mp3 and /dev/null differ diff --git a/files/03_0046_example.mp3 b/files/03_0046_example.mp3 deleted file mode 100644 index 76b70ddcb..000000000 Binary files a/files/03_0046_example.mp3 and /dev/null differ diff --git a/files/03_0046_meaning.mp3 b/files/03_0046_meaning.mp3 deleted file mode 100644 index dc7af5579..000000000 Binary files a/files/03_0046_meaning.mp3 and /dev/null differ diff --git a/files/03_0047.jpg b/files/03_0047.jpg deleted file mode 100644 index 4a7728cba..000000000 Binary files a/files/03_0047.jpg and /dev/null differ diff --git a/files/03_0047.mp3 b/files/03_0047.mp3 deleted file mode 100644 index f95ea024f..000000000 Binary files a/files/03_0047.mp3 and /dev/null differ diff --git a/files/03_0047_example.mp3 b/files/03_0047_example.mp3 deleted file mode 100644 index 10a8eeb10..000000000 Binary files a/files/03_0047_example.mp3 and /dev/null differ diff --git a/files/03_0047_meaning.mp3 b/files/03_0047_meaning.mp3 deleted file mode 100644 index a49f65381..000000000 Binary files a/files/03_0047_meaning.mp3 and /dev/null differ diff --git a/files/03_0048.jpg b/files/03_0048.jpg deleted file mode 100644 index 71304205c..000000000 Binary files a/files/03_0048.jpg and /dev/null differ diff --git a/files/03_0048.mp3 b/files/03_0048.mp3 deleted file mode 100644 index a38612ecf..000000000 Binary files a/files/03_0048.mp3 and /dev/null differ diff --git a/files/03_0048_example.mp3 b/files/03_0048_example.mp3 deleted file mode 100644 index be47fec04..000000000 Binary files a/files/03_0048_example.mp3 and /dev/null differ diff --git a/files/03_0048_meaning.mp3 b/files/03_0048_meaning.mp3 deleted file mode 100644 index 45c7168fa..000000000 Binary files a/files/03_0048_meaning.mp3 and /dev/null differ diff --git a/files/03_0049.jpg b/files/03_0049.jpg deleted file mode 100644 index 2a18ed7dc..000000000 Binary files a/files/03_0049.jpg and /dev/null differ diff --git a/files/03_0049.mp3 b/files/03_0049.mp3 deleted file mode 100644 index bde2fb5c5..000000000 Binary files a/files/03_0049.mp3 and /dev/null differ diff --git a/files/03_0049_example.mp3 b/files/03_0049_example.mp3 deleted file mode 100644 index 068f3fc43..000000000 Binary files a/files/03_0049_example.mp3 and /dev/null differ diff --git a/files/03_0049_meaning.mp3 b/files/03_0049_meaning.mp3 deleted file mode 100644 index 7a95806dd..000000000 Binary files a/files/03_0049_meaning.mp3 and /dev/null differ diff --git a/files/03_0050.jpg b/files/03_0050.jpg deleted file mode 100644 index e101b9bbc..000000000 Binary files a/files/03_0050.jpg and /dev/null differ diff --git a/files/03_0050.mp3 b/files/03_0050.mp3 deleted file mode 100644 index 5bb42da75..000000000 Binary files a/files/03_0050.mp3 and /dev/null differ diff --git a/files/03_0050_example.mp3 b/files/03_0050_example.mp3 deleted file mode 100644 index 9ad537fc0..000000000 Binary files a/files/03_0050_example.mp3 and /dev/null differ diff --git a/files/03_0050_meaning.mp3 b/files/03_0050_meaning.mp3 deleted file mode 100644 index 8a3cdbdce..000000000 Binary files a/files/03_0050_meaning.mp3 and /dev/null differ diff --git a/files/03_0051.jpg b/files/03_0051.jpg deleted file mode 100644 index dab223e4f..000000000 Binary files a/files/03_0051.jpg and /dev/null differ diff --git a/files/03_0051.mp3 b/files/03_0051.mp3 deleted file mode 100644 index 088501e38..000000000 Binary files a/files/03_0051.mp3 and /dev/null differ diff --git a/files/03_0051_example.mp3 b/files/03_0051_example.mp3 deleted file mode 100644 index c95ba6be6..000000000 Binary files a/files/03_0051_example.mp3 and /dev/null differ diff --git a/files/03_0051_meaning.mp3 b/files/03_0051_meaning.mp3 deleted file mode 100644 index 8216c8819..000000000 Binary files a/files/03_0051_meaning.mp3 and /dev/null differ diff --git a/files/03_0052.jpg b/files/03_0052.jpg deleted file mode 100644 index 9102fe796..000000000 Binary files a/files/03_0052.jpg and /dev/null differ diff --git a/files/03_0052.mp3 b/files/03_0052.mp3 deleted file mode 100644 index 36314264a..000000000 Binary files a/files/03_0052.mp3 and /dev/null differ diff --git a/files/03_0052_example.mp3 b/files/03_0052_example.mp3 deleted file mode 100644 index 20252b711..000000000 Binary files a/files/03_0052_example.mp3 and /dev/null differ diff --git a/files/03_0052_meaning.mp3 b/files/03_0052_meaning.mp3 deleted file mode 100644 index d053524d5..000000000 Binary files a/files/03_0052_meaning.mp3 and /dev/null differ diff --git a/files/03_0053.jpg b/files/03_0053.jpg deleted file mode 100644 index 9d2eb413f..000000000 Binary files a/files/03_0053.jpg and /dev/null differ diff --git a/files/03_0053.mp3 b/files/03_0053.mp3 deleted file mode 100644 index 39536db47..000000000 Binary files a/files/03_0053.mp3 and /dev/null differ diff --git a/files/03_0053_example.mp3 b/files/03_0053_example.mp3 deleted file mode 100644 index 2e644ca9f..000000000 Binary files a/files/03_0053_example.mp3 and /dev/null differ diff --git a/files/03_0053_meaning.mp3 b/files/03_0053_meaning.mp3 deleted file mode 100644 index 41366c27d..000000000 Binary files a/files/03_0053_meaning.mp3 and /dev/null differ diff --git a/files/03_0054.jpg b/files/03_0054.jpg deleted file mode 100644 index 32a053c11..000000000 Binary files a/files/03_0054.jpg and /dev/null differ diff --git a/files/03_0054.mp3 b/files/03_0054.mp3 deleted file mode 100644 index e70c5dd37..000000000 Binary files a/files/03_0054.mp3 and /dev/null differ diff --git a/files/03_0054_example.mp3 b/files/03_0054_example.mp3 deleted file mode 100644 index a3f4fb18f..000000000 Binary files a/files/03_0054_example.mp3 and /dev/null differ diff --git a/files/03_0054_meaning.mp3 b/files/03_0054_meaning.mp3 deleted file mode 100644 index 711db5049..000000000 Binary files a/files/03_0054_meaning.mp3 and /dev/null differ diff --git a/files/03_0055.jpg b/files/03_0055.jpg deleted file mode 100644 index 2f71f5fb6..000000000 Binary files a/files/03_0055.jpg and /dev/null differ diff --git a/files/03_0055.mp3 b/files/03_0055.mp3 deleted file mode 100644 index 48b3f8c33..000000000 Binary files a/files/03_0055.mp3 and /dev/null differ diff --git a/files/03_0055_example.mp3 b/files/03_0055_example.mp3 deleted file mode 100644 index 00fb4c2c5..000000000 Binary files a/files/03_0055_example.mp3 and /dev/null differ diff --git a/files/03_0055_meaning.mp3 b/files/03_0055_meaning.mp3 deleted file mode 100644 index 262a1c28c..000000000 Binary files a/files/03_0055_meaning.mp3 and /dev/null differ diff --git a/files/03_0056.jpg b/files/03_0056.jpg deleted file mode 100644 index 3c208703e..000000000 Binary files a/files/03_0056.jpg and /dev/null differ diff --git a/files/03_0056.mp3 b/files/03_0056.mp3 deleted file mode 100644 index 22b5f8e7d..000000000 Binary files a/files/03_0056.mp3 and /dev/null differ diff --git a/files/03_0056_example.mp3 b/files/03_0056_example.mp3 deleted file mode 100644 index d4de310d4..000000000 Binary files a/files/03_0056_example.mp3 and /dev/null differ diff --git a/files/03_0056_meaning.mp3 b/files/03_0056_meaning.mp3 deleted file mode 100644 index 931fa5462..000000000 Binary files a/files/03_0056_meaning.mp3 and /dev/null differ diff --git a/files/03_0057.jpg b/files/03_0057.jpg deleted file mode 100644 index 98a04f2f1..000000000 Binary files a/files/03_0057.jpg and /dev/null differ diff --git a/files/03_0057.mp3 b/files/03_0057.mp3 deleted file mode 100644 index 6b5cd0e51..000000000 Binary files a/files/03_0057.mp3 and /dev/null differ diff --git a/files/03_0057_example.mp3 b/files/03_0057_example.mp3 deleted file mode 100644 index 5d8cae736..000000000 Binary files a/files/03_0057_example.mp3 and /dev/null differ diff --git a/files/03_0057_meaning.mp3 b/files/03_0057_meaning.mp3 deleted file mode 100644 index c25c7808e..000000000 Binary files a/files/03_0057_meaning.mp3 and /dev/null differ diff --git a/files/03_0058.jpg b/files/03_0058.jpg deleted file mode 100644 index 91838f925..000000000 Binary files a/files/03_0058.jpg and /dev/null differ diff --git a/files/03_0058.mp3 b/files/03_0058.mp3 deleted file mode 100644 index 2365a5883..000000000 Binary files a/files/03_0058.mp3 and /dev/null differ diff --git a/files/03_0058_example.mp3 b/files/03_0058_example.mp3 deleted file mode 100644 index a39daae6e..000000000 Binary files a/files/03_0058_example.mp3 and /dev/null differ diff --git a/files/03_0058_meaning.mp3 b/files/03_0058_meaning.mp3 deleted file mode 100644 index cc9dac783..000000000 Binary files a/files/03_0058_meaning.mp3 and /dev/null differ diff --git a/files/03_0059.jpg b/files/03_0059.jpg deleted file mode 100644 index 9f209ba3f..000000000 Binary files a/files/03_0059.jpg and /dev/null differ diff --git a/files/03_0059.mp3 b/files/03_0059.mp3 deleted file mode 100644 index 092bc0682..000000000 Binary files a/files/03_0059.mp3 and /dev/null differ diff --git a/files/03_0059_example.mp3 b/files/03_0059_example.mp3 deleted file mode 100644 index ef83d939e..000000000 Binary files a/files/03_0059_example.mp3 and /dev/null differ diff --git a/files/03_0059_meaning.mp3 b/files/03_0059_meaning.mp3 deleted file mode 100644 index 7d1bf425b..000000000 Binary files a/files/03_0059_meaning.mp3 and /dev/null differ diff --git a/files/03_0060.jpg b/files/03_0060.jpg deleted file mode 100644 index 326149b6a..000000000 Binary files a/files/03_0060.jpg and /dev/null differ diff --git a/files/03_0060.mp3 b/files/03_0060.mp3 deleted file mode 100644 index 9324d755b..000000000 Binary files a/files/03_0060.mp3 and /dev/null differ diff --git a/files/03_0060_example.mp3 b/files/03_0060_example.mp3 deleted file mode 100644 index ac8c5cf92..000000000 Binary files a/files/03_0060_example.mp3 and /dev/null differ diff --git a/files/03_0060_meaning.mp3 b/files/03_0060_meaning.mp3 deleted file mode 100644 index dd1ff1eb6..000000000 Binary files a/files/03_0060_meaning.mp3 and /dev/null differ diff --git a/files/03_0641.jpg b/files/03_0641.jpg deleted file mode 100644 index 9190403ec..000000000 Binary files a/files/03_0641.jpg and /dev/null differ diff --git a/files/03_0641.mp3 b/files/03_0641.mp3 deleted file mode 100644 index daa3267ae..000000000 Binary files a/files/03_0641.mp3 and /dev/null differ diff --git a/files/03_0641_example.mp3 b/files/03_0641_example.mp3 deleted file mode 100644 index fc2408caf..000000000 Binary files a/files/03_0641_example.mp3 and /dev/null differ diff --git a/files/03_0641_meaning.mp3 b/files/03_0641_meaning.mp3 deleted file mode 100644 index 0cacc3538..000000000 Binary files a/files/03_0641_meaning.mp3 and /dev/null differ diff --git a/files/03_0642.jpg b/files/03_0642.jpg deleted file mode 100644 index 756c33621..000000000 Binary files a/files/03_0642.jpg and /dev/null differ diff --git a/files/03_0642.mp3 b/files/03_0642.mp3 deleted file mode 100644 index aacff22c2..000000000 Binary files a/files/03_0642.mp3 and /dev/null differ diff --git a/files/03_0642_example.mp3 b/files/03_0642_example.mp3 deleted file mode 100644 index 59799b516..000000000 Binary files a/files/03_0642_example.mp3 and /dev/null differ diff --git a/files/03_0642_meaning.mp3 b/files/03_0642_meaning.mp3 deleted file mode 100644 index c0050aac0..000000000 Binary files a/files/03_0642_meaning.mp3 and /dev/null differ diff --git a/files/03_0643.jpg b/files/03_0643.jpg deleted file mode 100644 index 53e997663..000000000 Binary files a/files/03_0643.jpg and /dev/null differ diff --git a/files/03_0643.mp3 b/files/03_0643.mp3 deleted file mode 100644 index 3e129acee..000000000 Binary files a/files/03_0643.mp3 and /dev/null differ diff --git a/files/03_0643_example.mp3 b/files/03_0643_example.mp3 deleted file mode 100644 index c72acd908..000000000 Binary files a/files/03_0643_example.mp3 and /dev/null differ diff --git a/files/03_0643_meaning.mp3 b/files/03_0643_meaning.mp3 deleted file mode 100644 index 78b4a3251..000000000 Binary files a/files/03_0643_meaning.mp3 and /dev/null differ diff --git a/files/03_0644.jpg b/files/03_0644.jpg deleted file mode 100644 index ea6bf2cc2..000000000 Binary files a/files/03_0644.jpg and /dev/null differ diff --git a/files/03_0644.mp3 b/files/03_0644.mp3 deleted file mode 100644 index 575a016ed..000000000 Binary files a/files/03_0644.mp3 and /dev/null differ diff --git a/files/03_0644_example.mp3 b/files/03_0644_example.mp3 deleted file mode 100644 index 45c868e03..000000000 Binary files a/files/03_0644_example.mp3 and /dev/null differ diff --git a/files/03_0644_meaning.mp3 b/files/03_0644_meaning.mp3 deleted file mode 100644 index b8748fc0b..000000000 Binary files a/files/03_0644_meaning.mp3 and /dev/null differ diff --git a/files/03_0645.jpg b/files/03_0645.jpg deleted file mode 100644 index 60bbe8d71..000000000 Binary files a/files/03_0645.jpg and /dev/null differ diff --git a/files/03_0645.mp3 b/files/03_0645.mp3 deleted file mode 100644 index 9550dbf20..000000000 Binary files a/files/03_0645.mp3 and /dev/null differ diff --git a/files/03_0645_example.mp3 b/files/03_0645_example.mp3 deleted file mode 100644 index 04c033328..000000000 Binary files a/files/03_0645_example.mp3 and /dev/null differ diff --git a/files/03_0645_meaning.mp3 b/files/03_0645_meaning.mp3 deleted file mode 100644 index 10e840571..000000000 Binary files a/files/03_0645_meaning.mp3 and /dev/null differ diff --git a/files/03_0646.jpg b/files/03_0646.jpg deleted file mode 100644 index 3513951a8..000000000 Binary files a/files/03_0646.jpg and /dev/null differ diff --git a/files/03_0646.mp3 b/files/03_0646.mp3 deleted file mode 100644 index cbdcd49ec..000000000 Binary files a/files/03_0646.mp3 and /dev/null differ diff --git a/files/03_0646_example.mp3 b/files/03_0646_example.mp3 deleted file mode 100644 index fd2dc86d5..000000000 Binary files a/files/03_0646_example.mp3 and /dev/null differ diff --git a/files/03_0646_meaning.mp3 b/files/03_0646_meaning.mp3 deleted file mode 100644 index bf3050d62..000000000 Binary files a/files/03_0646_meaning.mp3 and /dev/null differ diff --git a/files/03_0647.jpg b/files/03_0647.jpg deleted file mode 100644 index 03274b8a0..000000000 Binary files a/files/03_0647.jpg and /dev/null differ diff --git a/files/03_0647.mp3 b/files/03_0647.mp3 deleted file mode 100644 index 0f9ed6b28..000000000 Binary files a/files/03_0647.mp3 and /dev/null differ diff --git a/files/03_0647_example.mp3 b/files/03_0647_example.mp3 deleted file mode 100644 index 6512eacb5..000000000 Binary files a/files/03_0647_example.mp3 and /dev/null differ diff --git a/files/03_0647_meaning.mp3 b/files/03_0647_meaning.mp3 deleted file mode 100644 index 478e10c90..000000000 Binary files a/files/03_0647_meaning.mp3 and /dev/null differ diff --git a/files/03_0648.jpg b/files/03_0648.jpg deleted file mode 100644 index 4444dadb7..000000000 Binary files a/files/03_0648.jpg and /dev/null differ diff --git a/files/03_0648.mp3 b/files/03_0648.mp3 deleted file mode 100644 index 68cfef4b0..000000000 Binary files a/files/03_0648.mp3 and /dev/null differ diff --git a/files/03_0648_example.mp3 b/files/03_0648_example.mp3 deleted file mode 100644 index ad9a06222..000000000 Binary files a/files/03_0648_example.mp3 and /dev/null differ diff --git a/files/03_0648_meaning.mp3 b/files/03_0648_meaning.mp3 deleted file mode 100644 index 87f11405d..000000000 Binary files a/files/03_0648_meaning.mp3 and /dev/null differ diff --git a/files/03_0649.jpg b/files/03_0649.jpg deleted file mode 100644 index 8fe54d0a1..000000000 Binary files a/files/03_0649.jpg and /dev/null differ diff --git a/files/03_0649.mp3 b/files/03_0649.mp3 deleted file mode 100644 index 24d7cd1b9..000000000 Binary files a/files/03_0649.mp3 and /dev/null differ diff --git a/files/03_0649_example.mp3 b/files/03_0649_example.mp3 deleted file mode 100644 index e07d90cd3..000000000 Binary files a/files/03_0649_example.mp3 and /dev/null differ diff --git a/files/03_0649_meaning.mp3 b/files/03_0649_meaning.mp3 deleted file mode 100644 index 6faa70a41..000000000 Binary files a/files/03_0649_meaning.mp3 and /dev/null differ diff --git a/files/03_0650.jpg b/files/03_0650.jpg deleted file mode 100644 index 1d102c283..000000000 Binary files a/files/03_0650.jpg and /dev/null differ diff --git a/files/03_0650.mp3 b/files/03_0650.mp3 deleted file mode 100644 index b0f11df45..000000000 Binary files a/files/03_0650.mp3 and /dev/null differ diff --git a/files/03_0650_example.mp3 b/files/03_0650_example.mp3 deleted file mode 100644 index 85b7ed83a..000000000 Binary files a/files/03_0650_example.mp3 and /dev/null differ diff --git a/files/03_0650_meaning.mp3 b/files/03_0650_meaning.mp3 deleted file mode 100644 index 8f97b2005..000000000 Binary files a/files/03_0650_meaning.mp3 and /dev/null differ diff --git a/files/03_0651.jpg b/files/03_0651.jpg deleted file mode 100644 index c1ae1b7be..000000000 Binary files a/files/03_0651.jpg and /dev/null differ diff --git a/files/03_0651.mp3 b/files/03_0651.mp3 deleted file mode 100644 index 787b9dc65..000000000 Binary files a/files/03_0651.mp3 and /dev/null differ diff --git a/files/03_0651_example.mp3 b/files/03_0651_example.mp3 deleted file mode 100644 index f4df629f5..000000000 Binary files a/files/03_0651_example.mp3 and /dev/null differ diff --git a/files/03_0651_meaning.mp3 b/files/03_0651_meaning.mp3 deleted file mode 100644 index e0c01c892..000000000 Binary files a/files/03_0651_meaning.mp3 and /dev/null differ diff --git a/files/03_0652.jpg b/files/03_0652.jpg deleted file mode 100644 index 5171d08dd..000000000 Binary files a/files/03_0652.jpg and /dev/null differ diff --git a/files/03_0652.mp3 b/files/03_0652.mp3 deleted file mode 100644 index fdcd6d48e..000000000 Binary files a/files/03_0652.mp3 and /dev/null differ diff --git a/files/03_0652_example.mp3 b/files/03_0652_example.mp3 deleted file mode 100644 index e8535bfd7..000000000 Binary files a/files/03_0652_example.mp3 and /dev/null differ diff --git a/files/03_0652_meaning.mp3 b/files/03_0652_meaning.mp3 deleted file mode 100644 index 9eed8f25d..000000000 Binary files a/files/03_0652_meaning.mp3 and /dev/null differ diff --git a/files/03_0653.jpg b/files/03_0653.jpg deleted file mode 100644 index cc363739e..000000000 Binary files a/files/03_0653.jpg and /dev/null differ diff --git a/files/03_0653.mp3 b/files/03_0653.mp3 deleted file mode 100644 index 15272fd2c..000000000 Binary files a/files/03_0653.mp3 and /dev/null differ diff --git a/files/03_0653_example.mp3 b/files/03_0653_example.mp3 deleted file mode 100644 index 0b30fa90f..000000000 Binary files a/files/03_0653_example.mp3 and /dev/null differ diff --git a/files/03_0653_meaning.mp3 b/files/03_0653_meaning.mp3 deleted file mode 100644 index f0f9943d4..000000000 Binary files a/files/03_0653_meaning.mp3 and /dev/null differ diff --git a/files/03_0654.jpg b/files/03_0654.jpg deleted file mode 100644 index 17ce3212a..000000000 Binary files a/files/03_0654.jpg and /dev/null differ diff --git a/files/03_0654.mp3 b/files/03_0654.mp3 deleted file mode 100644 index bf1ad835a..000000000 Binary files a/files/03_0654.mp3 and /dev/null differ diff --git a/files/03_0654_example.mp3 b/files/03_0654_example.mp3 deleted file mode 100644 index 795126182..000000000 Binary files a/files/03_0654_example.mp3 and /dev/null differ diff --git a/files/03_0654_meaning.mp3 b/files/03_0654_meaning.mp3 deleted file mode 100644 index 951520750..000000000 Binary files a/files/03_0654_meaning.mp3 and /dev/null differ diff --git a/files/03_0655.jpg b/files/03_0655.jpg deleted file mode 100644 index 900cb67a1..000000000 Binary files a/files/03_0655.jpg and /dev/null differ diff --git a/files/03_0655.mp3 b/files/03_0655.mp3 deleted file mode 100644 index 9ec9d9531..000000000 Binary files a/files/03_0655.mp3 and /dev/null differ diff --git a/files/03_0655_example.mp3 b/files/03_0655_example.mp3 deleted file mode 100644 index ed250cb5c..000000000 Binary files a/files/03_0655_example.mp3 and /dev/null differ diff --git a/files/03_0655_meaning.mp3 b/files/03_0655_meaning.mp3 deleted file mode 100644 index a27b5cb7d..000000000 Binary files a/files/03_0655_meaning.mp3 and /dev/null differ diff --git a/files/03_0656.jpg b/files/03_0656.jpg deleted file mode 100644 index e6f413f9b..000000000 Binary files a/files/03_0656.jpg and /dev/null differ diff --git a/files/03_0656.mp3 b/files/03_0656.mp3 deleted file mode 100644 index 8ff0d9dac..000000000 Binary files a/files/03_0656.mp3 and /dev/null differ diff --git a/files/03_0656_example.mp3 b/files/03_0656_example.mp3 deleted file mode 100644 index e4e9d5f4e..000000000 Binary files a/files/03_0656_example.mp3 and /dev/null differ diff --git a/files/03_0656_meaning.mp3 b/files/03_0656_meaning.mp3 deleted file mode 100644 index 61fcf3b96..000000000 Binary files a/files/03_0656_meaning.mp3 and /dev/null differ diff --git a/files/03_0657.jpg b/files/03_0657.jpg deleted file mode 100644 index 9007c84d8..000000000 Binary files a/files/03_0657.jpg and /dev/null differ diff --git a/files/03_0657.mp3 b/files/03_0657.mp3 deleted file mode 100644 index c45021777..000000000 Binary files a/files/03_0657.mp3 and /dev/null differ diff --git a/files/03_0657_example.mp3 b/files/03_0657_example.mp3 deleted file mode 100644 index e0a7d1a42..000000000 Binary files a/files/03_0657_example.mp3 and /dev/null differ diff --git a/files/03_0657_meaning.mp3 b/files/03_0657_meaning.mp3 deleted file mode 100644 index ff20b9dd4..000000000 Binary files a/files/03_0657_meaning.mp3 and /dev/null differ diff --git a/files/03_0658.jpg b/files/03_0658.jpg deleted file mode 100644 index 76329e334..000000000 Binary files a/files/03_0658.jpg and /dev/null differ diff --git a/files/03_0658.mp3 b/files/03_0658.mp3 deleted file mode 100644 index 5dd0acfcf..000000000 Binary files a/files/03_0658.mp3 and /dev/null differ diff --git a/files/03_0658_example.mp3 b/files/03_0658_example.mp3 deleted file mode 100644 index d236ddd16..000000000 Binary files a/files/03_0658_example.mp3 and /dev/null differ diff --git a/files/03_0658_meaning.mp3 b/files/03_0658_meaning.mp3 deleted file mode 100644 index 75c5854c0..000000000 Binary files a/files/03_0658_meaning.mp3 and /dev/null differ diff --git a/files/03_0659.jpg b/files/03_0659.jpg deleted file mode 100644 index cf9b3a6fd..000000000 Binary files a/files/03_0659.jpg and /dev/null differ diff --git a/files/03_0659.mp3 b/files/03_0659.mp3 deleted file mode 100644 index 6e7809a88..000000000 Binary files a/files/03_0659.mp3 and /dev/null differ diff --git a/files/03_0659_example.mp3 b/files/03_0659_example.mp3 deleted file mode 100644 index 953c46980..000000000 Binary files a/files/03_0659_example.mp3 and /dev/null differ diff --git a/files/03_0659_meaning.mp3 b/files/03_0659_meaning.mp3 deleted file mode 100644 index cee1d1099..000000000 Binary files a/files/03_0659_meaning.mp3 and /dev/null differ diff --git a/files/03_0660.jpg b/files/03_0660.jpg deleted file mode 100644 index cd4f3639f..000000000 Binary files a/files/03_0660.jpg and /dev/null differ diff --git a/files/03_0660.mp3 b/files/03_0660.mp3 deleted file mode 100644 index f37335902..000000000 Binary files a/files/03_0660.mp3 and /dev/null differ diff --git a/files/03_0660_example.mp3 b/files/03_0660_example.mp3 deleted file mode 100644 index a7b346b63..000000000 Binary files a/files/03_0660_example.mp3 and /dev/null differ diff --git a/files/03_0660_meaning.mp3 b/files/03_0660_meaning.mp3 deleted file mode 100644 index 91c3962db..000000000 Binary files a/files/03_0660_meaning.mp3 and /dev/null differ diff --git a/files/03_1241.jpg b/files/03_1241.jpg deleted file mode 100644 index 7fab94c24..000000000 Binary files a/files/03_1241.jpg and /dev/null differ diff --git a/files/03_1241.mp3 b/files/03_1241.mp3 deleted file mode 100644 index 9835d9485..000000000 Binary files a/files/03_1241.mp3 and /dev/null differ diff --git a/files/03_1241_example.mp3 b/files/03_1241_example.mp3 deleted file mode 100644 index 22718d10f..000000000 Binary files a/files/03_1241_example.mp3 and /dev/null differ diff --git a/files/03_1241_meaning.mp3 b/files/03_1241_meaning.mp3 deleted file mode 100644 index c36e53b0f..000000000 Binary files a/files/03_1241_meaning.mp3 and /dev/null differ diff --git a/files/03_1242.jpg b/files/03_1242.jpg deleted file mode 100644 index 153971c33..000000000 Binary files a/files/03_1242.jpg and /dev/null differ diff --git a/files/03_1242.mp3 b/files/03_1242.mp3 deleted file mode 100644 index a4e495828..000000000 Binary files a/files/03_1242.mp3 and /dev/null differ diff --git a/files/03_1242_example.mp3 b/files/03_1242_example.mp3 deleted file mode 100644 index ee7311cbd..000000000 Binary files a/files/03_1242_example.mp3 and /dev/null differ diff --git a/files/03_1242_meaning.mp3 b/files/03_1242_meaning.mp3 deleted file mode 100644 index 021887f1d..000000000 Binary files a/files/03_1242_meaning.mp3 and /dev/null differ diff --git a/files/03_1243.jpg b/files/03_1243.jpg deleted file mode 100644 index 54845f732..000000000 Binary files a/files/03_1243.jpg and /dev/null differ diff --git a/files/03_1243.mp3 b/files/03_1243.mp3 deleted file mode 100644 index 5117aaac6..000000000 Binary files a/files/03_1243.mp3 and /dev/null differ diff --git a/files/03_1243_example.mp3 b/files/03_1243_example.mp3 deleted file mode 100644 index 43f0030a4..000000000 Binary files a/files/03_1243_example.mp3 and /dev/null differ diff --git a/files/03_1243_meaning.mp3 b/files/03_1243_meaning.mp3 deleted file mode 100644 index bc32458af..000000000 Binary files a/files/03_1243_meaning.mp3 and /dev/null differ diff --git a/files/03_1244.jpg b/files/03_1244.jpg deleted file mode 100644 index 1227f3fba..000000000 Binary files a/files/03_1244.jpg and /dev/null differ diff --git a/files/03_1244.mp3 b/files/03_1244.mp3 deleted file mode 100644 index d70a4d287..000000000 Binary files a/files/03_1244.mp3 and /dev/null differ diff --git a/files/03_1244_example.mp3 b/files/03_1244_example.mp3 deleted file mode 100644 index c173afc83..000000000 Binary files a/files/03_1244_example.mp3 and /dev/null differ diff --git a/files/03_1244_meaning.mp3 b/files/03_1244_meaning.mp3 deleted file mode 100644 index ed34f0d74..000000000 Binary files a/files/03_1244_meaning.mp3 and /dev/null differ diff --git a/files/03_1245.jpg b/files/03_1245.jpg deleted file mode 100644 index 0067b3cb5..000000000 Binary files a/files/03_1245.jpg and /dev/null differ diff --git a/files/03_1245.mp3 b/files/03_1245.mp3 deleted file mode 100644 index ab23be250..000000000 Binary files a/files/03_1245.mp3 and /dev/null differ diff --git a/files/03_1245_example.mp3 b/files/03_1245_example.mp3 deleted file mode 100644 index 23eeb1873..000000000 Binary files a/files/03_1245_example.mp3 and /dev/null differ diff --git a/files/03_1245_meaning.mp3 b/files/03_1245_meaning.mp3 deleted file mode 100644 index 1ce417700..000000000 Binary files a/files/03_1245_meaning.mp3 and /dev/null differ diff --git a/files/03_1246.jpg b/files/03_1246.jpg deleted file mode 100644 index 57b8c28f2..000000000 Binary files a/files/03_1246.jpg and /dev/null differ diff --git a/files/03_1246.mp3 b/files/03_1246.mp3 deleted file mode 100644 index 9d3e4f3bc..000000000 Binary files a/files/03_1246.mp3 and /dev/null differ diff --git a/files/03_1246_example.mp3 b/files/03_1246_example.mp3 deleted file mode 100644 index 41e202c94..000000000 Binary files a/files/03_1246_example.mp3 and /dev/null differ diff --git a/files/03_1246_meaning.mp3 b/files/03_1246_meaning.mp3 deleted file mode 100644 index ce07dbae4..000000000 Binary files a/files/03_1246_meaning.mp3 and /dev/null differ diff --git a/files/03_1247.jpg b/files/03_1247.jpg deleted file mode 100644 index ead2bb61f..000000000 Binary files a/files/03_1247.jpg and /dev/null differ diff --git a/files/03_1247.mp3 b/files/03_1247.mp3 deleted file mode 100644 index e09d90a3d..000000000 Binary files a/files/03_1247.mp3 and /dev/null differ diff --git a/files/03_1247_example.mp3 b/files/03_1247_example.mp3 deleted file mode 100644 index e82ab8745..000000000 Binary files a/files/03_1247_example.mp3 and /dev/null differ diff --git a/files/03_1247_meaning.mp3 b/files/03_1247_meaning.mp3 deleted file mode 100644 index 70a54c122..000000000 Binary files a/files/03_1247_meaning.mp3 and /dev/null differ diff --git a/files/03_1248.jpg b/files/03_1248.jpg deleted file mode 100644 index 19a05934e..000000000 Binary files a/files/03_1248.jpg and /dev/null differ diff --git a/files/03_1248.mp3 b/files/03_1248.mp3 deleted file mode 100644 index b9b724443..000000000 Binary files a/files/03_1248.mp3 and /dev/null differ diff --git a/files/03_1248_example.mp3 b/files/03_1248_example.mp3 deleted file mode 100644 index 23d571338..000000000 Binary files a/files/03_1248_example.mp3 and /dev/null differ diff --git a/files/03_1248_meaning.mp3 b/files/03_1248_meaning.mp3 deleted file mode 100644 index 863082b2e..000000000 Binary files a/files/03_1248_meaning.mp3 and /dev/null differ diff --git a/files/03_1249.jpg b/files/03_1249.jpg deleted file mode 100644 index b1505ea31..000000000 Binary files a/files/03_1249.jpg and /dev/null differ diff --git a/files/03_1249.mp3 b/files/03_1249.mp3 deleted file mode 100644 index 6fc14994f..000000000 Binary files a/files/03_1249.mp3 and /dev/null differ diff --git a/files/03_1249_example.mp3 b/files/03_1249_example.mp3 deleted file mode 100644 index 415767275..000000000 Binary files a/files/03_1249_example.mp3 and /dev/null differ diff --git a/files/03_1249_meaning.mp3 b/files/03_1249_meaning.mp3 deleted file mode 100644 index f082ddda4..000000000 Binary files a/files/03_1249_meaning.mp3 and /dev/null differ diff --git a/files/03_1250.jpg b/files/03_1250.jpg deleted file mode 100644 index acbfa38bd..000000000 Binary files a/files/03_1250.jpg and /dev/null differ diff --git a/files/03_1250.mp3 b/files/03_1250.mp3 deleted file mode 100644 index 7397264cc..000000000 Binary files a/files/03_1250.mp3 and /dev/null differ diff --git a/files/03_1250_example.mp3 b/files/03_1250_example.mp3 deleted file mode 100644 index ddfc3735a..000000000 Binary files a/files/03_1250_example.mp3 and /dev/null differ diff --git a/files/03_1250_meaning.mp3 b/files/03_1250_meaning.mp3 deleted file mode 100644 index aca721db9..000000000 Binary files a/files/03_1250_meaning.mp3 and /dev/null differ diff --git a/files/03_1251.jpg b/files/03_1251.jpg deleted file mode 100644 index a8079afdd..000000000 Binary files a/files/03_1251.jpg and /dev/null differ diff --git a/files/03_1251.mp3 b/files/03_1251.mp3 deleted file mode 100644 index dd336a6af..000000000 Binary files a/files/03_1251.mp3 and /dev/null differ diff --git a/files/03_1251_example.mp3 b/files/03_1251_example.mp3 deleted file mode 100644 index 679cc46a7..000000000 Binary files a/files/03_1251_example.mp3 and /dev/null differ diff --git a/files/03_1251_meaning.mp3 b/files/03_1251_meaning.mp3 deleted file mode 100644 index 08f8d211a..000000000 Binary files a/files/03_1251_meaning.mp3 and /dev/null differ diff --git a/files/03_1252.jpg b/files/03_1252.jpg deleted file mode 100644 index 1a7cab78a..000000000 Binary files a/files/03_1252.jpg and /dev/null differ diff --git a/files/03_1252.mp3 b/files/03_1252.mp3 deleted file mode 100644 index a668ee35c..000000000 Binary files a/files/03_1252.mp3 and /dev/null differ diff --git a/files/03_1252_example.mp3 b/files/03_1252_example.mp3 deleted file mode 100644 index 3b744aaaa..000000000 Binary files a/files/03_1252_example.mp3 and /dev/null differ diff --git a/files/03_1252_meaning.mp3 b/files/03_1252_meaning.mp3 deleted file mode 100644 index d453a637f..000000000 Binary files a/files/03_1252_meaning.mp3 and /dev/null differ diff --git a/files/03_1253.jpg b/files/03_1253.jpg deleted file mode 100644 index 03b0c29d3..000000000 Binary files a/files/03_1253.jpg and /dev/null differ diff --git a/files/03_1253.mp3 b/files/03_1253.mp3 deleted file mode 100644 index 12ad31f0c..000000000 Binary files a/files/03_1253.mp3 and /dev/null differ diff --git a/files/03_1253_example.mp3 b/files/03_1253_example.mp3 deleted file mode 100644 index 84092694a..000000000 Binary files a/files/03_1253_example.mp3 and /dev/null differ diff --git a/files/03_1253_meaning.mp3 b/files/03_1253_meaning.mp3 deleted file mode 100644 index 29022f33c..000000000 Binary files a/files/03_1253_meaning.mp3 and /dev/null differ diff --git a/files/03_1254.jpg b/files/03_1254.jpg deleted file mode 100644 index 83e408080..000000000 Binary files a/files/03_1254.jpg and /dev/null differ diff --git a/files/03_1254.mp3 b/files/03_1254.mp3 deleted file mode 100644 index f56f94792..000000000 Binary files a/files/03_1254.mp3 and /dev/null differ diff --git a/files/03_1254_example.mp3 b/files/03_1254_example.mp3 deleted file mode 100644 index 7313004a0..000000000 Binary files a/files/03_1254_example.mp3 and /dev/null differ diff --git a/files/03_1254_meaning.mp3 b/files/03_1254_meaning.mp3 deleted file mode 100644 index c5397ca27..000000000 Binary files a/files/03_1254_meaning.mp3 and /dev/null differ diff --git a/files/03_1255.jpg b/files/03_1255.jpg deleted file mode 100644 index 02f07ccc5..000000000 Binary files a/files/03_1255.jpg and /dev/null differ diff --git a/files/03_1255.mp3 b/files/03_1255.mp3 deleted file mode 100644 index 0fe840a7d..000000000 Binary files a/files/03_1255.mp3 and /dev/null differ diff --git a/files/03_1255_example.mp3 b/files/03_1255_example.mp3 deleted file mode 100644 index 82d8837b1..000000000 Binary files a/files/03_1255_example.mp3 and /dev/null differ diff --git a/files/03_1255_meaning.mp3 b/files/03_1255_meaning.mp3 deleted file mode 100644 index d2d8a5abd..000000000 Binary files a/files/03_1255_meaning.mp3 and /dev/null differ diff --git a/files/03_1256.jpg b/files/03_1256.jpg deleted file mode 100644 index 5d91e5bc8..000000000 Binary files a/files/03_1256.jpg and /dev/null differ diff --git a/files/03_1256.mp3 b/files/03_1256.mp3 deleted file mode 100644 index 3a451e785..000000000 Binary files a/files/03_1256.mp3 and /dev/null differ diff --git a/files/03_1256_example.mp3 b/files/03_1256_example.mp3 deleted file mode 100644 index 2c9183778..000000000 Binary files a/files/03_1256_example.mp3 and /dev/null differ diff --git a/files/03_1256_meaning.mp3 b/files/03_1256_meaning.mp3 deleted file mode 100644 index 2dbcdf0e1..000000000 Binary files a/files/03_1256_meaning.mp3 and /dev/null differ diff --git a/files/03_1257.jpg b/files/03_1257.jpg deleted file mode 100644 index c054d94e1..000000000 Binary files a/files/03_1257.jpg and /dev/null differ diff --git a/files/03_1257.mp3 b/files/03_1257.mp3 deleted file mode 100644 index c16767bb7..000000000 Binary files a/files/03_1257.mp3 and /dev/null differ diff --git a/files/03_1257_example.mp3 b/files/03_1257_example.mp3 deleted file mode 100644 index 0d4038b3b..000000000 Binary files a/files/03_1257_example.mp3 and /dev/null differ diff --git a/files/03_1257_meaning.mp3 b/files/03_1257_meaning.mp3 deleted file mode 100644 index 5cc1384c9..000000000 Binary files a/files/03_1257_meaning.mp3 and /dev/null differ diff --git a/files/03_1258.jpg b/files/03_1258.jpg deleted file mode 100644 index 1ef2f212b..000000000 Binary files a/files/03_1258.jpg and /dev/null differ diff --git a/files/03_1258.mp3 b/files/03_1258.mp3 deleted file mode 100644 index b089b3478..000000000 Binary files a/files/03_1258.mp3 and /dev/null differ diff --git a/files/03_1258_example.mp3 b/files/03_1258_example.mp3 deleted file mode 100644 index ade8c5434..000000000 Binary files a/files/03_1258_example.mp3 and /dev/null differ diff --git a/files/03_1258_meaning.mp3 b/files/03_1258_meaning.mp3 deleted file mode 100644 index 784839f18..000000000 Binary files a/files/03_1258_meaning.mp3 and /dev/null differ diff --git a/files/03_1259.jpg b/files/03_1259.jpg deleted file mode 100644 index 827b12999..000000000 Binary files a/files/03_1259.jpg and /dev/null differ diff --git a/files/03_1259.mp3 b/files/03_1259.mp3 deleted file mode 100644 index 964d5a339..000000000 Binary files a/files/03_1259.mp3 and /dev/null differ diff --git a/files/03_1259_example.mp3 b/files/03_1259_example.mp3 deleted file mode 100644 index 4e04d26e4..000000000 Binary files a/files/03_1259_example.mp3 and /dev/null differ diff --git a/files/03_1259_meaning.mp3 b/files/03_1259_meaning.mp3 deleted file mode 100644 index e5df9315a..000000000 Binary files a/files/03_1259_meaning.mp3 and /dev/null differ diff --git a/files/03_1260.jpg b/files/03_1260.jpg deleted file mode 100644 index 0ea5894c1..000000000 Binary files a/files/03_1260.jpg and /dev/null differ diff --git a/files/03_1260.mp3 b/files/03_1260.mp3 deleted file mode 100644 index 98a988fe8..000000000 Binary files a/files/03_1260.mp3 and /dev/null differ diff --git a/files/03_1260_example.mp3 b/files/03_1260_example.mp3 deleted file mode 100644 index eceac9611..000000000 Binary files a/files/03_1260_example.mp3 and /dev/null differ diff --git a/files/03_1260_meaning.mp3 b/files/03_1260_meaning.mp3 deleted file mode 100644 index 90db4d9c7..000000000 Binary files a/files/03_1260_meaning.mp3 and /dev/null differ diff --git a/files/03_1841.jpg b/files/03_1841.jpg deleted file mode 100644 index b1f85308c..000000000 Binary files a/files/03_1841.jpg and /dev/null differ diff --git a/files/03_1841.mp3 b/files/03_1841.mp3 deleted file mode 100644 index e8bd379c1..000000000 Binary files a/files/03_1841.mp3 and /dev/null differ diff --git a/files/03_1841_example.mp3 b/files/03_1841_example.mp3 deleted file mode 100644 index 367bee50f..000000000 Binary files a/files/03_1841_example.mp3 and /dev/null differ diff --git a/files/03_1841_meaning.mp3 b/files/03_1841_meaning.mp3 deleted file mode 100644 index 9e0020860..000000000 Binary files a/files/03_1841_meaning.mp3 and /dev/null differ diff --git a/files/03_1842.jpg b/files/03_1842.jpg deleted file mode 100644 index 5ae1ec31f..000000000 Binary files a/files/03_1842.jpg and /dev/null differ diff --git a/files/03_1842.mp3 b/files/03_1842.mp3 deleted file mode 100644 index 908442945..000000000 Binary files a/files/03_1842.mp3 and /dev/null differ diff --git a/files/03_1842_example.mp3 b/files/03_1842_example.mp3 deleted file mode 100644 index 41748209b..000000000 Binary files a/files/03_1842_example.mp3 and /dev/null differ diff --git a/files/03_1842_meaning.mp3 b/files/03_1842_meaning.mp3 deleted file mode 100644 index 5cfe3c510..000000000 Binary files a/files/03_1842_meaning.mp3 and /dev/null differ diff --git a/files/03_1843.jpg b/files/03_1843.jpg deleted file mode 100644 index e3639a6ea..000000000 Binary files a/files/03_1843.jpg and /dev/null differ diff --git a/files/03_1843.mp3 b/files/03_1843.mp3 deleted file mode 100644 index cce21bdf3..000000000 Binary files a/files/03_1843.mp3 and /dev/null differ diff --git a/files/03_1843_example.mp3 b/files/03_1843_example.mp3 deleted file mode 100644 index 5232d1c86..000000000 Binary files a/files/03_1843_example.mp3 and /dev/null differ diff --git a/files/03_1843_meaning.mp3 b/files/03_1843_meaning.mp3 deleted file mode 100644 index 4c98a0d9e..000000000 Binary files a/files/03_1843_meaning.mp3 and /dev/null differ diff --git a/files/03_1844.jpg b/files/03_1844.jpg deleted file mode 100644 index 41bddbc26..000000000 Binary files a/files/03_1844.jpg and /dev/null differ diff --git a/files/03_1844.mp3 b/files/03_1844.mp3 deleted file mode 100644 index 5da0b0450..000000000 Binary files a/files/03_1844.mp3 and /dev/null differ diff --git a/files/03_1844_example.mp3 b/files/03_1844_example.mp3 deleted file mode 100644 index 60a4a9edc..000000000 Binary files a/files/03_1844_example.mp3 and /dev/null differ diff --git a/files/03_1844_meaning.mp3 b/files/03_1844_meaning.mp3 deleted file mode 100644 index dea436b9f..000000000 Binary files a/files/03_1844_meaning.mp3 and /dev/null differ diff --git a/files/03_1845.jpg b/files/03_1845.jpg deleted file mode 100644 index d01628e17..000000000 Binary files a/files/03_1845.jpg and /dev/null differ diff --git a/files/03_1845.mp3 b/files/03_1845.mp3 deleted file mode 100644 index cc85be163..000000000 Binary files a/files/03_1845.mp3 and /dev/null differ diff --git a/files/03_1845_example.mp3 b/files/03_1845_example.mp3 deleted file mode 100644 index f919b8cd0..000000000 Binary files a/files/03_1845_example.mp3 and /dev/null differ diff --git a/files/03_1845_meaning.mp3 b/files/03_1845_meaning.mp3 deleted file mode 100644 index 5b1f9f2dd..000000000 Binary files a/files/03_1845_meaning.mp3 and /dev/null differ diff --git a/files/03_1846.jpg b/files/03_1846.jpg deleted file mode 100644 index 3617930d1..000000000 Binary files a/files/03_1846.jpg and /dev/null differ diff --git a/files/03_1846.mp3 b/files/03_1846.mp3 deleted file mode 100644 index c0b1a8aca..000000000 Binary files a/files/03_1846.mp3 and /dev/null differ diff --git a/files/03_1846_example.mp3 b/files/03_1846_example.mp3 deleted file mode 100644 index 68b888481..000000000 Binary files a/files/03_1846_example.mp3 and /dev/null differ diff --git a/files/03_1846_meaning.mp3 b/files/03_1846_meaning.mp3 deleted file mode 100644 index af9609b70..000000000 Binary files a/files/03_1846_meaning.mp3 and /dev/null differ diff --git a/files/03_1847.jpg b/files/03_1847.jpg deleted file mode 100644 index 6d0909451..000000000 Binary files a/files/03_1847.jpg and /dev/null differ diff --git a/files/03_1847.mp3 b/files/03_1847.mp3 deleted file mode 100644 index 9409e6f8e..000000000 Binary files a/files/03_1847.mp3 and /dev/null differ diff --git a/files/03_1847_example.mp3 b/files/03_1847_example.mp3 deleted file mode 100644 index 167732ae1..000000000 Binary files a/files/03_1847_example.mp3 and /dev/null differ diff --git a/files/03_1847_meaning.mp3 b/files/03_1847_meaning.mp3 deleted file mode 100644 index cb0815055..000000000 Binary files a/files/03_1847_meaning.mp3 and /dev/null differ diff --git a/files/03_1848.jpg b/files/03_1848.jpg deleted file mode 100644 index 079afd8bf..000000000 Binary files a/files/03_1848.jpg and /dev/null differ diff --git a/files/03_1848.mp3 b/files/03_1848.mp3 deleted file mode 100644 index 06f3cf1c7..000000000 Binary files a/files/03_1848.mp3 and /dev/null differ diff --git a/files/03_1848_example.mp3 b/files/03_1848_example.mp3 deleted file mode 100644 index 58ee17d68..000000000 Binary files a/files/03_1848_example.mp3 and /dev/null differ diff --git a/files/03_1848_meaning.mp3 b/files/03_1848_meaning.mp3 deleted file mode 100644 index b85943162..000000000 Binary files a/files/03_1848_meaning.mp3 and /dev/null differ diff --git a/files/03_1849.jpg b/files/03_1849.jpg deleted file mode 100644 index be2fd01ff..000000000 Binary files a/files/03_1849.jpg and /dev/null differ diff --git a/files/03_1849.mp3 b/files/03_1849.mp3 deleted file mode 100644 index 3f3d80712..000000000 Binary files a/files/03_1849.mp3 and /dev/null differ diff --git a/files/03_1849_example.mp3 b/files/03_1849_example.mp3 deleted file mode 100644 index 3cbc0aee2..000000000 Binary files a/files/03_1849_example.mp3 and /dev/null differ diff --git a/files/03_1849_meaning.mp3 b/files/03_1849_meaning.mp3 deleted file mode 100644 index 2e12fd3ac..000000000 Binary files a/files/03_1849_meaning.mp3 and /dev/null differ diff --git a/files/03_1850.jpg b/files/03_1850.jpg deleted file mode 100644 index 5cf06eb82..000000000 Binary files a/files/03_1850.jpg and /dev/null differ diff --git a/files/03_1850.mp3 b/files/03_1850.mp3 deleted file mode 100644 index ca69e0743..000000000 Binary files a/files/03_1850.mp3 and /dev/null differ diff --git a/files/03_1850_example.mp3 b/files/03_1850_example.mp3 deleted file mode 100644 index c9950ebac..000000000 Binary files a/files/03_1850_example.mp3 and /dev/null differ diff --git a/files/03_1850_meaning.mp3 b/files/03_1850_meaning.mp3 deleted file mode 100644 index ac709ebcf..000000000 Binary files a/files/03_1850_meaning.mp3 and /dev/null differ diff --git a/files/03_1851.jpg b/files/03_1851.jpg deleted file mode 100644 index b4edad74c..000000000 Binary files a/files/03_1851.jpg and /dev/null differ diff --git a/files/03_1851.mp3 b/files/03_1851.mp3 deleted file mode 100644 index 041041710..000000000 Binary files a/files/03_1851.mp3 and /dev/null differ diff --git a/files/03_1851_example.mp3 b/files/03_1851_example.mp3 deleted file mode 100644 index a8730b039..000000000 Binary files a/files/03_1851_example.mp3 and /dev/null differ diff --git a/files/03_1851_meaning.mp3 b/files/03_1851_meaning.mp3 deleted file mode 100644 index 00a14680d..000000000 Binary files a/files/03_1851_meaning.mp3 and /dev/null differ diff --git a/files/03_1852.jpg b/files/03_1852.jpg deleted file mode 100644 index a009c4cf6..000000000 Binary files a/files/03_1852.jpg and /dev/null differ diff --git a/files/03_1852.mp3 b/files/03_1852.mp3 deleted file mode 100644 index 02e5d0cf7..000000000 Binary files a/files/03_1852.mp3 and /dev/null differ diff --git a/files/03_1852_example.mp3 b/files/03_1852_example.mp3 deleted file mode 100644 index 0bd5bc48c..000000000 Binary files a/files/03_1852_example.mp3 and /dev/null differ diff --git a/files/03_1852_meaning.mp3 b/files/03_1852_meaning.mp3 deleted file mode 100644 index e6d213a35..000000000 Binary files a/files/03_1852_meaning.mp3 and /dev/null differ diff --git a/files/03_1853.jpg b/files/03_1853.jpg deleted file mode 100644 index 37aee368b..000000000 Binary files a/files/03_1853.jpg and /dev/null differ diff --git a/files/03_1853.mp3 b/files/03_1853.mp3 deleted file mode 100644 index ac03d0608..000000000 Binary files a/files/03_1853.mp3 and /dev/null differ diff --git a/files/03_1853_example.mp3 b/files/03_1853_example.mp3 deleted file mode 100644 index c8e061bfc..000000000 Binary files a/files/03_1853_example.mp3 and /dev/null differ diff --git a/files/03_1853_meaning.mp3 b/files/03_1853_meaning.mp3 deleted file mode 100644 index 2a921ad9a..000000000 Binary files a/files/03_1853_meaning.mp3 and /dev/null differ diff --git a/files/03_1854.jpg b/files/03_1854.jpg deleted file mode 100644 index b0ac22ee9..000000000 Binary files a/files/03_1854.jpg and /dev/null differ diff --git a/files/03_1854.mp3 b/files/03_1854.mp3 deleted file mode 100644 index c9f4ad966..000000000 Binary files a/files/03_1854.mp3 and /dev/null differ diff --git a/files/03_1854_example.mp3 b/files/03_1854_example.mp3 deleted file mode 100644 index 63428ea48..000000000 Binary files a/files/03_1854_example.mp3 and /dev/null differ diff --git a/files/03_1854_meaning.mp3 b/files/03_1854_meaning.mp3 deleted file mode 100644 index fac26e79a..000000000 Binary files a/files/03_1854_meaning.mp3 and /dev/null differ diff --git a/files/03_1855.jpg b/files/03_1855.jpg deleted file mode 100644 index 815332051..000000000 Binary files a/files/03_1855.jpg and /dev/null differ diff --git a/files/03_1855.mp3 b/files/03_1855.mp3 deleted file mode 100644 index b9d628bb1..000000000 Binary files a/files/03_1855.mp3 and /dev/null differ diff --git a/files/03_1855_example.mp3 b/files/03_1855_example.mp3 deleted file mode 100644 index f7256e7c7..000000000 Binary files a/files/03_1855_example.mp3 and /dev/null differ diff --git a/files/03_1855_meaning.mp3 b/files/03_1855_meaning.mp3 deleted file mode 100644 index bff026ae5..000000000 Binary files a/files/03_1855_meaning.mp3 and /dev/null differ diff --git a/files/03_1856.jpg b/files/03_1856.jpg deleted file mode 100644 index 101714d97..000000000 Binary files a/files/03_1856.jpg and /dev/null differ diff --git a/files/03_1856.mp3 b/files/03_1856.mp3 deleted file mode 100644 index d66df9154..000000000 Binary files a/files/03_1856.mp3 and /dev/null differ diff --git a/files/03_1856_example.mp3 b/files/03_1856_example.mp3 deleted file mode 100644 index 219115c15..000000000 Binary files a/files/03_1856_example.mp3 and /dev/null differ diff --git a/files/03_1856_meaning.mp3 b/files/03_1856_meaning.mp3 deleted file mode 100644 index 8d60413ab..000000000 Binary files a/files/03_1856_meaning.mp3 and /dev/null differ diff --git a/files/03_1857.jpg b/files/03_1857.jpg deleted file mode 100644 index c63f5ae18..000000000 Binary files a/files/03_1857.jpg and /dev/null differ diff --git a/files/03_1857.mp3 b/files/03_1857.mp3 deleted file mode 100644 index 7d14a41dd..000000000 Binary files a/files/03_1857.mp3 and /dev/null differ diff --git a/files/03_1857_example.mp3 b/files/03_1857_example.mp3 deleted file mode 100644 index e59573161..000000000 Binary files a/files/03_1857_example.mp3 and /dev/null differ diff --git a/files/03_1857_meaning.mp3 b/files/03_1857_meaning.mp3 deleted file mode 100644 index 35dd4c6be..000000000 Binary files a/files/03_1857_meaning.mp3 and /dev/null differ diff --git a/files/03_1858.jpg b/files/03_1858.jpg deleted file mode 100644 index bd306b001..000000000 Binary files a/files/03_1858.jpg and /dev/null differ diff --git a/files/03_1858.mp3 b/files/03_1858.mp3 deleted file mode 100644 index 39916fc32..000000000 Binary files a/files/03_1858.mp3 and /dev/null differ diff --git a/files/03_1858_example.mp3 b/files/03_1858_example.mp3 deleted file mode 100644 index 4b105e934..000000000 Binary files a/files/03_1858_example.mp3 and /dev/null differ diff --git a/files/03_1858_meaning.mp3 b/files/03_1858_meaning.mp3 deleted file mode 100644 index 73cada8cc..000000000 Binary files a/files/03_1858_meaning.mp3 and /dev/null differ diff --git a/files/03_1859.jpg b/files/03_1859.jpg deleted file mode 100644 index cb4780e6a..000000000 Binary files a/files/03_1859.jpg and /dev/null differ diff --git a/files/03_1859.mp3 b/files/03_1859.mp3 deleted file mode 100644 index 198833088..000000000 Binary files a/files/03_1859.mp3 and /dev/null differ diff --git a/files/03_1859_example.mp3 b/files/03_1859_example.mp3 deleted file mode 100644 index 2a0d355c1..000000000 Binary files a/files/03_1859_example.mp3 and /dev/null differ diff --git a/files/03_1859_meaning.mp3 b/files/03_1859_meaning.mp3 deleted file mode 100644 index 91575ee77..000000000 Binary files a/files/03_1859_meaning.mp3 and /dev/null differ diff --git a/files/03_1860.jpg b/files/03_1860.jpg deleted file mode 100644 index bf6ecbcfc..000000000 Binary files a/files/03_1860.jpg and /dev/null differ diff --git a/files/03_1860.mp3 b/files/03_1860.mp3 deleted file mode 100644 index e3fd4bfac..000000000 Binary files a/files/03_1860.mp3 and /dev/null differ diff --git a/files/03_1860_example.mp3 b/files/03_1860_example.mp3 deleted file mode 100644 index 45e132138..000000000 Binary files a/files/03_1860_example.mp3 and /dev/null differ diff --git a/files/03_1860_meaning.mp3 b/files/03_1860_meaning.mp3 deleted file mode 100644 index a2701895d..000000000 Binary files a/files/03_1860_meaning.mp3 and /dev/null differ diff --git a/files/03_2441.jpg b/files/03_2441.jpg deleted file mode 100644 index 2c578cc8c..000000000 Binary files a/files/03_2441.jpg and /dev/null differ diff --git a/files/03_2441.mp3 b/files/03_2441.mp3 deleted file mode 100644 index 7266a9719..000000000 Binary files a/files/03_2441.mp3 and /dev/null differ diff --git a/files/03_2441_example.mp3 b/files/03_2441_example.mp3 deleted file mode 100644 index 08c458f8a..000000000 Binary files a/files/03_2441_example.mp3 and /dev/null differ diff --git a/files/03_2441_meaning.mp3 b/files/03_2441_meaning.mp3 deleted file mode 100644 index b65b85c49..000000000 Binary files a/files/03_2441_meaning.mp3 and /dev/null differ diff --git a/files/03_2442.jpg b/files/03_2442.jpg deleted file mode 100644 index 1b870b25a..000000000 Binary files a/files/03_2442.jpg and /dev/null differ diff --git a/files/03_2442.mp3 b/files/03_2442.mp3 deleted file mode 100644 index c57854515..000000000 Binary files a/files/03_2442.mp3 and /dev/null differ diff --git a/files/03_2442_example.mp3 b/files/03_2442_example.mp3 deleted file mode 100644 index 4ebca3aa1..000000000 Binary files a/files/03_2442_example.mp3 and /dev/null differ diff --git a/files/03_2442_meaning.mp3 b/files/03_2442_meaning.mp3 deleted file mode 100644 index 02ce852e8..000000000 Binary files a/files/03_2442_meaning.mp3 and /dev/null differ diff --git a/files/03_2443.jpg b/files/03_2443.jpg deleted file mode 100644 index 4eecc9d3e..000000000 Binary files a/files/03_2443.jpg and /dev/null differ diff --git a/files/03_2443.mp3 b/files/03_2443.mp3 deleted file mode 100644 index 4c857c68c..000000000 Binary files a/files/03_2443.mp3 and /dev/null differ diff --git a/files/03_2443_example.mp3 b/files/03_2443_example.mp3 deleted file mode 100644 index 5a8861d0a..000000000 Binary files a/files/03_2443_example.mp3 and /dev/null differ diff --git a/files/03_2443_meaning.mp3 b/files/03_2443_meaning.mp3 deleted file mode 100644 index cd59b41c1..000000000 Binary files a/files/03_2443_meaning.mp3 and /dev/null differ diff --git a/files/03_2444.jpg b/files/03_2444.jpg deleted file mode 100644 index 4c5a6deed..000000000 Binary files a/files/03_2444.jpg and /dev/null differ diff --git a/files/03_2444.mp3 b/files/03_2444.mp3 deleted file mode 100644 index d1913039e..000000000 Binary files a/files/03_2444.mp3 and /dev/null differ diff --git a/files/03_2444_example.mp3 b/files/03_2444_example.mp3 deleted file mode 100644 index b12ce6977..000000000 Binary files a/files/03_2444_example.mp3 and /dev/null differ diff --git a/files/03_2444_meaning.mp3 b/files/03_2444_meaning.mp3 deleted file mode 100644 index f9a97c16e..000000000 Binary files a/files/03_2444_meaning.mp3 and /dev/null differ diff --git a/files/03_2445.jpg b/files/03_2445.jpg deleted file mode 100644 index 9409288bb..000000000 Binary files a/files/03_2445.jpg and /dev/null differ diff --git a/files/03_2445.mp3 b/files/03_2445.mp3 deleted file mode 100644 index 03fccb7f4..000000000 Binary files a/files/03_2445.mp3 and /dev/null differ diff --git a/files/03_2445_example.mp3 b/files/03_2445_example.mp3 deleted file mode 100644 index 520ab9d3d..000000000 Binary files a/files/03_2445_example.mp3 and /dev/null differ diff --git a/files/03_2445_meaning.mp3 b/files/03_2445_meaning.mp3 deleted file mode 100644 index 9aeaa2c9c..000000000 Binary files a/files/03_2445_meaning.mp3 and /dev/null differ diff --git a/files/03_2446.jpg b/files/03_2446.jpg deleted file mode 100644 index 3a6e671d6..000000000 Binary files a/files/03_2446.jpg and /dev/null differ diff --git a/files/03_2446.mp3 b/files/03_2446.mp3 deleted file mode 100644 index 0e14aaec6..000000000 Binary files a/files/03_2446.mp3 and /dev/null differ diff --git a/files/03_2446_example.mp3 b/files/03_2446_example.mp3 deleted file mode 100644 index 18e4e7ded..000000000 Binary files a/files/03_2446_example.mp3 and /dev/null differ diff --git a/files/03_2446_meaning.mp3 b/files/03_2446_meaning.mp3 deleted file mode 100644 index 95aa8168f..000000000 Binary files a/files/03_2446_meaning.mp3 and /dev/null differ diff --git a/files/03_2447.jpg b/files/03_2447.jpg deleted file mode 100644 index 086ed1657..000000000 Binary files a/files/03_2447.jpg and /dev/null differ diff --git a/files/03_2447.mp3 b/files/03_2447.mp3 deleted file mode 100644 index b10c52f09..000000000 Binary files a/files/03_2447.mp3 and /dev/null differ diff --git a/files/03_2447_example.mp3 b/files/03_2447_example.mp3 deleted file mode 100644 index f8c83962a..000000000 Binary files a/files/03_2447_example.mp3 and /dev/null differ diff --git a/files/03_2447_meaning.mp3 b/files/03_2447_meaning.mp3 deleted file mode 100644 index ab3a8c2e0..000000000 Binary files a/files/03_2447_meaning.mp3 and /dev/null differ diff --git a/files/03_2448.jpg b/files/03_2448.jpg deleted file mode 100644 index 7ae2d2c1c..000000000 Binary files a/files/03_2448.jpg and /dev/null differ diff --git a/files/03_2448.mp3 b/files/03_2448.mp3 deleted file mode 100644 index 072721dc7..000000000 Binary files a/files/03_2448.mp3 and /dev/null differ diff --git a/files/03_2448_example.mp3 b/files/03_2448_example.mp3 deleted file mode 100644 index b0faf92b7..000000000 Binary files a/files/03_2448_example.mp3 and /dev/null differ diff --git a/files/03_2448_meaning.mp3 b/files/03_2448_meaning.mp3 deleted file mode 100644 index dfb7db82f..000000000 Binary files a/files/03_2448_meaning.mp3 and /dev/null differ diff --git a/files/03_2449.jpg b/files/03_2449.jpg deleted file mode 100644 index 595813510..000000000 Binary files a/files/03_2449.jpg and /dev/null differ diff --git a/files/03_2449.mp3 b/files/03_2449.mp3 deleted file mode 100644 index d131e7bf2..000000000 Binary files a/files/03_2449.mp3 and /dev/null differ diff --git a/files/03_2449_example.mp3 b/files/03_2449_example.mp3 deleted file mode 100644 index f60de2566..000000000 Binary files a/files/03_2449_example.mp3 and /dev/null differ diff --git a/files/03_2449_meaning.mp3 b/files/03_2449_meaning.mp3 deleted file mode 100644 index 3acaac5f9..000000000 Binary files a/files/03_2449_meaning.mp3 and /dev/null differ diff --git a/files/03_2450.jpg b/files/03_2450.jpg deleted file mode 100644 index 62ca71a3f..000000000 Binary files a/files/03_2450.jpg and /dev/null differ diff --git a/files/03_2450.mp3 b/files/03_2450.mp3 deleted file mode 100644 index 96a38cc2c..000000000 Binary files a/files/03_2450.mp3 and /dev/null differ diff --git a/files/03_2450_example.mp3 b/files/03_2450_example.mp3 deleted file mode 100644 index 1db443e79..000000000 Binary files a/files/03_2450_example.mp3 and /dev/null differ diff --git a/files/03_2450_meaning.mp3 b/files/03_2450_meaning.mp3 deleted file mode 100644 index b21527a8e..000000000 Binary files a/files/03_2450_meaning.mp3 and /dev/null differ diff --git a/files/03_2451.jpg b/files/03_2451.jpg deleted file mode 100644 index 319511d04..000000000 Binary files a/files/03_2451.jpg and /dev/null differ diff --git a/files/03_2451.mp3 b/files/03_2451.mp3 deleted file mode 100644 index f4c441454..000000000 Binary files a/files/03_2451.mp3 and /dev/null differ diff --git a/files/03_2451_example.mp3 b/files/03_2451_example.mp3 deleted file mode 100644 index d335b200d..000000000 Binary files a/files/03_2451_example.mp3 and /dev/null differ diff --git a/files/03_2451_meaning.mp3 b/files/03_2451_meaning.mp3 deleted file mode 100644 index 04a43ba20..000000000 Binary files a/files/03_2451_meaning.mp3 and /dev/null differ diff --git a/files/03_2452.jpg b/files/03_2452.jpg deleted file mode 100644 index 76f33ee35..000000000 Binary files a/files/03_2452.jpg and /dev/null differ diff --git a/files/03_2452.mp3 b/files/03_2452.mp3 deleted file mode 100644 index d3599093b..000000000 Binary files a/files/03_2452.mp3 and /dev/null differ diff --git a/files/03_2452_example.mp3 b/files/03_2452_example.mp3 deleted file mode 100644 index f0fcdb973..000000000 Binary files a/files/03_2452_example.mp3 and /dev/null differ diff --git a/files/03_2452_meaning.mp3 b/files/03_2452_meaning.mp3 deleted file mode 100644 index f9c82d7c1..000000000 Binary files a/files/03_2452_meaning.mp3 and /dev/null differ diff --git a/files/03_2453.jpg b/files/03_2453.jpg deleted file mode 100644 index 3e194d04f..000000000 Binary files a/files/03_2453.jpg and /dev/null differ diff --git a/files/03_2453.mp3 b/files/03_2453.mp3 deleted file mode 100644 index dac77a64a..000000000 Binary files a/files/03_2453.mp3 and /dev/null differ diff --git a/files/03_2453_example.mp3 b/files/03_2453_example.mp3 deleted file mode 100644 index 19353590c..000000000 Binary files a/files/03_2453_example.mp3 and /dev/null differ diff --git a/files/03_2453_meaning.mp3 b/files/03_2453_meaning.mp3 deleted file mode 100644 index 777e9ad45..000000000 Binary files a/files/03_2453_meaning.mp3 and /dev/null differ diff --git a/files/03_2454.jpg b/files/03_2454.jpg deleted file mode 100644 index 66c6f4b23..000000000 Binary files a/files/03_2454.jpg and /dev/null differ diff --git a/files/03_2454.mp3 b/files/03_2454.mp3 deleted file mode 100644 index b208e526c..000000000 Binary files a/files/03_2454.mp3 and /dev/null differ diff --git a/files/03_2454_example.mp3 b/files/03_2454_example.mp3 deleted file mode 100644 index 960505f99..000000000 Binary files a/files/03_2454_example.mp3 and /dev/null differ diff --git a/files/03_2454_meaning.mp3 b/files/03_2454_meaning.mp3 deleted file mode 100644 index 28af04f11..000000000 Binary files a/files/03_2454_meaning.mp3 and /dev/null differ diff --git a/files/03_2455.jpg b/files/03_2455.jpg deleted file mode 100644 index 6ccfc5cd5..000000000 Binary files a/files/03_2455.jpg and /dev/null differ diff --git a/files/03_2455.mp3 b/files/03_2455.mp3 deleted file mode 100644 index e0c851089..000000000 Binary files a/files/03_2455.mp3 and /dev/null differ diff --git a/files/03_2455_example.mp3 b/files/03_2455_example.mp3 deleted file mode 100644 index ed219a497..000000000 Binary files a/files/03_2455_example.mp3 and /dev/null differ diff --git a/files/03_2455_meaning.mp3 b/files/03_2455_meaning.mp3 deleted file mode 100644 index 7f15bb9ff..000000000 Binary files a/files/03_2455_meaning.mp3 and /dev/null differ diff --git a/files/03_2456.jpg b/files/03_2456.jpg deleted file mode 100644 index a64430c10..000000000 Binary files a/files/03_2456.jpg and /dev/null differ diff --git a/files/03_2456.mp3 b/files/03_2456.mp3 deleted file mode 100644 index 4c1c9d58d..000000000 Binary files a/files/03_2456.mp3 and /dev/null differ diff --git a/files/03_2456_example.mp3 b/files/03_2456_example.mp3 deleted file mode 100644 index 89c0d9bef..000000000 Binary files a/files/03_2456_example.mp3 and /dev/null differ diff --git a/files/03_2456_meaning.mp3 b/files/03_2456_meaning.mp3 deleted file mode 100644 index d6d7d39b5..000000000 Binary files a/files/03_2456_meaning.mp3 and /dev/null differ diff --git a/files/03_2457.jpg b/files/03_2457.jpg deleted file mode 100644 index a9e9eae40..000000000 Binary files a/files/03_2457.jpg and /dev/null differ diff --git a/files/03_2457.mp3 b/files/03_2457.mp3 deleted file mode 100644 index 14922c5b4..000000000 Binary files a/files/03_2457.mp3 and /dev/null differ diff --git a/files/03_2457_example.mp3 b/files/03_2457_example.mp3 deleted file mode 100644 index b46d55203..000000000 Binary files a/files/03_2457_example.mp3 and /dev/null differ diff --git a/files/03_2457_meaning.mp3 b/files/03_2457_meaning.mp3 deleted file mode 100644 index 5a7206680..000000000 Binary files a/files/03_2457_meaning.mp3 and /dev/null differ diff --git a/files/03_2458.jpg b/files/03_2458.jpg deleted file mode 100644 index d5bed54f1..000000000 Binary files a/files/03_2458.jpg and /dev/null differ diff --git a/files/03_2458.mp3 b/files/03_2458.mp3 deleted file mode 100644 index 296c239c9..000000000 Binary files a/files/03_2458.mp3 and /dev/null differ diff --git a/files/03_2458_example.mp3 b/files/03_2458_example.mp3 deleted file mode 100644 index b6ed1a8b8..000000000 Binary files a/files/03_2458_example.mp3 and /dev/null differ diff --git a/files/03_2458_meaning.mp3 b/files/03_2458_meaning.mp3 deleted file mode 100644 index 37a561d09..000000000 Binary files a/files/03_2458_meaning.mp3 and /dev/null differ diff --git a/files/03_2459.jpg b/files/03_2459.jpg deleted file mode 100644 index 84c40771a..000000000 Binary files a/files/03_2459.jpg and /dev/null differ diff --git a/files/03_2459.mp3 b/files/03_2459.mp3 deleted file mode 100644 index e3102e421..000000000 Binary files a/files/03_2459.mp3 and /dev/null differ diff --git a/files/03_2459_example.mp3 b/files/03_2459_example.mp3 deleted file mode 100644 index 6687af545..000000000 Binary files a/files/03_2459_example.mp3 and /dev/null differ diff --git a/files/03_2459_meaning.mp3 b/files/03_2459_meaning.mp3 deleted file mode 100644 index dd4cc41d9..000000000 Binary files a/files/03_2459_meaning.mp3 and /dev/null differ diff --git a/files/03_2460.jpg b/files/03_2460.jpg deleted file mode 100644 index 610240412..000000000 Binary files a/files/03_2460.jpg and /dev/null differ diff --git a/files/03_2460.mp3 b/files/03_2460.mp3 deleted file mode 100644 index 59c6e7883..000000000 Binary files a/files/03_2460.mp3 and /dev/null differ diff --git a/files/03_2460_example.mp3 b/files/03_2460_example.mp3 deleted file mode 100644 index 8ca5ceca0..000000000 Binary files a/files/03_2460_example.mp3 and /dev/null differ diff --git a/files/03_2460_meaning.mp3 b/files/03_2460_meaning.mp3 deleted file mode 100644 index c4f6c822a..000000000 Binary files a/files/03_2460_meaning.mp3 and /dev/null differ diff --git a/files/03_3041.jpg b/files/03_3041.jpg deleted file mode 100644 index a56e8f9b3..000000000 Binary files a/files/03_3041.jpg and /dev/null differ diff --git a/files/03_3041.mp3 b/files/03_3041.mp3 deleted file mode 100644 index d18bf8a0e..000000000 Binary files a/files/03_3041.mp3 and /dev/null differ diff --git a/files/03_3041_example.mp3 b/files/03_3041_example.mp3 deleted file mode 100644 index 1577a974b..000000000 Binary files a/files/03_3041_example.mp3 and /dev/null differ diff --git a/files/03_3041_meaning.mp3 b/files/03_3041_meaning.mp3 deleted file mode 100644 index a292265a2..000000000 Binary files a/files/03_3041_meaning.mp3 and /dev/null differ diff --git a/files/03_3042.jpg b/files/03_3042.jpg deleted file mode 100644 index 8c1f8ea13..000000000 Binary files a/files/03_3042.jpg and /dev/null differ diff --git a/files/03_3042.mp3 b/files/03_3042.mp3 deleted file mode 100644 index 3b925e5cf..000000000 Binary files a/files/03_3042.mp3 and /dev/null differ diff --git a/files/03_3042_example.mp3 b/files/03_3042_example.mp3 deleted file mode 100644 index 52a1b5940..000000000 Binary files a/files/03_3042_example.mp3 and /dev/null differ diff --git a/files/03_3042_meaning.mp3 b/files/03_3042_meaning.mp3 deleted file mode 100644 index ef3840f13..000000000 Binary files a/files/03_3042_meaning.mp3 and /dev/null differ diff --git a/files/03_3043.jpg b/files/03_3043.jpg deleted file mode 100644 index 42215be8c..000000000 Binary files a/files/03_3043.jpg and /dev/null differ diff --git a/files/03_3043.mp3 b/files/03_3043.mp3 deleted file mode 100644 index 3df90285a..000000000 Binary files a/files/03_3043.mp3 and /dev/null differ diff --git a/files/03_3043_example.mp3 b/files/03_3043_example.mp3 deleted file mode 100644 index 83d3a55d3..000000000 Binary files a/files/03_3043_example.mp3 and /dev/null differ diff --git a/files/03_3043_meaning.mp3 b/files/03_3043_meaning.mp3 deleted file mode 100644 index efe1414bf..000000000 Binary files a/files/03_3043_meaning.mp3 and /dev/null differ diff --git a/files/03_3044.jpg b/files/03_3044.jpg deleted file mode 100644 index 33517a088..000000000 Binary files a/files/03_3044.jpg and /dev/null differ diff --git a/files/03_3044.mp3 b/files/03_3044.mp3 deleted file mode 100644 index 74cec8c69..000000000 Binary files a/files/03_3044.mp3 and /dev/null differ diff --git a/files/03_3044_example.mp3 b/files/03_3044_example.mp3 deleted file mode 100644 index c38cb765c..000000000 Binary files a/files/03_3044_example.mp3 and /dev/null differ diff --git a/files/03_3044_meaning.mp3 b/files/03_3044_meaning.mp3 deleted file mode 100644 index db838eaec..000000000 Binary files a/files/03_3044_meaning.mp3 and /dev/null differ diff --git a/files/03_3045.jpg b/files/03_3045.jpg deleted file mode 100644 index fabb90f65..000000000 Binary files a/files/03_3045.jpg and /dev/null differ diff --git a/files/03_3045.mp3 b/files/03_3045.mp3 deleted file mode 100644 index 44f6dbad9..000000000 Binary files a/files/03_3045.mp3 and /dev/null differ diff --git a/files/03_3045_example.mp3 b/files/03_3045_example.mp3 deleted file mode 100644 index 620443ea0..000000000 Binary files a/files/03_3045_example.mp3 and /dev/null differ diff --git a/files/03_3045_meaning.mp3 b/files/03_3045_meaning.mp3 deleted file mode 100644 index 6b91e15ec..000000000 Binary files a/files/03_3045_meaning.mp3 and /dev/null differ diff --git a/files/03_3046.jpg b/files/03_3046.jpg deleted file mode 100644 index 70f1b1ed7..000000000 Binary files a/files/03_3046.jpg and /dev/null differ diff --git a/files/03_3046.mp3 b/files/03_3046.mp3 deleted file mode 100644 index 1712f22f4..000000000 Binary files a/files/03_3046.mp3 and /dev/null differ diff --git a/files/03_3046_example.mp3 b/files/03_3046_example.mp3 deleted file mode 100644 index c447e8770..000000000 Binary files a/files/03_3046_example.mp3 and /dev/null differ diff --git a/files/03_3046_meaning.mp3 b/files/03_3046_meaning.mp3 deleted file mode 100644 index 3fa6aecad..000000000 Binary files a/files/03_3046_meaning.mp3 and /dev/null differ diff --git a/files/03_3047.jpg b/files/03_3047.jpg deleted file mode 100644 index e39f15311..000000000 Binary files a/files/03_3047.jpg and /dev/null differ diff --git a/files/03_3047.mp3 b/files/03_3047.mp3 deleted file mode 100644 index 909fb465d..000000000 Binary files a/files/03_3047.mp3 and /dev/null differ diff --git a/files/03_3047_example.mp3 b/files/03_3047_example.mp3 deleted file mode 100644 index 1cc0a3227..000000000 Binary files a/files/03_3047_example.mp3 and /dev/null differ diff --git a/files/03_3047_meaning.mp3 b/files/03_3047_meaning.mp3 deleted file mode 100644 index d9565f177..000000000 Binary files a/files/03_3047_meaning.mp3 and /dev/null differ diff --git a/files/03_3048.jpg b/files/03_3048.jpg deleted file mode 100644 index ff61d6790..000000000 Binary files a/files/03_3048.jpg and /dev/null differ diff --git a/files/03_3048.mp3 b/files/03_3048.mp3 deleted file mode 100644 index 6997c3094..000000000 Binary files a/files/03_3048.mp3 and /dev/null differ diff --git a/files/03_3048_example.mp3 b/files/03_3048_example.mp3 deleted file mode 100644 index b387be69a..000000000 Binary files a/files/03_3048_example.mp3 and /dev/null differ diff --git a/files/03_3048_meaning.mp3 b/files/03_3048_meaning.mp3 deleted file mode 100644 index f722c23f4..000000000 Binary files a/files/03_3048_meaning.mp3 and /dev/null differ diff --git a/files/03_3049.jpg b/files/03_3049.jpg deleted file mode 100644 index 541ebcf35..000000000 Binary files a/files/03_3049.jpg and /dev/null differ diff --git a/files/03_3049.mp3 b/files/03_3049.mp3 deleted file mode 100644 index e91810b02..000000000 Binary files a/files/03_3049.mp3 and /dev/null differ diff --git a/files/03_3049_example.mp3 b/files/03_3049_example.mp3 deleted file mode 100644 index fb5b63944..000000000 Binary files a/files/03_3049_example.mp3 and /dev/null differ diff --git a/files/03_3049_meaning.mp3 b/files/03_3049_meaning.mp3 deleted file mode 100644 index 298d0513a..000000000 Binary files a/files/03_3049_meaning.mp3 and /dev/null differ diff --git a/files/03_3050.jpg b/files/03_3050.jpg deleted file mode 100644 index 792ed9d23..000000000 Binary files a/files/03_3050.jpg and /dev/null differ diff --git a/files/03_3050.mp3 b/files/03_3050.mp3 deleted file mode 100644 index da9bf753f..000000000 Binary files a/files/03_3050.mp3 and /dev/null differ diff --git a/files/03_3050_example.mp3 b/files/03_3050_example.mp3 deleted file mode 100644 index 771463e99..000000000 Binary files a/files/03_3050_example.mp3 and /dev/null differ diff --git a/files/03_3050_meaning.mp3 b/files/03_3050_meaning.mp3 deleted file mode 100644 index 2f3a17451..000000000 Binary files a/files/03_3050_meaning.mp3 and /dev/null differ diff --git a/files/03_3051.jpg b/files/03_3051.jpg deleted file mode 100644 index e1515f5e2..000000000 Binary files a/files/03_3051.jpg and /dev/null differ diff --git a/files/03_3051.mp3 b/files/03_3051.mp3 deleted file mode 100644 index ea33a3c0e..000000000 Binary files a/files/03_3051.mp3 and /dev/null differ diff --git a/files/03_3051_example.mp3 b/files/03_3051_example.mp3 deleted file mode 100644 index 36c2c3df2..000000000 Binary files a/files/03_3051_example.mp3 and /dev/null differ diff --git a/files/03_3051_meaning.mp3 b/files/03_3051_meaning.mp3 deleted file mode 100644 index 2b3919d42..000000000 Binary files a/files/03_3051_meaning.mp3 and /dev/null differ diff --git a/files/03_3052.jpg b/files/03_3052.jpg deleted file mode 100644 index b7854e60a..000000000 Binary files a/files/03_3052.jpg and /dev/null differ diff --git a/files/03_3052.mp3 b/files/03_3052.mp3 deleted file mode 100644 index e5987b3c3..000000000 Binary files a/files/03_3052.mp3 and /dev/null differ diff --git a/files/03_3052_example.mp3 b/files/03_3052_example.mp3 deleted file mode 100644 index 8c7e6943e..000000000 Binary files a/files/03_3052_example.mp3 and /dev/null differ diff --git a/files/03_3052_meaning.mp3 b/files/03_3052_meaning.mp3 deleted file mode 100644 index 90ee85d2f..000000000 Binary files a/files/03_3052_meaning.mp3 and /dev/null differ diff --git a/files/03_3053.jpg b/files/03_3053.jpg deleted file mode 100644 index d99f052d5..000000000 Binary files a/files/03_3053.jpg and /dev/null differ diff --git a/files/03_3053.mp3 b/files/03_3053.mp3 deleted file mode 100644 index 4fefc19c1..000000000 Binary files a/files/03_3053.mp3 and /dev/null differ diff --git a/files/03_3053_example.mp3 b/files/03_3053_example.mp3 deleted file mode 100644 index da2b96482..000000000 Binary files a/files/03_3053_example.mp3 and /dev/null differ diff --git a/files/03_3053_meaning.mp3 b/files/03_3053_meaning.mp3 deleted file mode 100644 index f638e1b27..000000000 Binary files a/files/03_3053_meaning.mp3 and /dev/null differ diff --git a/files/03_3054.jpg b/files/03_3054.jpg deleted file mode 100644 index 534b8c48e..000000000 Binary files a/files/03_3054.jpg and /dev/null differ diff --git a/files/03_3054.mp3 b/files/03_3054.mp3 deleted file mode 100644 index 35fdfb155..000000000 Binary files a/files/03_3054.mp3 and /dev/null differ diff --git a/files/03_3054_example.mp3 b/files/03_3054_example.mp3 deleted file mode 100644 index bbb2d01c7..000000000 Binary files a/files/03_3054_example.mp3 and /dev/null differ diff --git a/files/03_3054_meaning.mp3 b/files/03_3054_meaning.mp3 deleted file mode 100644 index 2c606c5aa..000000000 Binary files a/files/03_3054_meaning.mp3 and /dev/null differ diff --git a/files/03_3055.jpg b/files/03_3055.jpg deleted file mode 100644 index 3e8b1dce7..000000000 Binary files a/files/03_3055.jpg and /dev/null differ diff --git a/files/03_3055.mp3 b/files/03_3055.mp3 deleted file mode 100644 index 853d4a3e5..000000000 Binary files a/files/03_3055.mp3 and /dev/null differ diff --git a/files/03_3055_example.mp3 b/files/03_3055_example.mp3 deleted file mode 100644 index de536efa3..000000000 Binary files a/files/03_3055_example.mp3 and /dev/null differ diff --git a/files/03_3055_meaning.mp3 b/files/03_3055_meaning.mp3 deleted file mode 100644 index d774301a8..000000000 Binary files a/files/03_3055_meaning.mp3 and /dev/null differ diff --git a/files/03_3056.jpg b/files/03_3056.jpg deleted file mode 100644 index eeac63def..000000000 Binary files a/files/03_3056.jpg and /dev/null differ diff --git a/files/03_3056.mp3 b/files/03_3056.mp3 deleted file mode 100644 index 3757c944b..000000000 Binary files a/files/03_3056.mp3 and /dev/null differ diff --git a/files/03_3056_example.mp3 b/files/03_3056_example.mp3 deleted file mode 100644 index e52865c96..000000000 Binary files a/files/03_3056_example.mp3 and /dev/null differ diff --git a/files/03_3056_meaning.mp3 b/files/03_3056_meaning.mp3 deleted file mode 100644 index 7e261f11a..000000000 Binary files a/files/03_3056_meaning.mp3 and /dev/null differ diff --git a/files/03_3057.jpg b/files/03_3057.jpg deleted file mode 100644 index 9bbd5050b..000000000 Binary files a/files/03_3057.jpg and /dev/null differ diff --git a/files/03_3057.mp3 b/files/03_3057.mp3 deleted file mode 100644 index 36d9779af..000000000 Binary files a/files/03_3057.mp3 and /dev/null differ diff --git a/files/03_3057_example.mp3 b/files/03_3057_example.mp3 deleted file mode 100644 index c6abbdac4..000000000 Binary files a/files/03_3057_example.mp3 and /dev/null differ diff --git a/files/03_3057_meaning.mp3 b/files/03_3057_meaning.mp3 deleted file mode 100644 index f7896fe31..000000000 Binary files a/files/03_3057_meaning.mp3 and /dev/null differ diff --git a/files/03_3058.jpg b/files/03_3058.jpg deleted file mode 100644 index b42f8d7a1..000000000 Binary files a/files/03_3058.jpg and /dev/null differ diff --git a/files/03_3058.mp3 b/files/03_3058.mp3 deleted file mode 100644 index fc156d1ca..000000000 Binary files a/files/03_3058.mp3 and /dev/null differ diff --git a/files/03_3058_example.mp3 b/files/03_3058_example.mp3 deleted file mode 100644 index 9916d3e97..000000000 Binary files a/files/03_3058_example.mp3 and /dev/null differ diff --git a/files/03_3058_meaning.mp3 b/files/03_3058_meaning.mp3 deleted file mode 100644 index 28a1068b8..000000000 Binary files a/files/03_3058_meaning.mp3 and /dev/null differ diff --git a/files/03_3059.jpg b/files/03_3059.jpg deleted file mode 100644 index 172e9a0e6..000000000 Binary files a/files/03_3059.jpg and /dev/null differ diff --git a/files/03_3059.mp3 b/files/03_3059.mp3 deleted file mode 100644 index 2339489be..000000000 Binary files a/files/03_3059.mp3 and /dev/null differ diff --git a/files/03_3059_example.mp3 b/files/03_3059_example.mp3 deleted file mode 100644 index cbdd99d5d..000000000 Binary files a/files/03_3059_example.mp3 and /dev/null differ diff --git a/files/03_3059_meaning.mp3 b/files/03_3059_meaning.mp3 deleted file mode 100644 index e637f3f2a..000000000 Binary files a/files/03_3059_meaning.mp3 and /dev/null differ diff --git a/files/03_3060.jpg b/files/03_3060.jpg deleted file mode 100644 index ef5203577..000000000 Binary files a/files/03_3060.jpg and /dev/null differ diff --git a/files/03_3060.mp3 b/files/03_3060.mp3 deleted file mode 100644 index b264b4d1a..000000000 Binary files a/files/03_3060.mp3 and /dev/null differ diff --git a/files/03_3060_example.mp3 b/files/03_3060_example.mp3 deleted file mode 100644 index bb29b3c3f..000000000 Binary files a/files/03_3060_example.mp3 and /dev/null differ diff --git a/files/03_3060_meaning.mp3 b/files/03_3060_meaning.mp3 deleted file mode 100644 index c8fdc0bf0..000000000 Binary files a/files/03_3060_meaning.mp3 and /dev/null differ diff --git a/files/04_0061.jpg b/files/04_0061.jpg deleted file mode 100644 index 67e9e0975..000000000 Binary files a/files/04_0061.jpg and /dev/null differ diff --git a/files/04_0061.mp3 b/files/04_0061.mp3 deleted file mode 100644 index 7bedf9b70..000000000 Binary files a/files/04_0061.mp3 and /dev/null differ diff --git a/files/04_0061_example.mp3 b/files/04_0061_example.mp3 deleted file mode 100644 index 1824cf130..000000000 Binary files a/files/04_0061_example.mp3 and /dev/null differ diff --git a/files/04_0061_meaning.mp3 b/files/04_0061_meaning.mp3 deleted file mode 100644 index ce2f55ac7..000000000 Binary files a/files/04_0061_meaning.mp3 and /dev/null differ diff --git a/files/04_0062.jpg b/files/04_0062.jpg deleted file mode 100644 index 75df97d02..000000000 Binary files a/files/04_0062.jpg and /dev/null differ diff --git a/files/04_0062.mp3 b/files/04_0062.mp3 deleted file mode 100644 index c68a3fa7b..000000000 Binary files a/files/04_0062.mp3 and /dev/null differ diff --git a/files/04_0062_example.mp3 b/files/04_0062_example.mp3 deleted file mode 100644 index 070b7d38f..000000000 Binary files a/files/04_0062_example.mp3 and /dev/null differ diff --git a/files/04_0062_meaning.mp3 b/files/04_0062_meaning.mp3 deleted file mode 100644 index 0028b226d..000000000 Binary files a/files/04_0062_meaning.mp3 and /dev/null differ diff --git a/files/04_0063.jpg b/files/04_0063.jpg deleted file mode 100644 index 0147bb4ed..000000000 Binary files a/files/04_0063.jpg and /dev/null differ diff --git a/files/04_0063.mp3 b/files/04_0063.mp3 deleted file mode 100644 index 3b822d84c..000000000 Binary files a/files/04_0063.mp3 and /dev/null differ diff --git a/files/04_0063_example.mp3 b/files/04_0063_example.mp3 deleted file mode 100644 index 3241e164f..000000000 Binary files a/files/04_0063_example.mp3 and /dev/null differ diff --git a/files/04_0063_meaning.mp3 b/files/04_0063_meaning.mp3 deleted file mode 100644 index c034c0f2f..000000000 Binary files a/files/04_0063_meaning.mp3 and /dev/null differ diff --git a/files/04_0064.jpg b/files/04_0064.jpg deleted file mode 100644 index b8a3be74d..000000000 Binary files a/files/04_0064.jpg and /dev/null differ diff --git a/files/04_0064.mp3 b/files/04_0064.mp3 deleted file mode 100644 index 2f312914e..000000000 Binary files a/files/04_0064.mp3 and /dev/null differ diff --git a/files/04_0064_example.mp3 b/files/04_0064_example.mp3 deleted file mode 100644 index e9149a7a4..000000000 Binary files a/files/04_0064_example.mp3 and /dev/null differ diff --git a/files/04_0064_meaning.mp3 b/files/04_0064_meaning.mp3 deleted file mode 100644 index 51a24b54c..000000000 Binary files a/files/04_0064_meaning.mp3 and /dev/null differ diff --git a/files/04_0065.jpg b/files/04_0065.jpg deleted file mode 100644 index dfca845c1..000000000 Binary files a/files/04_0065.jpg and /dev/null differ diff --git a/files/04_0065.mp3 b/files/04_0065.mp3 deleted file mode 100644 index cfd8122d2..000000000 Binary files a/files/04_0065.mp3 and /dev/null differ diff --git a/files/04_0065_example.mp3 b/files/04_0065_example.mp3 deleted file mode 100644 index 670e324a8..000000000 Binary files a/files/04_0065_example.mp3 and /dev/null differ diff --git a/files/04_0065_meaning.mp3 b/files/04_0065_meaning.mp3 deleted file mode 100644 index 6bc763691..000000000 Binary files a/files/04_0065_meaning.mp3 and /dev/null differ diff --git a/files/04_0066.jpg b/files/04_0066.jpg deleted file mode 100644 index d2304b751..000000000 Binary files a/files/04_0066.jpg and /dev/null differ diff --git a/files/04_0066.mp3 b/files/04_0066.mp3 deleted file mode 100644 index d6b37ca9d..000000000 Binary files a/files/04_0066.mp3 and /dev/null differ diff --git a/files/04_0066_example.mp3 b/files/04_0066_example.mp3 deleted file mode 100644 index 1e3d384ff..000000000 Binary files a/files/04_0066_example.mp3 and /dev/null differ diff --git a/files/04_0066_meaning.mp3 b/files/04_0066_meaning.mp3 deleted file mode 100644 index 349d1f828..000000000 Binary files a/files/04_0066_meaning.mp3 and /dev/null differ diff --git a/files/04_0067.jpg b/files/04_0067.jpg deleted file mode 100644 index cbbd57241..000000000 Binary files a/files/04_0067.jpg and /dev/null differ diff --git a/files/04_0067.mp3 b/files/04_0067.mp3 deleted file mode 100644 index 3dc63adc5..000000000 Binary files a/files/04_0067.mp3 and /dev/null differ diff --git a/files/04_0067_example.mp3 b/files/04_0067_example.mp3 deleted file mode 100644 index 910b97ef5..000000000 Binary files a/files/04_0067_example.mp3 and /dev/null differ diff --git a/files/04_0067_meaning.mp3 b/files/04_0067_meaning.mp3 deleted file mode 100644 index 30d2af083..000000000 Binary files a/files/04_0067_meaning.mp3 and /dev/null differ diff --git a/files/04_0068.jpg b/files/04_0068.jpg deleted file mode 100644 index 5fa84349c..000000000 Binary files a/files/04_0068.jpg and /dev/null differ diff --git a/files/04_0068.mp3 b/files/04_0068.mp3 deleted file mode 100644 index d2bc0ca62..000000000 Binary files a/files/04_0068.mp3 and /dev/null differ diff --git a/files/04_0068_example.mp3 b/files/04_0068_example.mp3 deleted file mode 100644 index a90e3ace7..000000000 Binary files a/files/04_0068_example.mp3 and /dev/null differ diff --git a/files/04_0068_meaning.mp3 b/files/04_0068_meaning.mp3 deleted file mode 100644 index 54b197968..000000000 Binary files a/files/04_0068_meaning.mp3 and /dev/null differ diff --git a/files/04_0069.jpg b/files/04_0069.jpg deleted file mode 100644 index 5c6db7c94..000000000 Binary files a/files/04_0069.jpg and /dev/null differ diff --git a/files/04_0069.mp3 b/files/04_0069.mp3 deleted file mode 100644 index 9f3d13c66..000000000 Binary files a/files/04_0069.mp3 and /dev/null differ diff --git a/files/04_0069_example.mp3 b/files/04_0069_example.mp3 deleted file mode 100644 index a1fbee178..000000000 Binary files a/files/04_0069_example.mp3 and /dev/null differ diff --git a/files/04_0069_meaning.mp3 b/files/04_0069_meaning.mp3 deleted file mode 100644 index 65a5ecb5a..000000000 Binary files a/files/04_0069_meaning.mp3 and /dev/null differ diff --git a/files/04_0070.jpg b/files/04_0070.jpg deleted file mode 100644 index c965df32d..000000000 Binary files a/files/04_0070.jpg and /dev/null differ diff --git a/files/04_0070.mp3 b/files/04_0070.mp3 deleted file mode 100644 index ca3dee5f8..000000000 Binary files a/files/04_0070.mp3 and /dev/null differ diff --git a/files/04_0070_example.mp3 b/files/04_0070_example.mp3 deleted file mode 100644 index bf3809d53..000000000 Binary files a/files/04_0070_example.mp3 and /dev/null differ diff --git a/files/04_0070_meaning.mp3 b/files/04_0070_meaning.mp3 deleted file mode 100644 index 112626b8f..000000000 Binary files a/files/04_0070_meaning.mp3 and /dev/null differ diff --git a/files/04_0071.jpg b/files/04_0071.jpg deleted file mode 100644 index d2304c6ad..000000000 Binary files a/files/04_0071.jpg and /dev/null differ diff --git a/files/04_0071.mp3 b/files/04_0071.mp3 deleted file mode 100644 index 83f9a1e2e..000000000 Binary files a/files/04_0071.mp3 and /dev/null differ diff --git a/files/04_0071_example.mp3 b/files/04_0071_example.mp3 deleted file mode 100644 index 9e3d684c6..000000000 Binary files a/files/04_0071_example.mp3 and /dev/null differ diff --git a/files/04_0071_meaning.mp3 b/files/04_0071_meaning.mp3 deleted file mode 100644 index 7ae46816b..000000000 Binary files a/files/04_0071_meaning.mp3 and /dev/null differ diff --git a/files/04_0072.jpg b/files/04_0072.jpg deleted file mode 100644 index 063e79e2f..000000000 Binary files a/files/04_0072.jpg and /dev/null differ diff --git a/files/04_0072.mp3 b/files/04_0072.mp3 deleted file mode 100644 index 735492b86..000000000 Binary files a/files/04_0072.mp3 and /dev/null differ diff --git a/files/04_0072_example.mp3 b/files/04_0072_example.mp3 deleted file mode 100644 index 31c091f35..000000000 Binary files a/files/04_0072_example.mp3 and /dev/null differ diff --git a/files/04_0072_meaning.mp3 b/files/04_0072_meaning.mp3 deleted file mode 100644 index f78127762..000000000 Binary files a/files/04_0072_meaning.mp3 and /dev/null differ diff --git a/files/04_0073.jpg b/files/04_0073.jpg deleted file mode 100644 index ea1029044..000000000 Binary files a/files/04_0073.jpg and /dev/null differ diff --git a/files/04_0073.mp3 b/files/04_0073.mp3 deleted file mode 100644 index f54fea020..000000000 Binary files a/files/04_0073.mp3 and /dev/null differ diff --git a/files/04_0073_example.mp3 b/files/04_0073_example.mp3 deleted file mode 100644 index 98c7aa46c..000000000 Binary files a/files/04_0073_example.mp3 and /dev/null differ diff --git a/files/04_0073_meaning.mp3 b/files/04_0073_meaning.mp3 deleted file mode 100644 index d1843a022..000000000 Binary files a/files/04_0073_meaning.mp3 and /dev/null differ diff --git a/files/04_0074.jpg b/files/04_0074.jpg deleted file mode 100644 index d11d33055..000000000 Binary files a/files/04_0074.jpg and /dev/null differ diff --git a/files/04_0074.mp3 b/files/04_0074.mp3 deleted file mode 100644 index 25ef0edca..000000000 Binary files a/files/04_0074.mp3 and /dev/null differ diff --git a/files/04_0074_example.mp3 b/files/04_0074_example.mp3 deleted file mode 100644 index 8909c555d..000000000 Binary files a/files/04_0074_example.mp3 and /dev/null differ diff --git a/files/04_0074_meaning.mp3 b/files/04_0074_meaning.mp3 deleted file mode 100644 index b58e22788..000000000 Binary files a/files/04_0074_meaning.mp3 and /dev/null differ diff --git a/files/04_0075.jpg b/files/04_0075.jpg deleted file mode 100644 index 8ce1be588..000000000 Binary files a/files/04_0075.jpg and /dev/null differ diff --git a/files/04_0075.mp3 b/files/04_0075.mp3 deleted file mode 100644 index de3959982..000000000 Binary files a/files/04_0075.mp3 and /dev/null differ diff --git a/files/04_0075_example.mp3 b/files/04_0075_example.mp3 deleted file mode 100644 index 34b68c5d3..000000000 Binary files a/files/04_0075_example.mp3 and /dev/null differ diff --git a/files/04_0075_meaning.mp3 b/files/04_0075_meaning.mp3 deleted file mode 100644 index b03a7d566..000000000 Binary files a/files/04_0075_meaning.mp3 and /dev/null differ diff --git a/files/04_0076.jpg b/files/04_0076.jpg deleted file mode 100644 index 696b4e210..000000000 Binary files a/files/04_0076.jpg and /dev/null differ diff --git a/files/04_0076.mp3 b/files/04_0076.mp3 deleted file mode 100644 index 2f4a1f07a..000000000 Binary files a/files/04_0076.mp3 and /dev/null differ diff --git a/files/04_0076_example.mp3 b/files/04_0076_example.mp3 deleted file mode 100644 index 806e2f8a3..000000000 Binary files a/files/04_0076_example.mp3 and /dev/null differ diff --git a/files/04_0076_meaning.mp3 b/files/04_0076_meaning.mp3 deleted file mode 100644 index ca2a635de..000000000 Binary files a/files/04_0076_meaning.mp3 and /dev/null differ diff --git a/files/04_0077.jpg b/files/04_0077.jpg deleted file mode 100644 index 2572cc150..000000000 Binary files a/files/04_0077.jpg and /dev/null differ diff --git a/files/04_0077.mp3 b/files/04_0077.mp3 deleted file mode 100644 index 4fa7531c4..000000000 Binary files a/files/04_0077.mp3 and /dev/null differ diff --git a/files/04_0077_example.mp3 b/files/04_0077_example.mp3 deleted file mode 100644 index 185384850..000000000 Binary files a/files/04_0077_example.mp3 and /dev/null differ diff --git a/files/04_0077_meaning.mp3 b/files/04_0077_meaning.mp3 deleted file mode 100644 index bd8cbefe9..000000000 Binary files a/files/04_0077_meaning.mp3 and /dev/null differ diff --git a/files/04_0078.jpg b/files/04_0078.jpg deleted file mode 100644 index c7c9e9f45..000000000 Binary files a/files/04_0078.jpg and /dev/null differ diff --git a/files/04_0078.mp3 b/files/04_0078.mp3 deleted file mode 100644 index 936efde30..000000000 Binary files a/files/04_0078.mp3 and /dev/null differ diff --git a/files/04_0078_example.mp3 b/files/04_0078_example.mp3 deleted file mode 100644 index 6f3b81e83..000000000 Binary files a/files/04_0078_example.mp3 and /dev/null differ diff --git a/files/04_0078_meaning.mp3 b/files/04_0078_meaning.mp3 deleted file mode 100644 index e4f7d77f0..000000000 Binary files a/files/04_0078_meaning.mp3 and /dev/null differ diff --git a/files/04_0079.jpg b/files/04_0079.jpg deleted file mode 100644 index 72145b367..000000000 Binary files a/files/04_0079.jpg and /dev/null differ diff --git a/files/04_0079.mp3 b/files/04_0079.mp3 deleted file mode 100644 index e37aad79a..000000000 Binary files a/files/04_0079.mp3 and /dev/null differ diff --git a/files/04_0079_example.mp3 b/files/04_0079_example.mp3 deleted file mode 100644 index 58b3cfb2d..000000000 Binary files a/files/04_0079_example.mp3 and /dev/null differ diff --git a/files/04_0079_meaning.mp3 b/files/04_0079_meaning.mp3 deleted file mode 100644 index 109541a5d..000000000 Binary files a/files/04_0079_meaning.mp3 and /dev/null differ diff --git a/files/04_0080.jpg b/files/04_0080.jpg deleted file mode 100644 index bc318d8d4..000000000 Binary files a/files/04_0080.jpg and /dev/null differ diff --git a/files/04_0080.mp3 b/files/04_0080.mp3 deleted file mode 100644 index dd35aabb2..000000000 Binary files a/files/04_0080.mp3 and /dev/null differ diff --git a/files/04_0080_example.mp3 b/files/04_0080_example.mp3 deleted file mode 100644 index 8dac90f4a..000000000 Binary files a/files/04_0080_example.mp3 and /dev/null differ diff --git a/files/04_0080_meaning.mp3 b/files/04_0080_meaning.mp3 deleted file mode 100644 index b69cc53e5..000000000 Binary files a/files/04_0080_meaning.mp3 and /dev/null differ diff --git a/files/04_0661.jpg b/files/04_0661.jpg deleted file mode 100644 index faa303b96..000000000 Binary files a/files/04_0661.jpg and /dev/null differ diff --git a/files/04_0661.mp3 b/files/04_0661.mp3 deleted file mode 100644 index 46b72857f..000000000 Binary files a/files/04_0661.mp3 and /dev/null differ diff --git a/files/04_0661_example.mp3 b/files/04_0661_example.mp3 deleted file mode 100644 index f9c17a729..000000000 Binary files a/files/04_0661_example.mp3 and /dev/null differ diff --git a/files/04_0661_meaning.mp3 b/files/04_0661_meaning.mp3 deleted file mode 100644 index 023d9c59d..000000000 Binary files a/files/04_0661_meaning.mp3 and /dev/null differ diff --git a/files/04_0662.jpg b/files/04_0662.jpg deleted file mode 100644 index 2a1f3472b..000000000 Binary files a/files/04_0662.jpg and /dev/null differ diff --git a/files/04_0662.mp3 b/files/04_0662.mp3 deleted file mode 100644 index f57f4c995..000000000 Binary files a/files/04_0662.mp3 and /dev/null differ diff --git a/files/04_0662_example.mp3 b/files/04_0662_example.mp3 deleted file mode 100644 index f01a71ad2..000000000 Binary files a/files/04_0662_example.mp3 and /dev/null differ diff --git a/files/04_0662_meaning.mp3 b/files/04_0662_meaning.mp3 deleted file mode 100644 index 6d7b82445..000000000 Binary files a/files/04_0662_meaning.mp3 and /dev/null differ diff --git a/files/04_0663.jpg b/files/04_0663.jpg deleted file mode 100644 index 614b0dbdf..000000000 Binary files a/files/04_0663.jpg and /dev/null differ diff --git a/files/04_0663.mp3 b/files/04_0663.mp3 deleted file mode 100644 index 30e9234bc..000000000 Binary files a/files/04_0663.mp3 and /dev/null differ diff --git a/files/04_0663_example.mp3 b/files/04_0663_example.mp3 deleted file mode 100644 index 4a499237a..000000000 Binary files a/files/04_0663_example.mp3 and /dev/null differ diff --git a/files/04_0663_meaning.mp3 b/files/04_0663_meaning.mp3 deleted file mode 100644 index 6c8c7f118..000000000 Binary files a/files/04_0663_meaning.mp3 and /dev/null differ diff --git a/files/04_0664.jpg b/files/04_0664.jpg deleted file mode 100644 index 7ab4cbeb6..000000000 Binary files a/files/04_0664.jpg and /dev/null differ diff --git a/files/04_0664.mp3 b/files/04_0664.mp3 deleted file mode 100644 index 4433541f9..000000000 Binary files a/files/04_0664.mp3 and /dev/null differ diff --git a/files/04_0664_example.mp3 b/files/04_0664_example.mp3 deleted file mode 100644 index 5e3fcbb5c..000000000 Binary files a/files/04_0664_example.mp3 and /dev/null differ diff --git a/files/04_0664_meaning.mp3 b/files/04_0664_meaning.mp3 deleted file mode 100644 index fcffbe771..000000000 Binary files a/files/04_0664_meaning.mp3 and /dev/null differ diff --git a/files/04_0665.jpg b/files/04_0665.jpg deleted file mode 100644 index 7b4f997ad..000000000 Binary files a/files/04_0665.jpg and /dev/null differ diff --git a/files/04_0665.mp3 b/files/04_0665.mp3 deleted file mode 100644 index 6d4fe197f..000000000 Binary files a/files/04_0665.mp3 and /dev/null differ diff --git a/files/04_0665_example.mp3 b/files/04_0665_example.mp3 deleted file mode 100644 index 15064d756..000000000 Binary files a/files/04_0665_example.mp3 and /dev/null differ diff --git a/files/04_0665_meaning.mp3 b/files/04_0665_meaning.mp3 deleted file mode 100644 index 2a8826aec..000000000 Binary files a/files/04_0665_meaning.mp3 and /dev/null differ diff --git a/files/04_0666.jpg b/files/04_0666.jpg deleted file mode 100644 index 553478a3b..000000000 Binary files a/files/04_0666.jpg and /dev/null differ diff --git a/files/04_0666.mp3 b/files/04_0666.mp3 deleted file mode 100644 index eadcf49c1..000000000 Binary files a/files/04_0666.mp3 and /dev/null differ diff --git a/files/04_0666_example.mp3 b/files/04_0666_example.mp3 deleted file mode 100644 index d66e44dab..000000000 Binary files a/files/04_0666_example.mp3 and /dev/null differ diff --git a/files/04_0666_meaning.mp3 b/files/04_0666_meaning.mp3 deleted file mode 100644 index fb29099ae..000000000 Binary files a/files/04_0666_meaning.mp3 and /dev/null differ diff --git a/files/04_0667.jpg b/files/04_0667.jpg deleted file mode 100644 index 4ac33625e..000000000 Binary files a/files/04_0667.jpg and /dev/null differ diff --git a/files/04_0667.mp3 b/files/04_0667.mp3 deleted file mode 100644 index 41f2c93b8..000000000 Binary files a/files/04_0667.mp3 and /dev/null differ diff --git a/files/04_0667_example.mp3 b/files/04_0667_example.mp3 deleted file mode 100644 index 1081adef9..000000000 Binary files a/files/04_0667_example.mp3 and /dev/null differ diff --git a/files/04_0667_meaning.mp3 b/files/04_0667_meaning.mp3 deleted file mode 100644 index b51811239..000000000 Binary files a/files/04_0667_meaning.mp3 and /dev/null differ diff --git a/files/04_0668.jpg b/files/04_0668.jpg deleted file mode 100644 index 9239f9614..000000000 Binary files a/files/04_0668.jpg and /dev/null differ diff --git a/files/04_0668.mp3 b/files/04_0668.mp3 deleted file mode 100644 index 96c6728c1..000000000 Binary files a/files/04_0668.mp3 and /dev/null differ diff --git a/files/04_0668_example.mp3 b/files/04_0668_example.mp3 deleted file mode 100644 index 560ad4467..000000000 Binary files a/files/04_0668_example.mp3 and /dev/null differ diff --git a/files/04_0668_meaning.mp3 b/files/04_0668_meaning.mp3 deleted file mode 100644 index e2d328414..000000000 Binary files a/files/04_0668_meaning.mp3 and /dev/null differ diff --git a/files/04_0669.jpg b/files/04_0669.jpg deleted file mode 100644 index 68081dfda..000000000 Binary files a/files/04_0669.jpg and /dev/null differ diff --git a/files/04_0669.mp3 b/files/04_0669.mp3 deleted file mode 100644 index d3f0c824f..000000000 Binary files a/files/04_0669.mp3 and /dev/null differ diff --git a/files/04_0669_example.mp3 b/files/04_0669_example.mp3 deleted file mode 100644 index 427428a66..000000000 Binary files a/files/04_0669_example.mp3 and /dev/null differ diff --git a/files/04_0669_meaning.mp3 b/files/04_0669_meaning.mp3 deleted file mode 100644 index 24fec3fc6..000000000 Binary files a/files/04_0669_meaning.mp3 and /dev/null differ diff --git a/files/04_0670.jpg b/files/04_0670.jpg deleted file mode 100644 index 6095d3311..000000000 Binary files a/files/04_0670.jpg and /dev/null differ diff --git a/files/04_0670.mp3 b/files/04_0670.mp3 deleted file mode 100644 index 37b5ce3c5..000000000 Binary files a/files/04_0670.mp3 and /dev/null differ diff --git a/files/04_0670_example.mp3 b/files/04_0670_example.mp3 deleted file mode 100644 index c45e4ec27..000000000 Binary files a/files/04_0670_example.mp3 and /dev/null differ diff --git a/files/04_0670_meaning.mp3 b/files/04_0670_meaning.mp3 deleted file mode 100644 index 5f2a6283d..000000000 Binary files a/files/04_0670_meaning.mp3 and /dev/null differ diff --git a/files/04_0671.jpg b/files/04_0671.jpg deleted file mode 100644 index b027d6df6..000000000 Binary files a/files/04_0671.jpg and /dev/null differ diff --git a/files/04_0671.mp3 b/files/04_0671.mp3 deleted file mode 100644 index 9e5928c01..000000000 Binary files a/files/04_0671.mp3 and /dev/null differ diff --git a/files/04_0671_example.mp3 b/files/04_0671_example.mp3 deleted file mode 100644 index 668199f46..000000000 Binary files a/files/04_0671_example.mp3 and /dev/null differ diff --git a/files/04_0671_meaning.mp3 b/files/04_0671_meaning.mp3 deleted file mode 100644 index bfcee2d40..000000000 Binary files a/files/04_0671_meaning.mp3 and /dev/null differ diff --git a/files/04_0672.jpg b/files/04_0672.jpg deleted file mode 100644 index 35172b0da..000000000 Binary files a/files/04_0672.jpg and /dev/null differ diff --git a/files/04_0672.mp3 b/files/04_0672.mp3 deleted file mode 100644 index b55b1da8e..000000000 Binary files a/files/04_0672.mp3 and /dev/null differ diff --git a/files/04_0672_example.mp3 b/files/04_0672_example.mp3 deleted file mode 100644 index 904027f18..000000000 Binary files a/files/04_0672_example.mp3 and /dev/null differ diff --git a/files/04_0672_meaning.mp3 b/files/04_0672_meaning.mp3 deleted file mode 100644 index 939976791..000000000 Binary files a/files/04_0672_meaning.mp3 and /dev/null differ diff --git a/files/04_0673.jpg b/files/04_0673.jpg deleted file mode 100644 index f7a74b06b..000000000 Binary files a/files/04_0673.jpg and /dev/null differ diff --git a/files/04_0673.mp3 b/files/04_0673.mp3 deleted file mode 100644 index 92ece3b13..000000000 Binary files a/files/04_0673.mp3 and /dev/null differ diff --git a/files/04_0673_example.mp3 b/files/04_0673_example.mp3 deleted file mode 100644 index aaaa33e82..000000000 Binary files a/files/04_0673_example.mp3 and /dev/null differ diff --git a/files/04_0673_meaning.mp3 b/files/04_0673_meaning.mp3 deleted file mode 100644 index 990d59703..000000000 Binary files a/files/04_0673_meaning.mp3 and /dev/null differ diff --git a/files/04_0674.jpg b/files/04_0674.jpg deleted file mode 100644 index 2c1fda024..000000000 Binary files a/files/04_0674.jpg and /dev/null differ diff --git a/files/04_0674.mp3 b/files/04_0674.mp3 deleted file mode 100644 index 273f740ad..000000000 Binary files a/files/04_0674.mp3 and /dev/null differ diff --git a/files/04_0674_example.mp3 b/files/04_0674_example.mp3 deleted file mode 100644 index 1941a40be..000000000 Binary files a/files/04_0674_example.mp3 and /dev/null differ diff --git a/files/04_0674_meaning.mp3 b/files/04_0674_meaning.mp3 deleted file mode 100644 index c17b7e19c..000000000 Binary files a/files/04_0674_meaning.mp3 and /dev/null differ diff --git a/files/04_0675.jpg b/files/04_0675.jpg deleted file mode 100644 index 0619b966b..000000000 Binary files a/files/04_0675.jpg and /dev/null differ diff --git a/files/04_0675.mp3 b/files/04_0675.mp3 deleted file mode 100644 index 5d79b393f..000000000 Binary files a/files/04_0675.mp3 and /dev/null differ diff --git a/files/04_0675_example.mp3 b/files/04_0675_example.mp3 deleted file mode 100644 index fc424d814..000000000 Binary files a/files/04_0675_example.mp3 and /dev/null differ diff --git a/files/04_0675_meaning.mp3 b/files/04_0675_meaning.mp3 deleted file mode 100644 index d3a89e405..000000000 Binary files a/files/04_0675_meaning.mp3 and /dev/null differ diff --git a/files/04_0676.jpg b/files/04_0676.jpg deleted file mode 100644 index 8cf0a93e3..000000000 Binary files a/files/04_0676.jpg and /dev/null differ diff --git a/files/04_0676.mp3 b/files/04_0676.mp3 deleted file mode 100644 index 99f28304c..000000000 Binary files a/files/04_0676.mp3 and /dev/null differ diff --git a/files/04_0676_example.mp3 b/files/04_0676_example.mp3 deleted file mode 100644 index 4861849cd..000000000 Binary files a/files/04_0676_example.mp3 and /dev/null differ diff --git a/files/04_0676_meaning.mp3 b/files/04_0676_meaning.mp3 deleted file mode 100644 index b6a260298..000000000 Binary files a/files/04_0676_meaning.mp3 and /dev/null differ diff --git a/files/04_0677.jpg b/files/04_0677.jpg deleted file mode 100644 index a642dcbaf..000000000 Binary files a/files/04_0677.jpg and /dev/null differ diff --git a/files/04_0677.mp3 b/files/04_0677.mp3 deleted file mode 100644 index 5e757bd11..000000000 Binary files a/files/04_0677.mp3 and /dev/null differ diff --git a/files/04_0677_example.mp3 b/files/04_0677_example.mp3 deleted file mode 100644 index 43f432b2f..000000000 Binary files a/files/04_0677_example.mp3 and /dev/null differ diff --git a/files/04_0677_meaning.mp3 b/files/04_0677_meaning.mp3 deleted file mode 100644 index f23647723..000000000 Binary files a/files/04_0677_meaning.mp3 and /dev/null differ diff --git a/files/04_0678.jpg b/files/04_0678.jpg deleted file mode 100644 index 72a0fde92..000000000 Binary files a/files/04_0678.jpg and /dev/null differ diff --git a/files/04_0678.mp3 b/files/04_0678.mp3 deleted file mode 100644 index 00811ec40..000000000 Binary files a/files/04_0678.mp3 and /dev/null differ diff --git a/files/04_0678_example.mp3 b/files/04_0678_example.mp3 deleted file mode 100644 index 9b8a6eb6b..000000000 Binary files a/files/04_0678_example.mp3 and /dev/null differ diff --git a/files/04_0678_meaning.mp3 b/files/04_0678_meaning.mp3 deleted file mode 100644 index c64db2822..000000000 Binary files a/files/04_0678_meaning.mp3 and /dev/null differ diff --git a/files/04_0679.jpg b/files/04_0679.jpg deleted file mode 100644 index 9b3a383ae..000000000 Binary files a/files/04_0679.jpg and /dev/null differ diff --git a/files/04_0679.mp3 b/files/04_0679.mp3 deleted file mode 100644 index 9e1ef2817..000000000 Binary files a/files/04_0679.mp3 and /dev/null differ diff --git a/files/04_0679_example.mp3 b/files/04_0679_example.mp3 deleted file mode 100644 index f25ede21f..000000000 Binary files a/files/04_0679_example.mp3 and /dev/null differ diff --git a/files/04_0679_meaning.mp3 b/files/04_0679_meaning.mp3 deleted file mode 100644 index 33739bdb8..000000000 Binary files a/files/04_0679_meaning.mp3 and /dev/null differ diff --git a/files/04_0680.jpg b/files/04_0680.jpg deleted file mode 100644 index 7837ea930..000000000 Binary files a/files/04_0680.jpg and /dev/null differ diff --git a/files/04_0680.mp3 b/files/04_0680.mp3 deleted file mode 100644 index e871499ea..000000000 Binary files a/files/04_0680.mp3 and /dev/null differ diff --git a/files/04_0680_example.mp3 b/files/04_0680_example.mp3 deleted file mode 100644 index 0bdeecb8a..000000000 Binary files a/files/04_0680_example.mp3 and /dev/null differ diff --git a/files/04_0680_meaning.mp3 b/files/04_0680_meaning.mp3 deleted file mode 100644 index 3fb413d49..000000000 Binary files a/files/04_0680_meaning.mp3 and /dev/null differ diff --git a/files/04_1261.jpg b/files/04_1261.jpg deleted file mode 100644 index 28f1e5f4e..000000000 Binary files a/files/04_1261.jpg and /dev/null differ diff --git a/files/04_1261.mp3 b/files/04_1261.mp3 deleted file mode 100644 index 30b8fb6d0..000000000 Binary files a/files/04_1261.mp3 and /dev/null differ diff --git a/files/04_1261_example.mp3 b/files/04_1261_example.mp3 deleted file mode 100644 index 11402236f..000000000 Binary files a/files/04_1261_example.mp3 and /dev/null differ diff --git a/files/04_1261_meaning.mp3 b/files/04_1261_meaning.mp3 deleted file mode 100644 index 807852ece..000000000 Binary files a/files/04_1261_meaning.mp3 and /dev/null differ diff --git a/files/04_1262.jpg b/files/04_1262.jpg deleted file mode 100644 index 71b26617e..000000000 Binary files a/files/04_1262.jpg and /dev/null differ diff --git a/files/04_1262.mp3 b/files/04_1262.mp3 deleted file mode 100644 index 1fa9537e8..000000000 Binary files a/files/04_1262.mp3 and /dev/null differ diff --git a/files/04_1262_example.mp3 b/files/04_1262_example.mp3 deleted file mode 100644 index b976b740d..000000000 Binary files a/files/04_1262_example.mp3 and /dev/null differ diff --git a/files/04_1262_meaning.mp3 b/files/04_1262_meaning.mp3 deleted file mode 100644 index 92ca9fc92..000000000 Binary files a/files/04_1262_meaning.mp3 and /dev/null differ diff --git a/files/04_1263.jpg b/files/04_1263.jpg deleted file mode 100644 index 8398c80ed..000000000 Binary files a/files/04_1263.jpg and /dev/null differ diff --git a/files/04_1263.mp3 b/files/04_1263.mp3 deleted file mode 100644 index 15a9e5f8c..000000000 Binary files a/files/04_1263.mp3 and /dev/null differ diff --git a/files/04_1263_example.mp3 b/files/04_1263_example.mp3 deleted file mode 100644 index b57272549..000000000 Binary files a/files/04_1263_example.mp3 and /dev/null differ diff --git a/files/04_1263_meaning.mp3 b/files/04_1263_meaning.mp3 deleted file mode 100644 index dc15ae43a..000000000 Binary files a/files/04_1263_meaning.mp3 and /dev/null differ diff --git a/files/04_1264.jpg b/files/04_1264.jpg deleted file mode 100644 index fcb8756ed..000000000 Binary files a/files/04_1264.jpg and /dev/null differ diff --git a/files/04_1264.mp3 b/files/04_1264.mp3 deleted file mode 100644 index 4432e92dc..000000000 Binary files a/files/04_1264.mp3 and /dev/null differ diff --git a/files/04_1264_example.mp3 b/files/04_1264_example.mp3 deleted file mode 100644 index 14dc932a0..000000000 Binary files a/files/04_1264_example.mp3 and /dev/null differ diff --git a/files/04_1264_meaning.mp3 b/files/04_1264_meaning.mp3 deleted file mode 100644 index 6940a4a2b..000000000 Binary files a/files/04_1264_meaning.mp3 and /dev/null differ diff --git a/files/04_1265.jpg b/files/04_1265.jpg deleted file mode 100644 index 9376bd678..000000000 Binary files a/files/04_1265.jpg and /dev/null differ diff --git a/files/04_1265.mp3 b/files/04_1265.mp3 deleted file mode 100644 index a1c773ce7..000000000 Binary files a/files/04_1265.mp3 and /dev/null differ diff --git a/files/04_1265_example.mp3 b/files/04_1265_example.mp3 deleted file mode 100644 index 621f9acb5..000000000 Binary files a/files/04_1265_example.mp3 and /dev/null differ diff --git a/files/04_1265_meaning.mp3 b/files/04_1265_meaning.mp3 deleted file mode 100644 index da4bf8655..000000000 Binary files a/files/04_1265_meaning.mp3 and /dev/null differ diff --git a/files/04_1266.jpg b/files/04_1266.jpg deleted file mode 100644 index 9f32bd195..000000000 Binary files a/files/04_1266.jpg and /dev/null differ diff --git a/files/04_1266.mp3 b/files/04_1266.mp3 deleted file mode 100644 index b60d2722d..000000000 Binary files a/files/04_1266.mp3 and /dev/null differ diff --git a/files/04_1266_example.mp3 b/files/04_1266_example.mp3 deleted file mode 100644 index f494f574b..000000000 Binary files a/files/04_1266_example.mp3 and /dev/null differ diff --git a/files/04_1266_meaning.mp3 b/files/04_1266_meaning.mp3 deleted file mode 100644 index 2dceb6271..000000000 Binary files a/files/04_1266_meaning.mp3 and /dev/null differ diff --git a/files/04_1267.jpg b/files/04_1267.jpg deleted file mode 100644 index cb6afa1d7..000000000 Binary files a/files/04_1267.jpg and /dev/null differ diff --git a/files/04_1267.mp3 b/files/04_1267.mp3 deleted file mode 100644 index 7f15eafdd..000000000 Binary files a/files/04_1267.mp3 and /dev/null differ diff --git a/files/04_1267_example.mp3 b/files/04_1267_example.mp3 deleted file mode 100644 index 1e5c91f48..000000000 Binary files a/files/04_1267_example.mp3 and /dev/null differ diff --git a/files/04_1267_meaning.mp3 b/files/04_1267_meaning.mp3 deleted file mode 100644 index a6c90e4e1..000000000 Binary files a/files/04_1267_meaning.mp3 and /dev/null differ diff --git a/files/04_1268.jpg b/files/04_1268.jpg deleted file mode 100644 index 12bec559b..000000000 Binary files a/files/04_1268.jpg and /dev/null differ diff --git a/files/04_1268.mp3 b/files/04_1268.mp3 deleted file mode 100644 index 77cf0e6fa..000000000 Binary files a/files/04_1268.mp3 and /dev/null differ diff --git a/files/04_1268_example.mp3 b/files/04_1268_example.mp3 deleted file mode 100644 index 21ff3f42a..000000000 Binary files a/files/04_1268_example.mp3 and /dev/null differ diff --git a/files/04_1268_meaning.mp3 b/files/04_1268_meaning.mp3 deleted file mode 100644 index 6cf8e92af..000000000 Binary files a/files/04_1268_meaning.mp3 and /dev/null differ diff --git a/files/04_1269.jpg b/files/04_1269.jpg deleted file mode 100644 index 3c424ab02..000000000 Binary files a/files/04_1269.jpg and /dev/null differ diff --git a/files/04_1269.mp3 b/files/04_1269.mp3 deleted file mode 100644 index 6c2e19492..000000000 Binary files a/files/04_1269.mp3 and /dev/null differ diff --git a/files/04_1269_example.mp3 b/files/04_1269_example.mp3 deleted file mode 100644 index f2a2c71e2..000000000 Binary files a/files/04_1269_example.mp3 and /dev/null differ diff --git a/files/04_1269_meaning.mp3 b/files/04_1269_meaning.mp3 deleted file mode 100644 index b39eb9479..000000000 Binary files a/files/04_1269_meaning.mp3 and /dev/null differ diff --git a/files/04_1270.jpg b/files/04_1270.jpg deleted file mode 100644 index 85b9b99a2..000000000 Binary files a/files/04_1270.jpg and /dev/null differ diff --git a/files/04_1270.mp3 b/files/04_1270.mp3 deleted file mode 100644 index 618b7a0a0..000000000 Binary files a/files/04_1270.mp3 and /dev/null differ diff --git a/files/04_1270_example.mp3 b/files/04_1270_example.mp3 deleted file mode 100644 index 39d2e0a43..000000000 Binary files a/files/04_1270_example.mp3 and /dev/null differ diff --git a/files/04_1270_meaning.mp3 b/files/04_1270_meaning.mp3 deleted file mode 100644 index e23218986..000000000 Binary files a/files/04_1270_meaning.mp3 and /dev/null differ diff --git a/files/04_1271.jpg b/files/04_1271.jpg deleted file mode 100644 index a3b89e339..000000000 Binary files a/files/04_1271.jpg and /dev/null differ diff --git a/files/04_1271.mp3 b/files/04_1271.mp3 deleted file mode 100644 index cd4cc34e7..000000000 Binary files a/files/04_1271.mp3 and /dev/null differ diff --git a/files/04_1271_example.mp3 b/files/04_1271_example.mp3 deleted file mode 100644 index 12554b13d..000000000 Binary files a/files/04_1271_example.mp3 and /dev/null differ diff --git a/files/04_1271_meaning.mp3 b/files/04_1271_meaning.mp3 deleted file mode 100644 index 70847ba29..000000000 Binary files a/files/04_1271_meaning.mp3 and /dev/null differ diff --git a/files/04_1272.jpg b/files/04_1272.jpg deleted file mode 100644 index 9d91c20c1..000000000 Binary files a/files/04_1272.jpg and /dev/null differ diff --git a/files/04_1272.mp3 b/files/04_1272.mp3 deleted file mode 100644 index dead31b5d..000000000 Binary files a/files/04_1272.mp3 and /dev/null differ diff --git a/files/04_1272_example.mp3 b/files/04_1272_example.mp3 deleted file mode 100644 index 36665b6a8..000000000 Binary files a/files/04_1272_example.mp3 and /dev/null differ diff --git a/files/04_1272_meaning.mp3 b/files/04_1272_meaning.mp3 deleted file mode 100644 index ab694465b..000000000 Binary files a/files/04_1272_meaning.mp3 and /dev/null differ diff --git a/files/04_1273.jpg b/files/04_1273.jpg deleted file mode 100644 index 4977468a7..000000000 Binary files a/files/04_1273.jpg and /dev/null differ diff --git a/files/04_1273.mp3 b/files/04_1273.mp3 deleted file mode 100644 index 05edd8a03..000000000 Binary files a/files/04_1273.mp3 and /dev/null differ diff --git a/files/04_1273_example.mp3 b/files/04_1273_example.mp3 deleted file mode 100644 index bec80c16e..000000000 Binary files a/files/04_1273_example.mp3 and /dev/null differ diff --git a/files/04_1273_meaning.mp3 b/files/04_1273_meaning.mp3 deleted file mode 100644 index 84bc26991..000000000 Binary files a/files/04_1273_meaning.mp3 and /dev/null differ diff --git a/files/04_1274.jpg b/files/04_1274.jpg deleted file mode 100644 index 4e5e229db..000000000 Binary files a/files/04_1274.jpg and /dev/null differ diff --git a/files/04_1274.mp3 b/files/04_1274.mp3 deleted file mode 100644 index ff7145acb..000000000 Binary files a/files/04_1274.mp3 and /dev/null differ diff --git a/files/04_1274_example.mp3 b/files/04_1274_example.mp3 deleted file mode 100644 index 6d758483f..000000000 Binary files a/files/04_1274_example.mp3 and /dev/null differ diff --git a/files/04_1274_meaning.mp3 b/files/04_1274_meaning.mp3 deleted file mode 100644 index 670abac5a..000000000 Binary files a/files/04_1274_meaning.mp3 and /dev/null differ diff --git a/files/04_1275.jpg b/files/04_1275.jpg deleted file mode 100644 index 683151315..000000000 Binary files a/files/04_1275.jpg and /dev/null differ diff --git a/files/04_1275.mp3 b/files/04_1275.mp3 deleted file mode 100644 index 102c597cd..000000000 Binary files a/files/04_1275.mp3 and /dev/null differ diff --git a/files/04_1275_example.mp3 b/files/04_1275_example.mp3 deleted file mode 100644 index 9458bee47..000000000 Binary files a/files/04_1275_example.mp3 and /dev/null differ diff --git a/files/04_1275_meaning.mp3 b/files/04_1275_meaning.mp3 deleted file mode 100644 index 61b8d97db..000000000 Binary files a/files/04_1275_meaning.mp3 and /dev/null differ diff --git a/files/04_1276.jpg b/files/04_1276.jpg deleted file mode 100644 index 9e677484b..000000000 Binary files a/files/04_1276.jpg and /dev/null differ diff --git a/files/04_1276.mp3 b/files/04_1276.mp3 deleted file mode 100644 index 58c922126..000000000 Binary files a/files/04_1276.mp3 and /dev/null differ diff --git a/files/04_1276_example.mp3 b/files/04_1276_example.mp3 deleted file mode 100644 index dd4b5f0a9..000000000 Binary files a/files/04_1276_example.mp3 and /dev/null differ diff --git a/files/04_1276_meaning.mp3 b/files/04_1276_meaning.mp3 deleted file mode 100644 index 3b797d3e3..000000000 Binary files a/files/04_1276_meaning.mp3 and /dev/null differ diff --git a/files/04_1277.jpg b/files/04_1277.jpg deleted file mode 100644 index 63ba49ace..000000000 Binary files a/files/04_1277.jpg and /dev/null differ diff --git a/files/04_1277.mp3 b/files/04_1277.mp3 deleted file mode 100644 index 8041ee095..000000000 Binary files a/files/04_1277.mp3 and /dev/null differ diff --git a/files/04_1277_example.mp3 b/files/04_1277_example.mp3 deleted file mode 100644 index b20973abc..000000000 Binary files a/files/04_1277_example.mp3 and /dev/null differ diff --git a/files/04_1277_meaning.mp3 b/files/04_1277_meaning.mp3 deleted file mode 100644 index 4da30ecf3..000000000 Binary files a/files/04_1277_meaning.mp3 and /dev/null differ diff --git a/files/04_1278.jpg b/files/04_1278.jpg deleted file mode 100644 index 80f2af559..000000000 Binary files a/files/04_1278.jpg and /dev/null differ diff --git a/files/04_1278.mp3 b/files/04_1278.mp3 deleted file mode 100644 index 871fab894..000000000 Binary files a/files/04_1278.mp3 and /dev/null differ diff --git a/files/04_1278_example.mp3 b/files/04_1278_example.mp3 deleted file mode 100644 index 40e1744e0..000000000 Binary files a/files/04_1278_example.mp3 and /dev/null differ diff --git a/files/04_1278_meaning.mp3 b/files/04_1278_meaning.mp3 deleted file mode 100644 index 4ecb4d931..000000000 Binary files a/files/04_1278_meaning.mp3 and /dev/null differ diff --git a/files/04_1279.jpg b/files/04_1279.jpg deleted file mode 100644 index 66e4fd416..000000000 Binary files a/files/04_1279.jpg and /dev/null differ diff --git a/files/04_1279.mp3 b/files/04_1279.mp3 deleted file mode 100644 index 10dc66a70..000000000 Binary files a/files/04_1279.mp3 and /dev/null differ diff --git a/files/04_1279_example.mp3 b/files/04_1279_example.mp3 deleted file mode 100644 index 4c49ffd0c..000000000 Binary files a/files/04_1279_example.mp3 and /dev/null differ diff --git a/files/04_1279_meaning.mp3 b/files/04_1279_meaning.mp3 deleted file mode 100644 index ee182d3b8..000000000 Binary files a/files/04_1279_meaning.mp3 and /dev/null differ diff --git a/files/04_1280.jpg b/files/04_1280.jpg deleted file mode 100644 index 677b49f33..000000000 Binary files a/files/04_1280.jpg and /dev/null differ diff --git a/files/04_1280.mp3 b/files/04_1280.mp3 deleted file mode 100644 index 2440f4725..000000000 Binary files a/files/04_1280.mp3 and /dev/null differ diff --git a/files/04_1280_example.mp3 b/files/04_1280_example.mp3 deleted file mode 100644 index 847aee7e3..000000000 Binary files a/files/04_1280_example.mp3 and /dev/null differ diff --git a/files/04_1280_meaning.mp3 b/files/04_1280_meaning.mp3 deleted file mode 100644 index a6af4f0ff..000000000 Binary files a/files/04_1280_meaning.mp3 and /dev/null differ diff --git a/files/04_1861.jpg b/files/04_1861.jpg deleted file mode 100644 index a57460d21..000000000 Binary files a/files/04_1861.jpg and /dev/null differ diff --git a/files/04_1861.mp3 b/files/04_1861.mp3 deleted file mode 100644 index 7d743f17a..000000000 Binary files a/files/04_1861.mp3 and /dev/null differ diff --git a/files/04_1861_example.mp3 b/files/04_1861_example.mp3 deleted file mode 100644 index afe148abb..000000000 Binary files a/files/04_1861_example.mp3 and /dev/null differ diff --git a/files/04_1861_meaning.mp3 b/files/04_1861_meaning.mp3 deleted file mode 100644 index 3a378f614..000000000 Binary files a/files/04_1861_meaning.mp3 and /dev/null differ diff --git a/files/04_1862.jpg b/files/04_1862.jpg deleted file mode 100644 index 059505b02..000000000 Binary files a/files/04_1862.jpg and /dev/null differ diff --git a/files/04_1862.mp3 b/files/04_1862.mp3 deleted file mode 100644 index b1e1acd08..000000000 Binary files a/files/04_1862.mp3 and /dev/null differ diff --git a/files/04_1862_example.mp3 b/files/04_1862_example.mp3 deleted file mode 100644 index 3a6317bf5..000000000 Binary files a/files/04_1862_example.mp3 and /dev/null differ diff --git a/files/04_1862_meaning.mp3 b/files/04_1862_meaning.mp3 deleted file mode 100644 index 3276daf9b..000000000 Binary files a/files/04_1862_meaning.mp3 and /dev/null differ diff --git a/files/04_1863.jpg b/files/04_1863.jpg deleted file mode 100644 index 52258c382..000000000 Binary files a/files/04_1863.jpg and /dev/null differ diff --git a/files/04_1863.mp3 b/files/04_1863.mp3 deleted file mode 100644 index 696706296..000000000 Binary files a/files/04_1863.mp3 and /dev/null differ diff --git a/files/04_1863_example.mp3 b/files/04_1863_example.mp3 deleted file mode 100644 index 3788230ee..000000000 Binary files a/files/04_1863_example.mp3 and /dev/null differ diff --git a/files/04_1863_meaning.mp3 b/files/04_1863_meaning.mp3 deleted file mode 100644 index 87a9fecd7..000000000 Binary files a/files/04_1863_meaning.mp3 and /dev/null differ diff --git a/files/04_1864.jpg b/files/04_1864.jpg deleted file mode 100644 index 0b47a6c61..000000000 Binary files a/files/04_1864.jpg and /dev/null differ diff --git a/files/04_1864.mp3 b/files/04_1864.mp3 deleted file mode 100644 index 02b192d21..000000000 Binary files a/files/04_1864.mp3 and /dev/null differ diff --git a/files/04_1864_example.mp3 b/files/04_1864_example.mp3 deleted file mode 100644 index f2f39d951..000000000 Binary files a/files/04_1864_example.mp3 and /dev/null differ diff --git a/files/04_1864_meaning.mp3 b/files/04_1864_meaning.mp3 deleted file mode 100644 index 06d9b3e06..000000000 Binary files a/files/04_1864_meaning.mp3 and /dev/null differ diff --git a/files/04_1865.jpg b/files/04_1865.jpg deleted file mode 100644 index 02f8d7f9e..000000000 Binary files a/files/04_1865.jpg and /dev/null differ diff --git a/files/04_1865.mp3 b/files/04_1865.mp3 deleted file mode 100644 index 07af75b39..000000000 Binary files a/files/04_1865.mp3 and /dev/null differ diff --git a/files/04_1865_example.mp3 b/files/04_1865_example.mp3 deleted file mode 100644 index ebee5e6c1..000000000 Binary files a/files/04_1865_example.mp3 and /dev/null differ diff --git a/files/04_1865_meaning.mp3 b/files/04_1865_meaning.mp3 deleted file mode 100644 index b346c2b5d..000000000 Binary files a/files/04_1865_meaning.mp3 and /dev/null differ diff --git a/files/04_1866.jpg b/files/04_1866.jpg deleted file mode 100644 index 3fcddf90c..000000000 Binary files a/files/04_1866.jpg and /dev/null differ diff --git a/files/04_1866.mp3 b/files/04_1866.mp3 deleted file mode 100644 index e561daec7..000000000 Binary files a/files/04_1866.mp3 and /dev/null differ diff --git a/files/04_1866_example.mp3 b/files/04_1866_example.mp3 deleted file mode 100644 index 189cd5372..000000000 Binary files a/files/04_1866_example.mp3 and /dev/null differ diff --git a/files/04_1866_meaning.mp3 b/files/04_1866_meaning.mp3 deleted file mode 100644 index eac533bc1..000000000 Binary files a/files/04_1866_meaning.mp3 and /dev/null differ diff --git a/files/04_1867.jpg b/files/04_1867.jpg deleted file mode 100644 index ab85e9863..000000000 Binary files a/files/04_1867.jpg and /dev/null differ diff --git a/files/04_1867.mp3 b/files/04_1867.mp3 deleted file mode 100644 index b3866753a..000000000 Binary files a/files/04_1867.mp3 and /dev/null differ diff --git a/files/04_1867_example.mp3 b/files/04_1867_example.mp3 deleted file mode 100644 index 7bef39245..000000000 Binary files a/files/04_1867_example.mp3 and /dev/null differ diff --git a/files/04_1867_meaning.mp3 b/files/04_1867_meaning.mp3 deleted file mode 100644 index eff6af0bb..000000000 Binary files a/files/04_1867_meaning.mp3 and /dev/null differ diff --git a/files/04_1868.jpg b/files/04_1868.jpg deleted file mode 100644 index 6ac38b83f..000000000 Binary files a/files/04_1868.jpg and /dev/null differ diff --git a/files/04_1868.mp3 b/files/04_1868.mp3 deleted file mode 100644 index 86758ed85..000000000 Binary files a/files/04_1868.mp3 and /dev/null differ diff --git a/files/04_1868_example.mp3 b/files/04_1868_example.mp3 deleted file mode 100644 index 68602c2a1..000000000 Binary files a/files/04_1868_example.mp3 and /dev/null differ diff --git a/files/04_1868_meaning.mp3 b/files/04_1868_meaning.mp3 deleted file mode 100644 index 274fbbc36..000000000 Binary files a/files/04_1868_meaning.mp3 and /dev/null differ diff --git a/files/04_1869.jpg b/files/04_1869.jpg deleted file mode 100644 index 4f83e0f76..000000000 Binary files a/files/04_1869.jpg and /dev/null differ diff --git a/files/04_1869.mp3 b/files/04_1869.mp3 deleted file mode 100644 index ca5510177..000000000 Binary files a/files/04_1869.mp3 and /dev/null differ diff --git a/files/04_1869_example.mp3 b/files/04_1869_example.mp3 deleted file mode 100644 index 043136037..000000000 Binary files a/files/04_1869_example.mp3 and /dev/null differ diff --git a/files/04_1869_meaning.mp3 b/files/04_1869_meaning.mp3 deleted file mode 100644 index a7cbb32e2..000000000 Binary files a/files/04_1869_meaning.mp3 and /dev/null differ diff --git a/files/04_1870.jpg b/files/04_1870.jpg deleted file mode 100644 index b810c5bbe..000000000 Binary files a/files/04_1870.jpg and /dev/null differ diff --git a/files/04_1870.mp3 b/files/04_1870.mp3 deleted file mode 100644 index b5b57e64a..000000000 Binary files a/files/04_1870.mp3 and /dev/null differ diff --git a/files/04_1870_example.mp3 b/files/04_1870_example.mp3 deleted file mode 100644 index 02417e1cc..000000000 Binary files a/files/04_1870_example.mp3 and /dev/null differ diff --git a/files/04_1870_meaning.mp3 b/files/04_1870_meaning.mp3 deleted file mode 100644 index 26dbf74b9..000000000 Binary files a/files/04_1870_meaning.mp3 and /dev/null differ diff --git a/files/04_1871.jpg b/files/04_1871.jpg deleted file mode 100644 index fd94576df..000000000 Binary files a/files/04_1871.jpg and /dev/null differ diff --git a/files/04_1871.mp3 b/files/04_1871.mp3 deleted file mode 100644 index 6bcfeeff9..000000000 Binary files a/files/04_1871.mp3 and /dev/null differ diff --git a/files/04_1871_example.mp3 b/files/04_1871_example.mp3 deleted file mode 100644 index b563868a6..000000000 Binary files a/files/04_1871_example.mp3 and /dev/null differ diff --git a/files/04_1871_meaning.mp3 b/files/04_1871_meaning.mp3 deleted file mode 100644 index 45155e1e1..000000000 Binary files a/files/04_1871_meaning.mp3 and /dev/null differ diff --git a/files/04_1872.jpg b/files/04_1872.jpg deleted file mode 100644 index ede0fd3e6..000000000 Binary files a/files/04_1872.jpg and /dev/null differ diff --git a/files/04_1872.mp3 b/files/04_1872.mp3 deleted file mode 100644 index c50a7aa21..000000000 Binary files a/files/04_1872.mp3 and /dev/null differ diff --git a/files/04_1872_example.mp3 b/files/04_1872_example.mp3 deleted file mode 100644 index f78b1e124..000000000 Binary files a/files/04_1872_example.mp3 and /dev/null differ diff --git a/files/04_1872_meaning.mp3 b/files/04_1872_meaning.mp3 deleted file mode 100644 index 51dccfd03..000000000 Binary files a/files/04_1872_meaning.mp3 and /dev/null differ diff --git a/files/04_1873.jpg b/files/04_1873.jpg deleted file mode 100644 index e99290ab1..000000000 Binary files a/files/04_1873.jpg and /dev/null differ diff --git a/files/04_1873.mp3 b/files/04_1873.mp3 deleted file mode 100644 index a46b59d86..000000000 Binary files a/files/04_1873.mp3 and /dev/null differ diff --git a/files/04_1873_example.mp3 b/files/04_1873_example.mp3 deleted file mode 100644 index 333a358fb..000000000 Binary files a/files/04_1873_example.mp3 and /dev/null differ diff --git a/files/04_1873_meaning.mp3 b/files/04_1873_meaning.mp3 deleted file mode 100644 index 18af59a7d..000000000 Binary files a/files/04_1873_meaning.mp3 and /dev/null differ diff --git a/files/04_1874.jpg b/files/04_1874.jpg deleted file mode 100644 index 403f90912..000000000 Binary files a/files/04_1874.jpg and /dev/null differ diff --git a/files/04_1874.mp3 b/files/04_1874.mp3 deleted file mode 100644 index 5ba6cf8ba..000000000 Binary files a/files/04_1874.mp3 and /dev/null differ diff --git a/files/04_1874_example.mp3 b/files/04_1874_example.mp3 deleted file mode 100644 index 1b75d2d3e..000000000 Binary files a/files/04_1874_example.mp3 and /dev/null differ diff --git a/files/04_1874_meaning.mp3 b/files/04_1874_meaning.mp3 deleted file mode 100644 index 1e4037fbf..000000000 Binary files a/files/04_1874_meaning.mp3 and /dev/null differ diff --git a/files/04_1875.jpg b/files/04_1875.jpg deleted file mode 100644 index 75513ef3e..000000000 Binary files a/files/04_1875.jpg and /dev/null differ diff --git a/files/04_1875.mp3 b/files/04_1875.mp3 deleted file mode 100644 index 304571afb..000000000 Binary files a/files/04_1875.mp3 and /dev/null differ diff --git a/files/04_1875_example.mp3 b/files/04_1875_example.mp3 deleted file mode 100644 index fec3ea66f..000000000 Binary files a/files/04_1875_example.mp3 and /dev/null differ diff --git a/files/04_1875_meaning.mp3 b/files/04_1875_meaning.mp3 deleted file mode 100644 index cccd24bc2..000000000 Binary files a/files/04_1875_meaning.mp3 and /dev/null differ diff --git a/files/04_1876.jpg b/files/04_1876.jpg deleted file mode 100644 index 336ec9003..000000000 Binary files a/files/04_1876.jpg and /dev/null differ diff --git a/files/04_1876.mp3 b/files/04_1876.mp3 deleted file mode 100644 index ed21e1b80..000000000 Binary files a/files/04_1876.mp3 and /dev/null differ diff --git a/files/04_1876_example.mp3 b/files/04_1876_example.mp3 deleted file mode 100644 index a551cf123..000000000 Binary files a/files/04_1876_example.mp3 and /dev/null differ diff --git a/files/04_1876_meaning.mp3 b/files/04_1876_meaning.mp3 deleted file mode 100644 index 0c2cc5439..000000000 Binary files a/files/04_1876_meaning.mp3 and /dev/null differ diff --git a/files/04_1877.jpg b/files/04_1877.jpg deleted file mode 100644 index 822460e88..000000000 Binary files a/files/04_1877.jpg and /dev/null differ diff --git a/files/04_1877.mp3 b/files/04_1877.mp3 deleted file mode 100644 index 210b9b83b..000000000 Binary files a/files/04_1877.mp3 and /dev/null differ diff --git a/files/04_1877_example.mp3 b/files/04_1877_example.mp3 deleted file mode 100644 index 2eefa74b6..000000000 Binary files a/files/04_1877_example.mp3 and /dev/null differ diff --git a/files/04_1877_meaning.mp3 b/files/04_1877_meaning.mp3 deleted file mode 100644 index 714433014..000000000 Binary files a/files/04_1877_meaning.mp3 and /dev/null differ diff --git a/files/04_1878.jpg b/files/04_1878.jpg deleted file mode 100644 index b823ae0e2..000000000 Binary files a/files/04_1878.jpg and /dev/null differ diff --git a/files/04_1878.mp3 b/files/04_1878.mp3 deleted file mode 100644 index 39515ac5a..000000000 Binary files a/files/04_1878.mp3 and /dev/null differ diff --git a/files/04_1878_example.mp3 b/files/04_1878_example.mp3 deleted file mode 100644 index 7e712b67b..000000000 Binary files a/files/04_1878_example.mp3 and /dev/null differ diff --git a/files/04_1878_meaning.mp3 b/files/04_1878_meaning.mp3 deleted file mode 100644 index 75fcd649a..000000000 Binary files a/files/04_1878_meaning.mp3 and /dev/null differ diff --git a/files/04_1879.jpg b/files/04_1879.jpg deleted file mode 100644 index e7b64401e..000000000 Binary files a/files/04_1879.jpg and /dev/null differ diff --git a/files/04_1879.mp3 b/files/04_1879.mp3 deleted file mode 100644 index ba400c212..000000000 Binary files a/files/04_1879.mp3 and /dev/null differ diff --git a/files/04_1879_example.mp3 b/files/04_1879_example.mp3 deleted file mode 100644 index b9f1a441e..000000000 Binary files a/files/04_1879_example.mp3 and /dev/null differ diff --git a/files/04_1879_meaning.mp3 b/files/04_1879_meaning.mp3 deleted file mode 100644 index f0c73d9fd..000000000 Binary files a/files/04_1879_meaning.mp3 and /dev/null differ diff --git a/files/04_1880.jpg b/files/04_1880.jpg deleted file mode 100644 index 874cca0f7..000000000 Binary files a/files/04_1880.jpg and /dev/null differ diff --git a/files/04_1880.mp3 b/files/04_1880.mp3 deleted file mode 100644 index 667fdd1a1..000000000 Binary files a/files/04_1880.mp3 and /dev/null differ diff --git a/files/04_1880_example.mp3 b/files/04_1880_example.mp3 deleted file mode 100644 index 2c9505d22..000000000 Binary files a/files/04_1880_example.mp3 and /dev/null differ diff --git a/files/04_1880_meaning.mp3 b/files/04_1880_meaning.mp3 deleted file mode 100644 index 41b8443e6..000000000 Binary files a/files/04_1880_meaning.mp3 and /dev/null differ diff --git a/files/04_2461.jpg b/files/04_2461.jpg deleted file mode 100644 index 7d218847f..000000000 Binary files a/files/04_2461.jpg and /dev/null differ diff --git a/files/04_2461.mp3 b/files/04_2461.mp3 deleted file mode 100644 index 1bfb05b0c..000000000 Binary files a/files/04_2461.mp3 and /dev/null differ diff --git a/files/04_2461_example.mp3 b/files/04_2461_example.mp3 deleted file mode 100644 index bce2d1ae1..000000000 Binary files a/files/04_2461_example.mp3 and /dev/null differ diff --git a/files/04_2461_meaning.mp3 b/files/04_2461_meaning.mp3 deleted file mode 100644 index 90ec5723d..000000000 Binary files a/files/04_2461_meaning.mp3 and /dev/null differ diff --git a/files/04_2462.jpg b/files/04_2462.jpg deleted file mode 100644 index 2b11adb2c..000000000 Binary files a/files/04_2462.jpg and /dev/null differ diff --git a/files/04_2462.mp3 b/files/04_2462.mp3 deleted file mode 100644 index d0c75dd96..000000000 Binary files a/files/04_2462.mp3 and /dev/null differ diff --git a/files/04_2462_example.mp3 b/files/04_2462_example.mp3 deleted file mode 100644 index 2d1c674f7..000000000 Binary files a/files/04_2462_example.mp3 and /dev/null differ diff --git a/files/04_2462_meaning.mp3 b/files/04_2462_meaning.mp3 deleted file mode 100644 index d89da2c42..000000000 Binary files a/files/04_2462_meaning.mp3 and /dev/null differ diff --git a/files/04_2463.jpg b/files/04_2463.jpg deleted file mode 100644 index 5ce92a841..000000000 Binary files a/files/04_2463.jpg and /dev/null differ diff --git a/files/04_2463.mp3 b/files/04_2463.mp3 deleted file mode 100644 index 2087c45a4..000000000 Binary files a/files/04_2463.mp3 and /dev/null differ diff --git a/files/04_2463_example.mp3 b/files/04_2463_example.mp3 deleted file mode 100644 index 133acd7e4..000000000 Binary files a/files/04_2463_example.mp3 and /dev/null differ diff --git a/files/04_2463_meaning.mp3 b/files/04_2463_meaning.mp3 deleted file mode 100644 index b09e4cefc..000000000 Binary files a/files/04_2463_meaning.mp3 and /dev/null differ diff --git a/files/04_2464.jpg b/files/04_2464.jpg deleted file mode 100644 index b77b7278e..000000000 Binary files a/files/04_2464.jpg and /dev/null differ diff --git a/files/04_2464.mp3 b/files/04_2464.mp3 deleted file mode 100644 index 7dedae9af..000000000 Binary files a/files/04_2464.mp3 and /dev/null differ diff --git a/files/04_2464_example.mp3 b/files/04_2464_example.mp3 deleted file mode 100644 index 7742a312b..000000000 Binary files a/files/04_2464_example.mp3 and /dev/null differ diff --git a/files/04_2464_meaning.mp3 b/files/04_2464_meaning.mp3 deleted file mode 100644 index 21a21c4c5..000000000 Binary files a/files/04_2464_meaning.mp3 and /dev/null differ diff --git a/files/04_2465.jpg b/files/04_2465.jpg deleted file mode 100644 index b38eea563..000000000 Binary files a/files/04_2465.jpg and /dev/null differ diff --git a/files/04_2465.mp3 b/files/04_2465.mp3 deleted file mode 100644 index 25da2899d..000000000 Binary files a/files/04_2465.mp3 and /dev/null differ diff --git a/files/04_2465_example.mp3 b/files/04_2465_example.mp3 deleted file mode 100644 index 1bbc0e2c2..000000000 Binary files a/files/04_2465_example.mp3 and /dev/null differ diff --git a/files/04_2465_meaning.mp3 b/files/04_2465_meaning.mp3 deleted file mode 100644 index 459d9db04..000000000 Binary files a/files/04_2465_meaning.mp3 and /dev/null differ diff --git a/files/04_2466.jpg b/files/04_2466.jpg deleted file mode 100644 index c4100c5e2..000000000 Binary files a/files/04_2466.jpg and /dev/null differ diff --git a/files/04_2466.mp3 b/files/04_2466.mp3 deleted file mode 100644 index f18ff564b..000000000 Binary files a/files/04_2466.mp3 and /dev/null differ diff --git a/files/04_2466_example.mp3 b/files/04_2466_example.mp3 deleted file mode 100644 index fbdc1da08..000000000 Binary files a/files/04_2466_example.mp3 and /dev/null differ diff --git a/files/04_2466_meaning.mp3 b/files/04_2466_meaning.mp3 deleted file mode 100644 index eb000d83d..000000000 Binary files a/files/04_2466_meaning.mp3 and /dev/null differ diff --git a/files/04_2467.jpg b/files/04_2467.jpg deleted file mode 100644 index 52a2deb0b..000000000 Binary files a/files/04_2467.jpg and /dev/null differ diff --git a/files/04_2467.mp3 b/files/04_2467.mp3 deleted file mode 100644 index bedc96227..000000000 Binary files a/files/04_2467.mp3 and /dev/null differ diff --git a/files/04_2467_example.mp3 b/files/04_2467_example.mp3 deleted file mode 100644 index d1018e811..000000000 Binary files a/files/04_2467_example.mp3 and /dev/null differ diff --git a/files/04_2467_meaning.mp3 b/files/04_2467_meaning.mp3 deleted file mode 100644 index b7ff31ece..000000000 Binary files a/files/04_2467_meaning.mp3 and /dev/null differ diff --git a/files/04_2468.jpg b/files/04_2468.jpg deleted file mode 100644 index 6c7162d05..000000000 Binary files a/files/04_2468.jpg and /dev/null differ diff --git a/files/04_2468.mp3 b/files/04_2468.mp3 deleted file mode 100644 index 26de18135..000000000 Binary files a/files/04_2468.mp3 and /dev/null differ diff --git a/files/04_2468_example.mp3 b/files/04_2468_example.mp3 deleted file mode 100644 index 04f5f4f9e..000000000 Binary files a/files/04_2468_example.mp3 and /dev/null differ diff --git a/files/04_2468_meaning.mp3 b/files/04_2468_meaning.mp3 deleted file mode 100644 index af2b777b9..000000000 Binary files a/files/04_2468_meaning.mp3 and /dev/null differ diff --git a/files/04_2469.jpg b/files/04_2469.jpg deleted file mode 100644 index 0756d98ff..000000000 Binary files a/files/04_2469.jpg and /dev/null differ diff --git a/files/04_2469.mp3 b/files/04_2469.mp3 deleted file mode 100644 index aad5b5a8f..000000000 Binary files a/files/04_2469.mp3 and /dev/null differ diff --git a/files/04_2469_example.mp3 b/files/04_2469_example.mp3 deleted file mode 100644 index 103de030a..000000000 Binary files a/files/04_2469_example.mp3 and /dev/null differ diff --git a/files/04_2469_meaning.mp3 b/files/04_2469_meaning.mp3 deleted file mode 100644 index 713cca776..000000000 Binary files a/files/04_2469_meaning.mp3 and /dev/null differ diff --git a/files/04_2470.jpg b/files/04_2470.jpg deleted file mode 100644 index af19bd5a7..000000000 Binary files a/files/04_2470.jpg and /dev/null differ diff --git a/files/04_2470.mp3 b/files/04_2470.mp3 deleted file mode 100644 index f312de484..000000000 Binary files a/files/04_2470.mp3 and /dev/null differ diff --git a/files/04_2470_example.mp3 b/files/04_2470_example.mp3 deleted file mode 100644 index f4f3aeee2..000000000 Binary files a/files/04_2470_example.mp3 and /dev/null differ diff --git a/files/04_2470_meaning.mp3 b/files/04_2470_meaning.mp3 deleted file mode 100644 index 20003c742..000000000 Binary files a/files/04_2470_meaning.mp3 and /dev/null differ diff --git a/files/04_2471.jpg b/files/04_2471.jpg deleted file mode 100644 index 52f0b1c59..000000000 Binary files a/files/04_2471.jpg and /dev/null differ diff --git a/files/04_2471.mp3 b/files/04_2471.mp3 deleted file mode 100644 index 3bd2dabce..000000000 Binary files a/files/04_2471.mp3 and /dev/null differ diff --git a/files/04_2471_example.mp3 b/files/04_2471_example.mp3 deleted file mode 100644 index b2264ec9e..000000000 Binary files a/files/04_2471_example.mp3 and /dev/null differ diff --git a/files/04_2471_meaning.mp3 b/files/04_2471_meaning.mp3 deleted file mode 100644 index c23e3b4ed..000000000 Binary files a/files/04_2471_meaning.mp3 and /dev/null differ diff --git a/files/04_2472.jpg b/files/04_2472.jpg deleted file mode 100644 index 01e22cb81..000000000 Binary files a/files/04_2472.jpg and /dev/null differ diff --git a/files/04_2472.mp3 b/files/04_2472.mp3 deleted file mode 100644 index 547fada32..000000000 Binary files a/files/04_2472.mp3 and /dev/null differ diff --git a/files/04_2472_example.mp3 b/files/04_2472_example.mp3 deleted file mode 100644 index cde6c39d6..000000000 Binary files a/files/04_2472_example.mp3 and /dev/null differ diff --git a/files/04_2472_meaning.mp3 b/files/04_2472_meaning.mp3 deleted file mode 100644 index 035f08c71..000000000 Binary files a/files/04_2472_meaning.mp3 and /dev/null differ diff --git a/files/04_2473.jpg b/files/04_2473.jpg deleted file mode 100644 index 83f4cf4d8..000000000 Binary files a/files/04_2473.jpg and /dev/null differ diff --git a/files/04_2473.mp3 b/files/04_2473.mp3 deleted file mode 100644 index 96a675499..000000000 Binary files a/files/04_2473.mp3 and /dev/null differ diff --git a/files/04_2473_example.mp3 b/files/04_2473_example.mp3 deleted file mode 100644 index f6b4ff81c..000000000 Binary files a/files/04_2473_example.mp3 and /dev/null differ diff --git a/files/04_2473_meaning.mp3 b/files/04_2473_meaning.mp3 deleted file mode 100644 index 7297c1274..000000000 Binary files a/files/04_2473_meaning.mp3 and /dev/null differ diff --git a/files/04_2474.jpg b/files/04_2474.jpg deleted file mode 100644 index eacf95eb0..000000000 Binary files a/files/04_2474.jpg and /dev/null differ diff --git a/files/04_2474.mp3 b/files/04_2474.mp3 deleted file mode 100644 index e74845fa0..000000000 Binary files a/files/04_2474.mp3 and /dev/null differ diff --git a/files/04_2474_example.mp3 b/files/04_2474_example.mp3 deleted file mode 100644 index c14c9b372..000000000 Binary files a/files/04_2474_example.mp3 and /dev/null differ diff --git a/files/04_2474_meaning.mp3 b/files/04_2474_meaning.mp3 deleted file mode 100644 index 0de594ad8..000000000 Binary files a/files/04_2474_meaning.mp3 and /dev/null differ diff --git a/files/04_2475.jpg b/files/04_2475.jpg deleted file mode 100644 index 92545dcc8..000000000 Binary files a/files/04_2475.jpg and /dev/null differ diff --git a/files/04_2475.mp3 b/files/04_2475.mp3 deleted file mode 100644 index 1ae6980c3..000000000 Binary files a/files/04_2475.mp3 and /dev/null differ diff --git a/files/04_2475_example.mp3 b/files/04_2475_example.mp3 deleted file mode 100644 index 74a08332c..000000000 Binary files a/files/04_2475_example.mp3 and /dev/null differ diff --git a/files/04_2475_meaning.mp3 b/files/04_2475_meaning.mp3 deleted file mode 100644 index 43d74029e..000000000 Binary files a/files/04_2475_meaning.mp3 and /dev/null differ diff --git a/files/04_2476.jpg b/files/04_2476.jpg deleted file mode 100644 index 90a5f2e8a..000000000 Binary files a/files/04_2476.jpg and /dev/null differ diff --git a/files/04_2476.mp3 b/files/04_2476.mp3 deleted file mode 100644 index 29c381826..000000000 Binary files a/files/04_2476.mp3 and /dev/null differ diff --git a/files/04_2476_example.mp3 b/files/04_2476_example.mp3 deleted file mode 100644 index ca00191ba..000000000 Binary files a/files/04_2476_example.mp3 and /dev/null differ diff --git a/files/04_2476_meaning.mp3 b/files/04_2476_meaning.mp3 deleted file mode 100644 index 707865442..000000000 Binary files a/files/04_2476_meaning.mp3 and /dev/null differ diff --git a/files/04_2477.jpg b/files/04_2477.jpg deleted file mode 100644 index 3ec5818ac..000000000 Binary files a/files/04_2477.jpg and /dev/null differ diff --git a/files/04_2477.mp3 b/files/04_2477.mp3 deleted file mode 100644 index 6080e33e9..000000000 Binary files a/files/04_2477.mp3 and /dev/null differ diff --git a/files/04_2477_example.mp3 b/files/04_2477_example.mp3 deleted file mode 100644 index 863fa7aba..000000000 Binary files a/files/04_2477_example.mp3 and /dev/null differ diff --git a/files/04_2477_meaning.mp3 b/files/04_2477_meaning.mp3 deleted file mode 100644 index 50f511d91..000000000 Binary files a/files/04_2477_meaning.mp3 and /dev/null differ diff --git a/files/04_2478.jpg b/files/04_2478.jpg deleted file mode 100644 index 4e6c75d11..000000000 Binary files a/files/04_2478.jpg and /dev/null differ diff --git a/files/04_2478.mp3 b/files/04_2478.mp3 deleted file mode 100644 index ffab1d7dc..000000000 Binary files a/files/04_2478.mp3 and /dev/null differ diff --git a/files/04_2478_example.mp3 b/files/04_2478_example.mp3 deleted file mode 100644 index 3336c9290..000000000 Binary files a/files/04_2478_example.mp3 and /dev/null differ diff --git a/files/04_2478_meaning.mp3 b/files/04_2478_meaning.mp3 deleted file mode 100644 index 8505c84a1..000000000 Binary files a/files/04_2478_meaning.mp3 and /dev/null differ diff --git a/files/04_2479.jpg b/files/04_2479.jpg deleted file mode 100644 index d6be6a960..000000000 Binary files a/files/04_2479.jpg and /dev/null differ diff --git a/files/04_2479.mp3 b/files/04_2479.mp3 deleted file mode 100644 index c0e390b26..000000000 Binary files a/files/04_2479.mp3 and /dev/null differ diff --git a/files/04_2479_example.mp3 b/files/04_2479_example.mp3 deleted file mode 100644 index c9fe02d19..000000000 Binary files a/files/04_2479_example.mp3 and /dev/null differ diff --git a/files/04_2479_meaning.mp3 b/files/04_2479_meaning.mp3 deleted file mode 100644 index 446f40647..000000000 Binary files a/files/04_2479_meaning.mp3 and /dev/null differ diff --git a/files/04_2480.jpg b/files/04_2480.jpg deleted file mode 100644 index 50e1c462b..000000000 Binary files a/files/04_2480.jpg and /dev/null differ diff --git a/files/04_2480.mp3 b/files/04_2480.mp3 deleted file mode 100644 index 65e9cd27d..000000000 Binary files a/files/04_2480.mp3 and /dev/null differ diff --git a/files/04_2480_example.mp3 b/files/04_2480_example.mp3 deleted file mode 100644 index af18330e2..000000000 Binary files a/files/04_2480_example.mp3 and /dev/null differ diff --git a/files/04_2480_meaning.mp3 b/files/04_2480_meaning.mp3 deleted file mode 100644 index 102635a17..000000000 Binary files a/files/04_2480_meaning.mp3 and /dev/null differ diff --git a/files/04_3061.jpg b/files/04_3061.jpg deleted file mode 100644 index 8dac84895..000000000 Binary files a/files/04_3061.jpg and /dev/null differ diff --git a/files/04_3061.mp3 b/files/04_3061.mp3 deleted file mode 100644 index 0c4eaca71..000000000 Binary files a/files/04_3061.mp3 and /dev/null differ diff --git a/files/04_3061_example.mp3 b/files/04_3061_example.mp3 deleted file mode 100644 index 55b221a5c..000000000 Binary files a/files/04_3061_example.mp3 and /dev/null differ diff --git a/files/04_3061_meaning.mp3 b/files/04_3061_meaning.mp3 deleted file mode 100644 index 5f4875c4d..000000000 Binary files a/files/04_3061_meaning.mp3 and /dev/null differ diff --git a/files/04_3062.jpg b/files/04_3062.jpg deleted file mode 100644 index 0f10664e5..000000000 Binary files a/files/04_3062.jpg and /dev/null differ diff --git a/files/04_3062.mp3 b/files/04_3062.mp3 deleted file mode 100644 index 85baf2f07..000000000 Binary files a/files/04_3062.mp3 and /dev/null differ diff --git a/files/04_3062_example.mp3 b/files/04_3062_example.mp3 deleted file mode 100644 index 87d43f12a..000000000 Binary files a/files/04_3062_example.mp3 and /dev/null differ diff --git a/files/04_3062_meaning.mp3 b/files/04_3062_meaning.mp3 deleted file mode 100644 index 247bcaddc..000000000 Binary files a/files/04_3062_meaning.mp3 and /dev/null differ diff --git a/files/04_3063.jpg b/files/04_3063.jpg deleted file mode 100644 index 2741cc711..000000000 Binary files a/files/04_3063.jpg and /dev/null differ diff --git a/files/04_3063.mp3 b/files/04_3063.mp3 deleted file mode 100644 index 0f669969a..000000000 Binary files a/files/04_3063.mp3 and /dev/null differ diff --git a/files/04_3063_example.mp3 b/files/04_3063_example.mp3 deleted file mode 100644 index 40744c3a8..000000000 Binary files a/files/04_3063_example.mp3 and /dev/null differ diff --git a/files/04_3063_meaning.mp3 b/files/04_3063_meaning.mp3 deleted file mode 100644 index 2397fd08a..000000000 Binary files a/files/04_3063_meaning.mp3 and /dev/null differ diff --git a/files/04_3064.jpg b/files/04_3064.jpg deleted file mode 100644 index 5fd5f60b9..000000000 Binary files a/files/04_3064.jpg and /dev/null differ diff --git a/files/04_3064.mp3 b/files/04_3064.mp3 deleted file mode 100644 index 1c718c958..000000000 Binary files a/files/04_3064.mp3 and /dev/null differ diff --git a/files/04_3064_example.mp3 b/files/04_3064_example.mp3 deleted file mode 100644 index 70d3bd099..000000000 Binary files a/files/04_3064_example.mp3 and /dev/null differ diff --git a/files/04_3064_meaning.mp3 b/files/04_3064_meaning.mp3 deleted file mode 100644 index 38e6623e3..000000000 Binary files a/files/04_3064_meaning.mp3 and /dev/null differ diff --git a/files/04_3065.jpg b/files/04_3065.jpg deleted file mode 100644 index 0d79f3e04..000000000 Binary files a/files/04_3065.jpg and /dev/null differ diff --git a/files/04_3065.mp3 b/files/04_3065.mp3 deleted file mode 100644 index e0ef2b818..000000000 Binary files a/files/04_3065.mp3 and /dev/null differ diff --git a/files/04_3065_example.mp3 b/files/04_3065_example.mp3 deleted file mode 100644 index b93636274..000000000 Binary files a/files/04_3065_example.mp3 and /dev/null differ diff --git a/files/04_3065_meaning.mp3 b/files/04_3065_meaning.mp3 deleted file mode 100644 index d5a43d3db..000000000 Binary files a/files/04_3065_meaning.mp3 and /dev/null differ diff --git a/files/04_3066.jpg b/files/04_3066.jpg deleted file mode 100644 index 4b79c6ee2..000000000 Binary files a/files/04_3066.jpg and /dev/null differ diff --git a/files/04_3066.mp3 b/files/04_3066.mp3 deleted file mode 100644 index 68d7da1af..000000000 Binary files a/files/04_3066.mp3 and /dev/null differ diff --git a/files/04_3066_example.mp3 b/files/04_3066_example.mp3 deleted file mode 100644 index 1f5ac748e..000000000 Binary files a/files/04_3066_example.mp3 and /dev/null differ diff --git a/files/04_3066_meaning.mp3 b/files/04_3066_meaning.mp3 deleted file mode 100644 index 4b5996e20..000000000 Binary files a/files/04_3066_meaning.mp3 and /dev/null differ diff --git a/files/04_3067.jpg b/files/04_3067.jpg deleted file mode 100644 index 70cb4e0e1..000000000 Binary files a/files/04_3067.jpg and /dev/null differ diff --git a/files/04_3067.mp3 b/files/04_3067.mp3 deleted file mode 100644 index cb3d5b6b5..000000000 Binary files a/files/04_3067.mp3 and /dev/null differ diff --git a/files/04_3067_example.mp3 b/files/04_3067_example.mp3 deleted file mode 100644 index 70312116a..000000000 Binary files a/files/04_3067_example.mp3 and /dev/null differ diff --git a/files/04_3067_meaning.mp3 b/files/04_3067_meaning.mp3 deleted file mode 100644 index 6f692a8ab..000000000 Binary files a/files/04_3067_meaning.mp3 and /dev/null differ diff --git a/files/04_3068.jpg b/files/04_3068.jpg deleted file mode 100644 index 686f4daa9..000000000 Binary files a/files/04_3068.jpg and /dev/null differ diff --git a/files/04_3068.mp3 b/files/04_3068.mp3 deleted file mode 100644 index 9a5842691..000000000 Binary files a/files/04_3068.mp3 and /dev/null differ diff --git a/files/04_3068_example.mp3 b/files/04_3068_example.mp3 deleted file mode 100644 index 46d673691..000000000 Binary files a/files/04_3068_example.mp3 and /dev/null differ diff --git a/files/04_3068_meaning.mp3 b/files/04_3068_meaning.mp3 deleted file mode 100644 index d2e8b496b..000000000 Binary files a/files/04_3068_meaning.mp3 and /dev/null differ diff --git a/files/04_3069.jpg b/files/04_3069.jpg deleted file mode 100644 index f22558040..000000000 Binary files a/files/04_3069.jpg and /dev/null differ diff --git a/files/04_3069.mp3 b/files/04_3069.mp3 deleted file mode 100644 index b982e0b93..000000000 Binary files a/files/04_3069.mp3 and /dev/null differ diff --git a/files/04_3069_example.mp3 b/files/04_3069_example.mp3 deleted file mode 100644 index 5b1de5910..000000000 Binary files a/files/04_3069_example.mp3 and /dev/null differ diff --git a/files/04_3069_meaning.mp3 b/files/04_3069_meaning.mp3 deleted file mode 100644 index 36ea9b614..000000000 Binary files a/files/04_3069_meaning.mp3 and /dev/null differ diff --git a/files/04_3070.jpg b/files/04_3070.jpg deleted file mode 100644 index de4de2e3d..000000000 Binary files a/files/04_3070.jpg and /dev/null differ diff --git a/files/04_3070.mp3 b/files/04_3070.mp3 deleted file mode 100644 index 8dacb3f0b..000000000 Binary files a/files/04_3070.mp3 and /dev/null differ diff --git a/files/04_3070_example.mp3 b/files/04_3070_example.mp3 deleted file mode 100644 index 5d72a8c18..000000000 Binary files a/files/04_3070_example.mp3 and /dev/null differ diff --git a/files/04_3070_meaning.mp3 b/files/04_3070_meaning.mp3 deleted file mode 100644 index 9d8f99975..000000000 Binary files a/files/04_3070_meaning.mp3 and /dev/null differ diff --git a/files/04_3071.jpg b/files/04_3071.jpg deleted file mode 100644 index 8a5add96e..000000000 Binary files a/files/04_3071.jpg and /dev/null differ diff --git a/files/04_3071.mp3 b/files/04_3071.mp3 deleted file mode 100644 index 5c492bc61..000000000 Binary files a/files/04_3071.mp3 and /dev/null differ diff --git a/files/04_3071_example.mp3 b/files/04_3071_example.mp3 deleted file mode 100644 index 4f6282132..000000000 Binary files a/files/04_3071_example.mp3 and /dev/null differ diff --git a/files/04_3071_meaning.mp3 b/files/04_3071_meaning.mp3 deleted file mode 100644 index 633919e3c..000000000 Binary files a/files/04_3071_meaning.mp3 and /dev/null differ diff --git a/files/04_3072.jpg b/files/04_3072.jpg deleted file mode 100644 index 00f3f1898..000000000 Binary files a/files/04_3072.jpg and /dev/null differ diff --git a/files/04_3072.mp3 b/files/04_3072.mp3 deleted file mode 100644 index 73f3fc2cf..000000000 Binary files a/files/04_3072.mp3 and /dev/null differ diff --git a/files/04_3072_example.mp3 b/files/04_3072_example.mp3 deleted file mode 100644 index 67e653c90..000000000 Binary files a/files/04_3072_example.mp3 and /dev/null differ diff --git a/files/04_3072_meaning.mp3 b/files/04_3072_meaning.mp3 deleted file mode 100644 index a77aa122e..000000000 Binary files a/files/04_3072_meaning.mp3 and /dev/null differ diff --git a/files/04_3073.jpg b/files/04_3073.jpg deleted file mode 100644 index 9d9eeb642..000000000 Binary files a/files/04_3073.jpg and /dev/null differ diff --git a/files/04_3073.mp3 b/files/04_3073.mp3 deleted file mode 100644 index f6505207d..000000000 Binary files a/files/04_3073.mp3 and /dev/null differ diff --git a/files/04_3073_example.mp3 b/files/04_3073_example.mp3 deleted file mode 100644 index 3e68af58b..000000000 Binary files a/files/04_3073_example.mp3 and /dev/null differ diff --git a/files/04_3073_meaning.mp3 b/files/04_3073_meaning.mp3 deleted file mode 100644 index 7868e34ec..000000000 Binary files a/files/04_3073_meaning.mp3 and /dev/null differ diff --git a/files/04_3074.jpg b/files/04_3074.jpg deleted file mode 100644 index 2ce0be10d..000000000 Binary files a/files/04_3074.jpg and /dev/null differ diff --git a/files/04_3074.mp3 b/files/04_3074.mp3 deleted file mode 100644 index 3cce7a30f..000000000 Binary files a/files/04_3074.mp3 and /dev/null differ diff --git a/files/04_3074_example.mp3 b/files/04_3074_example.mp3 deleted file mode 100644 index cbfb2fce1..000000000 Binary files a/files/04_3074_example.mp3 and /dev/null differ diff --git a/files/04_3074_meaning.mp3 b/files/04_3074_meaning.mp3 deleted file mode 100644 index 9a1018989..000000000 Binary files a/files/04_3074_meaning.mp3 and /dev/null differ diff --git a/files/04_3075.jpg b/files/04_3075.jpg deleted file mode 100644 index df2f33499..000000000 Binary files a/files/04_3075.jpg and /dev/null differ diff --git a/files/04_3075.mp3 b/files/04_3075.mp3 deleted file mode 100644 index 24d313b4b..000000000 Binary files a/files/04_3075.mp3 and /dev/null differ diff --git a/files/04_3075_example.mp3 b/files/04_3075_example.mp3 deleted file mode 100644 index a15638aaf..000000000 Binary files a/files/04_3075_example.mp3 and /dev/null differ diff --git a/files/04_3075_meaning.mp3 b/files/04_3075_meaning.mp3 deleted file mode 100644 index 994ae78ff..000000000 Binary files a/files/04_3075_meaning.mp3 and /dev/null differ diff --git a/files/04_3076.jpg b/files/04_3076.jpg deleted file mode 100644 index 8db6b9f85..000000000 Binary files a/files/04_3076.jpg and /dev/null differ diff --git a/files/04_3076.mp3 b/files/04_3076.mp3 deleted file mode 100644 index be53e332f..000000000 Binary files a/files/04_3076.mp3 and /dev/null differ diff --git a/files/04_3076_example.mp3 b/files/04_3076_example.mp3 deleted file mode 100644 index 58d48f09a..000000000 Binary files a/files/04_3076_example.mp3 and /dev/null differ diff --git a/files/04_3076_meaning.mp3 b/files/04_3076_meaning.mp3 deleted file mode 100644 index d7c2e6583..000000000 Binary files a/files/04_3076_meaning.mp3 and /dev/null differ diff --git a/files/04_3077.jpg b/files/04_3077.jpg deleted file mode 100644 index 74e7b83e4..000000000 Binary files a/files/04_3077.jpg and /dev/null differ diff --git a/files/04_3077.mp3 b/files/04_3077.mp3 deleted file mode 100644 index 43f8a0b6d..000000000 Binary files a/files/04_3077.mp3 and /dev/null differ diff --git a/files/04_3077_example.mp3 b/files/04_3077_example.mp3 deleted file mode 100644 index 33ebddba0..000000000 Binary files a/files/04_3077_example.mp3 and /dev/null differ diff --git a/files/04_3077_meaning.mp3 b/files/04_3077_meaning.mp3 deleted file mode 100644 index 6daaf0aa4..000000000 Binary files a/files/04_3077_meaning.mp3 and /dev/null differ diff --git a/files/04_3078.jpg b/files/04_3078.jpg deleted file mode 100644 index 573f31235..000000000 Binary files a/files/04_3078.jpg and /dev/null differ diff --git a/files/04_3078.mp3 b/files/04_3078.mp3 deleted file mode 100644 index 41937bf26..000000000 Binary files a/files/04_3078.mp3 and /dev/null differ diff --git a/files/04_3078_example.mp3 b/files/04_3078_example.mp3 deleted file mode 100644 index 1f4737707..000000000 Binary files a/files/04_3078_example.mp3 and /dev/null differ diff --git a/files/04_3078_meaning.mp3 b/files/04_3078_meaning.mp3 deleted file mode 100644 index d865f2412..000000000 Binary files a/files/04_3078_meaning.mp3 and /dev/null differ diff --git a/files/04_3079.jpg b/files/04_3079.jpg deleted file mode 100644 index f1018925c..000000000 Binary files a/files/04_3079.jpg and /dev/null differ diff --git a/files/04_3079.mp3 b/files/04_3079.mp3 deleted file mode 100644 index 35939aa4a..000000000 Binary files a/files/04_3079.mp3 and /dev/null differ diff --git a/files/04_3079_example.mp3 b/files/04_3079_example.mp3 deleted file mode 100644 index f16ff0469..000000000 Binary files a/files/04_3079_example.mp3 and /dev/null differ diff --git a/files/04_3079_meaning.mp3 b/files/04_3079_meaning.mp3 deleted file mode 100644 index ea0e46a4b..000000000 Binary files a/files/04_3079_meaning.mp3 and /dev/null differ diff --git a/files/04_3080.jpg b/files/04_3080.jpg deleted file mode 100644 index 360c6f3d4..000000000 Binary files a/files/04_3080.jpg and /dev/null differ diff --git a/files/04_3080.mp3 b/files/04_3080.mp3 deleted file mode 100644 index 50f426b24..000000000 Binary files a/files/04_3080.mp3 and /dev/null differ diff --git a/files/04_3080_example.mp3 b/files/04_3080_example.mp3 deleted file mode 100644 index 955df99ab..000000000 Binary files a/files/04_3080_example.mp3 and /dev/null differ diff --git a/files/04_3080_meaning.mp3 b/files/04_3080_meaning.mp3 deleted file mode 100644 index bb73626c9..000000000 Binary files a/files/04_3080_meaning.mp3 and /dev/null differ diff --git a/files/05_0081.jpg b/files/05_0081.jpg deleted file mode 100644 index da7833254..000000000 Binary files a/files/05_0081.jpg and /dev/null differ diff --git a/files/05_0081.mp3 b/files/05_0081.mp3 deleted file mode 100644 index 978b7934a..000000000 Binary files a/files/05_0081.mp3 and /dev/null differ diff --git a/files/05_0081_example.mp3 b/files/05_0081_example.mp3 deleted file mode 100644 index b5ef2c034..000000000 Binary files a/files/05_0081_example.mp3 and /dev/null differ diff --git a/files/05_0081_meaning.mp3 b/files/05_0081_meaning.mp3 deleted file mode 100644 index 037d0286a..000000000 Binary files a/files/05_0081_meaning.mp3 and /dev/null differ diff --git a/files/05_0082.jpg b/files/05_0082.jpg deleted file mode 100644 index 6ae1f34df..000000000 Binary files a/files/05_0082.jpg and /dev/null differ diff --git a/files/05_0082.mp3 b/files/05_0082.mp3 deleted file mode 100644 index dc696a5da..000000000 Binary files a/files/05_0082.mp3 and /dev/null differ diff --git a/files/05_0082_example.mp3 b/files/05_0082_example.mp3 deleted file mode 100644 index 3227cf618..000000000 Binary files a/files/05_0082_example.mp3 and /dev/null differ diff --git a/files/05_0082_meaning.mp3 b/files/05_0082_meaning.mp3 deleted file mode 100644 index 5481367ed..000000000 Binary files a/files/05_0082_meaning.mp3 and /dev/null differ diff --git a/files/05_0083.jpg b/files/05_0083.jpg deleted file mode 100644 index e7728e1bc..000000000 Binary files a/files/05_0083.jpg and /dev/null differ diff --git a/files/05_0083.mp3 b/files/05_0083.mp3 deleted file mode 100644 index ac2f393d7..000000000 Binary files a/files/05_0083.mp3 and /dev/null differ diff --git a/files/05_0083_example.mp3 b/files/05_0083_example.mp3 deleted file mode 100644 index 2a994c50d..000000000 Binary files a/files/05_0083_example.mp3 and /dev/null differ diff --git a/files/05_0083_meaning.mp3 b/files/05_0083_meaning.mp3 deleted file mode 100644 index bace1a4bb..000000000 Binary files a/files/05_0083_meaning.mp3 and /dev/null differ diff --git a/files/05_0084.jpg b/files/05_0084.jpg deleted file mode 100644 index 1f5d47a95..000000000 Binary files a/files/05_0084.jpg and /dev/null differ diff --git a/files/05_0084.mp3 b/files/05_0084.mp3 deleted file mode 100644 index 2302750e0..000000000 Binary files a/files/05_0084.mp3 and /dev/null differ diff --git a/files/05_0084_example.mp3 b/files/05_0084_example.mp3 deleted file mode 100644 index 1bdae2429..000000000 Binary files a/files/05_0084_example.mp3 and /dev/null differ diff --git a/files/05_0084_meaning.mp3 b/files/05_0084_meaning.mp3 deleted file mode 100644 index 60532f604..000000000 Binary files a/files/05_0084_meaning.mp3 and /dev/null differ diff --git a/files/05_0085.jpg b/files/05_0085.jpg deleted file mode 100644 index 9ae05087c..000000000 Binary files a/files/05_0085.jpg and /dev/null differ diff --git a/files/05_0085.mp3 b/files/05_0085.mp3 deleted file mode 100644 index e4ab5b608..000000000 Binary files a/files/05_0085.mp3 and /dev/null differ diff --git a/files/05_0085_example.mp3 b/files/05_0085_example.mp3 deleted file mode 100644 index 868156a9e..000000000 Binary files a/files/05_0085_example.mp3 and /dev/null differ diff --git a/files/05_0085_meaning.mp3 b/files/05_0085_meaning.mp3 deleted file mode 100644 index a596c9460..000000000 Binary files a/files/05_0085_meaning.mp3 and /dev/null differ diff --git a/files/05_0086.jpg b/files/05_0086.jpg deleted file mode 100644 index a8c1107b0..000000000 Binary files a/files/05_0086.jpg and /dev/null differ diff --git a/files/05_0086.mp3 b/files/05_0086.mp3 deleted file mode 100644 index ec7936f1c..000000000 Binary files a/files/05_0086.mp3 and /dev/null differ diff --git a/files/05_0086_example.mp3 b/files/05_0086_example.mp3 deleted file mode 100644 index 1ee8c8348..000000000 Binary files a/files/05_0086_example.mp3 and /dev/null differ diff --git a/files/05_0086_meaning.mp3 b/files/05_0086_meaning.mp3 deleted file mode 100644 index 42f0fc32c..000000000 Binary files a/files/05_0086_meaning.mp3 and /dev/null differ diff --git a/files/05_0087.jpg b/files/05_0087.jpg deleted file mode 100644 index 8b316c901..000000000 Binary files a/files/05_0087.jpg and /dev/null differ diff --git a/files/05_0087.mp3 b/files/05_0087.mp3 deleted file mode 100644 index 0655b1dbf..000000000 Binary files a/files/05_0087.mp3 and /dev/null differ diff --git a/files/05_0087_example.mp3 b/files/05_0087_example.mp3 deleted file mode 100644 index 181d8ca42..000000000 Binary files a/files/05_0087_example.mp3 and /dev/null differ diff --git a/files/05_0087_meaning.mp3 b/files/05_0087_meaning.mp3 deleted file mode 100644 index 256f2dd9b..000000000 Binary files a/files/05_0087_meaning.mp3 and /dev/null differ diff --git a/files/05_0088.jpg b/files/05_0088.jpg deleted file mode 100644 index 9e73db65c..000000000 Binary files a/files/05_0088.jpg and /dev/null differ diff --git a/files/05_0088.mp3 b/files/05_0088.mp3 deleted file mode 100644 index 21608dd4f..000000000 Binary files a/files/05_0088.mp3 and /dev/null differ diff --git a/files/05_0088_example.mp3 b/files/05_0088_example.mp3 deleted file mode 100644 index 8ca2a6f08..000000000 Binary files a/files/05_0088_example.mp3 and /dev/null differ diff --git a/files/05_0088_meaning.mp3 b/files/05_0088_meaning.mp3 deleted file mode 100644 index c97a562d0..000000000 Binary files a/files/05_0088_meaning.mp3 and /dev/null differ diff --git a/files/05_0089.jpg b/files/05_0089.jpg deleted file mode 100644 index 8ef1f8b13..000000000 Binary files a/files/05_0089.jpg and /dev/null differ diff --git a/files/05_0089.mp3 b/files/05_0089.mp3 deleted file mode 100644 index 390d0c5a3..000000000 Binary files a/files/05_0089.mp3 and /dev/null differ diff --git a/files/05_0089_example.mp3 b/files/05_0089_example.mp3 deleted file mode 100644 index 56ff78e7e..000000000 Binary files a/files/05_0089_example.mp3 and /dev/null differ diff --git a/files/05_0089_meaning.mp3 b/files/05_0089_meaning.mp3 deleted file mode 100644 index 4ffd4ab01..000000000 Binary files a/files/05_0089_meaning.mp3 and /dev/null differ diff --git a/files/05_0090.jpg b/files/05_0090.jpg deleted file mode 100644 index c8c7c1497..000000000 Binary files a/files/05_0090.jpg and /dev/null differ diff --git a/files/05_0090.mp3 b/files/05_0090.mp3 deleted file mode 100644 index e710f25c5..000000000 Binary files a/files/05_0090.mp3 and /dev/null differ diff --git a/files/05_0090_example.mp3 b/files/05_0090_example.mp3 deleted file mode 100644 index 9503976c3..000000000 Binary files a/files/05_0090_example.mp3 and /dev/null differ diff --git a/files/05_0090_meaning.mp3 b/files/05_0090_meaning.mp3 deleted file mode 100644 index 8c2d1274a..000000000 Binary files a/files/05_0090_meaning.mp3 and /dev/null differ diff --git a/files/05_0091.jpg b/files/05_0091.jpg deleted file mode 100644 index d7ab1c7e9..000000000 Binary files a/files/05_0091.jpg and /dev/null differ diff --git a/files/05_0091.mp3 b/files/05_0091.mp3 deleted file mode 100644 index 500cabf8f..000000000 Binary files a/files/05_0091.mp3 and /dev/null differ diff --git a/files/05_0091_example.mp3 b/files/05_0091_example.mp3 deleted file mode 100644 index 6498e41d6..000000000 Binary files a/files/05_0091_example.mp3 and /dev/null differ diff --git a/files/05_0091_meaning.mp3 b/files/05_0091_meaning.mp3 deleted file mode 100644 index 301ca5631..000000000 Binary files a/files/05_0091_meaning.mp3 and /dev/null differ diff --git a/files/05_0092.jpg b/files/05_0092.jpg deleted file mode 100644 index 7a6f6020d..000000000 Binary files a/files/05_0092.jpg and /dev/null differ diff --git a/files/05_0092.mp3 b/files/05_0092.mp3 deleted file mode 100644 index a3318e622..000000000 Binary files a/files/05_0092.mp3 and /dev/null differ diff --git a/files/05_0092_example.mp3 b/files/05_0092_example.mp3 deleted file mode 100644 index 9cec70043..000000000 Binary files a/files/05_0092_example.mp3 and /dev/null differ diff --git a/files/05_0092_meaning.mp3 b/files/05_0092_meaning.mp3 deleted file mode 100644 index 3d06a355c..000000000 Binary files a/files/05_0092_meaning.mp3 and /dev/null differ diff --git a/files/05_0093.jpg b/files/05_0093.jpg deleted file mode 100644 index d7d0e2488..000000000 Binary files a/files/05_0093.jpg and /dev/null differ diff --git a/files/05_0093.mp3 b/files/05_0093.mp3 deleted file mode 100644 index 9eae9217f..000000000 Binary files a/files/05_0093.mp3 and /dev/null differ diff --git a/files/05_0093_example.mp3 b/files/05_0093_example.mp3 deleted file mode 100644 index b77f63cf9..000000000 Binary files a/files/05_0093_example.mp3 and /dev/null differ diff --git a/files/05_0093_meaning.mp3 b/files/05_0093_meaning.mp3 deleted file mode 100644 index 62aed5ab7..000000000 Binary files a/files/05_0093_meaning.mp3 and /dev/null differ diff --git a/files/05_0094.jpg b/files/05_0094.jpg deleted file mode 100644 index fc5db3674..000000000 Binary files a/files/05_0094.jpg and /dev/null differ diff --git a/files/05_0094.mp3 b/files/05_0094.mp3 deleted file mode 100644 index 4acd435e2..000000000 Binary files a/files/05_0094.mp3 and /dev/null differ diff --git a/files/05_0094_example.mp3 b/files/05_0094_example.mp3 deleted file mode 100644 index ea19b334a..000000000 Binary files a/files/05_0094_example.mp3 and /dev/null differ diff --git a/files/05_0094_meaning.mp3 b/files/05_0094_meaning.mp3 deleted file mode 100644 index 526e4fae0..000000000 Binary files a/files/05_0094_meaning.mp3 and /dev/null differ diff --git a/files/05_0095.jpg b/files/05_0095.jpg deleted file mode 100644 index 6591ef083..000000000 Binary files a/files/05_0095.jpg and /dev/null differ diff --git a/files/05_0095.mp3 b/files/05_0095.mp3 deleted file mode 100644 index 2f25b54af..000000000 Binary files a/files/05_0095.mp3 and /dev/null differ diff --git a/files/05_0095_example.mp3 b/files/05_0095_example.mp3 deleted file mode 100644 index b598a3b5a..000000000 Binary files a/files/05_0095_example.mp3 and /dev/null differ diff --git a/files/05_0095_meaning.mp3 b/files/05_0095_meaning.mp3 deleted file mode 100644 index 6ce2299d1..000000000 Binary files a/files/05_0095_meaning.mp3 and /dev/null differ diff --git a/files/05_0096.jpg b/files/05_0096.jpg deleted file mode 100644 index ee219e5c8..000000000 Binary files a/files/05_0096.jpg and /dev/null differ diff --git a/files/05_0096.mp3 b/files/05_0096.mp3 deleted file mode 100644 index 343cc157e..000000000 Binary files a/files/05_0096.mp3 and /dev/null differ diff --git a/files/05_0096_example.mp3 b/files/05_0096_example.mp3 deleted file mode 100644 index 4643f624a..000000000 Binary files a/files/05_0096_example.mp3 and /dev/null differ diff --git a/files/05_0096_meaning.mp3 b/files/05_0096_meaning.mp3 deleted file mode 100644 index 2ce2a106e..000000000 Binary files a/files/05_0096_meaning.mp3 and /dev/null differ diff --git a/files/05_0097.jpg b/files/05_0097.jpg deleted file mode 100644 index 913ec7c69..000000000 Binary files a/files/05_0097.jpg and /dev/null differ diff --git a/files/05_0097.mp3 b/files/05_0097.mp3 deleted file mode 100644 index 3049e5c40..000000000 Binary files a/files/05_0097.mp3 and /dev/null differ diff --git a/files/05_0097_example.mp3 b/files/05_0097_example.mp3 deleted file mode 100644 index fdb3daf2d..000000000 Binary files a/files/05_0097_example.mp3 and /dev/null differ diff --git a/files/05_0097_meaning.mp3 b/files/05_0097_meaning.mp3 deleted file mode 100644 index 2e2fc5cdf..000000000 Binary files a/files/05_0097_meaning.mp3 and /dev/null differ diff --git a/files/05_0098.jpg b/files/05_0098.jpg deleted file mode 100644 index 3f0c955c2..000000000 Binary files a/files/05_0098.jpg and /dev/null differ diff --git a/files/05_0098.mp3 b/files/05_0098.mp3 deleted file mode 100644 index 9cbde2d70..000000000 Binary files a/files/05_0098.mp3 and /dev/null differ diff --git a/files/05_0098_example.mp3 b/files/05_0098_example.mp3 deleted file mode 100644 index 5f6a5638b..000000000 Binary files a/files/05_0098_example.mp3 and /dev/null differ diff --git a/files/05_0098_meaning.mp3 b/files/05_0098_meaning.mp3 deleted file mode 100644 index 1d7ea7ec8..000000000 Binary files a/files/05_0098_meaning.mp3 and /dev/null differ diff --git a/files/05_0099.jpg b/files/05_0099.jpg deleted file mode 100644 index 4283bd51e..000000000 Binary files a/files/05_0099.jpg and /dev/null differ diff --git a/files/05_0099.mp3 b/files/05_0099.mp3 deleted file mode 100644 index 01cd4a9e6..000000000 Binary files a/files/05_0099.mp3 and /dev/null differ diff --git a/files/05_0099_example.mp3 b/files/05_0099_example.mp3 deleted file mode 100644 index 00f5e4908..000000000 Binary files a/files/05_0099_example.mp3 and /dev/null differ diff --git a/files/05_0099_meaning.mp3 b/files/05_0099_meaning.mp3 deleted file mode 100644 index a355213f4..000000000 Binary files a/files/05_0099_meaning.mp3 and /dev/null differ diff --git a/files/05_0100.jpg b/files/05_0100.jpg deleted file mode 100644 index 194b3018c..000000000 Binary files a/files/05_0100.jpg and /dev/null differ diff --git a/files/05_0100.mp3 b/files/05_0100.mp3 deleted file mode 100644 index ecadb2bfd..000000000 Binary files a/files/05_0100.mp3 and /dev/null differ diff --git a/files/05_0100_example.mp3 b/files/05_0100_example.mp3 deleted file mode 100644 index f15be5f76..000000000 Binary files a/files/05_0100_example.mp3 and /dev/null differ diff --git a/files/05_0100_meaning.mp3 b/files/05_0100_meaning.mp3 deleted file mode 100644 index a58bf76a8..000000000 Binary files a/files/05_0100_meaning.mp3 and /dev/null differ diff --git a/files/05_0681.jpg b/files/05_0681.jpg deleted file mode 100644 index 1091bbcf5..000000000 Binary files a/files/05_0681.jpg and /dev/null differ diff --git a/files/05_0681.mp3 b/files/05_0681.mp3 deleted file mode 100644 index f59ee530c..000000000 Binary files a/files/05_0681.mp3 and /dev/null differ diff --git a/files/05_0681_example.mp3 b/files/05_0681_example.mp3 deleted file mode 100644 index 3eddfe100..000000000 Binary files a/files/05_0681_example.mp3 and /dev/null differ diff --git a/files/05_0681_meaning.mp3 b/files/05_0681_meaning.mp3 deleted file mode 100644 index 905819466..000000000 Binary files a/files/05_0681_meaning.mp3 and /dev/null differ diff --git a/files/05_0682.jpg b/files/05_0682.jpg deleted file mode 100644 index fda52d5f2..000000000 Binary files a/files/05_0682.jpg and /dev/null differ diff --git a/files/05_0682.mp3 b/files/05_0682.mp3 deleted file mode 100644 index f5b8ebd04..000000000 Binary files a/files/05_0682.mp3 and /dev/null differ diff --git a/files/05_0682_example.mp3 b/files/05_0682_example.mp3 deleted file mode 100644 index a505c7512..000000000 Binary files a/files/05_0682_example.mp3 and /dev/null differ diff --git a/files/05_0682_meaning.mp3 b/files/05_0682_meaning.mp3 deleted file mode 100644 index 6b5bdda1d..000000000 Binary files a/files/05_0682_meaning.mp3 and /dev/null differ diff --git a/files/05_0683.jpg b/files/05_0683.jpg deleted file mode 100644 index 24e4fbfce..000000000 Binary files a/files/05_0683.jpg and /dev/null differ diff --git a/files/05_0683.mp3 b/files/05_0683.mp3 deleted file mode 100644 index d0d646eb4..000000000 Binary files a/files/05_0683.mp3 and /dev/null differ diff --git a/files/05_0683_example.mp3 b/files/05_0683_example.mp3 deleted file mode 100644 index 88df3498f..000000000 Binary files a/files/05_0683_example.mp3 and /dev/null differ diff --git a/files/05_0683_meaning.mp3 b/files/05_0683_meaning.mp3 deleted file mode 100644 index f9e6c9fcb..000000000 Binary files a/files/05_0683_meaning.mp3 and /dev/null differ diff --git a/files/05_0684.jpg b/files/05_0684.jpg deleted file mode 100644 index f1e57f232..000000000 Binary files a/files/05_0684.jpg and /dev/null differ diff --git a/files/05_0684.mp3 b/files/05_0684.mp3 deleted file mode 100644 index ae049c27b..000000000 Binary files a/files/05_0684.mp3 and /dev/null differ diff --git a/files/05_0684_example.mp3 b/files/05_0684_example.mp3 deleted file mode 100644 index d50e15b9a..000000000 Binary files a/files/05_0684_example.mp3 and /dev/null differ diff --git a/files/05_0684_meaning.mp3 b/files/05_0684_meaning.mp3 deleted file mode 100644 index 8d731857c..000000000 Binary files a/files/05_0684_meaning.mp3 and /dev/null differ diff --git a/files/05_0685.jpg b/files/05_0685.jpg deleted file mode 100644 index 85a07155b..000000000 Binary files a/files/05_0685.jpg and /dev/null differ diff --git a/files/05_0685.mp3 b/files/05_0685.mp3 deleted file mode 100644 index 555256661..000000000 Binary files a/files/05_0685.mp3 and /dev/null differ diff --git a/files/05_0685_example.mp3 b/files/05_0685_example.mp3 deleted file mode 100644 index f0f859980..000000000 Binary files a/files/05_0685_example.mp3 and /dev/null differ diff --git a/files/05_0685_meaning.mp3 b/files/05_0685_meaning.mp3 deleted file mode 100644 index a890a3896..000000000 Binary files a/files/05_0685_meaning.mp3 and /dev/null differ diff --git a/files/05_0686.jpg b/files/05_0686.jpg deleted file mode 100644 index 073113517..000000000 Binary files a/files/05_0686.jpg and /dev/null differ diff --git a/files/05_0686.mp3 b/files/05_0686.mp3 deleted file mode 100644 index b26cc6df8..000000000 Binary files a/files/05_0686.mp3 and /dev/null differ diff --git a/files/05_0686_example.mp3 b/files/05_0686_example.mp3 deleted file mode 100644 index dacc58bb7..000000000 Binary files a/files/05_0686_example.mp3 and /dev/null differ diff --git a/files/05_0686_meaning.mp3 b/files/05_0686_meaning.mp3 deleted file mode 100644 index 09ec6081e..000000000 Binary files a/files/05_0686_meaning.mp3 and /dev/null differ diff --git a/files/05_0687.jpg b/files/05_0687.jpg deleted file mode 100644 index 8473237b3..000000000 Binary files a/files/05_0687.jpg and /dev/null differ diff --git a/files/05_0687.mp3 b/files/05_0687.mp3 deleted file mode 100644 index 688e1951a..000000000 Binary files a/files/05_0687.mp3 and /dev/null differ diff --git a/files/05_0687_example.mp3 b/files/05_0687_example.mp3 deleted file mode 100644 index 483f54320..000000000 Binary files a/files/05_0687_example.mp3 and /dev/null differ diff --git a/files/05_0687_meaning.mp3 b/files/05_0687_meaning.mp3 deleted file mode 100644 index e8047bcbb..000000000 Binary files a/files/05_0687_meaning.mp3 and /dev/null differ diff --git a/files/05_0688.jpg b/files/05_0688.jpg deleted file mode 100644 index e225626ff..000000000 Binary files a/files/05_0688.jpg and /dev/null differ diff --git a/files/05_0688.mp3 b/files/05_0688.mp3 deleted file mode 100644 index dacd88b2d..000000000 Binary files a/files/05_0688.mp3 and /dev/null differ diff --git a/files/05_0688_example.mp3 b/files/05_0688_example.mp3 deleted file mode 100644 index af7f511e9..000000000 Binary files a/files/05_0688_example.mp3 and /dev/null differ diff --git a/files/05_0688_meaning.mp3 b/files/05_0688_meaning.mp3 deleted file mode 100644 index fcf744653..000000000 Binary files a/files/05_0688_meaning.mp3 and /dev/null differ diff --git a/files/05_0689.jpg b/files/05_0689.jpg deleted file mode 100644 index b5ac57af0..000000000 Binary files a/files/05_0689.jpg and /dev/null differ diff --git a/files/05_0689.mp3 b/files/05_0689.mp3 deleted file mode 100644 index 1e0bae059..000000000 Binary files a/files/05_0689.mp3 and /dev/null differ diff --git a/files/05_0689_example.mp3 b/files/05_0689_example.mp3 deleted file mode 100644 index be189a4a3..000000000 Binary files a/files/05_0689_example.mp3 and /dev/null differ diff --git a/files/05_0689_meaning.mp3 b/files/05_0689_meaning.mp3 deleted file mode 100644 index 2b4b5ca29..000000000 Binary files a/files/05_0689_meaning.mp3 and /dev/null differ diff --git a/files/05_0690.jpg b/files/05_0690.jpg deleted file mode 100644 index b9ad71385..000000000 Binary files a/files/05_0690.jpg and /dev/null differ diff --git a/files/05_0690.mp3 b/files/05_0690.mp3 deleted file mode 100644 index 31bf50dca..000000000 Binary files a/files/05_0690.mp3 and /dev/null differ diff --git a/files/05_0690_example.mp3 b/files/05_0690_example.mp3 deleted file mode 100644 index f2f124893..000000000 Binary files a/files/05_0690_example.mp3 and /dev/null differ diff --git a/files/05_0690_meaning.mp3 b/files/05_0690_meaning.mp3 deleted file mode 100644 index 43974e860..000000000 Binary files a/files/05_0690_meaning.mp3 and /dev/null differ diff --git a/files/05_0691.jpg b/files/05_0691.jpg deleted file mode 100644 index 477aa0ff2..000000000 Binary files a/files/05_0691.jpg and /dev/null differ diff --git a/files/05_0691.mp3 b/files/05_0691.mp3 deleted file mode 100644 index c793d0c33..000000000 Binary files a/files/05_0691.mp3 and /dev/null differ diff --git a/files/05_0691_example.mp3 b/files/05_0691_example.mp3 deleted file mode 100644 index 4732e3dea..000000000 Binary files a/files/05_0691_example.mp3 and /dev/null differ diff --git a/files/05_0691_meaning.mp3 b/files/05_0691_meaning.mp3 deleted file mode 100644 index 970a4379a..000000000 Binary files a/files/05_0691_meaning.mp3 and /dev/null differ diff --git a/files/05_0692.jpg b/files/05_0692.jpg deleted file mode 100644 index 93903ade0..000000000 Binary files a/files/05_0692.jpg and /dev/null differ diff --git a/files/05_0692.mp3 b/files/05_0692.mp3 deleted file mode 100644 index ae4ec7a70..000000000 Binary files a/files/05_0692.mp3 and /dev/null differ diff --git a/files/05_0692_example.mp3 b/files/05_0692_example.mp3 deleted file mode 100644 index 12e64afe6..000000000 Binary files a/files/05_0692_example.mp3 and /dev/null differ diff --git a/files/05_0692_meaning.mp3 b/files/05_0692_meaning.mp3 deleted file mode 100644 index 176b92fdb..000000000 Binary files a/files/05_0692_meaning.mp3 and /dev/null differ diff --git a/files/05_0693.jpg b/files/05_0693.jpg deleted file mode 100644 index 87b903d70..000000000 Binary files a/files/05_0693.jpg and /dev/null differ diff --git a/files/05_0693.mp3 b/files/05_0693.mp3 deleted file mode 100644 index 64068baec..000000000 Binary files a/files/05_0693.mp3 and /dev/null differ diff --git a/files/05_0693_example.mp3 b/files/05_0693_example.mp3 deleted file mode 100644 index 77fba4d52..000000000 Binary files a/files/05_0693_example.mp3 and /dev/null differ diff --git a/files/05_0693_meaning.mp3 b/files/05_0693_meaning.mp3 deleted file mode 100644 index 991a4828b..000000000 Binary files a/files/05_0693_meaning.mp3 and /dev/null differ diff --git a/files/05_0694.jpg b/files/05_0694.jpg deleted file mode 100644 index 2f6a138f5..000000000 Binary files a/files/05_0694.jpg and /dev/null differ diff --git a/files/05_0694.mp3 b/files/05_0694.mp3 deleted file mode 100644 index a677f667b..000000000 Binary files a/files/05_0694.mp3 and /dev/null differ diff --git a/files/05_0694_example.mp3 b/files/05_0694_example.mp3 deleted file mode 100644 index 3514a3fee..000000000 Binary files a/files/05_0694_example.mp3 and /dev/null differ diff --git a/files/05_0694_meaning.mp3 b/files/05_0694_meaning.mp3 deleted file mode 100644 index 86dc13087..000000000 Binary files a/files/05_0694_meaning.mp3 and /dev/null differ diff --git a/files/05_0695.jpg b/files/05_0695.jpg deleted file mode 100644 index 667b0a600..000000000 Binary files a/files/05_0695.jpg and /dev/null differ diff --git a/files/05_0695.mp3 b/files/05_0695.mp3 deleted file mode 100644 index 051cb001a..000000000 Binary files a/files/05_0695.mp3 and /dev/null differ diff --git a/files/05_0695_example.mp3 b/files/05_0695_example.mp3 deleted file mode 100644 index dd9144425..000000000 Binary files a/files/05_0695_example.mp3 and /dev/null differ diff --git a/files/05_0695_meaning.mp3 b/files/05_0695_meaning.mp3 deleted file mode 100644 index bcb929aeb..000000000 Binary files a/files/05_0695_meaning.mp3 and /dev/null differ diff --git a/files/05_0696.jpg b/files/05_0696.jpg deleted file mode 100644 index a74dce757..000000000 Binary files a/files/05_0696.jpg and /dev/null differ diff --git a/files/05_0696.mp3 b/files/05_0696.mp3 deleted file mode 100644 index 0d2fcb09d..000000000 Binary files a/files/05_0696.mp3 and /dev/null differ diff --git a/files/05_0696_example.mp3 b/files/05_0696_example.mp3 deleted file mode 100644 index 1f765cb94..000000000 Binary files a/files/05_0696_example.mp3 and /dev/null differ diff --git a/files/05_0696_meaning.mp3 b/files/05_0696_meaning.mp3 deleted file mode 100644 index a92ccdad6..000000000 Binary files a/files/05_0696_meaning.mp3 and /dev/null differ diff --git a/files/05_0697.jpg b/files/05_0697.jpg deleted file mode 100644 index 67fe09c1b..000000000 Binary files a/files/05_0697.jpg and /dev/null differ diff --git a/files/05_0697.mp3 b/files/05_0697.mp3 deleted file mode 100644 index 29e49b521..000000000 Binary files a/files/05_0697.mp3 and /dev/null differ diff --git a/files/05_0697_example.mp3 b/files/05_0697_example.mp3 deleted file mode 100644 index 331f8a7d4..000000000 Binary files a/files/05_0697_example.mp3 and /dev/null differ diff --git a/files/05_0697_meaning.mp3 b/files/05_0697_meaning.mp3 deleted file mode 100644 index 8496de27f..000000000 Binary files a/files/05_0697_meaning.mp3 and /dev/null differ diff --git a/files/05_0698.jpg b/files/05_0698.jpg deleted file mode 100644 index a3ff029c9..000000000 Binary files a/files/05_0698.jpg and /dev/null differ diff --git a/files/05_0698.mp3 b/files/05_0698.mp3 deleted file mode 100644 index 9c8d22d34..000000000 Binary files a/files/05_0698.mp3 and /dev/null differ diff --git a/files/05_0698_example.mp3 b/files/05_0698_example.mp3 deleted file mode 100644 index 13eb6856c..000000000 Binary files a/files/05_0698_example.mp3 and /dev/null differ diff --git a/files/05_0698_meaning.mp3 b/files/05_0698_meaning.mp3 deleted file mode 100644 index 8dda6a410..000000000 Binary files a/files/05_0698_meaning.mp3 and /dev/null differ diff --git a/files/05_0699.jpg b/files/05_0699.jpg deleted file mode 100644 index e2d57740a..000000000 Binary files a/files/05_0699.jpg and /dev/null differ diff --git a/files/05_0699.mp3 b/files/05_0699.mp3 deleted file mode 100644 index 24c360c88..000000000 Binary files a/files/05_0699.mp3 and /dev/null differ diff --git a/files/05_0699_example.mp3 b/files/05_0699_example.mp3 deleted file mode 100644 index e24a53c21..000000000 Binary files a/files/05_0699_example.mp3 and /dev/null differ diff --git a/files/05_0699_meaning.mp3 b/files/05_0699_meaning.mp3 deleted file mode 100644 index d265a8b28..000000000 Binary files a/files/05_0699_meaning.mp3 and /dev/null differ diff --git a/files/05_0700.jpg b/files/05_0700.jpg deleted file mode 100644 index 67f1f7994..000000000 Binary files a/files/05_0700.jpg and /dev/null differ diff --git a/files/05_0700.mp3 b/files/05_0700.mp3 deleted file mode 100644 index 56657e002..000000000 Binary files a/files/05_0700.mp3 and /dev/null differ diff --git a/files/05_0700_example.mp3 b/files/05_0700_example.mp3 deleted file mode 100644 index dc56157e0..000000000 Binary files a/files/05_0700_example.mp3 and /dev/null differ diff --git a/files/05_0700_meaning.mp3 b/files/05_0700_meaning.mp3 deleted file mode 100644 index 67a907dd7..000000000 Binary files a/files/05_0700_meaning.mp3 and /dev/null differ diff --git a/files/05_1281.jpg b/files/05_1281.jpg deleted file mode 100644 index 43a60a49a..000000000 Binary files a/files/05_1281.jpg and /dev/null differ diff --git a/files/05_1281.mp3 b/files/05_1281.mp3 deleted file mode 100644 index b590f6dea..000000000 Binary files a/files/05_1281.mp3 and /dev/null differ diff --git a/files/05_1281_example.mp3 b/files/05_1281_example.mp3 deleted file mode 100644 index 353870346..000000000 Binary files a/files/05_1281_example.mp3 and /dev/null differ diff --git a/files/05_1281_meaning.mp3 b/files/05_1281_meaning.mp3 deleted file mode 100644 index 99e01009e..000000000 Binary files a/files/05_1281_meaning.mp3 and /dev/null differ diff --git a/files/05_1282.jpg b/files/05_1282.jpg deleted file mode 100644 index e72ce964e..000000000 Binary files a/files/05_1282.jpg and /dev/null differ diff --git a/files/05_1282.mp3 b/files/05_1282.mp3 deleted file mode 100644 index 98a81a9b0..000000000 Binary files a/files/05_1282.mp3 and /dev/null differ diff --git a/files/05_1282_example.mp3 b/files/05_1282_example.mp3 deleted file mode 100644 index 656021f7c..000000000 Binary files a/files/05_1282_example.mp3 and /dev/null differ diff --git a/files/05_1282_meaning.mp3 b/files/05_1282_meaning.mp3 deleted file mode 100644 index 7a40ecbcb..000000000 Binary files a/files/05_1282_meaning.mp3 and /dev/null differ diff --git a/files/05_1283.jpg b/files/05_1283.jpg deleted file mode 100644 index 84e8ea039..000000000 Binary files a/files/05_1283.jpg and /dev/null differ diff --git a/files/05_1283.mp3 b/files/05_1283.mp3 deleted file mode 100644 index 9a4740fcf..000000000 Binary files a/files/05_1283.mp3 and /dev/null differ diff --git a/files/05_1283_example.mp3 b/files/05_1283_example.mp3 deleted file mode 100644 index 1fbf8dfb4..000000000 Binary files a/files/05_1283_example.mp3 and /dev/null differ diff --git a/files/05_1283_meaning.mp3 b/files/05_1283_meaning.mp3 deleted file mode 100644 index 656857f0c..000000000 Binary files a/files/05_1283_meaning.mp3 and /dev/null differ diff --git a/files/05_1284.jpg b/files/05_1284.jpg deleted file mode 100644 index 2e6d38077..000000000 Binary files a/files/05_1284.jpg and /dev/null differ diff --git a/files/05_1284.mp3 b/files/05_1284.mp3 deleted file mode 100644 index f53631337..000000000 Binary files a/files/05_1284.mp3 and /dev/null differ diff --git a/files/05_1284_example.mp3 b/files/05_1284_example.mp3 deleted file mode 100644 index 361c412d4..000000000 Binary files a/files/05_1284_example.mp3 and /dev/null differ diff --git a/files/05_1284_meaning.mp3 b/files/05_1284_meaning.mp3 deleted file mode 100644 index c37a06182..000000000 Binary files a/files/05_1284_meaning.mp3 and /dev/null differ diff --git a/files/05_1285.jpg b/files/05_1285.jpg deleted file mode 100644 index b2668b821..000000000 Binary files a/files/05_1285.jpg and /dev/null differ diff --git a/files/05_1285.mp3 b/files/05_1285.mp3 deleted file mode 100644 index f6f56cac7..000000000 Binary files a/files/05_1285.mp3 and /dev/null differ diff --git a/files/05_1285_example.mp3 b/files/05_1285_example.mp3 deleted file mode 100644 index f3defa3a9..000000000 Binary files a/files/05_1285_example.mp3 and /dev/null differ diff --git a/files/05_1285_meaning.mp3 b/files/05_1285_meaning.mp3 deleted file mode 100644 index 874cbda7a..000000000 Binary files a/files/05_1285_meaning.mp3 and /dev/null differ diff --git a/files/05_1286.jpg b/files/05_1286.jpg deleted file mode 100644 index e738bdf32..000000000 Binary files a/files/05_1286.jpg and /dev/null differ diff --git a/files/05_1286.mp3 b/files/05_1286.mp3 deleted file mode 100644 index 1691fcefc..000000000 Binary files a/files/05_1286.mp3 and /dev/null differ diff --git a/files/05_1286_example.mp3 b/files/05_1286_example.mp3 deleted file mode 100644 index 44660fe0f..000000000 Binary files a/files/05_1286_example.mp3 and /dev/null differ diff --git a/files/05_1286_meaning.mp3 b/files/05_1286_meaning.mp3 deleted file mode 100644 index 8848eb3ac..000000000 Binary files a/files/05_1286_meaning.mp3 and /dev/null differ diff --git a/files/05_1287.jpg b/files/05_1287.jpg deleted file mode 100644 index da4df0b57..000000000 Binary files a/files/05_1287.jpg and /dev/null differ diff --git a/files/05_1287.mp3 b/files/05_1287.mp3 deleted file mode 100644 index 974683d81..000000000 Binary files a/files/05_1287.mp3 and /dev/null differ diff --git a/files/05_1287_example.mp3 b/files/05_1287_example.mp3 deleted file mode 100644 index 4fa616d31..000000000 Binary files a/files/05_1287_example.mp3 and /dev/null differ diff --git a/files/05_1287_meaning.mp3 b/files/05_1287_meaning.mp3 deleted file mode 100644 index b2e185765..000000000 Binary files a/files/05_1287_meaning.mp3 and /dev/null differ diff --git a/files/05_1288.jpg b/files/05_1288.jpg deleted file mode 100644 index 9443287f2..000000000 Binary files a/files/05_1288.jpg and /dev/null differ diff --git a/files/05_1288.mp3 b/files/05_1288.mp3 deleted file mode 100644 index 0e5d2914f..000000000 Binary files a/files/05_1288.mp3 and /dev/null differ diff --git a/files/05_1288_example.mp3 b/files/05_1288_example.mp3 deleted file mode 100644 index bae0d610c..000000000 Binary files a/files/05_1288_example.mp3 and /dev/null differ diff --git a/files/05_1288_meaning.mp3 b/files/05_1288_meaning.mp3 deleted file mode 100644 index 6b00e29af..000000000 Binary files a/files/05_1288_meaning.mp3 and /dev/null differ diff --git a/files/05_1289.jpg b/files/05_1289.jpg deleted file mode 100644 index 7e6fc7ce9..000000000 Binary files a/files/05_1289.jpg and /dev/null differ diff --git a/files/05_1289.mp3 b/files/05_1289.mp3 deleted file mode 100644 index 9fc7a76b0..000000000 Binary files a/files/05_1289.mp3 and /dev/null differ diff --git a/files/05_1289_example.mp3 b/files/05_1289_example.mp3 deleted file mode 100644 index 42ac65a64..000000000 Binary files a/files/05_1289_example.mp3 and /dev/null differ diff --git a/files/05_1289_meaning.mp3 b/files/05_1289_meaning.mp3 deleted file mode 100644 index a26441b10..000000000 Binary files a/files/05_1289_meaning.mp3 and /dev/null differ diff --git a/files/05_1290.jpg b/files/05_1290.jpg deleted file mode 100644 index c0bb5f4f4..000000000 Binary files a/files/05_1290.jpg and /dev/null differ diff --git a/files/05_1290.mp3 b/files/05_1290.mp3 deleted file mode 100644 index 5f96b78f2..000000000 Binary files a/files/05_1290.mp3 and /dev/null differ diff --git a/files/05_1290_example.mp3 b/files/05_1290_example.mp3 deleted file mode 100644 index b9664338e..000000000 Binary files a/files/05_1290_example.mp3 and /dev/null differ diff --git a/files/05_1290_meaning.mp3 b/files/05_1290_meaning.mp3 deleted file mode 100644 index e7ab85a83..000000000 Binary files a/files/05_1290_meaning.mp3 and /dev/null differ diff --git a/files/05_1291.jpg b/files/05_1291.jpg deleted file mode 100644 index 183f51e5e..000000000 Binary files a/files/05_1291.jpg and /dev/null differ diff --git a/files/05_1291.mp3 b/files/05_1291.mp3 deleted file mode 100644 index 50ebfd418..000000000 Binary files a/files/05_1291.mp3 and /dev/null differ diff --git a/files/05_1291_example.mp3 b/files/05_1291_example.mp3 deleted file mode 100644 index 3d7f7da93..000000000 Binary files a/files/05_1291_example.mp3 and /dev/null differ diff --git a/files/05_1291_meaning.mp3 b/files/05_1291_meaning.mp3 deleted file mode 100644 index 296f73cd5..000000000 Binary files a/files/05_1291_meaning.mp3 and /dev/null differ diff --git a/files/05_1292.jpg b/files/05_1292.jpg deleted file mode 100644 index 240f35918..000000000 Binary files a/files/05_1292.jpg and /dev/null differ diff --git a/files/05_1292.mp3 b/files/05_1292.mp3 deleted file mode 100644 index 7385a9008..000000000 Binary files a/files/05_1292.mp3 and /dev/null differ diff --git a/files/05_1292_example.mp3 b/files/05_1292_example.mp3 deleted file mode 100644 index 2175f1c62..000000000 Binary files a/files/05_1292_example.mp3 and /dev/null differ diff --git a/files/05_1292_meaning.mp3 b/files/05_1292_meaning.mp3 deleted file mode 100644 index e1f39b389..000000000 Binary files a/files/05_1292_meaning.mp3 and /dev/null differ diff --git a/files/05_1293.jpg b/files/05_1293.jpg deleted file mode 100644 index 0723f3042..000000000 Binary files a/files/05_1293.jpg and /dev/null differ diff --git a/files/05_1293.mp3 b/files/05_1293.mp3 deleted file mode 100644 index fce8dfe34..000000000 Binary files a/files/05_1293.mp3 and /dev/null differ diff --git a/files/05_1293_example.mp3 b/files/05_1293_example.mp3 deleted file mode 100644 index e4790307a..000000000 Binary files a/files/05_1293_example.mp3 and /dev/null differ diff --git a/files/05_1293_meaning.mp3 b/files/05_1293_meaning.mp3 deleted file mode 100644 index 9055443d5..000000000 Binary files a/files/05_1293_meaning.mp3 and /dev/null differ diff --git a/files/05_1294.jpg b/files/05_1294.jpg deleted file mode 100644 index 1068cdd35..000000000 Binary files a/files/05_1294.jpg and /dev/null differ diff --git a/files/05_1294.mp3 b/files/05_1294.mp3 deleted file mode 100644 index 4e0c0d0b3..000000000 Binary files a/files/05_1294.mp3 and /dev/null differ diff --git a/files/05_1294_example.mp3 b/files/05_1294_example.mp3 deleted file mode 100644 index 97f1fcd9c..000000000 Binary files a/files/05_1294_example.mp3 and /dev/null differ diff --git a/files/05_1294_meaning.mp3 b/files/05_1294_meaning.mp3 deleted file mode 100644 index 8a4823c57..000000000 Binary files a/files/05_1294_meaning.mp3 and /dev/null differ diff --git a/files/05_1295.jpg b/files/05_1295.jpg deleted file mode 100644 index 50d29ade0..000000000 Binary files a/files/05_1295.jpg and /dev/null differ diff --git a/files/05_1295.mp3 b/files/05_1295.mp3 deleted file mode 100644 index c108a2351..000000000 Binary files a/files/05_1295.mp3 and /dev/null differ diff --git a/files/05_1295_example.mp3 b/files/05_1295_example.mp3 deleted file mode 100644 index 017980a04..000000000 Binary files a/files/05_1295_example.mp3 and /dev/null differ diff --git a/files/05_1295_meaning.mp3 b/files/05_1295_meaning.mp3 deleted file mode 100644 index 1553d9798..000000000 Binary files a/files/05_1295_meaning.mp3 and /dev/null differ diff --git a/files/05_1296.jpg b/files/05_1296.jpg deleted file mode 100644 index b403a4df0..000000000 Binary files a/files/05_1296.jpg and /dev/null differ diff --git a/files/05_1296.mp3 b/files/05_1296.mp3 deleted file mode 100644 index 1641aa0f2..000000000 Binary files a/files/05_1296.mp3 and /dev/null differ diff --git a/files/05_1296_example.mp3 b/files/05_1296_example.mp3 deleted file mode 100644 index e85e20007..000000000 Binary files a/files/05_1296_example.mp3 and /dev/null differ diff --git a/files/05_1296_meaning.mp3 b/files/05_1296_meaning.mp3 deleted file mode 100644 index 013ed070b..000000000 Binary files a/files/05_1296_meaning.mp3 and /dev/null differ diff --git a/files/05_1297.jpg b/files/05_1297.jpg deleted file mode 100644 index 57cd5c827..000000000 Binary files a/files/05_1297.jpg and /dev/null differ diff --git a/files/05_1297.mp3 b/files/05_1297.mp3 deleted file mode 100644 index 2c6eb1c5a..000000000 Binary files a/files/05_1297.mp3 and /dev/null differ diff --git a/files/05_1297_example.mp3 b/files/05_1297_example.mp3 deleted file mode 100644 index 59148eade..000000000 Binary files a/files/05_1297_example.mp3 and /dev/null differ diff --git a/files/05_1297_meaning.mp3 b/files/05_1297_meaning.mp3 deleted file mode 100644 index 340becce2..000000000 Binary files a/files/05_1297_meaning.mp3 and /dev/null differ diff --git a/files/05_1298.jpg b/files/05_1298.jpg deleted file mode 100644 index ad98d1962..000000000 Binary files a/files/05_1298.jpg and /dev/null differ diff --git a/files/05_1298.mp3 b/files/05_1298.mp3 deleted file mode 100644 index 6d88b56c5..000000000 Binary files a/files/05_1298.mp3 and /dev/null differ diff --git a/files/05_1298_example.mp3 b/files/05_1298_example.mp3 deleted file mode 100644 index efea135b0..000000000 Binary files a/files/05_1298_example.mp3 and /dev/null differ diff --git a/files/05_1298_meaning.mp3 b/files/05_1298_meaning.mp3 deleted file mode 100644 index 5e525c883..000000000 Binary files a/files/05_1298_meaning.mp3 and /dev/null differ diff --git a/files/05_1299.jpg b/files/05_1299.jpg deleted file mode 100644 index c5c75697b..000000000 Binary files a/files/05_1299.jpg and /dev/null differ diff --git a/files/05_1299.mp3 b/files/05_1299.mp3 deleted file mode 100644 index 88f8a6019..000000000 Binary files a/files/05_1299.mp3 and /dev/null differ diff --git a/files/05_1299_example.mp3 b/files/05_1299_example.mp3 deleted file mode 100644 index 5965bbc56..000000000 Binary files a/files/05_1299_example.mp3 and /dev/null differ diff --git a/files/05_1299_meaning.mp3 b/files/05_1299_meaning.mp3 deleted file mode 100644 index b5586e647..000000000 Binary files a/files/05_1299_meaning.mp3 and /dev/null differ diff --git a/files/05_1300.jpg b/files/05_1300.jpg deleted file mode 100644 index 118618159..000000000 Binary files a/files/05_1300.jpg and /dev/null differ diff --git a/files/05_1300.mp3 b/files/05_1300.mp3 deleted file mode 100644 index 64a9cb62f..000000000 Binary files a/files/05_1300.mp3 and /dev/null differ diff --git a/files/05_1300_example.mp3 b/files/05_1300_example.mp3 deleted file mode 100644 index 3889c93cb..000000000 Binary files a/files/05_1300_example.mp3 and /dev/null differ diff --git a/files/05_1300_meaning.mp3 b/files/05_1300_meaning.mp3 deleted file mode 100644 index 79e1935a4..000000000 Binary files a/files/05_1300_meaning.mp3 and /dev/null differ diff --git a/files/05_1881.jpg b/files/05_1881.jpg deleted file mode 100644 index df26675a1..000000000 Binary files a/files/05_1881.jpg and /dev/null differ diff --git a/files/05_1881.mp3 b/files/05_1881.mp3 deleted file mode 100644 index c25a1dcf6..000000000 Binary files a/files/05_1881.mp3 and /dev/null differ diff --git a/files/05_1881_example.mp3 b/files/05_1881_example.mp3 deleted file mode 100644 index 146f5dd20..000000000 Binary files a/files/05_1881_example.mp3 and /dev/null differ diff --git a/files/05_1881_meaning.mp3 b/files/05_1881_meaning.mp3 deleted file mode 100644 index 987184ff0..000000000 Binary files a/files/05_1881_meaning.mp3 and /dev/null differ diff --git a/files/05_1882.jpg b/files/05_1882.jpg deleted file mode 100644 index abde67f7e..000000000 Binary files a/files/05_1882.jpg and /dev/null differ diff --git a/files/05_1882.mp3 b/files/05_1882.mp3 deleted file mode 100644 index c98c0a604..000000000 Binary files a/files/05_1882.mp3 and /dev/null differ diff --git a/files/05_1882_example.mp3 b/files/05_1882_example.mp3 deleted file mode 100644 index 2cba77f7f..000000000 Binary files a/files/05_1882_example.mp3 and /dev/null differ diff --git a/files/05_1882_meaning.mp3 b/files/05_1882_meaning.mp3 deleted file mode 100644 index edec3b4d8..000000000 Binary files a/files/05_1882_meaning.mp3 and /dev/null differ diff --git a/files/05_1883.jpg b/files/05_1883.jpg deleted file mode 100644 index 8340dd472..000000000 Binary files a/files/05_1883.jpg and /dev/null differ diff --git a/files/05_1883.mp3 b/files/05_1883.mp3 deleted file mode 100644 index c05fb0edb..000000000 Binary files a/files/05_1883.mp3 and /dev/null differ diff --git a/files/05_1883_example.mp3 b/files/05_1883_example.mp3 deleted file mode 100644 index 65466c15e..000000000 Binary files a/files/05_1883_example.mp3 and /dev/null differ diff --git a/files/05_1883_meaning.mp3 b/files/05_1883_meaning.mp3 deleted file mode 100644 index 83ae605d6..000000000 Binary files a/files/05_1883_meaning.mp3 and /dev/null differ diff --git a/files/05_1884.jpg b/files/05_1884.jpg deleted file mode 100644 index f57abc999..000000000 Binary files a/files/05_1884.jpg and /dev/null differ diff --git a/files/05_1884.mp3 b/files/05_1884.mp3 deleted file mode 100644 index 50429ac66..000000000 Binary files a/files/05_1884.mp3 and /dev/null differ diff --git a/files/05_1884_example.mp3 b/files/05_1884_example.mp3 deleted file mode 100644 index 63e7f664c..000000000 Binary files a/files/05_1884_example.mp3 and /dev/null differ diff --git a/files/05_1884_meaning.mp3 b/files/05_1884_meaning.mp3 deleted file mode 100644 index f148df1db..000000000 Binary files a/files/05_1884_meaning.mp3 and /dev/null differ diff --git a/files/05_1885.jpg b/files/05_1885.jpg deleted file mode 100644 index 8f7089e67..000000000 Binary files a/files/05_1885.jpg and /dev/null differ diff --git a/files/05_1885.mp3 b/files/05_1885.mp3 deleted file mode 100644 index 17dafbba0..000000000 Binary files a/files/05_1885.mp3 and /dev/null differ diff --git a/files/05_1885_example.mp3 b/files/05_1885_example.mp3 deleted file mode 100644 index ac756a01b..000000000 Binary files a/files/05_1885_example.mp3 and /dev/null differ diff --git a/files/05_1885_meaning.mp3 b/files/05_1885_meaning.mp3 deleted file mode 100644 index 5d7a67158..000000000 Binary files a/files/05_1885_meaning.mp3 and /dev/null differ diff --git a/files/05_1886.jpg b/files/05_1886.jpg deleted file mode 100644 index 9f4885f43..000000000 Binary files a/files/05_1886.jpg and /dev/null differ diff --git a/files/05_1886.mp3 b/files/05_1886.mp3 deleted file mode 100644 index 3f1c2fc63..000000000 Binary files a/files/05_1886.mp3 and /dev/null differ diff --git a/files/05_1886_example.mp3 b/files/05_1886_example.mp3 deleted file mode 100644 index d046fb987..000000000 Binary files a/files/05_1886_example.mp3 and /dev/null differ diff --git a/files/05_1886_meaning.mp3 b/files/05_1886_meaning.mp3 deleted file mode 100644 index eb787f190..000000000 Binary files a/files/05_1886_meaning.mp3 and /dev/null differ diff --git a/files/05_1887.jpg b/files/05_1887.jpg deleted file mode 100644 index 9500ad6d8..000000000 Binary files a/files/05_1887.jpg and /dev/null differ diff --git a/files/05_1887.mp3 b/files/05_1887.mp3 deleted file mode 100644 index 0273e8556..000000000 Binary files a/files/05_1887.mp3 and /dev/null differ diff --git a/files/05_1887_example.mp3 b/files/05_1887_example.mp3 deleted file mode 100644 index 75ea01fde..000000000 Binary files a/files/05_1887_example.mp3 and /dev/null differ diff --git a/files/05_1887_meaning.mp3 b/files/05_1887_meaning.mp3 deleted file mode 100644 index 6806fca9b..000000000 Binary files a/files/05_1887_meaning.mp3 and /dev/null differ diff --git a/files/05_1888.jpg b/files/05_1888.jpg deleted file mode 100644 index 1feb98809..000000000 Binary files a/files/05_1888.jpg and /dev/null differ diff --git a/files/05_1888.mp3 b/files/05_1888.mp3 deleted file mode 100644 index 2e1af2066..000000000 Binary files a/files/05_1888.mp3 and /dev/null differ diff --git a/files/05_1888_example.mp3 b/files/05_1888_example.mp3 deleted file mode 100644 index b8aaca81e..000000000 Binary files a/files/05_1888_example.mp3 and /dev/null differ diff --git a/files/05_1888_meaning.mp3 b/files/05_1888_meaning.mp3 deleted file mode 100644 index 2407bfd76..000000000 Binary files a/files/05_1888_meaning.mp3 and /dev/null differ diff --git a/files/05_1889.jpg b/files/05_1889.jpg deleted file mode 100644 index 9c327000e..000000000 Binary files a/files/05_1889.jpg and /dev/null differ diff --git a/files/05_1889.mp3 b/files/05_1889.mp3 deleted file mode 100644 index 05886c173..000000000 Binary files a/files/05_1889.mp3 and /dev/null differ diff --git a/files/05_1889_example.mp3 b/files/05_1889_example.mp3 deleted file mode 100644 index c33c95972..000000000 Binary files a/files/05_1889_example.mp3 and /dev/null differ diff --git a/files/05_1889_meaning.mp3 b/files/05_1889_meaning.mp3 deleted file mode 100644 index 45dcff500..000000000 Binary files a/files/05_1889_meaning.mp3 and /dev/null differ diff --git a/files/05_1890.jpg b/files/05_1890.jpg deleted file mode 100644 index 4239e0a60..000000000 Binary files a/files/05_1890.jpg and /dev/null differ diff --git a/files/05_1890.mp3 b/files/05_1890.mp3 deleted file mode 100644 index 6f018c892..000000000 Binary files a/files/05_1890.mp3 and /dev/null differ diff --git a/files/05_1890_example.mp3 b/files/05_1890_example.mp3 deleted file mode 100644 index 86e3796a7..000000000 Binary files a/files/05_1890_example.mp3 and /dev/null differ diff --git a/files/05_1890_meaning.mp3 b/files/05_1890_meaning.mp3 deleted file mode 100644 index e661ad445..000000000 Binary files a/files/05_1890_meaning.mp3 and /dev/null differ diff --git a/files/05_1891.jpg b/files/05_1891.jpg deleted file mode 100644 index 2345551b1..000000000 Binary files a/files/05_1891.jpg and /dev/null differ diff --git a/files/05_1891.mp3 b/files/05_1891.mp3 deleted file mode 100644 index fc5052bd9..000000000 Binary files a/files/05_1891.mp3 and /dev/null differ diff --git a/files/05_1891_example.mp3 b/files/05_1891_example.mp3 deleted file mode 100644 index 052e72a29..000000000 Binary files a/files/05_1891_example.mp3 and /dev/null differ diff --git a/files/05_1891_meaning.mp3 b/files/05_1891_meaning.mp3 deleted file mode 100644 index a403d8eb6..000000000 Binary files a/files/05_1891_meaning.mp3 and /dev/null differ diff --git a/files/05_1892.jpg b/files/05_1892.jpg deleted file mode 100644 index c8fe16281..000000000 Binary files a/files/05_1892.jpg and /dev/null differ diff --git a/files/05_1892.mp3 b/files/05_1892.mp3 deleted file mode 100644 index 50a02f4b7..000000000 Binary files a/files/05_1892.mp3 and /dev/null differ diff --git a/files/05_1892_example.mp3 b/files/05_1892_example.mp3 deleted file mode 100644 index 6b9705d46..000000000 Binary files a/files/05_1892_example.mp3 and /dev/null differ diff --git a/files/05_1892_meaning.mp3 b/files/05_1892_meaning.mp3 deleted file mode 100644 index 743cdd822..000000000 Binary files a/files/05_1892_meaning.mp3 and /dev/null differ diff --git a/files/05_1893.jpg b/files/05_1893.jpg deleted file mode 100644 index 8a56d6728..000000000 Binary files a/files/05_1893.jpg and /dev/null differ diff --git a/files/05_1893.mp3 b/files/05_1893.mp3 deleted file mode 100644 index 34258bf61..000000000 Binary files a/files/05_1893.mp3 and /dev/null differ diff --git a/files/05_1893_example.mp3 b/files/05_1893_example.mp3 deleted file mode 100644 index 5d11e7e6a..000000000 Binary files a/files/05_1893_example.mp3 and /dev/null differ diff --git a/files/05_1893_meaning.mp3 b/files/05_1893_meaning.mp3 deleted file mode 100644 index 9a2c28d51..000000000 Binary files a/files/05_1893_meaning.mp3 and /dev/null differ diff --git a/files/05_1894.jpg b/files/05_1894.jpg deleted file mode 100644 index adbfc956d..000000000 Binary files a/files/05_1894.jpg and /dev/null differ diff --git a/files/05_1894.mp3 b/files/05_1894.mp3 deleted file mode 100644 index b233820b0..000000000 Binary files a/files/05_1894.mp3 and /dev/null differ diff --git a/files/05_1894_example.mp3 b/files/05_1894_example.mp3 deleted file mode 100644 index 66e54b27b..000000000 Binary files a/files/05_1894_example.mp3 and /dev/null differ diff --git a/files/05_1894_meaning.mp3 b/files/05_1894_meaning.mp3 deleted file mode 100644 index 81b68f6d9..000000000 Binary files a/files/05_1894_meaning.mp3 and /dev/null differ diff --git a/files/05_1895.jpg b/files/05_1895.jpg deleted file mode 100644 index 9bb6f2dc7..000000000 Binary files a/files/05_1895.jpg and /dev/null differ diff --git a/files/05_1895.mp3 b/files/05_1895.mp3 deleted file mode 100644 index 2110d760f..000000000 Binary files a/files/05_1895.mp3 and /dev/null differ diff --git a/files/05_1895_example.mp3 b/files/05_1895_example.mp3 deleted file mode 100644 index 736915991..000000000 Binary files a/files/05_1895_example.mp3 and /dev/null differ diff --git a/files/05_1895_meaning.mp3 b/files/05_1895_meaning.mp3 deleted file mode 100644 index 61f52073d..000000000 Binary files a/files/05_1895_meaning.mp3 and /dev/null differ diff --git a/files/05_1896.jpg b/files/05_1896.jpg deleted file mode 100644 index cf5202b58..000000000 Binary files a/files/05_1896.jpg and /dev/null differ diff --git a/files/05_1896.mp3 b/files/05_1896.mp3 deleted file mode 100644 index ae647f342..000000000 Binary files a/files/05_1896.mp3 and /dev/null differ diff --git a/files/05_1896_example.mp3 b/files/05_1896_example.mp3 deleted file mode 100644 index 65c7993b8..000000000 Binary files a/files/05_1896_example.mp3 and /dev/null differ diff --git a/files/05_1896_meaning.mp3 b/files/05_1896_meaning.mp3 deleted file mode 100644 index ff2cb8963..000000000 Binary files a/files/05_1896_meaning.mp3 and /dev/null differ diff --git a/files/05_1897.jpg b/files/05_1897.jpg deleted file mode 100644 index d3f1b3748..000000000 Binary files a/files/05_1897.jpg and /dev/null differ diff --git a/files/05_1897.mp3 b/files/05_1897.mp3 deleted file mode 100644 index cf0e30b37..000000000 Binary files a/files/05_1897.mp3 and /dev/null differ diff --git a/files/05_1897_example.mp3 b/files/05_1897_example.mp3 deleted file mode 100644 index 0007c73b5..000000000 Binary files a/files/05_1897_example.mp3 and /dev/null differ diff --git a/files/05_1897_meaning.mp3 b/files/05_1897_meaning.mp3 deleted file mode 100644 index 37b9d5c31..000000000 Binary files a/files/05_1897_meaning.mp3 and /dev/null differ diff --git a/files/05_1898.jpg b/files/05_1898.jpg deleted file mode 100644 index baf4453b6..000000000 Binary files a/files/05_1898.jpg and /dev/null differ diff --git a/files/05_1898.mp3 b/files/05_1898.mp3 deleted file mode 100644 index 44e351451..000000000 Binary files a/files/05_1898.mp3 and /dev/null differ diff --git a/files/05_1898_example.mp3 b/files/05_1898_example.mp3 deleted file mode 100644 index 0555f9ac3..000000000 Binary files a/files/05_1898_example.mp3 and /dev/null differ diff --git a/files/05_1898_meaning.mp3 b/files/05_1898_meaning.mp3 deleted file mode 100644 index e330f884f..000000000 Binary files a/files/05_1898_meaning.mp3 and /dev/null differ diff --git a/files/05_1899.jpg b/files/05_1899.jpg deleted file mode 100644 index 593860a41..000000000 Binary files a/files/05_1899.jpg and /dev/null differ diff --git a/files/05_1899.mp3 b/files/05_1899.mp3 deleted file mode 100644 index a25536e48..000000000 Binary files a/files/05_1899.mp3 and /dev/null differ diff --git a/files/05_1899_example.mp3 b/files/05_1899_example.mp3 deleted file mode 100644 index 11abb0742..000000000 Binary files a/files/05_1899_example.mp3 and /dev/null differ diff --git a/files/05_1899_meaning.mp3 b/files/05_1899_meaning.mp3 deleted file mode 100644 index 01af8c855..000000000 Binary files a/files/05_1899_meaning.mp3 and /dev/null differ diff --git a/files/05_1900.jpg b/files/05_1900.jpg deleted file mode 100644 index b82ea9061..000000000 Binary files a/files/05_1900.jpg and /dev/null differ diff --git a/files/05_1900.mp3 b/files/05_1900.mp3 deleted file mode 100644 index dd13da2d3..000000000 Binary files a/files/05_1900.mp3 and /dev/null differ diff --git a/files/05_1900_example.mp3 b/files/05_1900_example.mp3 deleted file mode 100644 index 5022c0371..000000000 Binary files a/files/05_1900_example.mp3 and /dev/null differ diff --git a/files/05_1900_meaning.mp3 b/files/05_1900_meaning.mp3 deleted file mode 100644 index 4e1ff627c..000000000 Binary files a/files/05_1900_meaning.mp3 and /dev/null differ diff --git a/files/05_2481.jpg b/files/05_2481.jpg deleted file mode 100644 index ab5c6ce2c..000000000 Binary files a/files/05_2481.jpg and /dev/null differ diff --git a/files/05_2481.mp3 b/files/05_2481.mp3 deleted file mode 100644 index 143c5b7b1..000000000 Binary files a/files/05_2481.mp3 and /dev/null differ diff --git a/files/05_2481_example.mp3 b/files/05_2481_example.mp3 deleted file mode 100644 index 44f6ec767..000000000 Binary files a/files/05_2481_example.mp3 and /dev/null differ diff --git a/files/05_2481_meaning.mp3 b/files/05_2481_meaning.mp3 deleted file mode 100644 index 50aa49b4b..000000000 Binary files a/files/05_2481_meaning.mp3 and /dev/null differ diff --git a/files/05_2482.jpg b/files/05_2482.jpg deleted file mode 100644 index d0ec41bdc..000000000 Binary files a/files/05_2482.jpg and /dev/null differ diff --git a/files/05_2482.mp3 b/files/05_2482.mp3 deleted file mode 100644 index 35611f309..000000000 Binary files a/files/05_2482.mp3 and /dev/null differ diff --git a/files/05_2482_example.mp3 b/files/05_2482_example.mp3 deleted file mode 100644 index 181c152f7..000000000 Binary files a/files/05_2482_example.mp3 and /dev/null differ diff --git a/files/05_2482_meaning.mp3 b/files/05_2482_meaning.mp3 deleted file mode 100644 index 3a841e8c0..000000000 Binary files a/files/05_2482_meaning.mp3 and /dev/null differ diff --git a/files/05_2483.jpg b/files/05_2483.jpg deleted file mode 100644 index f5295fde3..000000000 Binary files a/files/05_2483.jpg and /dev/null differ diff --git a/files/05_2483.mp3 b/files/05_2483.mp3 deleted file mode 100644 index 4e1ea4fc9..000000000 Binary files a/files/05_2483.mp3 and /dev/null differ diff --git a/files/05_2483_example.mp3 b/files/05_2483_example.mp3 deleted file mode 100644 index 068afe836..000000000 Binary files a/files/05_2483_example.mp3 and /dev/null differ diff --git a/files/05_2483_meaning.mp3 b/files/05_2483_meaning.mp3 deleted file mode 100644 index 6e3c0d771..000000000 Binary files a/files/05_2483_meaning.mp3 and /dev/null differ diff --git a/files/05_2484.jpg b/files/05_2484.jpg deleted file mode 100644 index 7b4256129..000000000 Binary files a/files/05_2484.jpg and /dev/null differ diff --git a/files/05_2484.mp3 b/files/05_2484.mp3 deleted file mode 100644 index 7499b6ee5..000000000 Binary files a/files/05_2484.mp3 and /dev/null differ diff --git a/files/05_2484_example.mp3 b/files/05_2484_example.mp3 deleted file mode 100644 index 09ad7507a..000000000 Binary files a/files/05_2484_example.mp3 and /dev/null differ diff --git a/files/05_2484_meaning.mp3 b/files/05_2484_meaning.mp3 deleted file mode 100644 index df383adfb..000000000 Binary files a/files/05_2484_meaning.mp3 and /dev/null differ diff --git a/files/05_2485.jpg b/files/05_2485.jpg deleted file mode 100644 index 2ef15f212..000000000 Binary files a/files/05_2485.jpg and /dev/null differ diff --git a/files/05_2485.mp3 b/files/05_2485.mp3 deleted file mode 100644 index 36584c3f0..000000000 Binary files a/files/05_2485.mp3 and /dev/null differ diff --git a/files/05_2485_example.mp3 b/files/05_2485_example.mp3 deleted file mode 100644 index 7cb381d86..000000000 Binary files a/files/05_2485_example.mp3 and /dev/null differ diff --git a/files/05_2485_meaning.mp3 b/files/05_2485_meaning.mp3 deleted file mode 100644 index c0b0564d0..000000000 Binary files a/files/05_2485_meaning.mp3 and /dev/null differ diff --git a/files/05_2486.jpg b/files/05_2486.jpg deleted file mode 100644 index 8be3f1a47..000000000 Binary files a/files/05_2486.jpg and /dev/null differ diff --git a/files/05_2486.mp3 b/files/05_2486.mp3 deleted file mode 100644 index 47b2d1e81..000000000 Binary files a/files/05_2486.mp3 and /dev/null differ diff --git a/files/05_2486_example.mp3 b/files/05_2486_example.mp3 deleted file mode 100644 index 27e4f88df..000000000 Binary files a/files/05_2486_example.mp3 and /dev/null differ diff --git a/files/05_2486_meaning.mp3 b/files/05_2486_meaning.mp3 deleted file mode 100644 index 9b761d40d..000000000 Binary files a/files/05_2486_meaning.mp3 and /dev/null differ diff --git a/files/05_2487.jpg b/files/05_2487.jpg deleted file mode 100644 index f3f07e2c7..000000000 Binary files a/files/05_2487.jpg and /dev/null differ diff --git a/files/05_2487.mp3 b/files/05_2487.mp3 deleted file mode 100644 index 51ffa15d2..000000000 Binary files a/files/05_2487.mp3 and /dev/null differ diff --git a/files/05_2487_example.mp3 b/files/05_2487_example.mp3 deleted file mode 100644 index 37ce0e3a6..000000000 Binary files a/files/05_2487_example.mp3 and /dev/null differ diff --git a/files/05_2487_meaning.mp3 b/files/05_2487_meaning.mp3 deleted file mode 100644 index cccf96c36..000000000 Binary files a/files/05_2487_meaning.mp3 and /dev/null differ diff --git a/files/05_2488.jpg b/files/05_2488.jpg deleted file mode 100644 index 214c9d2d4..000000000 Binary files a/files/05_2488.jpg and /dev/null differ diff --git a/files/05_2488.mp3 b/files/05_2488.mp3 deleted file mode 100644 index 48bba6a44..000000000 Binary files a/files/05_2488.mp3 and /dev/null differ diff --git a/files/05_2488_example.mp3 b/files/05_2488_example.mp3 deleted file mode 100644 index ff49f6b1d..000000000 Binary files a/files/05_2488_example.mp3 and /dev/null differ diff --git a/files/05_2488_meaning.mp3 b/files/05_2488_meaning.mp3 deleted file mode 100644 index d9bd70d76..000000000 Binary files a/files/05_2488_meaning.mp3 and /dev/null differ diff --git a/files/05_2489.jpg b/files/05_2489.jpg deleted file mode 100644 index 0516762a1..000000000 Binary files a/files/05_2489.jpg and /dev/null differ diff --git a/files/05_2489.mp3 b/files/05_2489.mp3 deleted file mode 100644 index bf9fc121b..000000000 Binary files a/files/05_2489.mp3 and /dev/null differ diff --git a/files/05_2489_example.mp3 b/files/05_2489_example.mp3 deleted file mode 100644 index d3fbe345f..000000000 Binary files a/files/05_2489_example.mp3 and /dev/null differ diff --git a/files/05_2489_meaning.mp3 b/files/05_2489_meaning.mp3 deleted file mode 100644 index 941df223d..000000000 Binary files a/files/05_2489_meaning.mp3 and /dev/null differ diff --git a/files/05_2490.jpg b/files/05_2490.jpg deleted file mode 100644 index 88a1197fa..000000000 Binary files a/files/05_2490.jpg and /dev/null differ diff --git a/files/05_2490.mp3 b/files/05_2490.mp3 deleted file mode 100644 index 6a14fcd97..000000000 Binary files a/files/05_2490.mp3 and /dev/null differ diff --git a/files/05_2490_example.mp3 b/files/05_2490_example.mp3 deleted file mode 100644 index 686e50990..000000000 Binary files a/files/05_2490_example.mp3 and /dev/null differ diff --git a/files/05_2490_meaning.mp3 b/files/05_2490_meaning.mp3 deleted file mode 100644 index 7c50e4a8c..000000000 Binary files a/files/05_2490_meaning.mp3 and /dev/null differ diff --git a/files/05_2491.jpg b/files/05_2491.jpg deleted file mode 100644 index aca5d12c3..000000000 Binary files a/files/05_2491.jpg and /dev/null differ diff --git a/files/05_2491.mp3 b/files/05_2491.mp3 deleted file mode 100644 index 2702cc34a..000000000 Binary files a/files/05_2491.mp3 and /dev/null differ diff --git a/files/05_2491_example.mp3 b/files/05_2491_example.mp3 deleted file mode 100644 index 5a1f08ca2..000000000 Binary files a/files/05_2491_example.mp3 and /dev/null differ diff --git a/files/05_2491_meaning.mp3 b/files/05_2491_meaning.mp3 deleted file mode 100644 index ea4cae87d..000000000 Binary files a/files/05_2491_meaning.mp3 and /dev/null differ diff --git a/files/05_2492.jpg b/files/05_2492.jpg deleted file mode 100644 index 26444e115..000000000 Binary files a/files/05_2492.jpg and /dev/null differ diff --git a/files/05_2492.mp3 b/files/05_2492.mp3 deleted file mode 100644 index b65e49d78..000000000 Binary files a/files/05_2492.mp3 and /dev/null differ diff --git a/files/05_2492_example.mp3 b/files/05_2492_example.mp3 deleted file mode 100644 index 7a3d9aef4..000000000 Binary files a/files/05_2492_example.mp3 and /dev/null differ diff --git a/files/05_2492_meaning.mp3 b/files/05_2492_meaning.mp3 deleted file mode 100644 index b9885f275..000000000 Binary files a/files/05_2492_meaning.mp3 and /dev/null differ diff --git a/files/05_2493.jpg b/files/05_2493.jpg deleted file mode 100644 index 655d14f14..000000000 Binary files a/files/05_2493.jpg and /dev/null differ diff --git a/files/05_2493.mp3 b/files/05_2493.mp3 deleted file mode 100644 index ab6999517..000000000 Binary files a/files/05_2493.mp3 and /dev/null differ diff --git a/files/05_2493_example.mp3 b/files/05_2493_example.mp3 deleted file mode 100644 index cb1b5f2e3..000000000 Binary files a/files/05_2493_example.mp3 and /dev/null differ diff --git a/files/05_2493_meaning.mp3 b/files/05_2493_meaning.mp3 deleted file mode 100644 index 8a22870aa..000000000 Binary files a/files/05_2493_meaning.mp3 and /dev/null differ diff --git a/files/05_2494.jpg b/files/05_2494.jpg deleted file mode 100644 index 6ea968914..000000000 Binary files a/files/05_2494.jpg and /dev/null differ diff --git a/files/05_2494.mp3 b/files/05_2494.mp3 deleted file mode 100644 index 5b3e5de3b..000000000 Binary files a/files/05_2494.mp3 and /dev/null differ diff --git a/files/05_2494_example.mp3 b/files/05_2494_example.mp3 deleted file mode 100644 index 2d02a2ae7..000000000 Binary files a/files/05_2494_example.mp3 and /dev/null differ diff --git a/files/05_2494_meaning.mp3 b/files/05_2494_meaning.mp3 deleted file mode 100644 index 3d5c25ffa..000000000 Binary files a/files/05_2494_meaning.mp3 and /dev/null differ diff --git a/files/05_2495.jpg b/files/05_2495.jpg deleted file mode 100644 index 5832307b0..000000000 Binary files a/files/05_2495.jpg and /dev/null differ diff --git a/files/05_2495.mp3 b/files/05_2495.mp3 deleted file mode 100644 index b64f94451..000000000 Binary files a/files/05_2495.mp3 and /dev/null differ diff --git a/files/05_2495_example.mp3 b/files/05_2495_example.mp3 deleted file mode 100644 index 93f93d609..000000000 Binary files a/files/05_2495_example.mp3 and /dev/null differ diff --git a/files/05_2495_meaning.mp3 b/files/05_2495_meaning.mp3 deleted file mode 100644 index 1d4b3045b..000000000 Binary files a/files/05_2495_meaning.mp3 and /dev/null differ diff --git a/files/05_2496.jpg b/files/05_2496.jpg deleted file mode 100644 index b9d43bb3e..000000000 Binary files a/files/05_2496.jpg and /dev/null differ diff --git a/files/05_2496.mp3 b/files/05_2496.mp3 deleted file mode 100644 index bdd308195..000000000 Binary files a/files/05_2496.mp3 and /dev/null differ diff --git a/files/05_2496_example.mp3 b/files/05_2496_example.mp3 deleted file mode 100644 index d6e6feb13..000000000 Binary files a/files/05_2496_example.mp3 and /dev/null differ diff --git a/files/05_2496_meaning.mp3 b/files/05_2496_meaning.mp3 deleted file mode 100644 index 063a5d039..000000000 Binary files a/files/05_2496_meaning.mp3 and /dev/null differ diff --git a/files/05_2497.jpg b/files/05_2497.jpg deleted file mode 100644 index 42e31a70e..000000000 Binary files a/files/05_2497.jpg and /dev/null differ diff --git a/files/05_2497.mp3 b/files/05_2497.mp3 deleted file mode 100644 index 7844d97ae..000000000 Binary files a/files/05_2497.mp3 and /dev/null differ diff --git a/files/05_2497_example.mp3 b/files/05_2497_example.mp3 deleted file mode 100644 index feab80325..000000000 Binary files a/files/05_2497_example.mp3 and /dev/null differ diff --git a/files/05_2497_meaning.mp3 b/files/05_2497_meaning.mp3 deleted file mode 100644 index 615860ae4..000000000 Binary files a/files/05_2497_meaning.mp3 and /dev/null differ diff --git a/files/05_2498.jpg b/files/05_2498.jpg deleted file mode 100644 index 10b45269c..000000000 Binary files a/files/05_2498.jpg and /dev/null differ diff --git a/files/05_2498.mp3 b/files/05_2498.mp3 deleted file mode 100644 index 18b8f87dd..000000000 Binary files a/files/05_2498.mp3 and /dev/null differ diff --git a/files/05_2498_example.mp3 b/files/05_2498_example.mp3 deleted file mode 100644 index 8717a419a..000000000 Binary files a/files/05_2498_example.mp3 and /dev/null differ diff --git a/files/05_2498_meaning.mp3 b/files/05_2498_meaning.mp3 deleted file mode 100644 index 2f9c341be..000000000 Binary files a/files/05_2498_meaning.mp3 and /dev/null differ diff --git a/files/05_2499.jpg b/files/05_2499.jpg deleted file mode 100644 index 5ba13c8a1..000000000 Binary files a/files/05_2499.jpg and /dev/null differ diff --git a/files/05_2499.mp3 b/files/05_2499.mp3 deleted file mode 100644 index 15789067b..000000000 Binary files a/files/05_2499.mp3 and /dev/null differ diff --git a/files/05_2499_example.mp3 b/files/05_2499_example.mp3 deleted file mode 100644 index 439b5bd92..000000000 Binary files a/files/05_2499_example.mp3 and /dev/null differ diff --git a/files/05_2499_meaning.mp3 b/files/05_2499_meaning.mp3 deleted file mode 100644 index dbc4822d5..000000000 Binary files a/files/05_2499_meaning.mp3 and /dev/null differ diff --git a/files/05_2500.jpg b/files/05_2500.jpg deleted file mode 100644 index d8ecc3b67..000000000 Binary files a/files/05_2500.jpg and /dev/null differ diff --git a/files/05_2500.mp3 b/files/05_2500.mp3 deleted file mode 100644 index 87b03c940..000000000 Binary files a/files/05_2500.mp3 and /dev/null differ diff --git a/files/05_2500_example.mp3 b/files/05_2500_example.mp3 deleted file mode 100644 index bc6f98632..000000000 Binary files a/files/05_2500_example.mp3 and /dev/null differ diff --git a/files/05_2500_meaning.mp3 b/files/05_2500_meaning.mp3 deleted file mode 100644 index 76670d06c..000000000 Binary files a/files/05_2500_meaning.mp3 and /dev/null differ diff --git a/files/05_3081.jpg b/files/05_3081.jpg deleted file mode 100644 index 8e4d0f77c..000000000 Binary files a/files/05_3081.jpg and /dev/null differ diff --git a/files/05_3081.mp3 b/files/05_3081.mp3 deleted file mode 100644 index 2e6be4a0b..000000000 Binary files a/files/05_3081.mp3 and /dev/null differ diff --git a/files/05_3081_example.mp3 b/files/05_3081_example.mp3 deleted file mode 100644 index 0d71f1e92..000000000 Binary files a/files/05_3081_example.mp3 and /dev/null differ diff --git a/files/05_3081_meaning.mp3 b/files/05_3081_meaning.mp3 deleted file mode 100644 index c91eb9984..000000000 Binary files a/files/05_3081_meaning.mp3 and /dev/null differ diff --git a/files/05_3082.jpg b/files/05_3082.jpg deleted file mode 100644 index ef60d599d..000000000 Binary files a/files/05_3082.jpg and /dev/null differ diff --git a/files/05_3082.mp3 b/files/05_3082.mp3 deleted file mode 100644 index 332b49ed6..000000000 Binary files a/files/05_3082.mp3 and /dev/null differ diff --git a/files/05_3082_example.mp3 b/files/05_3082_example.mp3 deleted file mode 100644 index ef9bb888d..000000000 Binary files a/files/05_3082_example.mp3 and /dev/null differ diff --git a/files/05_3082_meaning.mp3 b/files/05_3082_meaning.mp3 deleted file mode 100644 index ced776bd4..000000000 Binary files a/files/05_3082_meaning.mp3 and /dev/null differ diff --git a/files/05_3083.jpg b/files/05_3083.jpg deleted file mode 100644 index ef960d8ff..000000000 Binary files a/files/05_3083.jpg and /dev/null differ diff --git a/files/05_3083.mp3 b/files/05_3083.mp3 deleted file mode 100644 index b62caa15b..000000000 Binary files a/files/05_3083.mp3 and /dev/null differ diff --git a/files/05_3083_example.mp3 b/files/05_3083_example.mp3 deleted file mode 100644 index 00c300e2c..000000000 Binary files a/files/05_3083_example.mp3 and /dev/null differ diff --git a/files/05_3083_meaning.mp3 b/files/05_3083_meaning.mp3 deleted file mode 100644 index 64ac886a0..000000000 Binary files a/files/05_3083_meaning.mp3 and /dev/null differ diff --git a/files/05_3084.jpg b/files/05_3084.jpg deleted file mode 100644 index 9d2cabe33..000000000 Binary files a/files/05_3084.jpg and /dev/null differ diff --git a/files/05_3084.mp3 b/files/05_3084.mp3 deleted file mode 100644 index a92a8c7af..000000000 Binary files a/files/05_3084.mp3 and /dev/null differ diff --git a/files/05_3084_example.mp3 b/files/05_3084_example.mp3 deleted file mode 100644 index 4ad51ee58..000000000 Binary files a/files/05_3084_example.mp3 and /dev/null differ diff --git a/files/05_3084_meaning.mp3 b/files/05_3084_meaning.mp3 deleted file mode 100644 index f045e7424..000000000 Binary files a/files/05_3084_meaning.mp3 and /dev/null differ diff --git a/files/05_3085.jpg b/files/05_3085.jpg deleted file mode 100644 index 5b487118e..000000000 Binary files a/files/05_3085.jpg and /dev/null differ diff --git a/files/05_3085.mp3 b/files/05_3085.mp3 deleted file mode 100644 index 34aa404a4..000000000 Binary files a/files/05_3085.mp3 and /dev/null differ diff --git a/files/05_3085_example.mp3 b/files/05_3085_example.mp3 deleted file mode 100644 index 5a66e4ec7..000000000 Binary files a/files/05_3085_example.mp3 and /dev/null differ diff --git a/files/05_3085_meaning.mp3 b/files/05_3085_meaning.mp3 deleted file mode 100644 index fda8a8c3e..000000000 Binary files a/files/05_3085_meaning.mp3 and /dev/null differ diff --git a/files/05_3086.jpg b/files/05_3086.jpg deleted file mode 100644 index ee688a467..000000000 Binary files a/files/05_3086.jpg and /dev/null differ diff --git a/files/05_3086.mp3 b/files/05_3086.mp3 deleted file mode 100644 index 9722b0e7f..000000000 Binary files a/files/05_3086.mp3 and /dev/null differ diff --git a/files/05_3086_example.mp3 b/files/05_3086_example.mp3 deleted file mode 100644 index 3e0f99552..000000000 Binary files a/files/05_3086_example.mp3 and /dev/null differ diff --git a/files/05_3086_meaning.mp3 b/files/05_3086_meaning.mp3 deleted file mode 100644 index acd008560..000000000 Binary files a/files/05_3086_meaning.mp3 and /dev/null differ diff --git a/files/05_3087.jpg b/files/05_3087.jpg deleted file mode 100644 index 2553acac9..000000000 Binary files a/files/05_3087.jpg and /dev/null differ diff --git a/files/05_3087.mp3 b/files/05_3087.mp3 deleted file mode 100644 index f8e548efd..000000000 Binary files a/files/05_3087.mp3 and /dev/null differ diff --git a/files/05_3087_example.mp3 b/files/05_3087_example.mp3 deleted file mode 100644 index 27d0ff7aa..000000000 Binary files a/files/05_3087_example.mp3 and /dev/null differ diff --git a/files/05_3087_meaning.mp3 b/files/05_3087_meaning.mp3 deleted file mode 100644 index 4d3d91b84..000000000 Binary files a/files/05_3087_meaning.mp3 and /dev/null differ diff --git a/files/05_3088.jpg b/files/05_3088.jpg deleted file mode 100644 index 08648aec3..000000000 Binary files a/files/05_3088.jpg and /dev/null differ diff --git a/files/05_3088.mp3 b/files/05_3088.mp3 deleted file mode 100644 index ce798faeb..000000000 Binary files a/files/05_3088.mp3 and /dev/null differ diff --git a/files/05_3088_example.mp3 b/files/05_3088_example.mp3 deleted file mode 100644 index 557d7cf11..000000000 Binary files a/files/05_3088_example.mp3 and /dev/null differ diff --git a/files/05_3088_meaning.mp3 b/files/05_3088_meaning.mp3 deleted file mode 100644 index 41eec4d0d..000000000 Binary files a/files/05_3088_meaning.mp3 and /dev/null differ diff --git a/files/05_3089.jpg b/files/05_3089.jpg deleted file mode 100644 index 0a0d0cdc9..000000000 Binary files a/files/05_3089.jpg and /dev/null differ diff --git a/files/05_3089.mp3 b/files/05_3089.mp3 deleted file mode 100644 index 00cdb7467..000000000 Binary files a/files/05_3089.mp3 and /dev/null differ diff --git a/files/05_3089_example.mp3 b/files/05_3089_example.mp3 deleted file mode 100644 index db220f21f..000000000 Binary files a/files/05_3089_example.mp3 and /dev/null differ diff --git a/files/05_3089_meaning.mp3 b/files/05_3089_meaning.mp3 deleted file mode 100644 index 6f376d207..000000000 Binary files a/files/05_3089_meaning.mp3 and /dev/null differ diff --git a/files/05_3090.jpg b/files/05_3090.jpg deleted file mode 100644 index 9ebda50cd..000000000 Binary files a/files/05_3090.jpg and /dev/null differ diff --git a/files/05_3090.mp3 b/files/05_3090.mp3 deleted file mode 100644 index ccb04d84b..000000000 Binary files a/files/05_3090.mp3 and /dev/null differ diff --git a/files/05_3090_example.mp3 b/files/05_3090_example.mp3 deleted file mode 100644 index 527b8e0bb..000000000 Binary files a/files/05_3090_example.mp3 and /dev/null differ diff --git a/files/05_3090_meaning.mp3 b/files/05_3090_meaning.mp3 deleted file mode 100644 index 52bdc81c1..000000000 Binary files a/files/05_3090_meaning.mp3 and /dev/null differ diff --git a/files/05_3091.jpg b/files/05_3091.jpg deleted file mode 100644 index eec7beba2..000000000 Binary files a/files/05_3091.jpg and /dev/null differ diff --git a/files/05_3091.mp3 b/files/05_3091.mp3 deleted file mode 100644 index 3a93d2bf2..000000000 Binary files a/files/05_3091.mp3 and /dev/null differ diff --git a/files/05_3091_example.mp3 b/files/05_3091_example.mp3 deleted file mode 100644 index 2510eef20..000000000 Binary files a/files/05_3091_example.mp3 and /dev/null differ diff --git a/files/05_3091_meaning.mp3 b/files/05_3091_meaning.mp3 deleted file mode 100644 index 289dc736f..000000000 Binary files a/files/05_3091_meaning.mp3 and /dev/null differ diff --git a/files/05_3092.jpg b/files/05_3092.jpg deleted file mode 100644 index 6d09940cf..000000000 Binary files a/files/05_3092.jpg and /dev/null differ diff --git a/files/05_3092.mp3 b/files/05_3092.mp3 deleted file mode 100644 index 526e33a18..000000000 Binary files a/files/05_3092.mp3 and /dev/null differ diff --git a/files/05_3092_example.mp3 b/files/05_3092_example.mp3 deleted file mode 100644 index fd4414881..000000000 Binary files a/files/05_3092_example.mp3 and /dev/null differ diff --git a/files/05_3092_meaning.mp3 b/files/05_3092_meaning.mp3 deleted file mode 100644 index 022f4115c..000000000 Binary files a/files/05_3092_meaning.mp3 and /dev/null differ diff --git a/files/05_3093.jpg b/files/05_3093.jpg deleted file mode 100644 index b013e7490..000000000 Binary files a/files/05_3093.jpg and /dev/null differ diff --git a/files/05_3093.mp3 b/files/05_3093.mp3 deleted file mode 100644 index 832e8f07d..000000000 Binary files a/files/05_3093.mp3 and /dev/null differ diff --git a/files/05_3093_example.mp3 b/files/05_3093_example.mp3 deleted file mode 100644 index 895a99f86..000000000 Binary files a/files/05_3093_example.mp3 and /dev/null differ diff --git a/files/05_3093_meaning.mp3 b/files/05_3093_meaning.mp3 deleted file mode 100644 index 15d940896..000000000 Binary files a/files/05_3093_meaning.mp3 and /dev/null differ diff --git a/files/05_3094.jpg b/files/05_3094.jpg deleted file mode 100644 index 533f0fe43..000000000 Binary files a/files/05_3094.jpg and /dev/null differ diff --git a/files/05_3094.mp3 b/files/05_3094.mp3 deleted file mode 100644 index f9112f758..000000000 Binary files a/files/05_3094.mp3 and /dev/null differ diff --git a/files/05_3094_example.mp3 b/files/05_3094_example.mp3 deleted file mode 100644 index 7b45dd944..000000000 Binary files a/files/05_3094_example.mp3 and /dev/null differ diff --git a/files/05_3094_meaning.mp3 b/files/05_3094_meaning.mp3 deleted file mode 100644 index f71341ac9..000000000 Binary files a/files/05_3094_meaning.mp3 and /dev/null differ diff --git a/files/05_3095.jpg b/files/05_3095.jpg deleted file mode 100644 index caacaf6f6..000000000 Binary files a/files/05_3095.jpg and /dev/null differ diff --git a/files/05_3095.mp3 b/files/05_3095.mp3 deleted file mode 100644 index 0bfa6b146..000000000 Binary files a/files/05_3095.mp3 and /dev/null differ diff --git a/files/05_3095_example.mp3 b/files/05_3095_example.mp3 deleted file mode 100644 index ce0e88404..000000000 Binary files a/files/05_3095_example.mp3 and /dev/null differ diff --git a/files/05_3095_meaning.mp3 b/files/05_3095_meaning.mp3 deleted file mode 100644 index 149d6fd7f..000000000 Binary files a/files/05_3095_meaning.mp3 and /dev/null differ diff --git a/files/05_3096.jpg b/files/05_3096.jpg deleted file mode 100644 index bfbf4d026..000000000 Binary files a/files/05_3096.jpg and /dev/null differ diff --git a/files/05_3096.mp3 b/files/05_3096.mp3 deleted file mode 100644 index b4de29c53..000000000 Binary files a/files/05_3096.mp3 and /dev/null differ diff --git a/files/05_3096_example.mp3 b/files/05_3096_example.mp3 deleted file mode 100644 index e28a3da8f..000000000 Binary files a/files/05_3096_example.mp3 and /dev/null differ diff --git a/files/05_3096_meaning.mp3 b/files/05_3096_meaning.mp3 deleted file mode 100644 index 479e62352..000000000 Binary files a/files/05_3096_meaning.mp3 and /dev/null differ diff --git a/files/05_3097.jpg b/files/05_3097.jpg deleted file mode 100644 index 9fa8b889d..000000000 Binary files a/files/05_3097.jpg and /dev/null differ diff --git a/files/05_3097.mp3 b/files/05_3097.mp3 deleted file mode 100644 index 42a669243..000000000 Binary files a/files/05_3097.mp3 and /dev/null differ diff --git a/files/05_3097_example.mp3 b/files/05_3097_example.mp3 deleted file mode 100644 index d8c340f58..000000000 Binary files a/files/05_3097_example.mp3 and /dev/null differ diff --git a/files/05_3097_meaning.mp3 b/files/05_3097_meaning.mp3 deleted file mode 100644 index d79324e03..000000000 Binary files a/files/05_3097_meaning.mp3 and /dev/null differ diff --git a/files/05_3098.jpg b/files/05_3098.jpg deleted file mode 100644 index 898cf7b37..000000000 Binary files a/files/05_3098.jpg and /dev/null differ diff --git a/files/05_3098.mp3 b/files/05_3098.mp3 deleted file mode 100644 index 0c3cab72a..000000000 Binary files a/files/05_3098.mp3 and /dev/null differ diff --git a/files/05_3098_example.mp3 b/files/05_3098_example.mp3 deleted file mode 100644 index 5dcd193d5..000000000 Binary files a/files/05_3098_example.mp3 and /dev/null differ diff --git a/files/05_3098_meaning.mp3 b/files/05_3098_meaning.mp3 deleted file mode 100644 index cedc89e2d..000000000 Binary files a/files/05_3098_meaning.mp3 and /dev/null differ diff --git a/files/05_3099.jpg b/files/05_3099.jpg deleted file mode 100644 index 5c25be6af..000000000 Binary files a/files/05_3099.jpg and /dev/null differ diff --git a/files/05_3099.mp3 b/files/05_3099.mp3 deleted file mode 100644 index edb1c2b34..000000000 Binary files a/files/05_3099.mp3 and /dev/null differ diff --git a/files/05_3099_example.mp3 b/files/05_3099_example.mp3 deleted file mode 100644 index 3be35f7f5..000000000 Binary files a/files/05_3099_example.mp3 and /dev/null differ diff --git a/files/05_3099_meaning.mp3 b/files/05_3099_meaning.mp3 deleted file mode 100644 index b89a34555..000000000 Binary files a/files/05_3099_meaning.mp3 and /dev/null differ diff --git a/files/05_3100.jpg b/files/05_3100.jpg deleted file mode 100644 index 11acbb6c9..000000000 Binary files a/files/05_3100.jpg and /dev/null differ diff --git a/files/05_3100.mp3 b/files/05_3100.mp3 deleted file mode 100644 index 05c1fc4c2..000000000 Binary files a/files/05_3100.mp3 and /dev/null differ diff --git a/files/05_3100_example.mp3 b/files/05_3100_example.mp3 deleted file mode 100644 index 85f045aa3..000000000 Binary files a/files/05_3100_example.mp3 and /dev/null differ diff --git a/files/05_3100_meaning.mp3 b/files/05_3100_meaning.mp3 deleted file mode 100644 index edec98d10..000000000 Binary files a/files/05_3100_meaning.mp3 and /dev/null differ diff --git a/files/06_0101.jpg b/files/06_0101.jpg deleted file mode 100644 index ad6948ac8..000000000 Binary files a/files/06_0101.jpg and /dev/null differ diff --git a/files/06_0101.mp3 b/files/06_0101.mp3 deleted file mode 100644 index fc705ae84..000000000 Binary files a/files/06_0101.mp3 and /dev/null differ diff --git a/files/06_0101_example.mp3 b/files/06_0101_example.mp3 deleted file mode 100644 index 9b0beafe7..000000000 Binary files a/files/06_0101_example.mp3 and /dev/null differ diff --git a/files/06_0101_meaning.mp3 b/files/06_0101_meaning.mp3 deleted file mode 100644 index c9583a708..000000000 Binary files a/files/06_0101_meaning.mp3 and /dev/null differ diff --git a/files/06_0102.jpg b/files/06_0102.jpg deleted file mode 100644 index 5f4c4acdb..000000000 Binary files a/files/06_0102.jpg and /dev/null differ diff --git a/files/06_0102.mp3 b/files/06_0102.mp3 deleted file mode 100644 index 58998a9c6..000000000 Binary files a/files/06_0102.mp3 and /dev/null differ diff --git a/files/06_0102_example.mp3 b/files/06_0102_example.mp3 deleted file mode 100644 index 16dbf7c9e..000000000 Binary files a/files/06_0102_example.mp3 and /dev/null differ diff --git a/files/06_0102_meaning.mp3 b/files/06_0102_meaning.mp3 deleted file mode 100644 index bd3ebdec8..000000000 Binary files a/files/06_0102_meaning.mp3 and /dev/null differ diff --git a/files/06_0103.jpg b/files/06_0103.jpg deleted file mode 100644 index 7c059c706..000000000 Binary files a/files/06_0103.jpg and /dev/null differ diff --git a/files/06_0103.mp3 b/files/06_0103.mp3 deleted file mode 100644 index e067e2ffb..000000000 Binary files a/files/06_0103.mp3 and /dev/null differ diff --git a/files/06_0103_example.mp3 b/files/06_0103_example.mp3 deleted file mode 100644 index 1900d50e3..000000000 Binary files a/files/06_0103_example.mp3 and /dev/null differ diff --git a/files/06_0103_meaning.mp3 b/files/06_0103_meaning.mp3 deleted file mode 100644 index 2755074d5..000000000 Binary files a/files/06_0103_meaning.mp3 and /dev/null differ diff --git a/files/06_0104.jpg b/files/06_0104.jpg deleted file mode 100644 index f7679f7e1..000000000 Binary files a/files/06_0104.jpg and /dev/null differ diff --git a/files/06_0104.mp3 b/files/06_0104.mp3 deleted file mode 100644 index d655f82c5..000000000 Binary files a/files/06_0104.mp3 and /dev/null differ diff --git a/files/06_0104_example.mp3 b/files/06_0104_example.mp3 deleted file mode 100644 index 4dc03126e..000000000 Binary files a/files/06_0104_example.mp3 and /dev/null differ diff --git a/files/06_0104_meaning.mp3 b/files/06_0104_meaning.mp3 deleted file mode 100644 index fedf29c16..000000000 Binary files a/files/06_0104_meaning.mp3 and /dev/null differ diff --git a/files/06_0105.jpg b/files/06_0105.jpg deleted file mode 100644 index fc1dc8ce4..000000000 Binary files a/files/06_0105.jpg and /dev/null differ diff --git a/files/06_0105.mp3 b/files/06_0105.mp3 deleted file mode 100644 index 5ed6a2d8f..000000000 Binary files a/files/06_0105.mp3 and /dev/null differ diff --git a/files/06_0105_example.mp3 b/files/06_0105_example.mp3 deleted file mode 100644 index 0fe2eb900..000000000 Binary files a/files/06_0105_example.mp3 and /dev/null differ diff --git a/files/06_0105_meaning.mp3 b/files/06_0105_meaning.mp3 deleted file mode 100644 index 2a59ed412..000000000 Binary files a/files/06_0105_meaning.mp3 and /dev/null differ diff --git a/files/06_0106.jpg b/files/06_0106.jpg deleted file mode 100644 index 3bc1bfd5d..000000000 Binary files a/files/06_0106.jpg and /dev/null differ diff --git a/files/06_0106.mp3 b/files/06_0106.mp3 deleted file mode 100644 index 6ed7af644..000000000 Binary files a/files/06_0106.mp3 and /dev/null differ diff --git a/files/06_0106_example.mp3 b/files/06_0106_example.mp3 deleted file mode 100644 index 7b6814dbe..000000000 Binary files a/files/06_0106_example.mp3 and /dev/null differ diff --git a/files/06_0106_meaning.mp3 b/files/06_0106_meaning.mp3 deleted file mode 100644 index cfb1a8da9..000000000 Binary files a/files/06_0106_meaning.mp3 and /dev/null differ diff --git a/files/06_0107.jpg b/files/06_0107.jpg deleted file mode 100644 index 1909f5792..000000000 Binary files a/files/06_0107.jpg and /dev/null differ diff --git a/files/06_0107.mp3 b/files/06_0107.mp3 deleted file mode 100644 index bf30242a8..000000000 Binary files a/files/06_0107.mp3 and /dev/null differ diff --git a/files/06_0107_example.mp3 b/files/06_0107_example.mp3 deleted file mode 100644 index db0b39961..000000000 Binary files a/files/06_0107_example.mp3 and /dev/null differ diff --git a/files/06_0107_meaning.mp3 b/files/06_0107_meaning.mp3 deleted file mode 100644 index 1ad5fac5f..000000000 Binary files a/files/06_0107_meaning.mp3 and /dev/null differ diff --git a/files/06_0108.jpg b/files/06_0108.jpg deleted file mode 100644 index a4f1d376b..000000000 Binary files a/files/06_0108.jpg and /dev/null differ diff --git a/files/06_0108.mp3 b/files/06_0108.mp3 deleted file mode 100644 index d91e93ca3..000000000 Binary files a/files/06_0108.mp3 and /dev/null differ diff --git a/files/06_0108_example.mp3 b/files/06_0108_example.mp3 deleted file mode 100644 index dff21b611..000000000 Binary files a/files/06_0108_example.mp3 and /dev/null differ diff --git a/files/06_0108_meaning.mp3 b/files/06_0108_meaning.mp3 deleted file mode 100644 index 705f04eec..000000000 Binary files a/files/06_0108_meaning.mp3 and /dev/null differ diff --git a/files/06_0109.jpg b/files/06_0109.jpg deleted file mode 100644 index 5141ca2f8..000000000 Binary files a/files/06_0109.jpg and /dev/null differ diff --git a/files/06_0109.mp3 b/files/06_0109.mp3 deleted file mode 100644 index 983ae1fc7..000000000 Binary files a/files/06_0109.mp3 and /dev/null differ diff --git a/files/06_0109_example.mp3 b/files/06_0109_example.mp3 deleted file mode 100644 index a16713176..000000000 Binary files a/files/06_0109_example.mp3 and /dev/null differ diff --git a/files/06_0109_meaning.mp3 b/files/06_0109_meaning.mp3 deleted file mode 100644 index 880439567..000000000 Binary files a/files/06_0109_meaning.mp3 and /dev/null differ diff --git a/files/06_0110.jpg b/files/06_0110.jpg deleted file mode 100644 index d7969afda..000000000 Binary files a/files/06_0110.jpg and /dev/null differ diff --git a/files/06_0110.mp3 b/files/06_0110.mp3 deleted file mode 100644 index ae2573454..000000000 Binary files a/files/06_0110.mp3 and /dev/null differ diff --git a/files/06_0110_example.mp3 b/files/06_0110_example.mp3 deleted file mode 100644 index fc3e80d89..000000000 Binary files a/files/06_0110_example.mp3 and /dev/null differ diff --git a/files/06_0110_meaning.mp3 b/files/06_0110_meaning.mp3 deleted file mode 100644 index 7fdd6fcb4..000000000 Binary files a/files/06_0110_meaning.mp3 and /dev/null differ diff --git a/files/06_0111.jpg b/files/06_0111.jpg deleted file mode 100644 index 5b943b079..000000000 Binary files a/files/06_0111.jpg and /dev/null differ diff --git a/files/06_0111.mp3 b/files/06_0111.mp3 deleted file mode 100644 index 5b14f3a76..000000000 Binary files a/files/06_0111.mp3 and /dev/null differ diff --git a/files/06_0111_example.mp3 b/files/06_0111_example.mp3 deleted file mode 100644 index 03b2d5e98..000000000 Binary files a/files/06_0111_example.mp3 and /dev/null differ diff --git a/files/06_0111_meaning.mp3 b/files/06_0111_meaning.mp3 deleted file mode 100644 index 0b01423c0..000000000 Binary files a/files/06_0111_meaning.mp3 and /dev/null differ diff --git a/files/06_0112.jpg b/files/06_0112.jpg deleted file mode 100644 index 7825fc1b7..000000000 Binary files a/files/06_0112.jpg and /dev/null differ diff --git a/files/06_0112.mp3 b/files/06_0112.mp3 deleted file mode 100644 index f28dc23dd..000000000 Binary files a/files/06_0112.mp3 and /dev/null differ diff --git a/files/06_0112_example.mp3 b/files/06_0112_example.mp3 deleted file mode 100644 index fa5544bdf..000000000 Binary files a/files/06_0112_example.mp3 and /dev/null differ diff --git a/files/06_0112_meaning.mp3 b/files/06_0112_meaning.mp3 deleted file mode 100644 index 4167a3ab5..000000000 Binary files a/files/06_0112_meaning.mp3 and /dev/null differ diff --git a/files/06_0113.jpg b/files/06_0113.jpg deleted file mode 100644 index c74685444..000000000 Binary files a/files/06_0113.jpg and /dev/null differ diff --git a/files/06_0113.mp3 b/files/06_0113.mp3 deleted file mode 100644 index c3e21725f..000000000 Binary files a/files/06_0113.mp3 and /dev/null differ diff --git a/files/06_0113_example.mp3 b/files/06_0113_example.mp3 deleted file mode 100644 index afb7243b9..000000000 Binary files a/files/06_0113_example.mp3 and /dev/null differ diff --git a/files/06_0113_meaning.mp3 b/files/06_0113_meaning.mp3 deleted file mode 100644 index da1632f80..000000000 Binary files a/files/06_0113_meaning.mp3 and /dev/null differ diff --git a/files/06_0114.jpg b/files/06_0114.jpg deleted file mode 100644 index 53ffe1614..000000000 Binary files a/files/06_0114.jpg and /dev/null differ diff --git a/files/06_0114.mp3 b/files/06_0114.mp3 deleted file mode 100644 index 57a1b3f1b..000000000 Binary files a/files/06_0114.mp3 and /dev/null differ diff --git a/files/06_0114_example.mp3 b/files/06_0114_example.mp3 deleted file mode 100644 index c1075f0f2..000000000 Binary files a/files/06_0114_example.mp3 and /dev/null differ diff --git a/files/06_0114_meaning.mp3 b/files/06_0114_meaning.mp3 deleted file mode 100644 index 2aee8dbc3..000000000 Binary files a/files/06_0114_meaning.mp3 and /dev/null differ diff --git a/files/06_0115.jpg b/files/06_0115.jpg deleted file mode 100644 index 5102672e3..000000000 Binary files a/files/06_0115.jpg and /dev/null differ diff --git a/files/06_0115.mp3 b/files/06_0115.mp3 deleted file mode 100644 index 1e6421e00..000000000 Binary files a/files/06_0115.mp3 and /dev/null differ diff --git a/files/06_0115_example.mp3 b/files/06_0115_example.mp3 deleted file mode 100644 index 25d51c83d..000000000 Binary files a/files/06_0115_example.mp3 and /dev/null differ diff --git a/files/06_0115_meaning.mp3 b/files/06_0115_meaning.mp3 deleted file mode 100644 index 72fba8b6e..000000000 Binary files a/files/06_0115_meaning.mp3 and /dev/null differ diff --git a/files/06_0116.jpg b/files/06_0116.jpg deleted file mode 100644 index e1870eebe..000000000 Binary files a/files/06_0116.jpg and /dev/null differ diff --git a/files/06_0116.mp3 b/files/06_0116.mp3 deleted file mode 100644 index e2f9b004d..000000000 Binary files a/files/06_0116.mp3 and /dev/null differ diff --git a/files/06_0116_example.mp3 b/files/06_0116_example.mp3 deleted file mode 100644 index d3fbdb683..000000000 Binary files a/files/06_0116_example.mp3 and /dev/null differ diff --git a/files/06_0116_meaning.mp3 b/files/06_0116_meaning.mp3 deleted file mode 100644 index 5733f4c28..000000000 Binary files a/files/06_0116_meaning.mp3 and /dev/null differ diff --git a/files/06_0117.jpg b/files/06_0117.jpg deleted file mode 100644 index a65cab707..000000000 Binary files a/files/06_0117.jpg and /dev/null differ diff --git a/files/06_0117.mp3 b/files/06_0117.mp3 deleted file mode 100644 index 31785343a..000000000 Binary files a/files/06_0117.mp3 and /dev/null differ diff --git a/files/06_0117_example.mp3 b/files/06_0117_example.mp3 deleted file mode 100644 index fdd80eb26..000000000 Binary files a/files/06_0117_example.mp3 and /dev/null differ diff --git a/files/06_0117_meaning.mp3 b/files/06_0117_meaning.mp3 deleted file mode 100644 index 4b9de4e17..000000000 Binary files a/files/06_0117_meaning.mp3 and /dev/null differ diff --git a/files/06_0118.jpg b/files/06_0118.jpg deleted file mode 100644 index 03432ff10..000000000 Binary files a/files/06_0118.jpg and /dev/null differ diff --git a/files/06_0118.mp3 b/files/06_0118.mp3 deleted file mode 100644 index 510b70a22..000000000 Binary files a/files/06_0118.mp3 and /dev/null differ diff --git a/files/06_0118_example.mp3 b/files/06_0118_example.mp3 deleted file mode 100644 index 51bc08cc4..000000000 Binary files a/files/06_0118_example.mp3 and /dev/null differ diff --git a/files/06_0118_meaning.mp3 b/files/06_0118_meaning.mp3 deleted file mode 100644 index 6447074d9..000000000 Binary files a/files/06_0118_meaning.mp3 and /dev/null differ diff --git a/files/06_0119.jpg b/files/06_0119.jpg deleted file mode 100644 index 0710a620d..000000000 Binary files a/files/06_0119.jpg and /dev/null differ diff --git a/files/06_0119.mp3 b/files/06_0119.mp3 deleted file mode 100644 index 630223f26..000000000 Binary files a/files/06_0119.mp3 and /dev/null differ diff --git a/files/06_0119_example.mp3 b/files/06_0119_example.mp3 deleted file mode 100644 index 5406891f6..000000000 Binary files a/files/06_0119_example.mp3 and /dev/null differ diff --git a/files/06_0119_meaning.mp3 b/files/06_0119_meaning.mp3 deleted file mode 100644 index 3b7548990..000000000 Binary files a/files/06_0119_meaning.mp3 and /dev/null differ diff --git a/files/06_0120.jpg b/files/06_0120.jpg deleted file mode 100644 index bedbfa3b3..000000000 Binary files a/files/06_0120.jpg and /dev/null differ diff --git a/files/06_0120.mp3 b/files/06_0120.mp3 deleted file mode 100644 index 8cf079a0d..000000000 Binary files a/files/06_0120.mp3 and /dev/null differ diff --git a/files/06_0120_example.mp3 b/files/06_0120_example.mp3 deleted file mode 100644 index 105dadadb..000000000 Binary files a/files/06_0120_example.mp3 and /dev/null differ diff --git a/files/06_0120_meaning.mp3 b/files/06_0120_meaning.mp3 deleted file mode 100644 index c9f470dcb..000000000 Binary files a/files/06_0120_meaning.mp3 and /dev/null differ diff --git a/files/06_0701.jpg b/files/06_0701.jpg deleted file mode 100644 index 7cb986621..000000000 Binary files a/files/06_0701.jpg and /dev/null differ diff --git a/files/06_0701.mp3 b/files/06_0701.mp3 deleted file mode 100644 index 31cd78dce..000000000 Binary files a/files/06_0701.mp3 and /dev/null differ diff --git a/files/06_0701_example.mp3 b/files/06_0701_example.mp3 deleted file mode 100644 index fdd281b9f..000000000 Binary files a/files/06_0701_example.mp3 and /dev/null differ diff --git a/files/06_0701_meaning.mp3 b/files/06_0701_meaning.mp3 deleted file mode 100644 index 759c46b70..000000000 Binary files a/files/06_0701_meaning.mp3 and /dev/null differ diff --git a/files/06_0702.jpg b/files/06_0702.jpg deleted file mode 100644 index 61ffa9b6c..000000000 Binary files a/files/06_0702.jpg and /dev/null differ diff --git a/files/06_0702.mp3 b/files/06_0702.mp3 deleted file mode 100644 index d3a1c4491..000000000 Binary files a/files/06_0702.mp3 and /dev/null differ diff --git a/files/06_0702_example.mp3 b/files/06_0702_example.mp3 deleted file mode 100644 index 750603396..000000000 Binary files a/files/06_0702_example.mp3 and /dev/null differ diff --git a/files/06_0702_meaning.mp3 b/files/06_0702_meaning.mp3 deleted file mode 100644 index 786f07d76..000000000 Binary files a/files/06_0702_meaning.mp3 and /dev/null differ diff --git a/files/06_0703.jpg b/files/06_0703.jpg deleted file mode 100644 index 23e1192ba..000000000 Binary files a/files/06_0703.jpg and /dev/null differ diff --git a/files/06_0703.mp3 b/files/06_0703.mp3 deleted file mode 100644 index 067ba0115..000000000 Binary files a/files/06_0703.mp3 and /dev/null differ diff --git a/files/06_0703_example.mp3 b/files/06_0703_example.mp3 deleted file mode 100644 index 193163811..000000000 Binary files a/files/06_0703_example.mp3 and /dev/null differ diff --git a/files/06_0703_meaning.mp3 b/files/06_0703_meaning.mp3 deleted file mode 100644 index c5c85499c..000000000 Binary files a/files/06_0703_meaning.mp3 and /dev/null differ diff --git a/files/06_0704.jpg b/files/06_0704.jpg deleted file mode 100644 index f7eeb5c69..000000000 Binary files a/files/06_0704.jpg and /dev/null differ diff --git a/files/06_0704.mp3 b/files/06_0704.mp3 deleted file mode 100644 index d837b6bd2..000000000 Binary files a/files/06_0704.mp3 and /dev/null differ diff --git a/files/06_0704_example.mp3 b/files/06_0704_example.mp3 deleted file mode 100644 index 96ff554e2..000000000 Binary files a/files/06_0704_example.mp3 and /dev/null differ diff --git a/files/06_0704_meaning.mp3 b/files/06_0704_meaning.mp3 deleted file mode 100644 index ce5b66f38..000000000 Binary files a/files/06_0704_meaning.mp3 and /dev/null differ diff --git a/files/06_0705.jpg b/files/06_0705.jpg deleted file mode 100644 index 8e1c8b5df..000000000 Binary files a/files/06_0705.jpg and /dev/null differ diff --git a/files/06_0705.mp3 b/files/06_0705.mp3 deleted file mode 100644 index 3865adabb..000000000 Binary files a/files/06_0705.mp3 and /dev/null differ diff --git a/files/06_0705_example.mp3 b/files/06_0705_example.mp3 deleted file mode 100644 index 3d8c2f067..000000000 Binary files a/files/06_0705_example.mp3 and /dev/null differ diff --git a/files/06_0705_meaning.mp3 b/files/06_0705_meaning.mp3 deleted file mode 100644 index b9e7c03bb..000000000 Binary files a/files/06_0705_meaning.mp3 and /dev/null differ diff --git a/files/06_0706.jpg b/files/06_0706.jpg deleted file mode 100644 index d29b1ccb0..000000000 Binary files a/files/06_0706.jpg and /dev/null differ diff --git a/files/06_0706.mp3 b/files/06_0706.mp3 deleted file mode 100644 index b572325e7..000000000 Binary files a/files/06_0706.mp3 and /dev/null differ diff --git a/files/06_0706_example.mp3 b/files/06_0706_example.mp3 deleted file mode 100644 index 8f1337e97..000000000 Binary files a/files/06_0706_example.mp3 and /dev/null differ diff --git a/files/06_0706_meaning.mp3 b/files/06_0706_meaning.mp3 deleted file mode 100644 index bf7eafa8b..000000000 Binary files a/files/06_0706_meaning.mp3 and /dev/null differ diff --git a/files/06_0707.jpg b/files/06_0707.jpg deleted file mode 100644 index 9849dbb89..000000000 Binary files a/files/06_0707.jpg and /dev/null differ diff --git a/files/06_0707.mp3 b/files/06_0707.mp3 deleted file mode 100644 index dac4bd1fe..000000000 Binary files a/files/06_0707.mp3 and /dev/null differ diff --git a/files/06_0707_example.mp3 b/files/06_0707_example.mp3 deleted file mode 100644 index f6aef553d..000000000 Binary files a/files/06_0707_example.mp3 and /dev/null differ diff --git a/files/06_0707_meaning.mp3 b/files/06_0707_meaning.mp3 deleted file mode 100644 index 3267a18fe..000000000 Binary files a/files/06_0707_meaning.mp3 and /dev/null differ diff --git a/files/06_0708.jpg b/files/06_0708.jpg deleted file mode 100644 index 03320f980..000000000 Binary files a/files/06_0708.jpg and /dev/null differ diff --git a/files/06_0708.mp3 b/files/06_0708.mp3 deleted file mode 100644 index 43b60f7e8..000000000 Binary files a/files/06_0708.mp3 and /dev/null differ diff --git a/files/06_0708_example.mp3 b/files/06_0708_example.mp3 deleted file mode 100644 index 0cb8f2550..000000000 Binary files a/files/06_0708_example.mp3 and /dev/null differ diff --git a/files/06_0708_meaning.mp3 b/files/06_0708_meaning.mp3 deleted file mode 100644 index b0b46c2e1..000000000 Binary files a/files/06_0708_meaning.mp3 and /dev/null differ diff --git a/files/06_0709.jpg b/files/06_0709.jpg deleted file mode 100644 index 7fd5142f5..000000000 Binary files a/files/06_0709.jpg and /dev/null differ diff --git a/files/06_0709.mp3 b/files/06_0709.mp3 deleted file mode 100644 index b77c014c7..000000000 Binary files a/files/06_0709.mp3 and /dev/null differ diff --git a/files/06_0709_example.mp3 b/files/06_0709_example.mp3 deleted file mode 100644 index e2d029907..000000000 Binary files a/files/06_0709_example.mp3 and /dev/null differ diff --git a/files/06_0709_meaning.mp3 b/files/06_0709_meaning.mp3 deleted file mode 100644 index ad89d6b35..000000000 Binary files a/files/06_0709_meaning.mp3 and /dev/null differ diff --git a/files/06_0710.jpg b/files/06_0710.jpg deleted file mode 100644 index e3aa00521..000000000 Binary files a/files/06_0710.jpg and /dev/null differ diff --git a/files/06_0710.mp3 b/files/06_0710.mp3 deleted file mode 100644 index 89f656dea..000000000 Binary files a/files/06_0710.mp3 and /dev/null differ diff --git a/files/06_0710_example.mp3 b/files/06_0710_example.mp3 deleted file mode 100644 index 54507e667..000000000 Binary files a/files/06_0710_example.mp3 and /dev/null differ diff --git a/files/06_0710_meaning.mp3 b/files/06_0710_meaning.mp3 deleted file mode 100644 index a75212e40..000000000 Binary files a/files/06_0710_meaning.mp3 and /dev/null differ diff --git a/files/06_0711.jpg b/files/06_0711.jpg deleted file mode 100644 index 2098c5b85..000000000 Binary files a/files/06_0711.jpg and /dev/null differ diff --git a/files/06_0711.mp3 b/files/06_0711.mp3 deleted file mode 100644 index a2aa9c6d6..000000000 Binary files a/files/06_0711.mp3 and /dev/null differ diff --git a/files/06_0711_example.mp3 b/files/06_0711_example.mp3 deleted file mode 100644 index 0a147573a..000000000 Binary files a/files/06_0711_example.mp3 and /dev/null differ diff --git a/files/06_0711_meaning.mp3 b/files/06_0711_meaning.mp3 deleted file mode 100644 index adc0bdafa..000000000 Binary files a/files/06_0711_meaning.mp3 and /dev/null differ diff --git a/files/06_0712.jpg b/files/06_0712.jpg deleted file mode 100644 index 807e44d17..000000000 Binary files a/files/06_0712.jpg and /dev/null differ diff --git a/files/06_0712.mp3 b/files/06_0712.mp3 deleted file mode 100644 index 79b4f4815..000000000 Binary files a/files/06_0712.mp3 and /dev/null differ diff --git a/files/06_0712_example.mp3 b/files/06_0712_example.mp3 deleted file mode 100644 index 1b91b8c93..000000000 Binary files a/files/06_0712_example.mp3 and /dev/null differ diff --git a/files/06_0712_meaning.mp3 b/files/06_0712_meaning.mp3 deleted file mode 100644 index ea167b3e6..000000000 Binary files a/files/06_0712_meaning.mp3 and /dev/null differ diff --git a/files/06_0713.jpg b/files/06_0713.jpg deleted file mode 100644 index 36326d743..000000000 Binary files a/files/06_0713.jpg and /dev/null differ diff --git a/files/06_0713.mp3 b/files/06_0713.mp3 deleted file mode 100644 index de6da25d5..000000000 Binary files a/files/06_0713.mp3 and /dev/null differ diff --git a/files/06_0713_example.mp3 b/files/06_0713_example.mp3 deleted file mode 100644 index 3953ba448..000000000 Binary files a/files/06_0713_example.mp3 and /dev/null differ diff --git a/files/06_0713_meaning.mp3 b/files/06_0713_meaning.mp3 deleted file mode 100644 index 720220c2d..000000000 Binary files a/files/06_0713_meaning.mp3 and /dev/null differ diff --git a/files/06_0714.jpg b/files/06_0714.jpg deleted file mode 100644 index cb0e99a34..000000000 Binary files a/files/06_0714.jpg and /dev/null differ diff --git a/files/06_0714.mp3 b/files/06_0714.mp3 deleted file mode 100644 index 31b3a29e0..000000000 Binary files a/files/06_0714.mp3 and /dev/null differ diff --git a/files/06_0714_example.mp3 b/files/06_0714_example.mp3 deleted file mode 100644 index feae63acb..000000000 Binary files a/files/06_0714_example.mp3 and /dev/null differ diff --git a/files/06_0714_meaning.mp3 b/files/06_0714_meaning.mp3 deleted file mode 100644 index 6c1512249..000000000 Binary files a/files/06_0714_meaning.mp3 and /dev/null differ diff --git a/files/06_0715.jpg b/files/06_0715.jpg deleted file mode 100644 index 1e1fff96e..000000000 Binary files a/files/06_0715.jpg and /dev/null differ diff --git a/files/06_0715.mp3 b/files/06_0715.mp3 deleted file mode 100644 index 08b1993cb..000000000 Binary files a/files/06_0715.mp3 and /dev/null differ diff --git a/files/06_0715_example.mp3 b/files/06_0715_example.mp3 deleted file mode 100644 index 90ba06d77..000000000 Binary files a/files/06_0715_example.mp3 and /dev/null differ diff --git a/files/06_0715_meaning.mp3 b/files/06_0715_meaning.mp3 deleted file mode 100644 index 628921ea4..000000000 Binary files a/files/06_0715_meaning.mp3 and /dev/null differ diff --git a/files/06_0716.jpg b/files/06_0716.jpg deleted file mode 100644 index 935a0ca3e..000000000 Binary files a/files/06_0716.jpg and /dev/null differ diff --git a/files/06_0716.mp3 b/files/06_0716.mp3 deleted file mode 100644 index 993493322..000000000 Binary files a/files/06_0716.mp3 and /dev/null differ diff --git a/files/06_0716_example.mp3 b/files/06_0716_example.mp3 deleted file mode 100644 index 64d87f62c..000000000 Binary files a/files/06_0716_example.mp3 and /dev/null differ diff --git a/files/06_0716_meaning.mp3 b/files/06_0716_meaning.mp3 deleted file mode 100644 index bc37afec8..000000000 Binary files a/files/06_0716_meaning.mp3 and /dev/null differ diff --git a/files/06_0717.jpg b/files/06_0717.jpg deleted file mode 100644 index 9eb796ee9..000000000 Binary files a/files/06_0717.jpg and /dev/null differ diff --git a/files/06_0717.mp3 b/files/06_0717.mp3 deleted file mode 100644 index 48b7a71de..000000000 Binary files a/files/06_0717.mp3 and /dev/null differ diff --git a/files/06_0717_example.mp3 b/files/06_0717_example.mp3 deleted file mode 100644 index c5c081b8d..000000000 Binary files a/files/06_0717_example.mp3 and /dev/null differ diff --git a/files/06_0717_meaning.mp3 b/files/06_0717_meaning.mp3 deleted file mode 100644 index f83cb64bc..000000000 Binary files a/files/06_0717_meaning.mp3 and /dev/null differ diff --git a/files/06_0718.jpg b/files/06_0718.jpg deleted file mode 100644 index 68c8d36ed..000000000 Binary files a/files/06_0718.jpg and /dev/null differ diff --git a/files/06_0718.mp3 b/files/06_0718.mp3 deleted file mode 100644 index 07ed29682..000000000 Binary files a/files/06_0718.mp3 and /dev/null differ diff --git a/files/06_0718_example.mp3 b/files/06_0718_example.mp3 deleted file mode 100644 index 7c9fb2645..000000000 Binary files a/files/06_0718_example.mp3 and /dev/null differ diff --git a/files/06_0718_meaning.mp3 b/files/06_0718_meaning.mp3 deleted file mode 100644 index 67ed8ba8d..000000000 Binary files a/files/06_0718_meaning.mp3 and /dev/null differ diff --git a/files/06_0719.jpg b/files/06_0719.jpg deleted file mode 100644 index 20215011a..000000000 Binary files a/files/06_0719.jpg and /dev/null differ diff --git a/files/06_0719.mp3 b/files/06_0719.mp3 deleted file mode 100644 index 898529315..000000000 Binary files a/files/06_0719.mp3 and /dev/null differ diff --git a/files/06_0719_example.mp3 b/files/06_0719_example.mp3 deleted file mode 100644 index 854ef786c..000000000 Binary files a/files/06_0719_example.mp3 and /dev/null differ diff --git a/files/06_0719_meaning.mp3 b/files/06_0719_meaning.mp3 deleted file mode 100644 index 1d4787b0b..000000000 Binary files a/files/06_0719_meaning.mp3 and /dev/null differ diff --git a/files/06_0720.jpg b/files/06_0720.jpg deleted file mode 100644 index 19804d34f..000000000 Binary files a/files/06_0720.jpg and /dev/null differ diff --git a/files/06_0720.mp3 b/files/06_0720.mp3 deleted file mode 100644 index 1c205ed3d..000000000 Binary files a/files/06_0720.mp3 and /dev/null differ diff --git a/files/06_0720_example.mp3 b/files/06_0720_example.mp3 deleted file mode 100644 index ccc34ce18..000000000 Binary files a/files/06_0720_example.mp3 and /dev/null differ diff --git a/files/06_0720_meaning.mp3 b/files/06_0720_meaning.mp3 deleted file mode 100644 index 115dc5455..000000000 Binary files a/files/06_0720_meaning.mp3 and /dev/null differ diff --git a/files/06_1301.jpg b/files/06_1301.jpg deleted file mode 100644 index e5373a4b4..000000000 Binary files a/files/06_1301.jpg and /dev/null differ diff --git a/files/06_1301.mp3 b/files/06_1301.mp3 deleted file mode 100644 index 0c97f23b8..000000000 Binary files a/files/06_1301.mp3 and /dev/null differ diff --git a/files/06_1301_example.mp3 b/files/06_1301_example.mp3 deleted file mode 100644 index 7fecb5111..000000000 Binary files a/files/06_1301_example.mp3 and /dev/null differ diff --git a/files/06_1301_meaning.mp3 b/files/06_1301_meaning.mp3 deleted file mode 100644 index c681fe34d..000000000 Binary files a/files/06_1301_meaning.mp3 and /dev/null differ diff --git a/files/06_1302.jpg b/files/06_1302.jpg deleted file mode 100644 index f3e10be0c..000000000 Binary files a/files/06_1302.jpg and /dev/null differ diff --git a/files/06_1302.mp3 b/files/06_1302.mp3 deleted file mode 100644 index 2db325caf..000000000 Binary files a/files/06_1302.mp3 and /dev/null differ diff --git a/files/06_1302_example.mp3 b/files/06_1302_example.mp3 deleted file mode 100644 index acf20d523..000000000 Binary files a/files/06_1302_example.mp3 and /dev/null differ diff --git a/files/06_1302_meaning.mp3 b/files/06_1302_meaning.mp3 deleted file mode 100644 index 826334731..000000000 Binary files a/files/06_1302_meaning.mp3 and /dev/null differ diff --git a/files/06_1303.jpg b/files/06_1303.jpg deleted file mode 100644 index 79c7f2810..000000000 Binary files a/files/06_1303.jpg and /dev/null differ diff --git a/files/06_1303.mp3 b/files/06_1303.mp3 deleted file mode 100644 index 5667074a0..000000000 Binary files a/files/06_1303.mp3 and /dev/null differ diff --git a/files/06_1303_example.mp3 b/files/06_1303_example.mp3 deleted file mode 100644 index 361f59a2a..000000000 Binary files a/files/06_1303_example.mp3 and /dev/null differ diff --git a/files/06_1303_meaning.mp3 b/files/06_1303_meaning.mp3 deleted file mode 100644 index f3d3929d8..000000000 Binary files a/files/06_1303_meaning.mp3 and /dev/null differ diff --git a/files/06_1304.jpg b/files/06_1304.jpg deleted file mode 100644 index 458e02293..000000000 Binary files a/files/06_1304.jpg and /dev/null differ diff --git a/files/06_1304.mp3 b/files/06_1304.mp3 deleted file mode 100644 index 5c832cb04..000000000 Binary files a/files/06_1304.mp3 and /dev/null differ diff --git a/files/06_1304_example.mp3 b/files/06_1304_example.mp3 deleted file mode 100644 index b9424059e..000000000 Binary files a/files/06_1304_example.mp3 and /dev/null differ diff --git a/files/06_1304_meaning.mp3 b/files/06_1304_meaning.mp3 deleted file mode 100644 index 53068fb12..000000000 Binary files a/files/06_1304_meaning.mp3 and /dev/null differ diff --git a/files/06_1305.jpg b/files/06_1305.jpg deleted file mode 100644 index 8ea20e3a2..000000000 Binary files a/files/06_1305.jpg and /dev/null differ diff --git a/files/06_1305.mp3 b/files/06_1305.mp3 deleted file mode 100644 index 2fba4e631..000000000 Binary files a/files/06_1305.mp3 and /dev/null differ diff --git a/files/06_1305_example.mp3 b/files/06_1305_example.mp3 deleted file mode 100644 index 31d8c26a2..000000000 Binary files a/files/06_1305_example.mp3 and /dev/null differ diff --git a/files/06_1305_meaning.mp3 b/files/06_1305_meaning.mp3 deleted file mode 100644 index 99b83654f..000000000 Binary files a/files/06_1305_meaning.mp3 and /dev/null differ diff --git a/files/06_1306.jpg b/files/06_1306.jpg deleted file mode 100644 index f8b770300..000000000 Binary files a/files/06_1306.jpg and /dev/null differ diff --git a/files/06_1306.mp3 b/files/06_1306.mp3 deleted file mode 100644 index 5de89a768..000000000 Binary files a/files/06_1306.mp3 and /dev/null differ diff --git a/files/06_1306_example.mp3 b/files/06_1306_example.mp3 deleted file mode 100644 index c5df98b50..000000000 Binary files a/files/06_1306_example.mp3 and /dev/null differ diff --git a/files/06_1306_meaning.mp3 b/files/06_1306_meaning.mp3 deleted file mode 100644 index c45ba3c82..000000000 Binary files a/files/06_1306_meaning.mp3 and /dev/null differ diff --git a/files/06_1307.jpg b/files/06_1307.jpg deleted file mode 100644 index e8524bce2..000000000 Binary files a/files/06_1307.jpg and /dev/null differ diff --git a/files/06_1307.mp3 b/files/06_1307.mp3 deleted file mode 100644 index d9b3b7806..000000000 Binary files a/files/06_1307.mp3 and /dev/null differ diff --git a/files/06_1307_example.mp3 b/files/06_1307_example.mp3 deleted file mode 100644 index e7549263e..000000000 Binary files a/files/06_1307_example.mp3 and /dev/null differ diff --git a/files/06_1307_meaning.mp3 b/files/06_1307_meaning.mp3 deleted file mode 100644 index b19ac53d3..000000000 Binary files a/files/06_1307_meaning.mp3 and /dev/null differ diff --git a/files/06_1308.jpg b/files/06_1308.jpg deleted file mode 100644 index bf844f799..000000000 Binary files a/files/06_1308.jpg and /dev/null differ diff --git a/files/06_1308.mp3 b/files/06_1308.mp3 deleted file mode 100644 index c9b4754c6..000000000 Binary files a/files/06_1308.mp3 and /dev/null differ diff --git a/files/06_1308_example.mp3 b/files/06_1308_example.mp3 deleted file mode 100644 index dd47b0e3c..000000000 Binary files a/files/06_1308_example.mp3 and /dev/null differ diff --git a/files/06_1308_meaning.mp3 b/files/06_1308_meaning.mp3 deleted file mode 100644 index efe8fd169..000000000 Binary files a/files/06_1308_meaning.mp3 and /dev/null differ diff --git a/files/06_1309.jpg b/files/06_1309.jpg deleted file mode 100644 index 8a86aa64e..000000000 Binary files a/files/06_1309.jpg and /dev/null differ diff --git a/files/06_1309.mp3 b/files/06_1309.mp3 deleted file mode 100644 index 6ded4f593..000000000 Binary files a/files/06_1309.mp3 and /dev/null differ diff --git a/files/06_1309_example.mp3 b/files/06_1309_example.mp3 deleted file mode 100644 index e2c69ca23..000000000 Binary files a/files/06_1309_example.mp3 and /dev/null differ diff --git a/files/06_1309_meaning.mp3 b/files/06_1309_meaning.mp3 deleted file mode 100644 index 43b275933..000000000 Binary files a/files/06_1309_meaning.mp3 and /dev/null differ diff --git a/files/06_1310.jpg b/files/06_1310.jpg deleted file mode 100644 index 219ae8007..000000000 Binary files a/files/06_1310.jpg and /dev/null differ diff --git a/files/06_1310.mp3 b/files/06_1310.mp3 deleted file mode 100644 index 5d98d59d2..000000000 Binary files a/files/06_1310.mp3 and /dev/null differ diff --git a/files/06_1310_example.mp3 b/files/06_1310_example.mp3 deleted file mode 100644 index cfbf34910..000000000 Binary files a/files/06_1310_example.mp3 and /dev/null differ diff --git a/files/06_1310_meaning.mp3 b/files/06_1310_meaning.mp3 deleted file mode 100644 index 316b6cc86..000000000 Binary files a/files/06_1310_meaning.mp3 and /dev/null differ diff --git a/files/06_1311.jpg b/files/06_1311.jpg deleted file mode 100644 index b3453a6e1..000000000 Binary files a/files/06_1311.jpg and /dev/null differ diff --git a/files/06_1311.mp3 b/files/06_1311.mp3 deleted file mode 100644 index 16cea71ac..000000000 Binary files a/files/06_1311.mp3 and /dev/null differ diff --git a/files/06_1311_example.mp3 b/files/06_1311_example.mp3 deleted file mode 100644 index bb91dea4c..000000000 Binary files a/files/06_1311_example.mp3 and /dev/null differ diff --git a/files/06_1311_meaning.mp3 b/files/06_1311_meaning.mp3 deleted file mode 100644 index 724e08aab..000000000 Binary files a/files/06_1311_meaning.mp3 and /dev/null differ diff --git a/files/06_1312.jpg b/files/06_1312.jpg deleted file mode 100644 index 485ab074a..000000000 Binary files a/files/06_1312.jpg and /dev/null differ diff --git a/files/06_1312.mp3 b/files/06_1312.mp3 deleted file mode 100644 index 55f7cdacf..000000000 Binary files a/files/06_1312.mp3 and /dev/null differ diff --git a/files/06_1312_example.mp3 b/files/06_1312_example.mp3 deleted file mode 100644 index a556c0ca9..000000000 Binary files a/files/06_1312_example.mp3 and /dev/null differ diff --git a/files/06_1312_meaning.mp3 b/files/06_1312_meaning.mp3 deleted file mode 100644 index a83a2416d..000000000 Binary files a/files/06_1312_meaning.mp3 and /dev/null differ diff --git a/files/06_1313.jpg b/files/06_1313.jpg deleted file mode 100644 index c2f45f24e..000000000 Binary files a/files/06_1313.jpg and /dev/null differ diff --git a/files/06_1313.mp3 b/files/06_1313.mp3 deleted file mode 100644 index f7f9b75c6..000000000 Binary files a/files/06_1313.mp3 and /dev/null differ diff --git a/files/06_1313_example.mp3 b/files/06_1313_example.mp3 deleted file mode 100644 index 2a0823016..000000000 Binary files a/files/06_1313_example.mp3 and /dev/null differ diff --git a/files/06_1313_meaning.mp3 b/files/06_1313_meaning.mp3 deleted file mode 100644 index b3a995b91..000000000 Binary files a/files/06_1313_meaning.mp3 and /dev/null differ diff --git a/files/06_1314.jpg b/files/06_1314.jpg deleted file mode 100644 index 12db5ac2b..000000000 Binary files a/files/06_1314.jpg and /dev/null differ diff --git a/files/06_1314.mp3 b/files/06_1314.mp3 deleted file mode 100644 index e89805341..000000000 Binary files a/files/06_1314.mp3 and /dev/null differ diff --git a/files/06_1314_example.mp3 b/files/06_1314_example.mp3 deleted file mode 100644 index 77458b704..000000000 Binary files a/files/06_1314_example.mp3 and /dev/null differ diff --git a/files/06_1314_meaning.mp3 b/files/06_1314_meaning.mp3 deleted file mode 100644 index dc9276bfb..000000000 Binary files a/files/06_1314_meaning.mp3 and /dev/null differ diff --git a/files/06_1315.jpg b/files/06_1315.jpg deleted file mode 100644 index f91be511e..000000000 Binary files a/files/06_1315.jpg and /dev/null differ diff --git a/files/06_1315.mp3 b/files/06_1315.mp3 deleted file mode 100644 index dd86035a1..000000000 Binary files a/files/06_1315.mp3 and /dev/null differ diff --git a/files/06_1315_example.mp3 b/files/06_1315_example.mp3 deleted file mode 100644 index eb85f93c5..000000000 Binary files a/files/06_1315_example.mp3 and /dev/null differ diff --git a/files/06_1315_meaning.mp3 b/files/06_1315_meaning.mp3 deleted file mode 100644 index 4ea6ba004..000000000 Binary files a/files/06_1315_meaning.mp3 and /dev/null differ diff --git a/files/06_1316.jpg b/files/06_1316.jpg deleted file mode 100644 index 1fefcfbb8..000000000 Binary files a/files/06_1316.jpg and /dev/null differ diff --git a/files/06_1316.mp3 b/files/06_1316.mp3 deleted file mode 100644 index 0683ad89e..000000000 Binary files a/files/06_1316.mp3 and /dev/null differ diff --git a/files/06_1316_example.mp3 b/files/06_1316_example.mp3 deleted file mode 100644 index a2963e277..000000000 Binary files a/files/06_1316_example.mp3 and /dev/null differ diff --git a/files/06_1316_meaning.mp3 b/files/06_1316_meaning.mp3 deleted file mode 100644 index ff31ea0c4..000000000 Binary files a/files/06_1316_meaning.mp3 and /dev/null differ diff --git a/files/06_1317.jpg b/files/06_1317.jpg deleted file mode 100644 index cf4462a57..000000000 Binary files a/files/06_1317.jpg and /dev/null differ diff --git a/files/06_1317.mp3 b/files/06_1317.mp3 deleted file mode 100644 index 234de8c15..000000000 Binary files a/files/06_1317.mp3 and /dev/null differ diff --git a/files/06_1317_example.mp3 b/files/06_1317_example.mp3 deleted file mode 100644 index 6370408db..000000000 Binary files a/files/06_1317_example.mp3 and /dev/null differ diff --git a/files/06_1317_meaning.mp3 b/files/06_1317_meaning.mp3 deleted file mode 100644 index 7f1ecbb41..000000000 Binary files a/files/06_1317_meaning.mp3 and /dev/null differ diff --git a/files/06_1318.jpg b/files/06_1318.jpg deleted file mode 100644 index fe41490dc..000000000 Binary files a/files/06_1318.jpg and /dev/null differ diff --git a/files/06_1318.mp3 b/files/06_1318.mp3 deleted file mode 100644 index 0b22096eb..000000000 Binary files a/files/06_1318.mp3 and /dev/null differ diff --git a/files/06_1318_example.mp3 b/files/06_1318_example.mp3 deleted file mode 100644 index 59083358d..000000000 Binary files a/files/06_1318_example.mp3 and /dev/null differ diff --git a/files/06_1318_meaning.mp3 b/files/06_1318_meaning.mp3 deleted file mode 100644 index 83da7724e..000000000 Binary files a/files/06_1318_meaning.mp3 and /dev/null differ diff --git a/files/06_1319.jpg b/files/06_1319.jpg deleted file mode 100644 index 3103576bd..000000000 Binary files a/files/06_1319.jpg and /dev/null differ diff --git a/files/06_1319.mp3 b/files/06_1319.mp3 deleted file mode 100644 index f1306129e..000000000 Binary files a/files/06_1319.mp3 and /dev/null differ diff --git a/files/06_1319_example.mp3 b/files/06_1319_example.mp3 deleted file mode 100644 index 7a9070a73..000000000 Binary files a/files/06_1319_example.mp3 and /dev/null differ diff --git a/files/06_1319_meaning.mp3 b/files/06_1319_meaning.mp3 deleted file mode 100644 index e129ffa9f..000000000 Binary files a/files/06_1319_meaning.mp3 and /dev/null differ diff --git a/files/06_1320.jpg b/files/06_1320.jpg deleted file mode 100644 index c81bd9622..000000000 Binary files a/files/06_1320.jpg and /dev/null differ diff --git a/files/06_1320.mp3 b/files/06_1320.mp3 deleted file mode 100644 index d302be34d..000000000 Binary files a/files/06_1320.mp3 and /dev/null differ diff --git a/files/06_1320_example.mp3 b/files/06_1320_example.mp3 deleted file mode 100644 index 791c5c6d7..000000000 Binary files a/files/06_1320_example.mp3 and /dev/null differ diff --git a/files/06_1320_meaning.mp3 b/files/06_1320_meaning.mp3 deleted file mode 100644 index e7f8d92b6..000000000 Binary files a/files/06_1320_meaning.mp3 and /dev/null differ diff --git a/files/06_1901.jpg b/files/06_1901.jpg deleted file mode 100644 index ff3744055..000000000 Binary files a/files/06_1901.jpg and /dev/null differ diff --git a/files/06_1901.mp3 b/files/06_1901.mp3 deleted file mode 100644 index ea132b449..000000000 Binary files a/files/06_1901.mp3 and /dev/null differ diff --git a/files/06_1901_example.mp3 b/files/06_1901_example.mp3 deleted file mode 100644 index a52b4d16f..000000000 Binary files a/files/06_1901_example.mp3 and /dev/null differ diff --git a/files/06_1901_meaning.mp3 b/files/06_1901_meaning.mp3 deleted file mode 100644 index 47cfe7bde..000000000 Binary files a/files/06_1901_meaning.mp3 and /dev/null differ diff --git a/files/06_1902.jpg b/files/06_1902.jpg deleted file mode 100644 index efcd4f56d..000000000 Binary files a/files/06_1902.jpg and /dev/null differ diff --git a/files/06_1902.mp3 b/files/06_1902.mp3 deleted file mode 100644 index 8028683a7..000000000 Binary files a/files/06_1902.mp3 and /dev/null differ diff --git a/files/06_1902_example.mp3 b/files/06_1902_example.mp3 deleted file mode 100644 index 87891acdb..000000000 Binary files a/files/06_1902_example.mp3 and /dev/null differ diff --git a/files/06_1902_meaning.mp3 b/files/06_1902_meaning.mp3 deleted file mode 100644 index 309200636..000000000 Binary files a/files/06_1902_meaning.mp3 and /dev/null differ diff --git a/files/06_1903.jpg b/files/06_1903.jpg deleted file mode 100644 index ecaa7851f..000000000 Binary files a/files/06_1903.jpg and /dev/null differ diff --git a/files/06_1903.mp3 b/files/06_1903.mp3 deleted file mode 100644 index f0996332c..000000000 Binary files a/files/06_1903.mp3 and /dev/null differ diff --git a/files/06_1903_example.mp3 b/files/06_1903_example.mp3 deleted file mode 100644 index 6ed264986..000000000 Binary files a/files/06_1903_example.mp3 and /dev/null differ diff --git a/files/06_1903_meaning.mp3 b/files/06_1903_meaning.mp3 deleted file mode 100644 index f46f8ecea..000000000 Binary files a/files/06_1903_meaning.mp3 and /dev/null differ diff --git a/files/06_1904.jpg b/files/06_1904.jpg deleted file mode 100644 index e5eb64511..000000000 Binary files a/files/06_1904.jpg and /dev/null differ diff --git a/files/06_1904.mp3 b/files/06_1904.mp3 deleted file mode 100644 index bcede9d01..000000000 Binary files a/files/06_1904.mp3 and /dev/null differ diff --git a/files/06_1904_example.mp3 b/files/06_1904_example.mp3 deleted file mode 100644 index 178413f7e..000000000 Binary files a/files/06_1904_example.mp3 and /dev/null differ diff --git a/files/06_1904_meaning.mp3 b/files/06_1904_meaning.mp3 deleted file mode 100644 index 4c55d1cb6..000000000 Binary files a/files/06_1904_meaning.mp3 and /dev/null differ diff --git a/files/06_1905.jpg b/files/06_1905.jpg deleted file mode 100644 index d116c53c3..000000000 Binary files a/files/06_1905.jpg and /dev/null differ diff --git a/files/06_1905.mp3 b/files/06_1905.mp3 deleted file mode 100644 index d1979e158..000000000 Binary files a/files/06_1905.mp3 and /dev/null differ diff --git a/files/06_1905_example.mp3 b/files/06_1905_example.mp3 deleted file mode 100644 index ac1a62e5a..000000000 Binary files a/files/06_1905_example.mp3 and /dev/null differ diff --git a/files/06_1905_meaning.mp3 b/files/06_1905_meaning.mp3 deleted file mode 100644 index f15dac767..000000000 Binary files a/files/06_1905_meaning.mp3 and /dev/null differ diff --git a/files/06_1906.jpg b/files/06_1906.jpg deleted file mode 100644 index aeef23b6d..000000000 Binary files a/files/06_1906.jpg and /dev/null differ diff --git a/files/06_1906.mp3 b/files/06_1906.mp3 deleted file mode 100644 index 7c46d1ee3..000000000 Binary files a/files/06_1906.mp3 and /dev/null differ diff --git a/files/06_1906_example.mp3 b/files/06_1906_example.mp3 deleted file mode 100644 index e46aade8e..000000000 Binary files a/files/06_1906_example.mp3 and /dev/null differ diff --git a/files/06_1906_meaning.mp3 b/files/06_1906_meaning.mp3 deleted file mode 100644 index 171d185b6..000000000 Binary files a/files/06_1906_meaning.mp3 and /dev/null differ diff --git a/files/06_1907.jpg b/files/06_1907.jpg deleted file mode 100644 index c033ce165..000000000 Binary files a/files/06_1907.jpg and /dev/null differ diff --git a/files/06_1907.mp3 b/files/06_1907.mp3 deleted file mode 100644 index e8fc20574..000000000 Binary files a/files/06_1907.mp3 and /dev/null differ diff --git a/files/06_1907_example.mp3 b/files/06_1907_example.mp3 deleted file mode 100644 index ff7f68119..000000000 Binary files a/files/06_1907_example.mp3 and /dev/null differ diff --git a/files/06_1907_meaning.mp3 b/files/06_1907_meaning.mp3 deleted file mode 100644 index e5ab7771c..000000000 Binary files a/files/06_1907_meaning.mp3 and /dev/null differ diff --git a/files/06_1908.jpg b/files/06_1908.jpg deleted file mode 100644 index 006085d84..000000000 Binary files a/files/06_1908.jpg and /dev/null differ diff --git a/files/06_1908.mp3 b/files/06_1908.mp3 deleted file mode 100644 index 05a6689f8..000000000 Binary files a/files/06_1908.mp3 and /dev/null differ diff --git a/files/06_1908_example.mp3 b/files/06_1908_example.mp3 deleted file mode 100644 index 432db3eb9..000000000 Binary files a/files/06_1908_example.mp3 and /dev/null differ diff --git a/files/06_1908_meaning.mp3 b/files/06_1908_meaning.mp3 deleted file mode 100644 index d573161a7..000000000 Binary files a/files/06_1908_meaning.mp3 and /dev/null differ diff --git a/files/06_1909.jpg b/files/06_1909.jpg deleted file mode 100644 index 5389af72c..000000000 Binary files a/files/06_1909.jpg and /dev/null differ diff --git a/files/06_1909.mp3 b/files/06_1909.mp3 deleted file mode 100644 index 21aa90a4f..000000000 Binary files a/files/06_1909.mp3 and /dev/null differ diff --git a/files/06_1909_example.mp3 b/files/06_1909_example.mp3 deleted file mode 100644 index 9977ff720..000000000 Binary files a/files/06_1909_example.mp3 and /dev/null differ diff --git a/files/06_1909_meaning.mp3 b/files/06_1909_meaning.mp3 deleted file mode 100644 index 36ec4015f..000000000 Binary files a/files/06_1909_meaning.mp3 and /dev/null differ diff --git a/files/06_1910.jpg b/files/06_1910.jpg deleted file mode 100644 index 8cc7802fd..000000000 Binary files a/files/06_1910.jpg and /dev/null differ diff --git a/files/06_1910.mp3 b/files/06_1910.mp3 deleted file mode 100644 index f4aad1269..000000000 Binary files a/files/06_1910.mp3 and /dev/null differ diff --git a/files/06_1910_example.mp3 b/files/06_1910_example.mp3 deleted file mode 100644 index 46136fa55..000000000 Binary files a/files/06_1910_example.mp3 and /dev/null differ diff --git a/files/06_1910_meaning.mp3 b/files/06_1910_meaning.mp3 deleted file mode 100644 index 8ec48c999..000000000 Binary files a/files/06_1910_meaning.mp3 and /dev/null differ diff --git a/files/06_1911.jpg b/files/06_1911.jpg deleted file mode 100644 index bf54d70f9..000000000 Binary files a/files/06_1911.jpg and /dev/null differ diff --git a/files/06_1911.mp3 b/files/06_1911.mp3 deleted file mode 100644 index fd8856839..000000000 Binary files a/files/06_1911.mp3 and /dev/null differ diff --git a/files/06_1911_example.mp3 b/files/06_1911_example.mp3 deleted file mode 100644 index 7abdaa230..000000000 Binary files a/files/06_1911_example.mp3 and /dev/null differ diff --git a/files/06_1911_meaning.mp3 b/files/06_1911_meaning.mp3 deleted file mode 100644 index c8f56c7ce..000000000 Binary files a/files/06_1911_meaning.mp3 and /dev/null differ diff --git a/files/06_1912.jpg b/files/06_1912.jpg deleted file mode 100644 index 4f6d3c51b..000000000 Binary files a/files/06_1912.jpg and /dev/null differ diff --git a/files/06_1912.mp3 b/files/06_1912.mp3 deleted file mode 100644 index 8057aff1c..000000000 Binary files a/files/06_1912.mp3 and /dev/null differ diff --git a/files/06_1912_example.mp3 b/files/06_1912_example.mp3 deleted file mode 100644 index 22db798a9..000000000 Binary files a/files/06_1912_example.mp3 and /dev/null differ diff --git a/files/06_1912_meaning.mp3 b/files/06_1912_meaning.mp3 deleted file mode 100644 index 7a3b1e952..000000000 Binary files a/files/06_1912_meaning.mp3 and /dev/null differ diff --git a/files/06_1913.jpg b/files/06_1913.jpg deleted file mode 100644 index 32cdf518d..000000000 Binary files a/files/06_1913.jpg and /dev/null differ diff --git a/files/06_1913.mp3 b/files/06_1913.mp3 deleted file mode 100644 index 00f27269b..000000000 Binary files a/files/06_1913.mp3 and /dev/null differ diff --git a/files/06_1913_example.mp3 b/files/06_1913_example.mp3 deleted file mode 100644 index c9ad888fb..000000000 Binary files a/files/06_1913_example.mp3 and /dev/null differ diff --git a/files/06_1913_meaning.mp3 b/files/06_1913_meaning.mp3 deleted file mode 100644 index 3cf9b9c96..000000000 Binary files a/files/06_1913_meaning.mp3 and /dev/null differ diff --git a/files/06_1914.jpg b/files/06_1914.jpg deleted file mode 100644 index 243757bce..000000000 Binary files a/files/06_1914.jpg and /dev/null differ diff --git a/files/06_1914.mp3 b/files/06_1914.mp3 deleted file mode 100644 index 88a90faaa..000000000 Binary files a/files/06_1914.mp3 and /dev/null differ diff --git a/files/06_1914_example.mp3 b/files/06_1914_example.mp3 deleted file mode 100644 index 36d8e1ead..000000000 Binary files a/files/06_1914_example.mp3 and /dev/null differ diff --git a/files/06_1914_meaning.mp3 b/files/06_1914_meaning.mp3 deleted file mode 100644 index 2d2b9c994..000000000 Binary files a/files/06_1914_meaning.mp3 and /dev/null differ diff --git a/files/06_1915.jpg b/files/06_1915.jpg deleted file mode 100644 index 80c8c64b3..000000000 Binary files a/files/06_1915.jpg and /dev/null differ diff --git a/files/06_1915.mp3 b/files/06_1915.mp3 deleted file mode 100644 index 50c5a0791..000000000 Binary files a/files/06_1915.mp3 and /dev/null differ diff --git a/files/06_1915_example.mp3 b/files/06_1915_example.mp3 deleted file mode 100644 index cb07ca4b2..000000000 Binary files a/files/06_1915_example.mp3 and /dev/null differ diff --git a/files/06_1915_meaning.mp3 b/files/06_1915_meaning.mp3 deleted file mode 100644 index 234d255fc..000000000 Binary files a/files/06_1915_meaning.mp3 and /dev/null differ diff --git a/files/06_1916.jpg b/files/06_1916.jpg deleted file mode 100644 index f2e66f177..000000000 Binary files a/files/06_1916.jpg and /dev/null differ diff --git a/files/06_1916.mp3 b/files/06_1916.mp3 deleted file mode 100644 index 252c916e1..000000000 Binary files a/files/06_1916.mp3 and /dev/null differ diff --git a/files/06_1916_example.mp3 b/files/06_1916_example.mp3 deleted file mode 100644 index 9f4091d4f..000000000 Binary files a/files/06_1916_example.mp3 and /dev/null differ diff --git a/files/06_1916_meaning.mp3 b/files/06_1916_meaning.mp3 deleted file mode 100644 index 101ae23ca..000000000 Binary files a/files/06_1916_meaning.mp3 and /dev/null differ diff --git a/files/06_1917.jpg b/files/06_1917.jpg deleted file mode 100644 index 5ad7dff1a..000000000 Binary files a/files/06_1917.jpg and /dev/null differ diff --git a/files/06_1917.mp3 b/files/06_1917.mp3 deleted file mode 100644 index 813d5be2a..000000000 Binary files a/files/06_1917.mp3 and /dev/null differ diff --git a/files/06_1917_example.mp3 b/files/06_1917_example.mp3 deleted file mode 100644 index 01fb757ee..000000000 Binary files a/files/06_1917_example.mp3 and /dev/null differ diff --git a/files/06_1917_meaning.mp3 b/files/06_1917_meaning.mp3 deleted file mode 100644 index 48b154efe..000000000 Binary files a/files/06_1917_meaning.mp3 and /dev/null differ diff --git a/files/06_1918.jpg b/files/06_1918.jpg deleted file mode 100644 index 2a5bfcc6f..000000000 Binary files a/files/06_1918.jpg and /dev/null differ diff --git a/files/06_1918.mp3 b/files/06_1918.mp3 deleted file mode 100644 index 91c91e928..000000000 Binary files a/files/06_1918.mp3 and /dev/null differ diff --git a/files/06_1918_example.mp3 b/files/06_1918_example.mp3 deleted file mode 100644 index 63530a7ed..000000000 Binary files a/files/06_1918_example.mp3 and /dev/null differ diff --git a/files/06_1918_meaning.mp3 b/files/06_1918_meaning.mp3 deleted file mode 100644 index c1bd25aed..000000000 Binary files a/files/06_1918_meaning.mp3 and /dev/null differ diff --git a/files/06_1919.jpg b/files/06_1919.jpg deleted file mode 100644 index 9759af58f..000000000 Binary files a/files/06_1919.jpg and /dev/null differ diff --git a/files/06_1919.mp3 b/files/06_1919.mp3 deleted file mode 100644 index 505354940..000000000 Binary files a/files/06_1919.mp3 and /dev/null differ diff --git a/files/06_1919_example.mp3 b/files/06_1919_example.mp3 deleted file mode 100644 index 661e5cfcf..000000000 Binary files a/files/06_1919_example.mp3 and /dev/null differ diff --git a/files/06_1919_meaning.mp3 b/files/06_1919_meaning.mp3 deleted file mode 100644 index e53cb1a90..000000000 Binary files a/files/06_1919_meaning.mp3 and /dev/null differ diff --git a/files/06_1920.jpg b/files/06_1920.jpg deleted file mode 100644 index 189752378..000000000 Binary files a/files/06_1920.jpg and /dev/null differ diff --git a/files/06_1920.mp3 b/files/06_1920.mp3 deleted file mode 100644 index bf3a33dfd..000000000 Binary files a/files/06_1920.mp3 and /dev/null differ diff --git a/files/06_1920_example.mp3 b/files/06_1920_example.mp3 deleted file mode 100644 index 224ae848d..000000000 Binary files a/files/06_1920_example.mp3 and /dev/null differ diff --git a/files/06_1920_meaning.mp3 b/files/06_1920_meaning.mp3 deleted file mode 100644 index 58f0e6d80..000000000 Binary files a/files/06_1920_meaning.mp3 and /dev/null differ diff --git a/files/06_2501.jpg b/files/06_2501.jpg deleted file mode 100644 index 93d37cd01..000000000 Binary files a/files/06_2501.jpg and /dev/null differ diff --git a/files/06_2501.mp3 b/files/06_2501.mp3 deleted file mode 100644 index 6f5ec50b2..000000000 Binary files a/files/06_2501.mp3 and /dev/null differ diff --git a/files/06_2501_example.mp3 b/files/06_2501_example.mp3 deleted file mode 100644 index 9171881e2..000000000 Binary files a/files/06_2501_example.mp3 and /dev/null differ diff --git a/files/06_2501_meaning.mp3 b/files/06_2501_meaning.mp3 deleted file mode 100644 index c0235b32a..000000000 Binary files a/files/06_2501_meaning.mp3 and /dev/null differ diff --git a/files/06_2502.jpg b/files/06_2502.jpg deleted file mode 100644 index 1f5b284b9..000000000 Binary files a/files/06_2502.jpg and /dev/null differ diff --git a/files/06_2502.mp3 b/files/06_2502.mp3 deleted file mode 100644 index b9112ad98..000000000 Binary files a/files/06_2502.mp3 and /dev/null differ diff --git a/files/06_2502_example.mp3 b/files/06_2502_example.mp3 deleted file mode 100644 index afc0324bd..000000000 Binary files a/files/06_2502_example.mp3 and /dev/null differ diff --git a/files/06_2502_meaning.mp3 b/files/06_2502_meaning.mp3 deleted file mode 100644 index 92a02e896..000000000 Binary files a/files/06_2502_meaning.mp3 and /dev/null differ diff --git a/files/06_2503.jpg b/files/06_2503.jpg deleted file mode 100644 index fe621fca7..000000000 Binary files a/files/06_2503.jpg and /dev/null differ diff --git a/files/06_2503.mp3 b/files/06_2503.mp3 deleted file mode 100644 index 7ed1d55d2..000000000 Binary files a/files/06_2503.mp3 and /dev/null differ diff --git a/files/06_2503_example.mp3 b/files/06_2503_example.mp3 deleted file mode 100644 index 9d767e0c4..000000000 Binary files a/files/06_2503_example.mp3 and /dev/null differ diff --git a/files/06_2503_meaning.mp3 b/files/06_2503_meaning.mp3 deleted file mode 100644 index 3e29af8ca..000000000 Binary files a/files/06_2503_meaning.mp3 and /dev/null differ diff --git a/files/06_2504.jpg b/files/06_2504.jpg deleted file mode 100644 index fd2033e03..000000000 Binary files a/files/06_2504.jpg and /dev/null differ diff --git a/files/06_2504.mp3 b/files/06_2504.mp3 deleted file mode 100644 index 0ace1fa74..000000000 Binary files a/files/06_2504.mp3 and /dev/null differ diff --git a/files/06_2504_example.mp3 b/files/06_2504_example.mp3 deleted file mode 100644 index c2a14cff6..000000000 Binary files a/files/06_2504_example.mp3 and /dev/null differ diff --git a/files/06_2504_meaning.mp3 b/files/06_2504_meaning.mp3 deleted file mode 100644 index 97b648663..000000000 Binary files a/files/06_2504_meaning.mp3 and /dev/null differ diff --git a/files/06_2505.jpg b/files/06_2505.jpg deleted file mode 100644 index 218a8372e..000000000 Binary files a/files/06_2505.jpg and /dev/null differ diff --git a/files/06_2505.mp3 b/files/06_2505.mp3 deleted file mode 100644 index f2b23f8eb..000000000 Binary files a/files/06_2505.mp3 and /dev/null differ diff --git a/files/06_2505_example.mp3 b/files/06_2505_example.mp3 deleted file mode 100644 index f8e579b8c..000000000 Binary files a/files/06_2505_example.mp3 and /dev/null differ diff --git a/files/06_2505_meaning.mp3 b/files/06_2505_meaning.mp3 deleted file mode 100644 index 93298a878..000000000 Binary files a/files/06_2505_meaning.mp3 and /dev/null differ diff --git a/files/06_2506.jpg b/files/06_2506.jpg deleted file mode 100644 index a50591b27..000000000 Binary files a/files/06_2506.jpg and /dev/null differ diff --git a/files/06_2506.mp3 b/files/06_2506.mp3 deleted file mode 100644 index 0be8affe9..000000000 Binary files a/files/06_2506.mp3 and /dev/null differ diff --git a/files/06_2506_example.mp3 b/files/06_2506_example.mp3 deleted file mode 100644 index 71a1894b2..000000000 Binary files a/files/06_2506_example.mp3 and /dev/null differ diff --git a/files/06_2506_meaning.mp3 b/files/06_2506_meaning.mp3 deleted file mode 100644 index d4ab5ce72..000000000 Binary files a/files/06_2506_meaning.mp3 and /dev/null differ diff --git a/files/06_2507.jpg b/files/06_2507.jpg deleted file mode 100644 index e34d8dd2d..000000000 Binary files a/files/06_2507.jpg and /dev/null differ diff --git a/files/06_2507.mp3 b/files/06_2507.mp3 deleted file mode 100644 index c87872904..000000000 Binary files a/files/06_2507.mp3 and /dev/null differ diff --git a/files/06_2507_example.mp3 b/files/06_2507_example.mp3 deleted file mode 100644 index e8b95bc32..000000000 Binary files a/files/06_2507_example.mp3 and /dev/null differ diff --git a/files/06_2507_meaning.mp3 b/files/06_2507_meaning.mp3 deleted file mode 100644 index 7df461b75..000000000 Binary files a/files/06_2507_meaning.mp3 and /dev/null differ diff --git a/files/06_2508.jpg b/files/06_2508.jpg deleted file mode 100644 index 71cea334a..000000000 Binary files a/files/06_2508.jpg and /dev/null differ diff --git a/files/06_2508.mp3 b/files/06_2508.mp3 deleted file mode 100644 index 4966f699d..000000000 Binary files a/files/06_2508.mp3 and /dev/null differ diff --git a/files/06_2508_example.mp3 b/files/06_2508_example.mp3 deleted file mode 100644 index 0e425a894..000000000 Binary files a/files/06_2508_example.mp3 and /dev/null differ diff --git a/files/06_2508_meaning.mp3 b/files/06_2508_meaning.mp3 deleted file mode 100644 index 1da4dba83..000000000 Binary files a/files/06_2508_meaning.mp3 and /dev/null differ diff --git a/files/06_2509.jpg b/files/06_2509.jpg deleted file mode 100644 index 50b40e643..000000000 Binary files a/files/06_2509.jpg and /dev/null differ diff --git a/files/06_2509.mp3 b/files/06_2509.mp3 deleted file mode 100644 index 22da927c0..000000000 Binary files a/files/06_2509.mp3 and /dev/null differ diff --git a/files/06_2509_example.mp3 b/files/06_2509_example.mp3 deleted file mode 100644 index 64e6d4fae..000000000 Binary files a/files/06_2509_example.mp3 and /dev/null differ diff --git a/files/06_2509_meaning.mp3 b/files/06_2509_meaning.mp3 deleted file mode 100644 index 46790ed27..000000000 Binary files a/files/06_2509_meaning.mp3 and /dev/null differ diff --git a/files/06_2510.jpg b/files/06_2510.jpg deleted file mode 100644 index 08e7d04bd..000000000 Binary files a/files/06_2510.jpg and /dev/null differ diff --git a/files/06_2510.mp3 b/files/06_2510.mp3 deleted file mode 100644 index 05f130742..000000000 Binary files a/files/06_2510.mp3 and /dev/null differ diff --git a/files/06_2510_example.mp3 b/files/06_2510_example.mp3 deleted file mode 100644 index d8be83509..000000000 Binary files a/files/06_2510_example.mp3 and /dev/null differ diff --git a/files/06_2510_meaning.mp3 b/files/06_2510_meaning.mp3 deleted file mode 100644 index 93171ba1c..000000000 Binary files a/files/06_2510_meaning.mp3 and /dev/null differ diff --git a/files/06_2511.jpg b/files/06_2511.jpg deleted file mode 100644 index d18b8e084..000000000 Binary files a/files/06_2511.jpg and /dev/null differ diff --git a/files/06_2511.mp3 b/files/06_2511.mp3 deleted file mode 100644 index f736e23b8..000000000 Binary files a/files/06_2511.mp3 and /dev/null differ diff --git a/files/06_2511_example.mp3 b/files/06_2511_example.mp3 deleted file mode 100644 index f1f1b229f..000000000 Binary files a/files/06_2511_example.mp3 and /dev/null differ diff --git a/files/06_2511_meaning.mp3 b/files/06_2511_meaning.mp3 deleted file mode 100644 index 42fb105ee..000000000 Binary files a/files/06_2511_meaning.mp3 and /dev/null differ diff --git a/files/06_2512.jpg b/files/06_2512.jpg deleted file mode 100644 index 54b256a47..000000000 Binary files a/files/06_2512.jpg and /dev/null differ diff --git a/files/06_2512.mp3 b/files/06_2512.mp3 deleted file mode 100644 index 398fe152e..000000000 Binary files a/files/06_2512.mp3 and /dev/null differ diff --git a/files/06_2512_example.mp3 b/files/06_2512_example.mp3 deleted file mode 100644 index 5f1665412..000000000 Binary files a/files/06_2512_example.mp3 and /dev/null differ diff --git a/files/06_2512_meaning.mp3 b/files/06_2512_meaning.mp3 deleted file mode 100644 index f575d528e..000000000 Binary files a/files/06_2512_meaning.mp3 and /dev/null differ diff --git a/files/06_2513.jpg b/files/06_2513.jpg deleted file mode 100644 index 47ceb09f8..000000000 Binary files a/files/06_2513.jpg and /dev/null differ diff --git a/files/06_2513.mp3 b/files/06_2513.mp3 deleted file mode 100644 index 7685e6e36..000000000 Binary files a/files/06_2513.mp3 and /dev/null differ diff --git a/files/06_2513_example.mp3 b/files/06_2513_example.mp3 deleted file mode 100644 index bce2b23cb..000000000 Binary files a/files/06_2513_example.mp3 and /dev/null differ diff --git a/files/06_2513_meaning.mp3 b/files/06_2513_meaning.mp3 deleted file mode 100644 index 9cd50d31c..000000000 Binary files a/files/06_2513_meaning.mp3 and /dev/null differ diff --git a/files/06_2514.jpg b/files/06_2514.jpg deleted file mode 100644 index a154c9831..000000000 Binary files a/files/06_2514.jpg and /dev/null differ diff --git a/files/06_2514.mp3 b/files/06_2514.mp3 deleted file mode 100644 index 372ccb1c9..000000000 Binary files a/files/06_2514.mp3 and /dev/null differ diff --git a/files/06_2514_example.mp3 b/files/06_2514_example.mp3 deleted file mode 100644 index fd51804f7..000000000 Binary files a/files/06_2514_example.mp3 and /dev/null differ diff --git a/files/06_2514_meaning.mp3 b/files/06_2514_meaning.mp3 deleted file mode 100644 index 445e4f842..000000000 Binary files a/files/06_2514_meaning.mp3 and /dev/null differ diff --git a/files/06_2515.jpg b/files/06_2515.jpg deleted file mode 100644 index ad608b925..000000000 Binary files a/files/06_2515.jpg and /dev/null differ diff --git a/files/06_2515.mp3 b/files/06_2515.mp3 deleted file mode 100644 index 631f9435a..000000000 Binary files a/files/06_2515.mp3 and /dev/null differ diff --git a/files/06_2515_example.mp3 b/files/06_2515_example.mp3 deleted file mode 100644 index de8976a52..000000000 Binary files a/files/06_2515_example.mp3 and /dev/null differ diff --git a/files/06_2515_meaning.mp3 b/files/06_2515_meaning.mp3 deleted file mode 100644 index deb279077..000000000 Binary files a/files/06_2515_meaning.mp3 and /dev/null differ diff --git a/files/06_2516.jpg b/files/06_2516.jpg deleted file mode 100644 index 488c323f6..000000000 Binary files a/files/06_2516.jpg and /dev/null differ diff --git a/files/06_2516.mp3 b/files/06_2516.mp3 deleted file mode 100644 index 3b196bee1..000000000 Binary files a/files/06_2516.mp3 and /dev/null differ diff --git a/files/06_2516_example.mp3 b/files/06_2516_example.mp3 deleted file mode 100644 index 8534494d3..000000000 Binary files a/files/06_2516_example.mp3 and /dev/null differ diff --git a/files/06_2516_meaning.mp3 b/files/06_2516_meaning.mp3 deleted file mode 100644 index 3c43166b0..000000000 Binary files a/files/06_2516_meaning.mp3 and /dev/null differ diff --git a/files/06_2517.jpg b/files/06_2517.jpg deleted file mode 100644 index de27c9383..000000000 Binary files a/files/06_2517.jpg and /dev/null differ diff --git a/files/06_2517.mp3 b/files/06_2517.mp3 deleted file mode 100644 index 033b5c609..000000000 Binary files a/files/06_2517.mp3 and /dev/null differ diff --git a/files/06_2517_example.mp3 b/files/06_2517_example.mp3 deleted file mode 100644 index 51795460f..000000000 Binary files a/files/06_2517_example.mp3 and /dev/null differ diff --git a/files/06_2517_meaning.mp3 b/files/06_2517_meaning.mp3 deleted file mode 100644 index ae17bacd6..000000000 Binary files a/files/06_2517_meaning.mp3 and /dev/null differ diff --git a/files/06_2518.jpg b/files/06_2518.jpg deleted file mode 100644 index 5dc910a03..000000000 Binary files a/files/06_2518.jpg and /dev/null differ diff --git a/files/06_2518.mp3 b/files/06_2518.mp3 deleted file mode 100644 index f6378dfad..000000000 Binary files a/files/06_2518.mp3 and /dev/null differ diff --git a/files/06_2518_example.mp3 b/files/06_2518_example.mp3 deleted file mode 100644 index 2ac8ea228..000000000 Binary files a/files/06_2518_example.mp3 and /dev/null differ diff --git a/files/06_2518_meaning.mp3 b/files/06_2518_meaning.mp3 deleted file mode 100644 index 71a0b6602..000000000 Binary files a/files/06_2518_meaning.mp3 and /dev/null differ diff --git a/files/06_2519.jpg b/files/06_2519.jpg deleted file mode 100644 index b14f93af5..000000000 Binary files a/files/06_2519.jpg and /dev/null differ diff --git a/files/06_2519.mp3 b/files/06_2519.mp3 deleted file mode 100644 index cafd95666..000000000 Binary files a/files/06_2519.mp3 and /dev/null differ diff --git a/files/06_2519_example.mp3 b/files/06_2519_example.mp3 deleted file mode 100644 index 0a4c76d29..000000000 Binary files a/files/06_2519_example.mp3 and /dev/null differ diff --git a/files/06_2519_meaning.mp3 b/files/06_2519_meaning.mp3 deleted file mode 100644 index 2cf1ebd80..000000000 Binary files a/files/06_2519_meaning.mp3 and /dev/null differ diff --git a/files/06_2520.jpg b/files/06_2520.jpg deleted file mode 100644 index 462401d1f..000000000 Binary files a/files/06_2520.jpg and /dev/null differ diff --git a/files/06_2520.mp3 b/files/06_2520.mp3 deleted file mode 100644 index 703a5294c..000000000 Binary files a/files/06_2520.mp3 and /dev/null differ diff --git a/files/06_2520_example.mp3 b/files/06_2520_example.mp3 deleted file mode 100644 index b6c3dd1f0..000000000 Binary files a/files/06_2520_example.mp3 and /dev/null differ diff --git a/files/06_2520_meaning.mp3 b/files/06_2520_meaning.mp3 deleted file mode 100644 index dfd4a7758..000000000 Binary files a/files/06_2520_meaning.mp3 and /dev/null differ diff --git a/files/06_3101.jpg b/files/06_3101.jpg deleted file mode 100644 index 7a66a7e43..000000000 Binary files a/files/06_3101.jpg and /dev/null differ diff --git a/files/06_3101.mp3 b/files/06_3101.mp3 deleted file mode 100644 index 3d8875b63..000000000 Binary files a/files/06_3101.mp3 and /dev/null differ diff --git a/files/06_3101_example.mp3 b/files/06_3101_example.mp3 deleted file mode 100644 index bc018af21..000000000 Binary files a/files/06_3101_example.mp3 and /dev/null differ diff --git a/files/06_3101_meaning.mp3 b/files/06_3101_meaning.mp3 deleted file mode 100644 index 732fc0d57..000000000 Binary files a/files/06_3101_meaning.mp3 and /dev/null differ diff --git a/files/06_3102.jpg b/files/06_3102.jpg deleted file mode 100644 index 8180db8d0..000000000 Binary files a/files/06_3102.jpg and /dev/null differ diff --git a/files/06_3102.mp3 b/files/06_3102.mp3 deleted file mode 100644 index c83a24a7e..000000000 Binary files a/files/06_3102.mp3 and /dev/null differ diff --git a/files/06_3102_example.mp3 b/files/06_3102_example.mp3 deleted file mode 100644 index 098984152..000000000 Binary files a/files/06_3102_example.mp3 and /dev/null differ diff --git a/files/06_3102_meaning.mp3 b/files/06_3102_meaning.mp3 deleted file mode 100644 index 2743c2fe1..000000000 Binary files a/files/06_3102_meaning.mp3 and /dev/null differ diff --git a/files/06_3103.jpg b/files/06_3103.jpg deleted file mode 100644 index 9530fa45e..000000000 Binary files a/files/06_3103.jpg and /dev/null differ diff --git a/files/06_3103.mp3 b/files/06_3103.mp3 deleted file mode 100644 index a663f468d..000000000 Binary files a/files/06_3103.mp3 and /dev/null differ diff --git a/files/06_3103_example.mp3 b/files/06_3103_example.mp3 deleted file mode 100644 index 298c87e25..000000000 Binary files a/files/06_3103_example.mp3 and /dev/null differ diff --git a/files/06_3103_meaning.mp3 b/files/06_3103_meaning.mp3 deleted file mode 100644 index 87286e1e8..000000000 Binary files a/files/06_3103_meaning.mp3 and /dev/null differ diff --git a/files/06_3104.jpg b/files/06_3104.jpg deleted file mode 100644 index 5c10b4cba..000000000 Binary files a/files/06_3104.jpg and /dev/null differ diff --git a/files/06_3104.mp3 b/files/06_3104.mp3 deleted file mode 100644 index 41be775ab..000000000 Binary files a/files/06_3104.mp3 and /dev/null differ diff --git a/files/06_3104_example.mp3 b/files/06_3104_example.mp3 deleted file mode 100644 index 0097e43c1..000000000 Binary files a/files/06_3104_example.mp3 and /dev/null differ diff --git a/files/06_3104_meaning.mp3 b/files/06_3104_meaning.mp3 deleted file mode 100644 index 804d00919..000000000 Binary files a/files/06_3104_meaning.mp3 and /dev/null differ diff --git a/files/06_3105.jpg b/files/06_3105.jpg deleted file mode 100644 index 8478624cf..000000000 Binary files a/files/06_3105.jpg and /dev/null differ diff --git a/files/06_3105.mp3 b/files/06_3105.mp3 deleted file mode 100644 index 8007a12c0..000000000 Binary files a/files/06_3105.mp3 and /dev/null differ diff --git a/files/06_3105_example.mp3 b/files/06_3105_example.mp3 deleted file mode 100644 index 8cc13782a..000000000 Binary files a/files/06_3105_example.mp3 and /dev/null differ diff --git a/files/06_3105_meaning.mp3 b/files/06_3105_meaning.mp3 deleted file mode 100644 index cbdb60094..000000000 Binary files a/files/06_3105_meaning.mp3 and /dev/null differ diff --git a/files/06_3106.jpg b/files/06_3106.jpg deleted file mode 100644 index babfc8452..000000000 Binary files a/files/06_3106.jpg and /dev/null differ diff --git a/files/06_3106.mp3 b/files/06_3106.mp3 deleted file mode 100644 index 1814e98ba..000000000 Binary files a/files/06_3106.mp3 and /dev/null differ diff --git a/files/06_3106_example.mp3 b/files/06_3106_example.mp3 deleted file mode 100644 index 3d01ae224..000000000 Binary files a/files/06_3106_example.mp3 and /dev/null differ diff --git a/files/06_3106_meaning.mp3 b/files/06_3106_meaning.mp3 deleted file mode 100644 index 562e7dae6..000000000 Binary files a/files/06_3106_meaning.mp3 and /dev/null differ diff --git a/files/06_3107.jpg b/files/06_3107.jpg deleted file mode 100644 index 91445ab4e..000000000 Binary files a/files/06_3107.jpg and /dev/null differ diff --git a/files/06_3107.mp3 b/files/06_3107.mp3 deleted file mode 100644 index 9e7fca7ba..000000000 Binary files a/files/06_3107.mp3 and /dev/null differ diff --git a/files/06_3107_example.mp3 b/files/06_3107_example.mp3 deleted file mode 100644 index cff3339e7..000000000 Binary files a/files/06_3107_example.mp3 and /dev/null differ diff --git a/files/06_3107_meaning.mp3 b/files/06_3107_meaning.mp3 deleted file mode 100644 index 9c104c39d..000000000 Binary files a/files/06_3107_meaning.mp3 and /dev/null differ diff --git a/files/06_3108.jpg b/files/06_3108.jpg deleted file mode 100644 index 8f0c3518a..000000000 Binary files a/files/06_3108.jpg and /dev/null differ diff --git a/files/06_3108.mp3 b/files/06_3108.mp3 deleted file mode 100644 index 6a58142a5..000000000 Binary files a/files/06_3108.mp3 and /dev/null differ diff --git a/files/06_3108_example.mp3 b/files/06_3108_example.mp3 deleted file mode 100644 index 5dd62efcf..000000000 Binary files a/files/06_3108_example.mp3 and /dev/null differ diff --git a/files/06_3108_meaning.mp3 b/files/06_3108_meaning.mp3 deleted file mode 100644 index a5a55a54e..000000000 Binary files a/files/06_3108_meaning.mp3 and /dev/null differ diff --git a/files/06_3109.jpg b/files/06_3109.jpg deleted file mode 100644 index 69a42d8fa..000000000 Binary files a/files/06_3109.jpg and /dev/null differ diff --git a/files/06_3109.mp3 b/files/06_3109.mp3 deleted file mode 100644 index cf4cf68d4..000000000 Binary files a/files/06_3109.mp3 and /dev/null differ diff --git a/files/06_3109_example.mp3 b/files/06_3109_example.mp3 deleted file mode 100644 index d6ed28801..000000000 Binary files a/files/06_3109_example.mp3 and /dev/null differ diff --git a/files/06_3109_meaning.mp3 b/files/06_3109_meaning.mp3 deleted file mode 100644 index b1ff8fc74..000000000 Binary files a/files/06_3109_meaning.mp3 and /dev/null differ diff --git a/files/06_3110.jpg b/files/06_3110.jpg deleted file mode 100644 index cd394864c..000000000 Binary files a/files/06_3110.jpg and /dev/null differ diff --git a/files/06_3110.mp3 b/files/06_3110.mp3 deleted file mode 100644 index 0518581ab..000000000 Binary files a/files/06_3110.mp3 and /dev/null differ diff --git a/files/06_3110_example.mp3 b/files/06_3110_example.mp3 deleted file mode 100644 index cae38bcff..000000000 Binary files a/files/06_3110_example.mp3 and /dev/null differ diff --git a/files/06_3110_meaning.mp3 b/files/06_3110_meaning.mp3 deleted file mode 100644 index e4a810532..000000000 Binary files a/files/06_3110_meaning.mp3 and /dev/null differ diff --git a/files/06_3111.jpg b/files/06_3111.jpg deleted file mode 100644 index 41324a33b..000000000 Binary files a/files/06_3111.jpg and /dev/null differ diff --git a/files/06_3111.mp3 b/files/06_3111.mp3 deleted file mode 100644 index bbee2869d..000000000 Binary files a/files/06_3111.mp3 and /dev/null differ diff --git a/files/06_3111_example.mp3 b/files/06_3111_example.mp3 deleted file mode 100644 index fa0d7eb9c..000000000 Binary files a/files/06_3111_example.mp3 and /dev/null differ diff --git a/files/06_3111_meaning.mp3 b/files/06_3111_meaning.mp3 deleted file mode 100644 index d40e5865c..000000000 Binary files a/files/06_3111_meaning.mp3 and /dev/null differ diff --git a/files/06_3112.jpg b/files/06_3112.jpg deleted file mode 100644 index ef3790f14..000000000 Binary files a/files/06_3112.jpg and /dev/null differ diff --git a/files/06_3112.mp3 b/files/06_3112.mp3 deleted file mode 100644 index 904d9cdb0..000000000 Binary files a/files/06_3112.mp3 and /dev/null differ diff --git a/files/06_3112_example.mp3 b/files/06_3112_example.mp3 deleted file mode 100644 index b443901f5..000000000 Binary files a/files/06_3112_example.mp3 and /dev/null differ diff --git a/files/06_3112_meaning.mp3 b/files/06_3112_meaning.mp3 deleted file mode 100644 index d310b8a52..000000000 Binary files a/files/06_3112_meaning.mp3 and /dev/null differ diff --git a/files/06_3113.jpg b/files/06_3113.jpg deleted file mode 100644 index 8e2f4c73e..000000000 Binary files a/files/06_3113.jpg and /dev/null differ diff --git a/files/06_3113.mp3 b/files/06_3113.mp3 deleted file mode 100644 index 0bd00f3e8..000000000 Binary files a/files/06_3113.mp3 and /dev/null differ diff --git a/files/06_3113_example.mp3 b/files/06_3113_example.mp3 deleted file mode 100644 index 86f559966..000000000 Binary files a/files/06_3113_example.mp3 and /dev/null differ diff --git a/files/06_3113_meaning.mp3 b/files/06_3113_meaning.mp3 deleted file mode 100644 index 8acb3e733..000000000 Binary files a/files/06_3113_meaning.mp3 and /dev/null differ diff --git a/files/06_3114.jpg b/files/06_3114.jpg deleted file mode 100644 index 63cae592f..000000000 Binary files a/files/06_3114.jpg and /dev/null differ diff --git a/files/06_3114.mp3 b/files/06_3114.mp3 deleted file mode 100644 index efad6b597..000000000 Binary files a/files/06_3114.mp3 and /dev/null differ diff --git a/files/06_3114_example.mp3 b/files/06_3114_example.mp3 deleted file mode 100644 index 880a0d6c4..000000000 Binary files a/files/06_3114_example.mp3 and /dev/null differ diff --git a/files/06_3114_meaning.mp3 b/files/06_3114_meaning.mp3 deleted file mode 100644 index b9616c708..000000000 Binary files a/files/06_3114_meaning.mp3 and /dev/null differ diff --git a/files/06_3115.jpg b/files/06_3115.jpg deleted file mode 100644 index ca10ac578..000000000 Binary files a/files/06_3115.jpg and /dev/null differ diff --git a/files/06_3115.mp3 b/files/06_3115.mp3 deleted file mode 100644 index b1bf979e9..000000000 Binary files a/files/06_3115.mp3 and /dev/null differ diff --git a/files/06_3115_example.mp3 b/files/06_3115_example.mp3 deleted file mode 100644 index 9256fa7bf..000000000 Binary files a/files/06_3115_example.mp3 and /dev/null differ diff --git a/files/06_3115_meaning.mp3 b/files/06_3115_meaning.mp3 deleted file mode 100644 index 85730573a..000000000 Binary files a/files/06_3115_meaning.mp3 and /dev/null differ diff --git a/files/06_3116.jpg b/files/06_3116.jpg deleted file mode 100644 index 305312fd5..000000000 Binary files a/files/06_3116.jpg and /dev/null differ diff --git a/files/06_3116.mp3 b/files/06_3116.mp3 deleted file mode 100644 index 6f866d4fd..000000000 Binary files a/files/06_3116.mp3 and /dev/null differ diff --git a/files/06_3116_example.mp3 b/files/06_3116_example.mp3 deleted file mode 100644 index c3bdbf46b..000000000 Binary files a/files/06_3116_example.mp3 and /dev/null differ diff --git a/files/06_3116_meaning.mp3 b/files/06_3116_meaning.mp3 deleted file mode 100644 index f9743bdda..000000000 Binary files a/files/06_3116_meaning.mp3 and /dev/null differ diff --git a/files/06_3117.jpg b/files/06_3117.jpg deleted file mode 100644 index aec189088..000000000 Binary files a/files/06_3117.jpg and /dev/null differ diff --git a/files/06_3117.mp3 b/files/06_3117.mp3 deleted file mode 100644 index e5fa42ac3..000000000 Binary files a/files/06_3117.mp3 and /dev/null differ diff --git a/files/06_3117_example.mp3 b/files/06_3117_example.mp3 deleted file mode 100644 index 2b77ce2b3..000000000 Binary files a/files/06_3117_example.mp3 and /dev/null differ diff --git a/files/06_3117_meaning.mp3 b/files/06_3117_meaning.mp3 deleted file mode 100644 index 6f9b1d777..000000000 Binary files a/files/06_3117_meaning.mp3 and /dev/null differ diff --git a/files/06_3118.jpg b/files/06_3118.jpg deleted file mode 100644 index 8c9c9fa31..000000000 Binary files a/files/06_3118.jpg and /dev/null differ diff --git a/files/06_3118.mp3 b/files/06_3118.mp3 deleted file mode 100644 index 62cb0efba..000000000 Binary files a/files/06_3118.mp3 and /dev/null differ diff --git a/files/06_3118_example.mp3 b/files/06_3118_example.mp3 deleted file mode 100644 index 702d987e0..000000000 Binary files a/files/06_3118_example.mp3 and /dev/null differ diff --git a/files/06_3118_meaning.mp3 b/files/06_3118_meaning.mp3 deleted file mode 100644 index ae583e8b6..000000000 Binary files a/files/06_3118_meaning.mp3 and /dev/null differ diff --git a/files/06_3119.jpg b/files/06_3119.jpg deleted file mode 100644 index 04823f5a9..000000000 Binary files a/files/06_3119.jpg and /dev/null differ diff --git a/files/06_3119.mp3 b/files/06_3119.mp3 deleted file mode 100644 index a83af50c1..000000000 Binary files a/files/06_3119.mp3 and /dev/null differ diff --git a/files/06_3119_example.mp3 b/files/06_3119_example.mp3 deleted file mode 100644 index 8fbf19c56..000000000 Binary files a/files/06_3119_example.mp3 and /dev/null differ diff --git a/files/06_3119_meaning.mp3 b/files/06_3119_meaning.mp3 deleted file mode 100644 index 3a61e5fa0..000000000 Binary files a/files/06_3119_meaning.mp3 and /dev/null differ diff --git a/files/06_3120.jpg b/files/06_3120.jpg deleted file mode 100644 index 7e9cde629..000000000 Binary files a/files/06_3120.jpg and /dev/null differ diff --git a/files/06_3120.mp3 b/files/06_3120.mp3 deleted file mode 100644 index d422cf7d7..000000000 Binary files a/files/06_3120.mp3 and /dev/null differ diff --git a/files/06_3120_example.mp3 b/files/06_3120_example.mp3 deleted file mode 100644 index ee98c81f2..000000000 Binary files a/files/06_3120_example.mp3 and /dev/null differ diff --git a/files/06_3120_meaning.mp3 b/files/06_3120_meaning.mp3 deleted file mode 100644 index 8529fda71..000000000 Binary files a/files/06_3120_meaning.mp3 and /dev/null differ diff --git a/files/07_0121.jpg b/files/07_0121.jpg deleted file mode 100644 index c09a5ec0a..000000000 Binary files a/files/07_0121.jpg and /dev/null differ diff --git a/files/07_0121.mp3 b/files/07_0121.mp3 deleted file mode 100644 index 8bcb125e3..000000000 Binary files a/files/07_0121.mp3 and /dev/null differ diff --git a/files/07_0121_example.mp3 b/files/07_0121_example.mp3 deleted file mode 100644 index 7b23e14ea..000000000 Binary files a/files/07_0121_example.mp3 and /dev/null differ diff --git a/files/07_0121_meaning.mp3 b/files/07_0121_meaning.mp3 deleted file mode 100644 index abd818218..000000000 Binary files a/files/07_0121_meaning.mp3 and /dev/null differ diff --git a/files/07_0122.jpg b/files/07_0122.jpg deleted file mode 100644 index e1c70cb00..000000000 Binary files a/files/07_0122.jpg and /dev/null differ diff --git a/files/07_0122.mp3 b/files/07_0122.mp3 deleted file mode 100644 index d9073b746..000000000 Binary files a/files/07_0122.mp3 and /dev/null differ diff --git a/files/07_0122_example.mp3 b/files/07_0122_example.mp3 deleted file mode 100644 index 08a7949ce..000000000 Binary files a/files/07_0122_example.mp3 and /dev/null differ diff --git a/files/07_0122_meaning.mp3 b/files/07_0122_meaning.mp3 deleted file mode 100644 index 1b8759210..000000000 Binary files a/files/07_0122_meaning.mp3 and /dev/null differ diff --git a/files/07_0123.jpg b/files/07_0123.jpg deleted file mode 100644 index 953c8b584..000000000 Binary files a/files/07_0123.jpg and /dev/null differ diff --git a/files/07_0123.mp3 b/files/07_0123.mp3 deleted file mode 100644 index 1b604bb57..000000000 Binary files a/files/07_0123.mp3 and /dev/null differ diff --git a/files/07_0123_example.mp3 b/files/07_0123_example.mp3 deleted file mode 100644 index 3dd8924e6..000000000 Binary files a/files/07_0123_example.mp3 and /dev/null differ diff --git a/files/07_0123_meaning.mp3 b/files/07_0123_meaning.mp3 deleted file mode 100644 index bbc071d98..000000000 Binary files a/files/07_0123_meaning.mp3 and /dev/null differ diff --git a/files/07_0124.jpg b/files/07_0124.jpg deleted file mode 100644 index a330249ce..000000000 Binary files a/files/07_0124.jpg and /dev/null differ diff --git a/files/07_0124.mp3 b/files/07_0124.mp3 deleted file mode 100644 index 5a0dd5027..000000000 Binary files a/files/07_0124.mp3 and /dev/null differ diff --git a/files/07_0124_example.mp3 b/files/07_0124_example.mp3 deleted file mode 100644 index f4f9ddc6d..000000000 Binary files a/files/07_0124_example.mp3 and /dev/null differ diff --git a/files/07_0124_meaning.mp3 b/files/07_0124_meaning.mp3 deleted file mode 100644 index 92b2c4762..000000000 Binary files a/files/07_0124_meaning.mp3 and /dev/null differ diff --git a/files/07_0125.jpg b/files/07_0125.jpg deleted file mode 100644 index 72fe918af..000000000 Binary files a/files/07_0125.jpg and /dev/null differ diff --git a/files/07_0125.mp3 b/files/07_0125.mp3 deleted file mode 100644 index 6eb7ee501..000000000 Binary files a/files/07_0125.mp3 and /dev/null differ diff --git a/files/07_0125_example.mp3 b/files/07_0125_example.mp3 deleted file mode 100644 index acf2dce04..000000000 Binary files a/files/07_0125_example.mp3 and /dev/null differ diff --git a/files/07_0125_meaning.mp3 b/files/07_0125_meaning.mp3 deleted file mode 100644 index 330e382ee..000000000 Binary files a/files/07_0125_meaning.mp3 and /dev/null differ diff --git a/files/07_0126.jpg b/files/07_0126.jpg deleted file mode 100644 index 308cfda20..000000000 Binary files a/files/07_0126.jpg and /dev/null differ diff --git a/files/07_0126.mp3 b/files/07_0126.mp3 deleted file mode 100644 index f9556b063..000000000 Binary files a/files/07_0126.mp3 and /dev/null differ diff --git a/files/07_0126_example.mp3 b/files/07_0126_example.mp3 deleted file mode 100644 index 3b333ced3..000000000 Binary files a/files/07_0126_example.mp3 and /dev/null differ diff --git a/files/07_0126_meaning.mp3 b/files/07_0126_meaning.mp3 deleted file mode 100644 index 477d32c21..000000000 Binary files a/files/07_0126_meaning.mp3 and /dev/null differ diff --git a/files/07_0127.jpg b/files/07_0127.jpg deleted file mode 100644 index 287e44bfa..000000000 Binary files a/files/07_0127.jpg and /dev/null differ diff --git a/files/07_0127.mp3 b/files/07_0127.mp3 deleted file mode 100644 index c4ae03a84..000000000 Binary files a/files/07_0127.mp3 and /dev/null differ diff --git a/files/07_0127_example.mp3 b/files/07_0127_example.mp3 deleted file mode 100644 index b65fb4a11..000000000 Binary files a/files/07_0127_example.mp3 and /dev/null differ diff --git a/files/07_0127_meaning.mp3 b/files/07_0127_meaning.mp3 deleted file mode 100644 index a805decc8..000000000 Binary files a/files/07_0127_meaning.mp3 and /dev/null differ diff --git a/files/07_0128.jpg b/files/07_0128.jpg deleted file mode 100644 index e6ca93d34..000000000 Binary files a/files/07_0128.jpg and /dev/null differ diff --git a/files/07_0128.mp3 b/files/07_0128.mp3 deleted file mode 100644 index 7b0b076b1..000000000 Binary files a/files/07_0128.mp3 and /dev/null differ diff --git a/files/07_0128_example.mp3 b/files/07_0128_example.mp3 deleted file mode 100644 index f60cb109f..000000000 Binary files a/files/07_0128_example.mp3 and /dev/null differ diff --git a/files/07_0128_meaning.mp3 b/files/07_0128_meaning.mp3 deleted file mode 100644 index 282ba2be9..000000000 Binary files a/files/07_0128_meaning.mp3 and /dev/null differ diff --git a/files/07_0129.jpg b/files/07_0129.jpg deleted file mode 100644 index 178e4d64f..000000000 Binary files a/files/07_0129.jpg and /dev/null differ diff --git a/files/07_0129.mp3 b/files/07_0129.mp3 deleted file mode 100644 index 9039ab8c2..000000000 Binary files a/files/07_0129.mp3 and /dev/null differ diff --git a/files/07_0129_example.mp3 b/files/07_0129_example.mp3 deleted file mode 100644 index 3a5a645dd..000000000 Binary files a/files/07_0129_example.mp3 and /dev/null differ diff --git a/files/07_0129_meaning.mp3 b/files/07_0129_meaning.mp3 deleted file mode 100644 index 8d34d2c9b..000000000 Binary files a/files/07_0129_meaning.mp3 and /dev/null differ diff --git a/files/07_0130.jpg b/files/07_0130.jpg deleted file mode 100644 index a37ff202f..000000000 Binary files a/files/07_0130.jpg and /dev/null differ diff --git a/files/07_0130.mp3 b/files/07_0130.mp3 deleted file mode 100644 index 459b607b6..000000000 Binary files a/files/07_0130.mp3 and /dev/null differ diff --git a/files/07_0130_example.mp3 b/files/07_0130_example.mp3 deleted file mode 100644 index b62bb5c3f..000000000 Binary files a/files/07_0130_example.mp3 and /dev/null differ diff --git a/files/07_0130_meaning.mp3 b/files/07_0130_meaning.mp3 deleted file mode 100644 index 6df54fd57..000000000 Binary files a/files/07_0130_meaning.mp3 and /dev/null differ diff --git a/files/07_0131.jpg b/files/07_0131.jpg deleted file mode 100644 index b4a8e5c42..000000000 Binary files a/files/07_0131.jpg and /dev/null differ diff --git a/files/07_0131.mp3 b/files/07_0131.mp3 deleted file mode 100644 index 54eab7584..000000000 Binary files a/files/07_0131.mp3 and /dev/null differ diff --git a/files/07_0131_example.mp3 b/files/07_0131_example.mp3 deleted file mode 100644 index 3e378901c..000000000 Binary files a/files/07_0131_example.mp3 and /dev/null differ diff --git a/files/07_0131_meaning.mp3 b/files/07_0131_meaning.mp3 deleted file mode 100644 index a81e66c54..000000000 Binary files a/files/07_0131_meaning.mp3 and /dev/null differ diff --git a/files/07_0132.jpg b/files/07_0132.jpg deleted file mode 100644 index c52e2e4c3..000000000 Binary files a/files/07_0132.jpg and /dev/null differ diff --git a/files/07_0132.mp3 b/files/07_0132.mp3 deleted file mode 100644 index 0fc3d63d1..000000000 Binary files a/files/07_0132.mp3 and /dev/null differ diff --git a/files/07_0132_example.mp3 b/files/07_0132_example.mp3 deleted file mode 100644 index 68c15d616..000000000 Binary files a/files/07_0132_example.mp3 and /dev/null differ diff --git a/files/07_0132_meaning.mp3 b/files/07_0132_meaning.mp3 deleted file mode 100644 index a5431fcd5..000000000 Binary files a/files/07_0132_meaning.mp3 and /dev/null differ diff --git a/files/07_0133.jpg b/files/07_0133.jpg deleted file mode 100644 index 09027332d..000000000 Binary files a/files/07_0133.jpg and /dev/null differ diff --git a/files/07_0133.mp3 b/files/07_0133.mp3 deleted file mode 100644 index e995fad89..000000000 Binary files a/files/07_0133.mp3 and /dev/null differ diff --git a/files/07_0133_example.mp3 b/files/07_0133_example.mp3 deleted file mode 100644 index f860dffda..000000000 Binary files a/files/07_0133_example.mp3 and /dev/null differ diff --git a/files/07_0133_meaning.mp3 b/files/07_0133_meaning.mp3 deleted file mode 100644 index 5c8054599..000000000 Binary files a/files/07_0133_meaning.mp3 and /dev/null differ diff --git a/files/07_0134.jpg b/files/07_0134.jpg deleted file mode 100644 index 56fc63231..000000000 Binary files a/files/07_0134.jpg and /dev/null differ diff --git a/files/07_0134.mp3 b/files/07_0134.mp3 deleted file mode 100644 index c161ee074..000000000 Binary files a/files/07_0134.mp3 and /dev/null differ diff --git a/files/07_0134_example.mp3 b/files/07_0134_example.mp3 deleted file mode 100644 index dff7720b5..000000000 Binary files a/files/07_0134_example.mp3 and /dev/null differ diff --git a/files/07_0134_meaning.mp3 b/files/07_0134_meaning.mp3 deleted file mode 100644 index 468dcea36..000000000 Binary files a/files/07_0134_meaning.mp3 and /dev/null differ diff --git a/files/07_0135.jpg b/files/07_0135.jpg deleted file mode 100644 index acfc652bc..000000000 Binary files a/files/07_0135.jpg and /dev/null differ diff --git a/files/07_0135.mp3 b/files/07_0135.mp3 deleted file mode 100644 index ed17765d2..000000000 Binary files a/files/07_0135.mp3 and /dev/null differ diff --git a/files/07_0135_example.mp3 b/files/07_0135_example.mp3 deleted file mode 100644 index 58bfa3daf..000000000 Binary files a/files/07_0135_example.mp3 and /dev/null differ diff --git a/files/07_0135_meaning.mp3 b/files/07_0135_meaning.mp3 deleted file mode 100644 index f5015ea71..000000000 Binary files a/files/07_0135_meaning.mp3 and /dev/null differ diff --git a/files/07_0136.jpg b/files/07_0136.jpg deleted file mode 100644 index df45af4fb..000000000 Binary files a/files/07_0136.jpg and /dev/null differ diff --git a/files/07_0136.mp3 b/files/07_0136.mp3 deleted file mode 100644 index 7081b674e..000000000 Binary files a/files/07_0136.mp3 and /dev/null differ diff --git a/files/07_0136_example.mp3 b/files/07_0136_example.mp3 deleted file mode 100644 index 2adaf1a78..000000000 Binary files a/files/07_0136_example.mp3 and /dev/null differ diff --git a/files/07_0136_meaning.mp3 b/files/07_0136_meaning.mp3 deleted file mode 100644 index 22b01cd7b..000000000 Binary files a/files/07_0136_meaning.mp3 and /dev/null differ diff --git a/files/07_0137.jpg b/files/07_0137.jpg deleted file mode 100644 index 0f471d215..000000000 Binary files a/files/07_0137.jpg and /dev/null differ diff --git a/files/07_0137.mp3 b/files/07_0137.mp3 deleted file mode 100644 index 7ae9989a9..000000000 Binary files a/files/07_0137.mp3 and /dev/null differ diff --git a/files/07_0137_example.mp3 b/files/07_0137_example.mp3 deleted file mode 100644 index 31523d44d..000000000 Binary files a/files/07_0137_example.mp3 and /dev/null differ diff --git a/files/07_0137_meaning.mp3 b/files/07_0137_meaning.mp3 deleted file mode 100644 index 70680e5d0..000000000 Binary files a/files/07_0137_meaning.mp3 and /dev/null differ diff --git a/files/07_0138.jpg b/files/07_0138.jpg deleted file mode 100644 index e6e1b2671..000000000 Binary files a/files/07_0138.jpg and /dev/null differ diff --git a/files/07_0138.mp3 b/files/07_0138.mp3 deleted file mode 100644 index b63a16641..000000000 Binary files a/files/07_0138.mp3 and /dev/null differ diff --git a/files/07_0138_example.mp3 b/files/07_0138_example.mp3 deleted file mode 100644 index 156662fbd..000000000 Binary files a/files/07_0138_example.mp3 and /dev/null differ diff --git a/files/07_0138_meaning.mp3 b/files/07_0138_meaning.mp3 deleted file mode 100644 index 6d9127e8c..000000000 Binary files a/files/07_0138_meaning.mp3 and /dev/null differ diff --git a/files/07_0139.jpg b/files/07_0139.jpg deleted file mode 100644 index 25b59a2cc..000000000 Binary files a/files/07_0139.jpg and /dev/null differ diff --git a/files/07_0139.mp3 b/files/07_0139.mp3 deleted file mode 100644 index 34ef74268..000000000 Binary files a/files/07_0139.mp3 and /dev/null differ diff --git a/files/07_0139_example.mp3 b/files/07_0139_example.mp3 deleted file mode 100644 index b67617670..000000000 Binary files a/files/07_0139_example.mp3 and /dev/null differ diff --git a/files/07_0139_meaning.mp3 b/files/07_0139_meaning.mp3 deleted file mode 100644 index f850d277f..000000000 Binary files a/files/07_0139_meaning.mp3 and /dev/null differ diff --git a/files/07_0140.jpg b/files/07_0140.jpg deleted file mode 100644 index c74713bfd..000000000 Binary files a/files/07_0140.jpg and /dev/null differ diff --git a/files/07_0140.mp3 b/files/07_0140.mp3 deleted file mode 100644 index 5f0ee2645..000000000 Binary files a/files/07_0140.mp3 and /dev/null differ diff --git a/files/07_0140_example.mp3 b/files/07_0140_example.mp3 deleted file mode 100644 index 0c001efcc..000000000 Binary files a/files/07_0140_example.mp3 and /dev/null differ diff --git a/files/07_0140_meaning.mp3 b/files/07_0140_meaning.mp3 deleted file mode 100644 index 8ae39e176..000000000 Binary files a/files/07_0140_meaning.mp3 and /dev/null differ diff --git a/files/07_0721.jpg b/files/07_0721.jpg deleted file mode 100644 index a860dd9ee..000000000 Binary files a/files/07_0721.jpg and /dev/null differ diff --git a/files/07_0721.mp3 b/files/07_0721.mp3 deleted file mode 100644 index 6f44c9638..000000000 Binary files a/files/07_0721.mp3 and /dev/null differ diff --git a/files/07_0721_example.mp3 b/files/07_0721_example.mp3 deleted file mode 100644 index 2e06cb5dd..000000000 Binary files a/files/07_0721_example.mp3 and /dev/null differ diff --git a/files/07_0721_meaning.mp3 b/files/07_0721_meaning.mp3 deleted file mode 100644 index f97dca993..000000000 Binary files a/files/07_0721_meaning.mp3 and /dev/null differ diff --git a/files/07_0722.jpg b/files/07_0722.jpg deleted file mode 100644 index f75ace40b..000000000 Binary files a/files/07_0722.jpg and /dev/null differ diff --git a/files/07_0722.mp3 b/files/07_0722.mp3 deleted file mode 100644 index 5b0f4b668..000000000 Binary files a/files/07_0722.mp3 and /dev/null differ diff --git a/files/07_0722_example.mp3 b/files/07_0722_example.mp3 deleted file mode 100644 index d6447f9f2..000000000 Binary files a/files/07_0722_example.mp3 and /dev/null differ diff --git a/files/07_0722_meaning.mp3 b/files/07_0722_meaning.mp3 deleted file mode 100644 index 5c10bac4f..000000000 Binary files a/files/07_0722_meaning.mp3 and /dev/null differ diff --git a/files/07_0723.jpg b/files/07_0723.jpg deleted file mode 100644 index 60c03faee..000000000 Binary files a/files/07_0723.jpg and /dev/null differ diff --git a/files/07_0723.mp3 b/files/07_0723.mp3 deleted file mode 100644 index 43d95b2ab..000000000 Binary files a/files/07_0723.mp3 and /dev/null differ diff --git a/files/07_0723_example.mp3 b/files/07_0723_example.mp3 deleted file mode 100644 index 8a7fbe650..000000000 Binary files a/files/07_0723_example.mp3 and /dev/null differ diff --git a/files/07_0723_meaning.mp3 b/files/07_0723_meaning.mp3 deleted file mode 100644 index 065c9e18f..000000000 Binary files a/files/07_0723_meaning.mp3 and /dev/null differ diff --git a/files/07_0724.jpg b/files/07_0724.jpg deleted file mode 100644 index cd3c29ec5..000000000 Binary files a/files/07_0724.jpg and /dev/null differ diff --git a/files/07_0724.mp3 b/files/07_0724.mp3 deleted file mode 100644 index d693292b4..000000000 Binary files a/files/07_0724.mp3 and /dev/null differ diff --git a/files/07_0724_example.mp3 b/files/07_0724_example.mp3 deleted file mode 100644 index 69cdcff06..000000000 Binary files a/files/07_0724_example.mp3 and /dev/null differ diff --git a/files/07_0724_meaning.mp3 b/files/07_0724_meaning.mp3 deleted file mode 100644 index 71015a230..000000000 Binary files a/files/07_0724_meaning.mp3 and /dev/null differ diff --git a/files/07_0725.jpg b/files/07_0725.jpg deleted file mode 100644 index 910c5918a..000000000 Binary files a/files/07_0725.jpg and /dev/null differ diff --git a/files/07_0725.mp3 b/files/07_0725.mp3 deleted file mode 100644 index 2cd1a24db..000000000 Binary files a/files/07_0725.mp3 and /dev/null differ diff --git a/files/07_0725_example.mp3 b/files/07_0725_example.mp3 deleted file mode 100644 index 0b89b5088..000000000 Binary files a/files/07_0725_example.mp3 and /dev/null differ diff --git a/files/07_0725_meaning.mp3 b/files/07_0725_meaning.mp3 deleted file mode 100644 index 8b7978510..000000000 Binary files a/files/07_0725_meaning.mp3 and /dev/null differ diff --git a/files/07_0726.jpg b/files/07_0726.jpg deleted file mode 100644 index 1aad10575..000000000 Binary files a/files/07_0726.jpg and /dev/null differ diff --git a/files/07_0726.mp3 b/files/07_0726.mp3 deleted file mode 100644 index 0342ac886..000000000 Binary files a/files/07_0726.mp3 and /dev/null differ diff --git a/files/07_0726_example.mp3 b/files/07_0726_example.mp3 deleted file mode 100644 index f340af1fc..000000000 Binary files a/files/07_0726_example.mp3 and /dev/null differ diff --git a/files/07_0726_meaning.mp3 b/files/07_0726_meaning.mp3 deleted file mode 100644 index 2e72dafba..000000000 Binary files a/files/07_0726_meaning.mp3 and /dev/null differ diff --git a/files/07_0727.jpg b/files/07_0727.jpg deleted file mode 100644 index 751902caf..000000000 Binary files a/files/07_0727.jpg and /dev/null differ diff --git a/files/07_0727.mp3 b/files/07_0727.mp3 deleted file mode 100644 index 899e9fe64..000000000 Binary files a/files/07_0727.mp3 and /dev/null differ diff --git a/files/07_0727_example.mp3 b/files/07_0727_example.mp3 deleted file mode 100644 index c89e393db..000000000 Binary files a/files/07_0727_example.mp3 and /dev/null differ diff --git a/files/07_0727_meaning.mp3 b/files/07_0727_meaning.mp3 deleted file mode 100644 index f31992a9b..000000000 Binary files a/files/07_0727_meaning.mp3 and /dev/null differ diff --git a/files/07_0728.jpg b/files/07_0728.jpg deleted file mode 100644 index f56c0dc71..000000000 Binary files a/files/07_0728.jpg and /dev/null differ diff --git a/files/07_0728.mp3 b/files/07_0728.mp3 deleted file mode 100644 index dff6ecf91..000000000 Binary files a/files/07_0728.mp3 and /dev/null differ diff --git a/files/07_0728_example.mp3 b/files/07_0728_example.mp3 deleted file mode 100644 index f0cf89a17..000000000 Binary files a/files/07_0728_example.mp3 and /dev/null differ diff --git a/files/07_0728_meaning.mp3 b/files/07_0728_meaning.mp3 deleted file mode 100644 index 8d02160f2..000000000 Binary files a/files/07_0728_meaning.mp3 and /dev/null differ diff --git a/files/07_0729.jpg b/files/07_0729.jpg deleted file mode 100644 index a8edc2121..000000000 Binary files a/files/07_0729.jpg and /dev/null differ diff --git a/files/07_0729.mp3 b/files/07_0729.mp3 deleted file mode 100644 index 785eac5ce..000000000 Binary files a/files/07_0729.mp3 and /dev/null differ diff --git a/files/07_0729_example.mp3 b/files/07_0729_example.mp3 deleted file mode 100644 index 5090d61dc..000000000 Binary files a/files/07_0729_example.mp3 and /dev/null differ diff --git a/files/07_0729_meaning.mp3 b/files/07_0729_meaning.mp3 deleted file mode 100644 index 9e4b263c3..000000000 Binary files a/files/07_0729_meaning.mp3 and /dev/null differ diff --git a/files/07_0730.jpg b/files/07_0730.jpg deleted file mode 100644 index 36b0d6ba5..000000000 Binary files a/files/07_0730.jpg and /dev/null differ diff --git a/files/07_0730.mp3 b/files/07_0730.mp3 deleted file mode 100644 index 43cdf823a..000000000 Binary files a/files/07_0730.mp3 and /dev/null differ diff --git a/files/07_0730_example.mp3 b/files/07_0730_example.mp3 deleted file mode 100644 index 91299af99..000000000 Binary files a/files/07_0730_example.mp3 and /dev/null differ diff --git a/files/07_0730_meaning.mp3 b/files/07_0730_meaning.mp3 deleted file mode 100644 index 79ae57ae4..000000000 Binary files a/files/07_0730_meaning.mp3 and /dev/null differ diff --git a/files/07_0731.jpg b/files/07_0731.jpg deleted file mode 100644 index 56bb87150..000000000 Binary files a/files/07_0731.jpg and /dev/null differ diff --git a/files/07_0731.mp3 b/files/07_0731.mp3 deleted file mode 100644 index f451f81fa..000000000 Binary files a/files/07_0731.mp3 and /dev/null differ diff --git a/files/07_0731_example.mp3 b/files/07_0731_example.mp3 deleted file mode 100644 index 7dd331ca8..000000000 Binary files a/files/07_0731_example.mp3 and /dev/null differ diff --git a/files/07_0731_meaning.mp3 b/files/07_0731_meaning.mp3 deleted file mode 100644 index 80511177f..000000000 Binary files a/files/07_0731_meaning.mp3 and /dev/null differ diff --git a/files/07_0732.jpg b/files/07_0732.jpg deleted file mode 100644 index 9363e35c3..000000000 Binary files a/files/07_0732.jpg and /dev/null differ diff --git a/files/07_0732.mp3 b/files/07_0732.mp3 deleted file mode 100644 index c94ba795d..000000000 Binary files a/files/07_0732.mp3 and /dev/null differ diff --git a/files/07_0732_example.mp3 b/files/07_0732_example.mp3 deleted file mode 100644 index 83358555e..000000000 Binary files a/files/07_0732_example.mp3 and /dev/null differ diff --git a/files/07_0732_meaning.mp3 b/files/07_0732_meaning.mp3 deleted file mode 100644 index 08f950217..000000000 Binary files a/files/07_0732_meaning.mp3 and /dev/null differ diff --git a/files/07_0733.jpg b/files/07_0733.jpg deleted file mode 100644 index 6984d8ca2..000000000 Binary files a/files/07_0733.jpg and /dev/null differ diff --git a/files/07_0733.mp3 b/files/07_0733.mp3 deleted file mode 100644 index aca4a6b4c..000000000 Binary files a/files/07_0733.mp3 and /dev/null differ diff --git a/files/07_0733_example.mp3 b/files/07_0733_example.mp3 deleted file mode 100644 index 44cee6588..000000000 Binary files a/files/07_0733_example.mp3 and /dev/null differ diff --git a/files/07_0733_meaning.mp3 b/files/07_0733_meaning.mp3 deleted file mode 100644 index 862f5e014..000000000 Binary files a/files/07_0733_meaning.mp3 and /dev/null differ diff --git a/files/07_0734.jpg b/files/07_0734.jpg deleted file mode 100644 index a4f1d376b..000000000 Binary files a/files/07_0734.jpg and /dev/null differ diff --git a/files/07_0734.mp3 b/files/07_0734.mp3 deleted file mode 100644 index 3b0aebf1a..000000000 Binary files a/files/07_0734.mp3 and /dev/null differ diff --git a/files/07_0734_example.mp3 b/files/07_0734_example.mp3 deleted file mode 100644 index aa0edfffe..000000000 Binary files a/files/07_0734_example.mp3 and /dev/null differ diff --git a/files/07_0734_meaning.mp3 b/files/07_0734_meaning.mp3 deleted file mode 100644 index bb5ced82d..000000000 Binary files a/files/07_0734_meaning.mp3 and /dev/null differ diff --git a/files/07_0735.jpg b/files/07_0735.jpg deleted file mode 100644 index 087a8e9ef..000000000 Binary files a/files/07_0735.jpg and /dev/null differ diff --git a/files/07_0735.mp3 b/files/07_0735.mp3 deleted file mode 100644 index ede5ed3e8..000000000 Binary files a/files/07_0735.mp3 and /dev/null differ diff --git a/files/07_0735_example.mp3 b/files/07_0735_example.mp3 deleted file mode 100644 index fb8d75fd6..000000000 Binary files a/files/07_0735_example.mp3 and /dev/null differ diff --git a/files/07_0735_meaning.mp3 b/files/07_0735_meaning.mp3 deleted file mode 100644 index ceeba5b9a..000000000 Binary files a/files/07_0735_meaning.mp3 and /dev/null differ diff --git a/files/07_0736.jpg b/files/07_0736.jpg deleted file mode 100644 index 372eae328..000000000 Binary files a/files/07_0736.jpg and /dev/null differ diff --git a/files/07_0736.mp3 b/files/07_0736.mp3 deleted file mode 100644 index e4a801902..000000000 Binary files a/files/07_0736.mp3 and /dev/null differ diff --git a/files/07_0736_example.mp3 b/files/07_0736_example.mp3 deleted file mode 100644 index 818806a11..000000000 Binary files a/files/07_0736_example.mp3 and /dev/null differ diff --git a/files/07_0736_meaning.mp3 b/files/07_0736_meaning.mp3 deleted file mode 100644 index df1b926b8..000000000 Binary files a/files/07_0736_meaning.mp3 and /dev/null differ diff --git a/files/07_0737.jpg b/files/07_0737.jpg deleted file mode 100644 index 0b159bbff..000000000 Binary files a/files/07_0737.jpg and /dev/null differ diff --git a/files/07_0737.mp3 b/files/07_0737.mp3 deleted file mode 100644 index c7876ae0e..000000000 Binary files a/files/07_0737.mp3 and /dev/null differ diff --git a/files/07_0737_example.mp3 b/files/07_0737_example.mp3 deleted file mode 100644 index dc7c1ce6c..000000000 Binary files a/files/07_0737_example.mp3 and /dev/null differ diff --git a/files/07_0737_meaning.mp3 b/files/07_0737_meaning.mp3 deleted file mode 100644 index 3df89009a..000000000 Binary files a/files/07_0737_meaning.mp3 and /dev/null differ diff --git a/files/07_0738.jpg b/files/07_0738.jpg deleted file mode 100644 index 4fbd4e431..000000000 Binary files a/files/07_0738.jpg and /dev/null differ diff --git a/files/07_0738.mp3 b/files/07_0738.mp3 deleted file mode 100644 index 1e0d75062..000000000 Binary files a/files/07_0738.mp3 and /dev/null differ diff --git a/files/07_0738_example.mp3 b/files/07_0738_example.mp3 deleted file mode 100644 index 4242b2d7d..000000000 Binary files a/files/07_0738_example.mp3 and /dev/null differ diff --git a/files/07_0738_meaning.mp3 b/files/07_0738_meaning.mp3 deleted file mode 100644 index 320fb2167..000000000 Binary files a/files/07_0738_meaning.mp3 and /dev/null differ diff --git a/files/07_0739.jpg b/files/07_0739.jpg deleted file mode 100644 index b926d3471..000000000 Binary files a/files/07_0739.jpg and /dev/null differ diff --git a/files/07_0739.mp3 b/files/07_0739.mp3 deleted file mode 100644 index edc1a8898..000000000 Binary files a/files/07_0739.mp3 and /dev/null differ diff --git a/files/07_0739_example.mp3 b/files/07_0739_example.mp3 deleted file mode 100644 index d10a60518..000000000 Binary files a/files/07_0739_example.mp3 and /dev/null differ diff --git a/files/07_0739_meaning.mp3 b/files/07_0739_meaning.mp3 deleted file mode 100644 index c639baada..000000000 Binary files a/files/07_0739_meaning.mp3 and /dev/null differ diff --git a/files/07_0740.jpg b/files/07_0740.jpg deleted file mode 100644 index 0b9d4c08b..000000000 Binary files a/files/07_0740.jpg and /dev/null differ diff --git a/files/07_0740.mp3 b/files/07_0740.mp3 deleted file mode 100644 index 06ae6ebb7..000000000 Binary files a/files/07_0740.mp3 and /dev/null differ diff --git a/files/07_0740_example.mp3 b/files/07_0740_example.mp3 deleted file mode 100644 index 09d16be88..000000000 Binary files a/files/07_0740_example.mp3 and /dev/null differ diff --git a/files/07_0740_meaning.mp3 b/files/07_0740_meaning.mp3 deleted file mode 100644 index ce6bc74e4..000000000 Binary files a/files/07_0740_meaning.mp3 and /dev/null differ diff --git a/files/07_1321.jpg b/files/07_1321.jpg deleted file mode 100644 index 22c1905e6..000000000 Binary files a/files/07_1321.jpg and /dev/null differ diff --git a/files/07_1321.mp3 b/files/07_1321.mp3 deleted file mode 100644 index b6bc952fc..000000000 Binary files a/files/07_1321.mp3 and /dev/null differ diff --git a/files/07_1321_example.mp3 b/files/07_1321_example.mp3 deleted file mode 100644 index 649e09f2e..000000000 Binary files a/files/07_1321_example.mp3 and /dev/null differ diff --git a/files/07_1321_meaning.mp3 b/files/07_1321_meaning.mp3 deleted file mode 100644 index 8a9ec0e6c..000000000 Binary files a/files/07_1321_meaning.mp3 and /dev/null differ diff --git a/files/07_1322.jpg b/files/07_1322.jpg deleted file mode 100644 index 4b60e74d1..000000000 Binary files a/files/07_1322.jpg and /dev/null differ diff --git a/files/07_1322.mp3 b/files/07_1322.mp3 deleted file mode 100644 index 11ee36639..000000000 Binary files a/files/07_1322.mp3 and /dev/null differ diff --git a/files/07_1322_example.mp3 b/files/07_1322_example.mp3 deleted file mode 100644 index 176e9537f..000000000 Binary files a/files/07_1322_example.mp3 and /dev/null differ diff --git a/files/07_1322_meaning.mp3 b/files/07_1322_meaning.mp3 deleted file mode 100644 index 41387bdd3..000000000 Binary files a/files/07_1322_meaning.mp3 and /dev/null differ diff --git a/files/07_1323.jpg b/files/07_1323.jpg deleted file mode 100644 index e604447ec..000000000 Binary files a/files/07_1323.jpg and /dev/null differ diff --git a/files/07_1323.mp3 b/files/07_1323.mp3 deleted file mode 100644 index 2bf72f47c..000000000 Binary files a/files/07_1323.mp3 and /dev/null differ diff --git a/files/07_1323_example.mp3 b/files/07_1323_example.mp3 deleted file mode 100644 index ab6165a59..000000000 Binary files a/files/07_1323_example.mp3 and /dev/null differ diff --git a/files/07_1323_meaning.mp3 b/files/07_1323_meaning.mp3 deleted file mode 100644 index 74c5577c1..000000000 Binary files a/files/07_1323_meaning.mp3 and /dev/null differ diff --git a/files/07_1324.jpg b/files/07_1324.jpg deleted file mode 100644 index 9257798c5..000000000 Binary files a/files/07_1324.jpg and /dev/null differ diff --git a/files/07_1324.mp3 b/files/07_1324.mp3 deleted file mode 100644 index 28066b4b0..000000000 Binary files a/files/07_1324.mp3 and /dev/null differ diff --git a/files/07_1324_example.mp3 b/files/07_1324_example.mp3 deleted file mode 100644 index 8ded4aa43..000000000 Binary files a/files/07_1324_example.mp3 and /dev/null differ diff --git a/files/07_1324_meaning.mp3 b/files/07_1324_meaning.mp3 deleted file mode 100644 index 83c48b568..000000000 Binary files a/files/07_1324_meaning.mp3 and /dev/null differ diff --git a/files/07_1325.jpg b/files/07_1325.jpg deleted file mode 100644 index 5abb6dbf8..000000000 Binary files a/files/07_1325.jpg and /dev/null differ diff --git a/files/07_1325.mp3 b/files/07_1325.mp3 deleted file mode 100644 index 3e626e1bb..000000000 Binary files a/files/07_1325.mp3 and /dev/null differ diff --git a/files/07_1325_example.mp3 b/files/07_1325_example.mp3 deleted file mode 100644 index 81b277d88..000000000 Binary files a/files/07_1325_example.mp3 and /dev/null differ diff --git a/files/07_1325_meaning.mp3 b/files/07_1325_meaning.mp3 deleted file mode 100644 index ea662e199..000000000 Binary files a/files/07_1325_meaning.mp3 and /dev/null differ diff --git a/files/07_1326.jpg b/files/07_1326.jpg deleted file mode 100644 index e088c2320..000000000 Binary files a/files/07_1326.jpg and /dev/null differ diff --git a/files/07_1326.mp3 b/files/07_1326.mp3 deleted file mode 100644 index cd0a30d6c..000000000 Binary files a/files/07_1326.mp3 and /dev/null differ diff --git a/files/07_1326_example.mp3 b/files/07_1326_example.mp3 deleted file mode 100644 index 5019a0461..000000000 Binary files a/files/07_1326_example.mp3 and /dev/null differ diff --git a/files/07_1326_meaning.mp3 b/files/07_1326_meaning.mp3 deleted file mode 100644 index 74e5222ce..000000000 Binary files a/files/07_1326_meaning.mp3 and /dev/null differ diff --git a/files/07_1327.jpg b/files/07_1327.jpg deleted file mode 100644 index 7934bc928..000000000 Binary files a/files/07_1327.jpg and /dev/null differ diff --git a/files/07_1327.mp3 b/files/07_1327.mp3 deleted file mode 100644 index 659bf6a42..000000000 Binary files a/files/07_1327.mp3 and /dev/null differ diff --git a/files/07_1327_example.mp3 b/files/07_1327_example.mp3 deleted file mode 100644 index d47918d5a..000000000 Binary files a/files/07_1327_example.mp3 and /dev/null differ diff --git a/files/07_1327_meaning.mp3 b/files/07_1327_meaning.mp3 deleted file mode 100644 index 34643eec1..000000000 Binary files a/files/07_1327_meaning.mp3 and /dev/null differ diff --git a/files/07_1328.jpg b/files/07_1328.jpg deleted file mode 100644 index 9705fc47c..000000000 Binary files a/files/07_1328.jpg and /dev/null differ diff --git a/files/07_1328.mp3 b/files/07_1328.mp3 deleted file mode 100644 index 5ad326c0e..000000000 Binary files a/files/07_1328.mp3 and /dev/null differ diff --git a/files/07_1328_example.mp3 b/files/07_1328_example.mp3 deleted file mode 100644 index 0db9e8aa2..000000000 Binary files a/files/07_1328_example.mp3 and /dev/null differ diff --git a/files/07_1328_meaning.mp3 b/files/07_1328_meaning.mp3 deleted file mode 100644 index 7104dde92..000000000 Binary files a/files/07_1328_meaning.mp3 and /dev/null differ diff --git a/files/07_1329.jpg b/files/07_1329.jpg deleted file mode 100644 index a45fb1947..000000000 Binary files a/files/07_1329.jpg and /dev/null differ diff --git a/files/07_1329.mp3 b/files/07_1329.mp3 deleted file mode 100644 index 63a95b6de..000000000 Binary files a/files/07_1329.mp3 and /dev/null differ diff --git a/files/07_1329_example.mp3 b/files/07_1329_example.mp3 deleted file mode 100644 index df9daf2da..000000000 Binary files a/files/07_1329_example.mp3 and /dev/null differ diff --git a/files/07_1329_meaning.mp3 b/files/07_1329_meaning.mp3 deleted file mode 100644 index 306d7d3f1..000000000 Binary files a/files/07_1329_meaning.mp3 and /dev/null differ diff --git a/files/07_1330.jpg b/files/07_1330.jpg deleted file mode 100644 index 541bcbe96..000000000 Binary files a/files/07_1330.jpg and /dev/null differ diff --git a/files/07_1330.mp3 b/files/07_1330.mp3 deleted file mode 100644 index 0558cfb53..000000000 Binary files a/files/07_1330.mp3 and /dev/null differ diff --git a/files/07_1330_example.mp3 b/files/07_1330_example.mp3 deleted file mode 100644 index 23a12c6e6..000000000 Binary files a/files/07_1330_example.mp3 and /dev/null differ diff --git a/files/07_1330_meaning.mp3 b/files/07_1330_meaning.mp3 deleted file mode 100644 index d7b84f970..000000000 Binary files a/files/07_1330_meaning.mp3 and /dev/null differ diff --git a/files/07_1331.jpg b/files/07_1331.jpg deleted file mode 100644 index 53af82451..000000000 Binary files a/files/07_1331.jpg and /dev/null differ diff --git a/files/07_1331.mp3 b/files/07_1331.mp3 deleted file mode 100644 index f7e869760..000000000 Binary files a/files/07_1331.mp3 and /dev/null differ diff --git a/files/07_1331_example.mp3 b/files/07_1331_example.mp3 deleted file mode 100644 index 6d9428514..000000000 Binary files a/files/07_1331_example.mp3 and /dev/null differ diff --git a/files/07_1331_meaning.mp3 b/files/07_1331_meaning.mp3 deleted file mode 100644 index a12fabf1d..000000000 Binary files a/files/07_1331_meaning.mp3 and /dev/null differ diff --git a/files/07_1332.jpg b/files/07_1332.jpg deleted file mode 100644 index a67b59ce1..000000000 Binary files a/files/07_1332.jpg and /dev/null differ diff --git a/files/07_1332.mp3 b/files/07_1332.mp3 deleted file mode 100644 index 7f26d93dc..000000000 Binary files a/files/07_1332.mp3 and /dev/null differ diff --git a/files/07_1332_example.mp3 b/files/07_1332_example.mp3 deleted file mode 100644 index 8caf4bdf4..000000000 Binary files a/files/07_1332_example.mp3 and /dev/null differ diff --git a/files/07_1332_meaning.mp3 b/files/07_1332_meaning.mp3 deleted file mode 100644 index 0d56a4331..000000000 Binary files a/files/07_1332_meaning.mp3 and /dev/null differ diff --git a/files/07_1333.jpg b/files/07_1333.jpg deleted file mode 100644 index 999f65d87..000000000 Binary files a/files/07_1333.jpg and /dev/null differ diff --git a/files/07_1333.mp3 b/files/07_1333.mp3 deleted file mode 100644 index a4a4c0680..000000000 Binary files a/files/07_1333.mp3 and /dev/null differ diff --git a/files/07_1333_example.mp3 b/files/07_1333_example.mp3 deleted file mode 100644 index d6998bc00..000000000 Binary files a/files/07_1333_example.mp3 and /dev/null differ diff --git a/files/07_1333_meaning.mp3 b/files/07_1333_meaning.mp3 deleted file mode 100644 index c7c9b1721..000000000 Binary files a/files/07_1333_meaning.mp3 and /dev/null differ diff --git a/files/07_1334.jpg b/files/07_1334.jpg deleted file mode 100644 index fb0d532aa..000000000 Binary files a/files/07_1334.jpg and /dev/null differ diff --git a/files/07_1334.mp3 b/files/07_1334.mp3 deleted file mode 100644 index 904087715..000000000 Binary files a/files/07_1334.mp3 and /dev/null differ diff --git a/files/07_1334_example.mp3 b/files/07_1334_example.mp3 deleted file mode 100644 index 30e8830be..000000000 Binary files a/files/07_1334_example.mp3 and /dev/null differ diff --git a/files/07_1334_meaning.mp3 b/files/07_1334_meaning.mp3 deleted file mode 100644 index 5863d74b9..000000000 Binary files a/files/07_1334_meaning.mp3 and /dev/null differ diff --git a/files/07_1335.jpg b/files/07_1335.jpg deleted file mode 100644 index 87fc67f75..000000000 Binary files a/files/07_1335.jpg and /dev/null differ diff --git a/files/07_1335.mp3 b/files/07_1335.mp3 deleted file mode 100644 index fe0204703..000000000 Binary files a/files/07_1335.mp3 and /dev/null differ diff --git a/files/07_1335_example.mp3 b/files/07_1335_example.mp3 deleted file mode 100644 index 4ddbda2dc..000000000 Binary files a/files/07_1335_example.mp3 and /dev/null differ diff --git a/files/07_1335_meaning.mp3 b/files/07_1335_meaning.mp3 deleted file mode 100644 index b028aee1f..000000000 Binary files a/files/07_1335_meaning.mp3 and /dev/null differ diff --git a/files/07_1336.jpg b/files/07_1336.jpg deleted file mode 100644 index 84e771efb..000000000 Binary files a/files/07_1336.jpg and /dev/null differ diff --git a/files/07_1336.mp3 b/files/07_1336.mp3 deleted file mode 100644 index 3f93ec0a5..000000000 Binary files a/files/07_1336.mp3 and /dev/null differ diff --git a/files/07_1336_example.mp3 b/files/07_1336_example.mp3 deleted file mode 100644 index 549d16f20..000000000 Binary files a/files/07_1336_example.mp3 and /dev/null differ diff --git a/files/07_1336_meaning.mp3 b/files/07_1336_meaning.mp3 deleted file mode 100644 index 75b1bd461..000000000 Binary files a/files/07_1336_meaning.mp3 and /dev/null differ diff --git a/files/07_1337.jpg b/files/07_1337.jpg deleted file mode 100644 index f92acf21b..000000000 Binary files a/files/07_1337.jpg and /dev/null differ diff --git a/files/07_1337.mp3 b/files/07_1337.mp3 deleted file mode 100644 index 648fb7600..000000000 Binary files a/files/07_1337.mp3 and /dev/null differ diff --git a/files/07_1337_example.mp3 b/files/07_1337_example.mp3 deleted file mode 100644 index 2c55a007b..000000000 Binary files a/files/07_1337_example.mp3 and /dev/null differ diff --git a/files/07_1337_meaning.mp3 b/files/07_1337_meaning.mp3 deleted file mode 100644 index dc42fd3e3..000000000 Binary files a/files/07_1337_meaning.mp3 and /dev/null differ diff --git a/files/07_1338.jpg b/files/07_1338.jpg deleted file mode 100644 index e04591318..000000000 Binary files a/files/07_1338.jpg and /dev/null differ diff --git a/files/07_1338.mp3 b/files/07_1338.mp3 deleted file mode 100644 index f3f1255ac..000000000 Binary files a/files/07_1338.mp3 and /dev/null differ diff --git a/files/07_1338_example.mp3 b/files/07_1338_example.mp3 deleted file mode 100644 index 36675d4fc..000000000 Binary files a/files/07_1338_example.mp3 and /dev/null differ diff --git a/files/07_1338_meaning.mp3 b/files/07_1338_meaning.mp3 deleted file mode 100644 index 404008113..000000000 Binary files a/files/07_1338_meaning.mp3 and /dev/null differ diff --git a/files/07_1339.jpg b/files/07_1339.jpg deleted file mode 100644 index c01c8ca9b..000000000 Binary files a/files/07_1339.jpg and /dev/null differ diff --git a/files/07_1339.mp3 b/files/07_1339.mp3 deleted file mode 100644 index 4c0a2bf18..000000000 Binary files a/files/07_1339.mp3 and /dev/null differ diff --git a/files/07_1339_example.mp3 b/files/07_1339_example.mp3 deleted file mode 100644 index 5562bef0f..000000000 Binary files a/files/07_1339_example.mp3 and /dev/null differ diff --git a/files/07_1339_meaning.mp3 b/files/07_1339_meaning.mp3 deleted file mode 100644 index 49f7c4d29..000000000 Binary files a/files/07_1339_meaning.mp3 and /dev/null differ diff --git a/files/07_1340.jpg b/files/07_1340.jpg deleted file mode 100644 index 7f6456e72..000000000 Binary files a/files/07_1340.jpg and /dev/null differ diff --git a/files/07_1340.mp3 b/files/07_1340.mp3 deleted file mode 100644 index e16a4e8ae..000000000 Binary files a/files/07_1340.mp3 and /dev/null differ diff --git a/files/07_1340_example.mp3 b/files/07_1340_example.mp3 deleted file mode 100644 index 691bd039e..000000000 Binary files a/files/07_1340_example.mp3 and /dev/null differ diff --git a/files/07_1340_meaning.mp3 b/files/07_1340_meaning.mp3 deleted file mode 100644 index f9419154b..000000000 Binary files a/files/07_1340_meaning.mp3 and /dev/null differ diff --git a/files/07_1921.jpg b/files/07_1921.jpg deleted file mode 100644 index 42756e492..000000000 Binary files a/files/07_1921.jpg and /dev/null differ diff --git a/files/07_1921.mp3 b/files/07_1921.mp3 deleted file mode 100644 index f7a0b7b6a..000000000 Binary files a/files/07_1921.mp3 and /dev/null differ diff --git a/files/07_1921_example.mp3 b/files/07_1921_example.mp3 deleted file mode 100644 index 2435d2043..000000000 Binary files a/files/07_1921_example.mp3 and /dev/null differ diff --git a/files/07_1921_meaning.mp3 b/files/07_1921_meaning.mp3 deleted file mode 100644 index b2b808cfe..000000000 Binary files a/files/07_1921_meaning.mp3 and /dev/null differ diff --git a/files/07_1922.jpg b/files/07_1922.jpg deleted file mode 100644 index f09851638..000000000 Binary files a/files/07_1922.jpg and /dev/null differ diff --git a/files/07_1922.mp3 b/files/07_1922.mp3 deleted file mode 100644 index be0b1544d..000000000 Binary files a/files/07_1922.mp3 and /dev/null differ diff --git a/files/07_1922_example.mp3 b/files/07_1922_example.mp3 deleted file mode 100644 index 83693da30..000000000 Binary files a/files/07_1922_example.mp3 and /dev/null differ diff --git a/files/07_1922_meaning.mp3 b/files/07_1922_meaning.mp3 deleted file mode 100644 index 3763a4fb2..000000000 Binary files a/files/07_1922_meaning.mp3 and /dev/null differ diff --git a/files/07_1923.jpg b/files/07_1923.jpg deleted file mode 100644 index f4844b058..000000000 Binary files a/files/07_1923.jpg and /dev/null differ diff --git a/files/07_1923.mp3 b/files/07_1923.mp3 deleted file mode 100644 index 318a83331..000000000 Binary files a/files/07_1923.mp3 and /dev/null differ diff --git a/files/07_1923_example.mp3 b/files/07_1923_example.mp3 deleted file mode 100644 index 8df40df39..000000000 Binary files a/files/07_1923_example.mp3 and /dev/null differ diff --git a/files/07_1923_meaning.mp3 b/files/07_1923_meaning.mp3 deleted file mode 100644 index 1c4aa9337..000000000 Binary files a/files/07_1923_meaning.mp3 and /dev/null differ diff --git a/files/07_1924.jpg b/files/07_1924.jpg deleted file mode 100644 index 38e060040..000000000 Binary files a/files/07_1924.jpg and /dev/null differ diff --git a/files/07_1924.mp3 b/files/07_1924.mp3 deleted file mode 100644 index 07b753c36..000000000 Binary files a/files/07_1924.mp3 and /dev/null differ diff --git a/files/07_1924_example.mp3 b/files/07_1924_example.mp3 deleted file mode 100644 index 3c6fb1c61..000000000 Binary files a/files/07_1924_example.mp3 and /dev/null differ diff --git a/files/07_1924_meaning.mp3 b/files/07_1924_meaning.mp3 deleted file mode 100644 index 8ae2d8046..000000000 Binary files a/files/07_1924_meaning.mp3 and /dev/null differ diff --git a/files/07_1925.jpg b/files/07_1925.jpg deleted file mode 100644 index bd883040f..000000000 Binary files a/files/07_1925.jpg and /dev/null differ diff --git a/files/07_1925.mp3 b/files/07_1925.mp3 deleted file mode 100644 index 1b693df87..000000000 Binary files a/files/07_1925.mp3 and /dev/null differ diff --git a/files/07_1925_example.mp3 b/files/07_1925_example.mp3 deleted file mode 100644 index 901368c98..000000000 Binary files a/files/07_1925_example.mp3 and /dev/null differ diff --git a/files/07_1925_meaning.mp3 b/files/07_1925_meaning.mp3 deleted file mode 100644 index 28bb7730c..000000000 Binary files a/files/07_1925_meaning.mp3 and /dev/null differ diff --git a/files/07_1926.jpg b/files/07_1926.jpg deleted file mode 100644 index 18ea759d5..000000000 Binary files a/files/07_1926.jpg and /dev/null differ diff --git a/files/07_1926.mp3 b/files/07_1926.mp3 deleted file mode 100644 index ac7761de1..000000000 Binary files a/files/07_1926.mp3 and /dev/null differ diff --git a/files/07_1926_example.mp3 b/files/07_1926_example.mp3 deleted file mode 100644 index 0153712ec..000000000 Binary files a/files/07_1926_example.mp3 and /dev/null differ diff --git a/files/07_1926_meaning.mp3 b/files/07_1926_meaning.mp3 deleted file mode 100644 index fe920253f..000000000 Binary files a/files/07_1926_meaning.mp3 and /dev/null differ diff --git a/files/07_1927.jpg b/files/07_1927.jpg deleted file mode 100644 index b2b8adc85..000000000 Binary files a/files/07_1927.jpg and /dev/null differ diff --git a/files/07_1927.mp3 b/files/07_1927.mp3 deleted file mode 100644 index 894046d86..000000000 Binary files a/files/07_1927.mp3 and /dev/null differ diff --git a/files/07_1927_example.mp3 b/files/07_1927_example.mp3 deleted file mode 100644 index e609f4975..000000000 Binary files a/files/07_1927_example.mp3 and /dev/null differ diff --git a/files/07_1927_meaning.mp3 b/files/07_1927_meaning.mp3 deleted file mode 100644 index 4ba05c8d9..000000000 Binary files a/files/07_1927_meaning.mp3 and /dev/null differ diff --git a/files/07_1928.jpg b/files/07_1928.jpg deleted file mode 100644 index 555bfc819..000000000 Binary files a/files/07_1928.jpg and /dev/null differ diff --git a/files/07_1928.mp3 b/files/07_1928.mp3 deleted file mode 100644 index ffe3027f3..000000000 Binary files a/files/07_1928.mp3 and /dev/null differ diff --git a/files/07_1928_example.mp3 b/files/07_1928_example.mp3 deleted file mode 100644 index 237d615f0..000000000 Binary files a/files/07_1928_example.mp3 and /dev/null differ diff --git a/files/07_1928_meaning.mp3 b/files/07_1928_meaning.mp3 deleted file mode 100644 index 5eb23e5f0..000000000 Binary files a/files/07_1928_meaning.mp3 and /dev/null differ diff --git a/files/07_1929.jpg b/files/07_1929.jpg deleted file mode 100644 index 8f8ef2711..000000000 Binary files a/files/07_1929.jpg and /dev/null differ diff --git a/files/07_1929.mp3 b/files/07_1929.mp3 deleted file mode 100644 index 6690debab..000000000 Binary files a/files/07_1929.mp3 and /dev/null differ diff --git a/files/07_1929_example.mp3 b/files/07_1929_example.mp3 deleted file mode 100644 index 591ea9f53..000000000 Binary files a/files/07_1929_example.mp3 and /dev/null differ diff --git a/files/07_1929_meaning.mp3 b/files/07_1929_meaning.mp3 deleted file mode 100644 index f12a4fa57..000000000 Binary files a/files/07_1929_meaning.mp3 and /dev/null differ diff --git a/files/07_1930.jpg b/files/07_1930.jpg deleted file mode 100644 index b2c4bffe9..000000000 Binary files a/files/07_1930.jpg and /dev/null differ diff --git a/files/07_1930.mp3 b/files/07_1930.mp3 deleted file mode 100644 index 90a125b1c..000000000 Binary files a/files/07_1930.mp3 and /dev/null differ diff --git a/files/07_1930_example.mp3 b/files/07_1930_example.mp3 deleted file mode 100644 index c0f10bb36..000000000 Binary files a/files/07_1930_example.mp3 and /dev/null differ diff --git a/files/07_1930_meaning.mp3 b/files/07_1930_meaning.mp3 deleted file mode 100644 index 3215f0fbd..000000000 Binary files a/files/07_1930_meaning.mp3 and /dev/null differ diff --git a/files/07_1931.jpg b/files/07_1931.jpg deleted file mode 100644 index 71bca82b5..000000000 Binary files a/files/07_1931.jpg and /dev/null differ diff --git a/files/07_1931.mp3 b/files/07_1931.mp3 deleted file mode 100644 index 06312518a..000000000 Binary files a/files/07_1931.mp3 and /dev/null differ diff --git a/files/07_1931_example.mp3 b/files/07_1931_example.mp3 deleted file mode 100644 index 2e560ff60..000000000 Binary files a/files/07_1931_example.mp3 and /dev/null differ diff --git a/files/07_1931_meaning.mp3 b/files/07_1931_meaning.mp3 deleted file mode 100644 index c7d581792..000000000 Binary files a/files/07_1931_meaning.mp3 and /dev/null differ diff --git a/files/07_1932.jpg b/files/07_1932.jpg deleted file mode 100644 index 637b967b9..000000000 Binary files a/files/07_1932.jpg and /dev/null differ diff --git a/files/07_1932.mp3 b/files/07_1932.mp3 deleted file mode 100644 index 2c3ae9ea1..000000000 Binary files a/files/07_1932.mp3 and /dev/null differ diff --git a/files/07_1932_example.mp3 b/files/07_1932_example.mp3 deleted file mode 100644 index ce3e8fb77..000000000 Binary files a/files/07_1932_example.mp3 and /dev/null differ diff --git a/files/07_1932_meaning.mp3 b/files/07_1932_meaning.mp3 deleted file mode 100644 index aadecab09..000000000 Binary files a/files/07_1932_meaning.mp3 and /dev/null differ diff --git a/files/07_1933.jpg b/files/07_1933.jpg deleted file mode 100644 index 692afeebd..000000000 Binary files a/files/07_1933.jpg and /dev/null differ diff --git a/files/07_1933.mp3 b/files/07_1933.mp3 deleted file mode 100644 index 6495d2427..000000000 Binary files a/files/07_1933.mp3 and /dev/null differ diff --git a/files/07_1933_example.mp3 b/files/07_1933_example.mp3 deleted file mode 100644 index 6686030bc..000000000 Binary files a/files/07_1933_example.mp3 and /dev/null differ diff --git a/files/07_1933_meaning.mp3 b/files/07_1933_meaning.mp3 deleted file mode 100644 index 5b2af70d2..000000000 Binary files a/files/07_1933_meaning.mp3 and /dev/null differ diff --git a/files/07_1934.jpg b/files/07_1934.jpg deleted file mode 100644 index 6160f31bc..000000000 Binary files a/files/07_1934.jpg and /dev/null differ diff --git a/files/07_1934.mp3 b/files/07_1934.mp3 deleted file mode 100644 index 929bc02c8..000000000 Binary files a/files/07_1934.mp3 and /dev/null differ diff --git a/files/07_1934_example.mp3 b/files/07_1934_example.mp3 deleted file mode 100644 index d001174f9..000000000 Binary files a/files/07_1934_example.mp3 and /dev/null differ diff --git a/files/07_1934_meaning.mp3 b/files/07_1934_meaning.mp3 deleted file mode 100644 index b83ff5d4c..000000000 Binary files a/files/07_1934_meaning.mp3 and /dev/null differ diff --git a/files/07_1935.jpg b/files/07_1935.jpg deleted file mode 100644 index 384cad1e8..000000000 Binary files a/files/07_1935.jpg and /dev/null differ diff --git a/files/07_1935.mp3 b/files/07_1935.mp3 deleted file mode 100644 index 5244cf4c4..000000000 Binary files a/files/07_1935.mp3 and /dev/null differ diff --git a/files/07_1935_example.mp3 b/files/07_1935_example.mp3 deleted file mode 100644 index 15a05fd46..000000000 Binary files a/files/07_1935_example.mp3 and /dev/null differ diff --git a/files/07_1935_meaning.mp3 b/files/07_1935_meaning.mp3 deleted file mode 100644 index 6dc47e5be..000000000 Binary files a/files/07_1935_meaning.mp3 and /dev/null differ diff --git a/files/07_1936.jpg b/files/07_1936.jpg deleted file mode 100644 index b737dbe4d..000000000 Binary files a/files/07_1936.jpg and /dev/null differ diff --git a/files/07_1936.mp3 b/files/07_1936.mp3 deleted file mode 100644 index 9a9de6987..000000000 Binary files a/files/07_1936.mp3 and /dev/null differ diff --git a/files/07_1936_example.mp3 b/files/07_1936_example.mp3 deleted file mode 100644 index 152dab008..000000000 Binary files a/files/07_1936_example.mp3 and /dev/null differ diff --git a/files/07_1936_meaning.mp3 b/files/07_1936_meaning.mp3 deleted file mode 100644 index eac5fac15..000000000 Binary files a/files/07_1936_meaning.mp3 and /dev/null differ diff --git a/files/07_1937.jpg b/files/07_1937.jpg deleted file mode 100644 index 920028928..000000000 Binary files a/files/07_1937.jpg and /dev/null differ diff --git a/files/07_1937.mp3 b/files/07_1937.mp3 deleted file mode 100644 index 916ca2dda..000000000 Binary files a/files/07_1937.mp3 and /dev/null differ diff --git a/files/07_1937_example.mp3 b/files/07_1937_example.mp3 deleted file mode 100644 index 91ac3c723..000000000 Binary files a/files/07_1937_example.mp3 and /dev/null differ diff --git a/files/07_1937_meaning.mp3 b/files/07_1937_meaning.mp3 deleted file mode 100644 index 91149767f..000000000 Binary files a/files/07_1937_meaning.mp3 and /dev/null differ diff --git a/files/07_1938.jpg b/files/07_1938.jpg deleted file mode 100644 index b1552e31e..000000000 Binary files a/files/07_1938.jpg and /dev/null differ diff --git a/files/07_1938.mp3 b/files/07_1938.mp3 deleted file mode 100644 index 386596210..000000000 Binary files a/files/07_1938.mp3 and /dev/null differ diff --git a/files/07_1938_example.mp3 b/files/07_1938_example.mp3 deleted file mode 100644 index 2500fc733..000000000 Binary files a/files/07_1938_example.mp3 and /dev/null differ diff --git a/files/07_1938_meaning.mp3 b/files/07_1938_meaning.mp3 deleted file mode 100644 index 1daf7b06d..000000000 Binary files a/files/07_1938_meaning.mp3 and /dev/null differ diff --git a/files/07_1939.jpg b/files/07_1939.jpg deleted file mode 100644 index f4a5cc0c8..000000000 Binary files a/files/07_1939.jpg and /dev/null differ diff --git a/files/07_1939.mp3 b/files/07_1939.mp3 deleted file mode 100644 index 0f58414e2..000000000 Binary files a/files/07_1939.mp3 and /dev/null differ diff --git a/files/07_1939_example.mp3 b/files/07_1939_example.mp3 deleted file mode 100644 index 8b80b59cb..000000000 Binary files a/files/07_1939_example.mp3 and /dev/null differ diff --git a/files/07_1939_meaning.mp3 b/files/07_1939_meaning.mp3 deleted file mode 100644 index b7eb70291..000000000 Binary files a/files/07_1939_meaning.mp3 and /dev/null differ diff --git a/files/07_1940.jpg b/files/07_1940.jpg deleted file mode 100644 index fc8f6100d..000000000 Binary files a/files/07_1940.jpg and /dev/null differ diff --git a/files/07_1940.mp3 b/files/07_1940.mp3 deleted file mode 100644 index 514d2eab7..000000000 Binary files a/files/07_1940.mp3 and /dev/null differ diff --git a/files/07_1940_example.mp3 b/files/07_1940_example.mp3 deleted file mode 100644 index 10fe6c745..000000000 Binary files a/files/07_1940_example.mp3 and /dev/null differ diff --git a/files/07_1940_meaning.mp3 b/files/07_1940_meaning.mp3 deleted file mode 100644 index 2cddde8a7..000000000 Binary files a/files/07_1940_meaning.mp3 and /dev/null differ diff --git a/files/07_2521.jpg b/files/07_2521.jpg deleted file mode 100644 index ae6f6dcf8..000000000 Binary files a/files/07_2521.jpg and /dev/null differ diff --git a/files/07_2521.mp3 b/files/07_2521.mp3 deleted file mode 100644 index 8eb351ae9..000000000 Binary files a/files/07_2521.mp3 and /dev/null differ diff --git a/files/07_2521_example.mp3 b/files/07_2521_example.mp3 deleted file mode 100644 index 3ce234f8d..000000000 Binary files a/files/07_2521_example.mp3 and /dev/null differ diff --git a/files/07_2521_meaning.mp3 b/files/07_2521_meaning.mp3 deleted file mode 100644 index 93bf2f18e..000000000 Binary files a/files/07_2521_meaning.mp3 and /dev/null differ diff --git a/files/07_2522.jpg b/files/07_2522.jpg deleted file mode 100644 index 61c3a4011..000000000 Binary files a/files/07_2522.jpg and /dev/null differ diff --git a/files/07_2522.mp3 b/files/07_2522.mp3 deleted file mode 100644 index 37a86422b..000000000 Binary files a/files/07_2522.mp3 and /dev/null differ diff --git a/files/07_2522_example.mp3 b/files/07_2522_example.mp3 deleted file mode 100644 index e08776916..000000000 Binary files a/files/07_2522_example.mp3 and /dev/null differ diff --git a/files/07_2522_meaning.mp3 b/files/07_2522_meaning.mp3 deleted file mode 100644 index 69522815f..000000000 Binary files a/files/07_2522_meaning.mp3 and /dev/null differ diff --git a/files/07_2523.jpg b/files/07_2523.jpg deleted file mode 100644 index 6c58106ef..000000000 Binary files a/files/07_2523.jpg and /dev/null differ diff --git a/files/07_2523.mp3 b/files/07_2523.mp3 deleted file mode 100644 index 6f3929f79..000000000 Binary files a/files/07_2523.mp3 and /dev/null differ diff --git a/files/07_2523_example.mp3 b/files/07_2523_example.mp3 deleted file mode 100644 index 101581745..000000000 Binary files a/files/07_2523_example.mp3 and /dev/null differ diff --git a/files/07_2523_meaning.mp3 b/files/07_2523_meaning.mp3 deleted file mode 100644 index 57e35ebc4..000000000 Binary files a/files/07_2523_meaning.mp3 and /dev/null differ diff --git a/files/07_2524.jpg b/files/07_2524.jpg deleted file mode 100644 index 2d8250696..000000000 Binary files a/files/07_2524.jpg and /dev/null differ diff --git a/files/07_2524.mp3 b/files/07_2524.mp3 deleted file mode 100644 index c12ecfe61..000000000 Binary files a/files/07_2524.mp3 and /dev/null differ diff --git a/files/07_2524_example.mp3 b/files/07_2524_example.mp3 deleted file mode 100644 index 6da16bca9..000000000 Binary files a/files/07_2524_example.mp3 and /dev/null differ diff --git a/files/07_2524_meaning.mp3 b/files/07_2524_meaning.mp3 deleted file mode 100644 index 8ff41c47b..000000000 Binary files a/files/07_2524_meaning.mp3 and /dev/null differ diff --git a/files/07_2525.jpg b/files/07_2525.jpg deleted file mode 100644 index d783ebe27..000000000 Binary files a/files/07_2525.jpg and /dev/null differ diff --git a/files/07_2525.mp3 b/files/07_2525.mp3 deleted file mode 100644 index f5d7bad49..000000000 Binary files a/files/07_2525.mp3 and /dev/null differ diff --git a/files/07_2525_example.mp3 b/files/07_2525_example.mp3 deleted file mode 100644 index 6c5f2e55b..000000000 Binary files a/files/07_2525_example.mp3 and /dev/null differ diff --git a/files/07_2525_meaning.mp3 b/files/07_2525_meaning.mp3 deleted file mode 100644 index 04796ff7b..000000000 Binary files a/files/07_2525_meaning.mp3 and /dev/null differ diff --git a/files/07_2526.jpg b/files/07_2526.jpg deleted file mode 100644 index dd2bdb50d..000000000 Binary files a/files/07_2526.jpg and /dev/null differ diff --git a/files/07_2526.mp3 b/files/07_2526.mp3 deleted file mode 100644 index 7bdcdab9c..000000000 Binary files a/files/07_2526.mp3 and /dev/null differ diff --git a/files/07_2526_example.mp3 b/files/07_2526_example.mp3 deleted file mode 100644 index 9a7a30b9b..000000000 Binary files a/files/07_2526_example.mp3 and /dev/null differ diff --git a/files/07_2526_meaning.mp3 b/files/07_2526_meaning.mp3 deleted file mode 100644 index a79ea8126..000000000 Binary files a/files/07_2526_meaning.mp3 and /dev/null differ diff --git a/files/07_2527.jpg b/files/07_2527.jpg deleted file mode 100644 index f3d77f467..000000000 Binary files a/files/07_2527.jpg and /dev/null differ diff --git a/files/07_2527.mp3 b/files/07_2527.mp3 deleted file mode 100644 index a94776509..000000000 Binary files a/files/07_2527.mp3 and /dev/null differ diff --git a/files/07_2527_example.mp3 b/files/07_2527_example.mp3 deleted file mode 100644 index 99ec107a1..000000000 Binary files a/files/07_2527_example.mp3 and /dev/null differ diff --git a/files/07_2527_meaning.mp3 b/files/07_2527_meaning.mp3 deleted file mode 100644 index a099f3dc4..000000000 Binary files a/files/07_2527_meaning.mp3 and /dev/null differ diff --git a/files/07_2528.jpg b/files/07_2528.jpg deleted file mode 100644 index 2e4bd108a..000000000 Binary files a/files/07_2528.jpg and /dev/null differ diff --git a/files/07_2528.mp3 b/files/07_2528.mp3 deleted file mode 100644 index 9745d4bf2..000000000 Binary files a/files/07_2528.mp3 and /dev/null differ diff --git a/files/07_2528_example.mp3 b/files/07_2528_example.mp3 deleted file mode 100644 index 9c5e2ecbc..000000000 Binary files a/files/07_2528_example.mp3 and /dev/null differ diff --git a/files/07_2528_meaning.mp3 b/files/07_2528_meaning.mp3 deleted file mode 100644 index d0201805d..000000000 Binary files a/files/07_2528_meaning.mp3 and /dev/null differ diff --git a/files/07_2529.jpg b/files/07_2529.jpg deleted file mode 100644 index 6ffc7daf5..000000000 Binary files a/files/07_2529.jpg and /dev/null differ diff --git a/files/07_2529.mp3 b/files/07_2529.mp3 deleted file mode 100644 index fefd28051..000000000 Binary files a/files/07_2529.mp3 and /dev/null differ diff --git a/files/07_2529_example.mp3 b/files/07_2529_example.mp3 deleted file mode 100644 index db48a1dee..000000000 Binary files a/files/07_2529_example.mp3 and /dev/null differ diff --git a/files/07_2529_meaning.mp3 b/files/07_2529_meaning.mp3 deleted file mode 100644 index 9733b3a7e..000000000 Binary files a/files/07_2529_meaning.mp3 and /dev/null differ diff --git a/files/07_2530.jpg b/files/07_2530.jpg deleted file mode 100644 index 2d3079069..000000000 Binary files a/files/07_2530.jpg and /dev/null differ diff --git a/files/07_2530.mp3 b/files/07_2530.mp3 deleted file mode 100644 index 4add38898..000000000 Binary files a/files/07_2530.mp3 and /dev/null differ diff --git a/files/07_2530_example.mp3 b/files/07_2530_example.mp3 deleted file mode 100644 index 0b7c3ede6..000000000 Binary files a/files/07_2530_example.mp3 and /dev/null differ diff --git a/files/07_2530_meaning.mp3 b/files/07_2530_meaning.mp3 deleted file mode 100644 index ade9767fa..000000000 Binary files a/files/07_2530_meaning.mp3 and /dev/null differ diff --git a/files/07_2531.jpg b/files/07_2531.jpg deleted file mode 100644 index dac479304..000000000 Binary files a/files/07_2531.jpg and /dev/null differ diff --git a/files/07_2531.mp3 b/files/07_2531.mp3 deleted file mode 100644 index 47c6e2b06..000000000 Binary files a/files/07_2531.mp3 and /dev/null differ diff --git a/files/07_2531_example.mp3 b/files/07_2531_example.mp3 deleted file mode 100644 index 7d0e92420..000000000 Binary files a/files/07_2531_example.mp3 and /dev/null differ diff --git a/files/07_2531_meaning.mp3 b/files/07_2531_meaning.mp3 deleted file mode 100644 index 016bf9512..000000000 Binary files a/files/07_2531_meaning.mp3 and /dev/null differ diff --git a/files/07_2532.jpg b/files/07_2532.jpg deleted file mode 100644 index 8b519b998..000000000 Binary files a/files/07_2532.jpg and /dev/null differ diff --git a/files/07_2532.mp3 b/files/07_2532.mp3 deleted file mode 100644 index e9eeb89fd..000000000 Binary files a/files/07_2532.mp3 and /dev/null differ diff --git a/files/07_2532_example.mp3 b/files/07_2532_example.mp3 deleted file mode 100644 index e4b36677d..000000000 Binary files a/files/07_2532_example.mp3 and /dev/null differ diff --git a/files/07_2532_meaning.mp3 b/files/07_2532_meaning.mp3 deleted file mode 100644 index a64648291..000000000 Binary files a/files/07_2532_meaning.mp3 and /dev/null differ diff --git a/files/07_2533.jpg b/files/07_2533.jpg deleted file mode 100644 index 3d67305cf..000000000 Binary files a/files/07_2533.jpg and /dev/null differ diff --git a/files/07_2533.mp3 b/files/07_2533.mp3 deleted file mode 100644 index 6ef9d3146..000000000 Binary files a/files/07_2533.mp3 and /dev/null differ diff --git a/files/07_2533_example.mp3 b/files/07_2533_example.mp3 deleted file mode 100644 index 4f2afdf93..000000000 Binary files a/files/07_2533_example.mp3 and /dev/null differ diff --git a/files/07_2533_meaning.mp3 b/files/07_2533_meaning.mp3 deleted file mode 100644 index 6715e1938..000000000 Binary files a/files/07_2533_meaning.mp3 and /dev/null differ diff --git a/files/07_2534.jpg b/files/07_2534.jpg deleted file mode 100644 index 6a4cbbd9e..000000000 Binary files a/files/07_2534.jpg and /dev/null differ diff --git a/files/07_2534.mp3 b/files/07_2534.mp3 deleted file mode 100644 index 1e5462db4..000000000 Binary files a/files/07_2534.mp3 and /dev/null differ diff --git a/files/07_2534_example.mp3 b/files/07_2534_example.mp3 deleted file mode 100644 index f9f42dda3..000000000 Binary files a/files/07_2534_example.mp3 and /dev/null differ diff --git a/files/07_2534_meaning.mp3 b/files/07_2534_meaning.mp3 deleted file mode 100644 index 6012b31e7..000000000 Binary files a/files/07_2534_meaning.mp3 and /dev/null differ diff --git a/files/07_2535.jpg b/files/07_2535.jpg deleted file mode 100644 index add7bfdaf..000000000 Binary files a/files/07_2535.jpg and /dev/null differ diff --git a/files/07_2535.mp3 b/files/07_2535.mp3 deleted file mode 100644 index b1bf8ffa4..000000000 Binary files a/files/07_2535.mp3 and /dev/null differ diff --git a/files/07_2535_example.mp3 b/files/07_2535_example.mp3 deleted file mode 100644 index ad470a556..000000000 Binary files a/files/07_2535_example.mp3 and /dev/null differ diff --git a/files/07_2535_meaning.mp3 b/files/07_2535_meaning.mp3 deleted file mode 100644 index 18cd1c018..000000000 Binary files a/files/07_2535_meaning.mp3 and /dev/null differ diff --git a/files/07_2536.jpg b/files/07_2536.jpg deleted file mode 100644 index bc2c45687..000000000 Binary files a/files/07_2536.jpg and /dev/null differ diff --git a/files/07_2536.mp3 b/files/07_2536.mp3 deleted file mode 100644 index 6ac353574..000000000 Binary files a/files/07_2536.mp3 and /dev/null differ diff --git a/files/07_2536_example.mp3 b/files/07_2536_example.mp3 deleted file mode 100644 index 1ca0a39ed..000000000 Binary files a/files/07_2536_example.mp3 and /dev/null differ diff --git a/files/07_2536_meaning.mp3 b/files/07_2536_meaning.mp3 deleted file mode 100644 index fe156a6fb..000000000 Binary files a/files/07_2536_meaning.mp3 and /dev/null differ diff --git a/files/07_2537.jpg b/files/07_2537.jpg deleted file mode 100644 index bc932b04f..000000000 Binary files a/files/07_2537.jpg and /dev/null differ diff --git a/files/07_2537.mp3 b/files/07_2537.mp3 deleted file mode 100644 index 91da66f82..000000000 Binary files a/files/07_2537.mp3 and /dev/null differ diff --git a/files/07_2537_example.mp3 b/files/07_2537_example.mp3 deleted file mode 100644 index 0fb43f7ad..000000000 Binary files a/files/07_2537_example.mp3 and /dev/null differ diff --git a/files/07_2537_meaning.mp3 b/files/07_2537_meaning.mp3 deleted file mode 100644 index 48de179b0..000000000 Binary files a/files/07_2537_meaning.mp3 and /dev/null differ diff --git a/files/07_2538.jpg b/files/07_2538.jpg deleted file mode 100644 index a0b978bbc..000000000 Binary files a/files/07_2538.jpg and /dev/null differ diff --git a/files/07_2538.mp3 b/files/07_2538.mp3 deleted file mode 100644 index c9d9ef353..000000000 Binary files a/files/07_2538.mp3 and /dev/null differ diff --git a/files/07_2538_example.mp3 b/files/07_2538_example.mp3 deleted file mode 100644 index 73d790821..000000000 Binary files a/files/07_2538_example.mp3 and /dev/null differ diff --git a/files/07_2538_meaning.mp3 b/files/07_2538_meaning.mp3 deleted file mode 100644 index d1eb94be2..000000000 Binary files a/files/07_2538_meaning.mp3 and /dev/null differ diff --git a/files/07_2539.jpg b/files/07_2539.jpg deleted file mode 100644 index 4e332a938..000000000 Binary files a/files/07_2539.jpg and /dev/null differ diff --git a/files/07_2539.mp3 b/files/07_2539.mp3 deleted file mode 100644 index 849cabb40..000000000 Binary files a/files/07_2539.mp3 and /dev/null differ diff --git a/files/07_2539_example.mp3 b/files/07_2539_example.mp3 deleted file mode 100644 index b9af6020b..000000000 Binary files a/files/07_2539_example.mp3 and /dev/null differ diff --git a/files/07_2539_meaning.mp3 b/files/07_2539_meaning.mp3 deleted file mode 100644 index 56829253c..000000000 Binary files a/files/07_2539_meaning.mp3 and /dev/null differ diff --git a/files/07_2540.jpg b/files/07_2540.jpg deleted file mode 100644 index aa56c0cf9..000000000 Binary files a/files/07_2540.jpg and /dev/null differ diff --git a/files/07_2540.mp3 b/files/07_2540.mp3 deleted file mode 100644 index d1a823ea9..000000000 Binary files a/files/07_2540.mp3 and /dev/null differ diff --git a/files/07_2540_example.mp3 b/files/07_2540_example.mp3 deleted file mode 100644 index a4c4a593b..000000000 Binary files a/files/07_2540_example.mp3 and /dev/null differ diff --git a/files/07_2540_meaning.mp3 b/files/07_2540_meaning.mp3 deleted file mode 100644 index 173718759..000000000 Binary files a/files/07_2540_meaning.mp3 and /dev/null differ diff --git a/files/07_3121.jpg b/files/07_3121.jpg deleted file mode 100644 index 63e3467b1..000000000 Binary files a/files/07_3121.jpg and /dev/null differ diff --git a/files/07_3121.mp3 b/files/07_3121.mp3 deleted file mode 100644 index 38c0cbb38..000000000 Binary files a/files/07_3121.mp3 and /dev/null differ diff --git a/files/07_3121_example.mp3 b/files/07_3121_example.mp3 deleted file mode 100644 index d7203ab5e..000000000 Binary files a/files/07_3121_example.mp3 and /dev/null differ diff --git a/files/07_3121_meaning.mp3 b/files/07_3121_meaning.mp3 deleted file mode 100644 index 96ba83093..000000000 Binary files a/files/07_3121_meaning.mp3 and /dev/null differ diff --git a/files/07_3122.jpg b/files/07_3122.jpg deleted file mode 100644 index cadcd285b..000000000 Binary files a/files/07_3122.jpg and /dev/null differ diff --git a/files/07_3122.mp3 b/files/07_3122.mp3 deleted file mode 100644 index ddce3c4c8..000000000 Binary files a/files/07_3122.mp3 and /dev/null differ diff --git a/files/07_3122_example.mp3 b/files/07_3122_example.mp3 deleted file mode 100644 index fe020c50e..000000000 Binary files a/files/07_3122_example.mp3 and /dev/null differ diff --git a/files/07_3122_meaning.mp3 b/files/07_3122_meaning.mp3 deleted file mode 100644 index 12c5dd65f..000000000 Binary files a/files/07_3122_meaning.mp3 and /dev/null differ diff --git a/files/07_3123.jpg b/files/07_3123.jpg deleted file mode 100644 index 426ab34cf..000000000 Binary files a/files/07_3123.jpg and /dev/null differ diff --git a/files/07_3123.mp3 b/files/07_3123.mp3 deleted file mode 100644 index e5a2dfceb..000000000 Binary files a/files/07_3123.mp3 and /dev/null differ diff --git a/files/07_3123_example.mp3 b/files/07_3123_example.mp3 deleted file mode 100644 index 84ceade57..000000000 Binary files a/files/07_3123_example.mp3 and /dev/null differ diff --git a/files/07_3123_meaning.mp3 b/files/07_3123_meaning.mp3 deleted file mode 100644 index d113d87f3..000000000 Binary files a/files/07_3123_meaning.mp3 and /dev/null differ diff --git a/files/07_3124.jpg b/files/07_3124.jpg deleted file mode 100644 index d40e35b59..000000000 Binary files a/files/07_3124.jpg and /dev/null differ diff --git a/files/07_3124.mp3 b/files/07_3124.mp3 deleted file mode 100644 index a9f90e890..000000000 Binary files a/files/07_3124.mp3 and /dev/null differ diff --git a/files/07_3124_example.mp3 b/files/07_3124_example.mp3 deleted file mode 100644 index 0e1f36287..000000000 Binary files a/files/07_3124_example.mp3 and /dev/null differ diff --git a/files/07_3124_meaning.mp3 b/files/07_3124_meaning.mp3 deleted file mode 100644 index 6f35b48f9..000000000 Binary files a/files/07_3124_meaning.mp3 and /dev/null differ diff --git a/files/07_3125.jpg b/files/07_3125.jpg deleted file mode 100644 index db9047056..000000000 Binary files a/files/07_3125.jpg and /dev/null differ diff --git a/files/07_3125.mp3 b/files/07_3125.mp3 deleted file mode 100644 index 48cdc0934..000000000 Binary files a/files/07_3125.mp3 and /dev/null differ diff --git a/files/07_3125_example.mp3 b/files/07_3125_example.mp3 deleted file mode 100644 index 1574c9722..000000000 Binary files a/files/07_3125_example.mp3 and /dev/null differ diff --git a/files/07_3125_meaning.mp3 b/files/07_3125_meaning.mp3 deleted file mode 100644 index 990c6fb17..000000000 Binary files a/files/07_3125_meaning.mp3 and /dev/null differ diff --git a/files/07_3126.jpg b/files/07_3126.jpg deleted file mode 100644 index 6de2dbf90..000000000 Binary files a/files/07_3126.jpg and /dev/null differ diff --git a/files/07_3126.mp3 b/files/07_3126.mp3 deleted file mode 100644 index 6fb968265..000000000 Binary files a/files/07_3126.mp3 and /dev/null differ diff --git a/files/07_3126_example.mp3 b/files/07_3126_example.mp3 deleted file mode 100644 index 3399f9c90..000000000 Binary files a/files/07_3126_example.mp3 and /dev/null differ diff --git a/files/07_3126_meaning.mp3 b/files/07_3126_meaning.mp3 deleted file mode 100644 index 5fd5f8506..000000000 Binary files a/files/07_3126_meaning.mp3 and /dev/null differ diff --git a/files/07_3127.jpg b/files/07_3127.jpg deleted file mode 100644 index e8ab37d29..000000000 Binary files a/files/07_3127.jpg and /dev/null differ diff --git a/files/07_3127.mp3 b/files/07_3127.mp3 deleted file mode 100644 index 2c797d083..000000000 Binary files a/files/07_3127.mp3 and /dev/null differ diff --git a/files/07_3127_example.mp3 b/files/07_3127_example.mp3 deleted file mode 100644 index 50e8e1795..000000000 Binary files a/files/07_3127_example.mp3 and /dev/null differ diff --git a/files/07_3127_meaning.mp3 b/files/07_3127_meaning.mp3 deleted file mode 100644 index f8bca3e96..000000000 Binary files a/files/07_3127_meaning.mp3 and /dev/null differ diff --git a/files/07_3128.jpg b/files/07_3128.jpg deleted file mode 100644 index f6927a087..000000000 Binary files a/files/07_3128.jpg and /dev/null differ diff --git a/files/07_3128.mp3 b/files/07_3128.mp3 deleted file mode 100644 index d6346e0b6..000000000 Binary files a/files/07_3128.mp3 and /dev/null differ diff --git a/files/07_3128_example.mp3 b/files/07_3128_example.mp3 deleted file mode 100644 index e5ba9f7af..000000000 Binary files a/files/07_3128_example.mp3 and /dev/null differ diff --git a/files/07_3128_meaning.mp3 b/files/07_3128_meaning.mp3 deleted file mode 100644 index a1b8d49ba..000000000 Binary files a/files/07_3128_meaning.mp3 and /dev/null differ diff --git a/files/07_3129.jpg b/files/07_3129.jpg deleted file mode 100644 index b6d417212..000000000 Binary files a/files/07_3129.jpg and /dev/null differ diff --git a/files/07_3129.mp3 b/files/07_3129.mp3 deleted file mode 100644 index 76b7d4b74..000000000 Binary files a/files/07_3129.mp3 and /dev/null differ diff --git a/files/07_3129_example.mp3 b/files/07_3129_example.mp3 deleted file mode 100644 index 891fc3428..000000000 Binary files a/files/07_3129_example.mp3 and /dev/null differ diff --git a/files/07_3129_meaning.mp3 b/files/07_3129_meaning.mp3 deleted file mode 100644 index 04bbfc62f..000000000 Binary files a/files/07_3129_meaning.mp3 and /dev/null differ diff --git a/files/07_3130.jpg b/files/07_3130.jpg deleted file mode 100644 index 43afec8fd..000000000 Binary files a/files/07_3130.jpg and /dev/null differ diff --git a/files/07_3130.mp3 b/files/07_3130.mp3 deleted file mode 100644 index 43cb6d417..000000000 Binary files a/files/07_3130.mp3 and /dev/null differ diff --git a/files/07_3130_example.mp3 b/files/07_3130_example.mp3 deleted file mode 100644 index b324fd93e..000000000 Binary files a/files/07_3130_example.mp3 and /dev/null differ diff --git a/files/07_3130_meaning.mp3 b/files/07_3130_meaning.mp3 deleted file mode 100644 index 9e739bafa..000000000 Binary files a/files/07_3130_meaning.mp3 and /dev/null differ diff --git a/files/07_3131.jpg b/files/07_3131.jpg deleted file mode 100644 index 8b3c6a00f..000000000 Binary files a/files/07_3131.jpg and /dev/null differ diff --git a/files/07_3131.mp3 b/files/07_3131.mp3 deleted file mode 100644 index 50b4a4bdb..000000000 Binary files a/files/07_3131.mp3 and /dev/null differ diff --git a/files/07_3131_example.mp3 b/files/07_3131_example.mp3 deleted file mode 100644 index 7988ea957..000000000 Binary files a/files/07_3131_example.mp3 and /dev/null differ diff --git a/files/07_3131_meaning.mp3 b/files/07_3131_meaning.mp3 deleted file mode 100644 index 0925ae86b..000000000 Binary files a/files/07_3131_meaning.mp3 and /dev/null differ diff --git a/files/07_3132.jpg b/files/07_3132.jpg deleted file mode 100644 index 993b4b725..000000000 Binary files a/files/07_3132.jpg and /dev/null differ diff --git a/files/07_3132.mp3 b/files/07_3132.mp3 deleted file mode 100644 index 780773b28..000000000 Binary files a/files/07_3132.mp3 and /dev/null differ diff --git a/files/07_3132_example.mp3 b/files/07_3132_example.mp3 deleted file mode 100644 index 53241d7a0..000000000 Binary files a/files/07_3132_example.mp3 and /dev/null differ diff --git a/files/07_3132_meaning.mp3 b/files/07_3132_meaning.mp3 deleted file mode 100644 index 33ea3419b..000000000 Binary files a/files/07_3132_meaning.mp3 and /dev/null differ diff --git a/files/07_3133.jpg b/files/07_3133.jpg deleted file mode 100644 index 8234c2943..000000000 Binary files a/files/07_3133.jpg and /dev/null differ diff --git a/files/07_3133.mp3 b/files/07_3133.mp3 deleted file mode 100644 index 1ed3d395e..000000000 Binary files a/files/07_3133.mp3 and /dev/null differ diff --git a/files/07_3133_example.mp3 b/files/07_3133_example.mp3 deleted file mode 100644 index b9ebc33b2..000000000 Binary files a/files/07_3133_example.mp3 and /dev/null differ diff --git a/files/07_3133_meaning.mp3 b/files/07_3133_meaning.mp3 deleted file mode 100644 index 6d932335c..000000000 Binary files a/files/07_3133_meaning.mp3 and /dev/null differ diff --git a/files/07_3134.jpg b/files/07_3134.jpg deleted file mode 100644 index 2329a1254..000000000 Binary files a/files/07_3134.jpg and /dev/null differ diff --git a/files/07_3134.mp3 b/files/07_3134.mp3 deleted file mode 100644 index 151be171f..000000000 Binary files a/files/07_3134.mp3 and /dev/null differ diff --git a/files/07_3134_example.mp3 b/files/07_3134_example.mp3 deleted file mode 100644 index be6a0f33b..000000000 Binary files a/files/07_3134_example.mp3 and /dev/null differ diff --git a/files/07_3134_meaning.mp3 b/files/07_3134_meaning.mp3 deleted file mode 100644 index c9db5e0fa..000000000 Binary files a/files/07_3134_meaning.mp3 and /dev/null differ diff --git a/files/07_3135.jpg b/files/07_3135.jpg deleted file mode 100644 index 734eb57d4..000000000 Binary files a/files/07_3135.jpg and /dev/null differ diff --git a/files/07_3135.mp3 b/files/07_3135.mp3 deleted file mode 100644 index 51a361aba..000000000 Binary files a/files/07_3135.mp3 and /dev/null differ diff --git a/files/07_3135_example.mp3 b/files/07_3135_example.mp3 deleted file mode 100644 index 7cb12fb51..000000000 Binary files a/files/07_3135_example.mp3 and /dev/null differ diff --git a/files/07_3135_meaning.mp3 b/files/07_3135_meaning.mp3 deleted file mode 100644 index 481837c7e..000000000 Binary files a/files/07_3135_meaning.mp3 and /dev/null differ diff --git a/files/07_3136.jpg b/files/07_3136.jpg deleted file mode 100644 index 215f8a4f7..000000000 Binary files a/files/07_3136.jpg and /dev/null differ diff --git a/files/07_3136.mp3 b/files/07_3136.mp3 deleted file mode 100644 index 71093ac7e..000000000 Binary files a/files/07_3136.mp3 and /dev/null differ diff --git a/files/07_3136_example.mp3 b/files/07_3136_example.mp3 deleted file mode 100644 index 3092cbdea..000000000 Binary files a/files/07_3136_example.mp3 and /dev/null differ diff --git a/files/07_3136_meaning.mp3 b/files/07_3136_meaning.mp3 deleted file mode 100644 index acab9b626..000000000 Binary files a/files/07_3136_meaning.mp3 and /dev/null differ diff --git a/files/07_3137.jpg b/files/07_3137.jpg deleted file mode 100644 index bf3d12811..000000000 Binary files a/files/07_3137.jpg and /dev/null differ diff --git a/files/07_3137.mp3 b/files/07_3137.mp3 deleted file mode 100644 index 42998fd02..000000000 Binary files a/files/07_3137.mp3 and /dev/null differ diff --git a/files/07_3137_example.mp3 b/files/07_3137_example.mp3 deleted file mode 100644 index 546cd92c7..000000000 Binary files a/files/07_3137_example.mp3 and /dev/null differ diff --git a/files/07_3137_meaning.mp3 b/files/07_3137_meaning.mp3 deleted file mode 100644 index 6feec57c8..000000000 Binary files a/files/07_3137_meaning.mp3 and /dev/null differ diff --git a/files/07_3138.jpg b/files/07_3138.jpg deleted file mode 100644 index 9da2ad85e..000000000 Binary files a/files/07_3138.jpg and /dev/null differ diff --git a/files/07_3138.mp3 b/files/07_3138.mp3 deleted file mode 100644 index 1ddfab30d..000000000 Binary files a/files/07_3138.mp3 and /dev/null differ diff --git a/files/07_3138_example.mp3 b/files/07_3138_example.mp3 deleted file mode 100644 index 7abb526ea..000000000 Binary files a/files/07_3138_example.mp3 and /dev/null differ diff --git a/files/07_3138_meaning.mp3 b/files/07_3138_meaning.mp3 deleted file mode 100644 index 6096570de..000000000 Binary files a/files/07_3138_meaning.mp3 and /dev/null differ diff --git a/files/07_3139.jpg b/files/07_3139.jpg deleted file mode 100644 index 14e7d2737..000000000 Binary files a/files/07_3139.jpg and /dev/null differ diff --git a/files/07_3139.mp3 b/files/07_3139.mp3 deleted file mode 100644 index 50188cb60..000000000 Binary files a/files/07_3139.mp3 and /dev/null differ diff --git a/files/07_3139_example.mp3 b/files/07_3139_example.mp3 deleted file mode 100644 index 16c51febe..000000000 Binary files a/files/07_3139_example.mp3 and /dev/null differ diff --git a/files/07_3139_meaning.mp3 b/files/07_3139_meaning.mp3 deleted file mode 100644 index 6e8ad00b7..000000000 Binary files a/files/07_3139_meaning.mp3 and /dev/null differ diff --git a/files/07_3140.jpg b/files/07_3140.jpg deleted file mode 100644 index f9d199543..000000000 Binary files a/files/07_3140.jpg and /dev/null differ diff --git a/files/07_3140.mp3 b/files/07_3140.mp3 deleted file mode 100644 index 44a79e1b4..000000000 Binary files a/files/07_3140.mp3 and /dev/null differ diff --git a/files/07_3140_example.mp3 b/files/07_3140_example.mp3 deleted file mode 100644 index cea8dea35..000000000 Binary files a/files/07_3140_example.mp3 and /dev/null differ diff --git a/files/07_3140_meaning.mp3 b/files/07_3140_meaning.mp3 deleted file mode 100644 index 08ad89d26..000000000 Binary files a/files/07_3140_meaning.mp3 and /dev/null differ diff --git a/files/08_0141.jpg b/files/08_0141.jpg deleted file mode 100644 index b54a7e552..000000000 Binary files a/files/08_0141.jpg and /dev/null differ diff --git a/files/08_0141.mp3 b/files/08_0141.mp3 deleted file mode 100644 index 02b29ca6f..000000000 Binary files a/files/08_0141.mp3 and /dev/null differ diff --git a/files/08_0141_example.mp3 b/files/08_0141_example.mp3 deleted file mode 100644 index 87d8486e0..000000000 Binary files a/files/08_0141_example.mp3 and /dev/null differ diff --git a/files/08_0141_meaning.mp3 b/files/08_0141_meaning.mp3 deleted file mode 100644 index d6bfce1ab..000000000 Binary files a/files/08_0141_meaning.mp3 and /dev/null differ diff --git a/files/08_0142.jpg b/files/08_0142.jpg deleted file mode 100644 index 0a11ab07f..000000000 Binary files a/files/08_0142.jpg and /dev/null differ diff --git a/files/08_0142.mp3 b/files/08_0142.mp3 deleted file mode 100644 index c4c8e0bc3..000000000 Binary files a/files/08_0142.mp3 and /dev/null differ diff --git a/files/08_0142_example.mp3 b/files/08_0142_example.mp3 deleted file mode 100644 index 29d81a2ba..000000000 Binary files a/files/08_0142_example.mp3 and /dev/null differ diff --git a/files/08_0142_meaning.mp3 b/files/08_0142_meaning.mp3 deleted file mode 100644 index 7260171c9..000000000 Binary files a/files/08_0142_meaning.mp3 and /dev/null differ diff --git a/files/08_0143.jpg b/files/08_0143.jpg deleted file mode 100644 index b6dfbb453..000000000 Binary files a/files/08_0143.jpg and /dev/null differ diff --git a/files/08_0143.mp3 b/files/08_0143.mp3 deleted file mode 100644 index 01d6c49d9..000000000 Binary files a/files/08_0143.mp3 and /dev/null differ diff --git a/files/08_0143_example.mp3 b/files/08_0143_example.mp3 deleted file mode 100644 index c29cecd1d..000000000 Binary files a/files/08_0143_example.mp3 and /dev/null differ diff --git a/files/08_0143_meaning.mp3 b/files/08_0143_meaning.mp3 deleted file mode 100644 index 6aa0c76a0..000000000 Binary files a/files/08_0143_meaning.mp3 and /dev/null differ diff --git a/files/08_0144.jpg b/files/08_0144.jpg deleted file mode 100644 index d2fe66fe3..000000000 Binary files a/files/08_0144.jpg and /dev/null differ diff --git a/files/08_0144.mp3 b/files/08_0144.mp3 deleted file mode 100644 index 8c45dd820..000000000 Binary files a/files/08_0144.mp3 and /dev/null differ diff --git a/files/08_0144_example.mp3 b/files/08_0144_example.mp3 deleted file mode 100644 index 95eb511fb..000000000 Binary files a/files/08_0144_example.mp3 and /dev/null differ diff --git a/files/08_0144_meaning.mp3 b/files/08_0144_meaning.mp3 deleted file mode 100644 index 56082a21f..000000000 Binary files a/files/08_0144_meaning.mp3 and /dev/null differ diff --git a/files/08_0145.jpg b/files/08_0145.jpg deleted file mode 100644 index d3f82a734..000000000 Binary files a/files/08_0145.jpg and /dev/null differ diff --git a/files/08_0145.mp3 b/files/08_0145.mp3 deleted file mode 100644 index 693dbff3b..000000000 Binary files a/files/08_0145.mp3 and /dev/null differ diff --git a/files/08_0145_example.mp3 b/files/08_0145_example.mp3 deleted file mode 100644 index 52c6e43ce..000000000 Binary files a/files/08_0145_example.mp3 and /dev/null differ diff --git a/files/08_0145_meaning.mp3 b/files/08_0145_meaning.mp3 deleted file mode 100644 index 8ea950cec..000000000 Binary files a/files/08_0145_meaning.mp3 and /dev/null differ diff --git a/files/08_0146.jpg b/files/08_0146.jpg deleted file mode 100644 index c49c0cdc3..000000000 Binary files a/files/08_0146.jpg and /dev/null differ diff --git a/files/08_0146.mp3 b/files/08_0146.mp3 deleted file mode 100644 index fcae1d603..000000000 Binary files a/files/08_0146.mp3 and /dev/null differ diff --git a/files/08_0146_example.mp3 b/files/08_0146_example.mp3 deleted file mode 100644 index 422aa716a..000000000 Binary files a/files/08_0146_example.mp3 and /dev/null differ diff --git a/files/08_0146_meaning.mp3 b/files/08_0146_meaning.mp3 deleted file mode 100644 index a6d37b2a7..000000000 Binary files a/files/08_0146_meaning.mp3 and /dev/null differ diff --git a/files/08_0147.jpg b/files/08_0147.jpg deleted file mode 100644 index 78a015926..000000000 Binary files a/files/08_0147.jpg and /dev/null differ diff --git a/files/08_0147.mp3 b/files/08_0147.mp3 deleted file mode 100644 index b0699b3b2..000000000 Binary files a/files/08_0147.mp3 and /dev/null differ diff --git a/files/08_0147_example.mp3 b/files/08_0147_example.mp3 deleted file mode 100644 index 8cbd9e54e..000000000 Binary files a/files/08_0147_example.mp3 and /dev/null differ diff --git a/files/08_0147_meaning.mp3 b/files/08_0147_meaning.mp3 deleted file mode 100644 index 8771fb2e2..000000000 Binary files a/files/08_0147_meaning.mp3 and /dev/null differ diff --git a/files/08_0148.jpg b/files/08_0148.jpg deleted file mode 100644 index 03859c795..000000000 Binary files a/files/08_0148.jpg and /dev/null differ diff --git a/files/08_0148.mp3 b/files/08_0148.mp3 deleted file mode 100644 index 2e4e6977c..000000000 Binary files a/files/08_0148.mp3 and /dev/null differ diff --git a/files/08_0148_example.mp3 b/files/08_0148_example.mp3 deleted file mode 100644 index 4c4553648..000000000 Binary files a/files/08_0148_example.mp3 and /dev/null differ diff --git a/files/08_0148_meaning.mp3 b/files/08_0148_meaning.mp3 deleted file mode 100644 index 336be492b..000000000 Binary files a/files/08_0148_meaning.mp3 and /dev/null differ diff --git a/files/08_0149.jpg b/files/08_0149.jpg deleted file mode 100644 index fdc44bd49..000000000 Binary files a/files/08_0149.jpg and /dev/null differ diff --git a/files/08_0149.mp3 b/files/08_0149.mp3 deleted file mode 100644 index 17ce88603..000000000 Binary files a/files/08_0149.mp3 and /dev/null differ diff --git a/files/08_0149_example.mp3 b/files/08_0149_example.mp3 deleted file mode 100644 index 09aaf7520..000000000 Binary files a/files/08_0149_example.mp3 and /dev/null differ diff --git a/files/08_0149_meaning.mp3 b/files/08_0149_meaning.mp3 deleted file mode 100644 index 3e9edbffe..000000000 Binary files a/files/08_0149_meaning.mp3 and /dev/null differ diff --git a/files/08_0150.jpg b/files/08_0150.jpg deleted file mode 100644 index 45a38b8d1..000000000 Binary files a/files/08_0150.jpg and /dev/null differ diff --git a/files/08_0150.mp3 b/files/08_0150.mp3 deleted file mode 100644 index 95cb25c28..000000000 Binary files a/files/08_0150.mp3 and /dev/null differ diff --git a/files/08_0150_example.mp3 b/files/08_0150_example.mp3 deleted file mode 100644 index 71b8a8ebd..000000000 Binary files a/files/08_0150_example.mp3 and /dev/null differ diff --git a/files/08_0150_meaning.mp3 b/files/08_0150_meaning.mp3 deleted file mode 100644 index 2d83dd4c7..000000000 Binary files a/files/08_0150_meaning.mp3 and /dev/null differ diff --git a/files/08_0151.jpg b/files/08_0151.jpg deleted file mode 100644 index 09ca5f5e2..000000000 Binary files a/files/08_0151.jpg and /dev/null differ diff --git a/files/08_0151.mp3 b/files/08_0151.mp3 deleted file mode 100644 index a83e2c14b..000000000 Binary files a/files/08_0151.mp3 and /dev/null differ diff --git a/files/08_0151_example.mp3 b/files/08_0151_example.mp3 deleted file mode 100644 index 8d491077c..000000000 Binary files a/files/08_0151_example.mp3 and /dev/null differ diff --git a/files/08_0151_meaning.mp3 b/files/08_0151_meaning.mp3 deleted file mode 100644 index d20a4cd0c..000000000 Binary files a/files/08_0151_meaning.mp3 and /dev/null differ diff --git a/files/08_0152.jpg b/files/08_0152.jpg deleted file mode 100644 index 0d8625979..000000000 Binary files a/files/08_0152.jpg and /dev/null differ diff --git a/files/08_0152.mp3 b/files/08_0152.mp3 deleted file mode 100644 index 15244ed8f..000000000 Binary files a/files/08_0152.mp3 and /dev/null differ diff --git a/files/08_0152_example.mp3 b/files/08_0152_example.mp3 deleted file mode 100644 index 279a9ab78..000000000 Binary files a/files/08_0152_example.mp3 and /dev/null differ diff --git a/files/08_0152_meaning.mp3 b/files/08_0152_meaning.mp3 deleted file mode 100644 index 191f97ba3..000000000 Binary files a/files/08_0152_meaning.mp3 and /dev/null differ diff --git a/files/08_0153.jpg b/files/08_0153.jpg deleted file mode 100644 index e477360c6..000000000 Binary files a/files/08_0153.jpg and /dev/null differ diff --git a/files/08_0153.mp3 b/files/08_0153.mp3 deleted file mode 100644 index 122ae2b3d..000000000 Binary files a/files/08_0153.mp3 and /dev/null differ diff --git a/files/08_0153_example.mp3 b/files/08_0153_example.mp3 deleted file mode 100644 index a246e1607..000000000 Binary files a/files/08_0153_example.mp3 and /dev/null differ diff --git a/files/08_0153_meaning.mp3 b/files/08_0153_meaning.mp3 deleted file mode 100644 index 3cdca3cfa..000000000 Binary files a/files/08_0153_meaning.mp3 and /dev/null differ diff --git a/files/08_0154.jpg b/files/08_0154.jpg deleted file mode 100644 index b5b16d42a..000000000 Binary files a/files/08_0154.jpg and /dev/null differ diff --git a/files/08_0154.mp3 b/files/08_0154.mp3 deleted file mode 100644 index e25a79a8f..000000000 Binary files a/files/08_0154.mp3 and /dev/null differ diff --git a/files/08_0154_example.mp3 b/files/08_0154_example.mp3 deleted file mode 100644 index 6c32c088b..000000000 Binary files a/files/08_0154_example.mp3 and /dev/null differ diff --git a/files/08_0154_meaning.mp3 b/files/08_0154_meaning.mp3 deleted file mode 100644 index 49b89c5fc..000000000 Binary files a/files/08_0154_meaning.mp3 and /dev/null differ diff --git a/files/08_0155.jpg b/files/08_0155.jpg deleted file mode 100644 index 07b5f45ae..000000000 Binary files a/files/08_0155.jpg and /dev/null differ diff --git a/files/08_0155.mp3 b/files/08_0155.mp3 deleted file mode 100644 index 0a4d47ed5..000000000 Binary files a/files/08_0155.mp3 and /dev/null differ diff --git a/files/08_0155_example.mp3 b/files/08_0155_example.mp3 deleted file mode 100644 index 59a46e2af..000000000 Binary files a/files/08_0155_example.mp3 and /dev/null differ diff --git a/files/08_0155_meaning.mp3 b/files/08_0155_meaning.mp3 deleted file mode 100644 index 80137ea75..000000000 Binary files a/files/08_0155_meaning.mp3 and /dev/null differ diff --git a/files/08_0156.jpg b/files/08_0156.jpg deleted file mode 100644 index ea44f34da..000000000 Binary files a/files/08_0156.jpg and /dev/null differ diff --git a/files/08_0156.mp3 b/files/08_0156.mp3 deleted file mode 100644 index 9093e837b..000000000 Binary files a/files/08_0156.mp3 and /dev/null differ diff --git a/files/08_0156_example.mp3 b/files/08_0156_example.mp3 deleted file mode 100644 index 4e715dfbc..000000000 Binary files a/files/08_0156_example.mp3 and /dev/null differ diff --git a/files/08_0156_meaning.mp3 b/files/08_0156_meaning.mp3 deleted file mode 100644 index 5119522b1..000000000 Binary files a/files/08_0156_meaning.mp3 and /dev/null differ diff --git a/files/08_0157.jpg b/files/08_0157.jpg deleted file mode 100644 index 52f647e98..000000000 Binary files a/files/08_0157.jpg and /dev/null differ diff --git a/files/08_0157.mp3 b/files/08_0157.mp3 deleted file mode 100644 index a817fb268..000000000 Binary files a/files/08_0157.mp3 and /dev/null differ diff --git a/files/08_0157_example.mp3 b/files/08_0157_example.mp3 deleted file mode 100644 index 04b8fb685..000000000 Binary files a/files/08_0157_example.mp3 and /dev/null differ diff --git a/files/08_0157_meaning.mp3 b/files/08_0157_meaning.mp3 deleted file mode 100644 index 966db4637..000000000 Binary files a/files/08_0157_meaning.mp3 and /dev/null differ diff --git a/files/08_0158.jpg b/files/08_0158.jpg deleted file mode 100644 index 4687e544c..000000000 Binary files a/files/08_0158.jpg and /dev/null differ diff --git a/files/08_0158.mp3 b/files/08_0158.mp3 deleted file mode 100644 index 83e7b85c6..000000000 Binary files a/files/08_0158.mp3 and /dev/null differ diff --git a/files/08_0158_example.mp3 b/files/08_0158_example.mp3 deleted file mode 100644 index b8293cfeb..000000000 Binary files a/files/08_0158_example.mp3 and /dev/null differ diff --git a/files/08_0158_meaning.mp3 b/files/08_0158_meaning.mp3 deleted file mode 100644 index 68901988c..000000000 Binary files a/files/08_0158_meaning.mp3 and /dev/null differ diff --git a/files/08_0159.jpg b/files/08_0159.jpg deleted file mode 100644 index ca03efebe..000000000 Binary files a/files/08_0159.jpg and /dev/null differ diff --git a/files/08_0159.mp3 b/files/08_0159.mp3 deleted file mode 100644 index cdc7b1d76..000000000 Binary files a/files/08_0159.mp3 and /dev/null differ diff --git a/files/08_0159_example.mp3 b/files/08_0159_example.mp3 deleted file mode 100644 index a0d8bbe3a..000000000 Binary files a/files/08_0159_example.mp3 and /dev/null differ diff --git a/files/08_0159_meaning.mp3 b/files/08_0159_meaning.mp3 deleted file mode 100644 index fadeb73d3..000000000 Binary files a/files/08_0159_meaning.mp3 and /dev/null differ diff --git a/files/08_0160.jpg b/files/08_0160.jpg deleted file mode 100644 index 62d5877c7..000000000 Binary files a/files/08_0160.jpg and /dev/null differ diff --git a/files/08_0160.mp3 b/files/08_0160.mp3 deleted file mode 100644 index 4bce8bcfd..000000000 Binary files a/files/08_0160.mp3 and /dev/null differ diff --git a/files/08_0160_example.mp3 b/files/08_0160_example.mp3 deleted file mode 100644 index 0124c4fe4..000000000 Binary files a/files/08_0160_example.mp3 and /dev/null differ diff --git a/files/08_0160_meaning.mp3 b/files/08_0160_meaning.mp3 deleted file mode 100644 index 5514f1238..000000000 Binary files a/files/08_0160_meaning.mp3 and /dev/null differ diff --git a/files/08_0741.jpg b/files/08_0741.jpg deleted file mode 100644 index 80e0e937c..000000000 Binary files a/files/08_0741.jpg and /dev/null differ diff --git a/files/08_0741.mp3 b/files/08_0741.mp3 deleted file mode 100644 index b1cffdb0d..000000000 Binary files a/files/08_0741.mp3 and /dev/null differ diff --git a/files/08_0741_example.mp3 b/files/08_0741_example.mp3 deleted file mode 100644 index 27d9eb9b3..000000000 Binary files a/files/08_0741_example.mp3 and /dev/null differ diff --git a/files/08_0741_meaning.mp3 b/files/08_0741_meaning.mp3 deleted file mode 100644 index ae6408dd4..000000000 Binary files a/files/08_0741_meaning.mp3 and /dev/null differ diff --git a/files/08_0742.jpg b/files/08_0742.jpg deleted file mode 100644 index 307a166f4..000000000 Binary files a/files/08_0742.jpg and /dev/null differ diff --git a/files/08_0742.mp3 b/files/08_0742.mp3 deleted file mode 100644 index 98fda490a..000000000 Binary files a/files/08_0742.mp3 and /dev/null differ diff --git a/files/08_0742_example.mp3 b/files/08_0742_example.mp3 deleted file mode 100644 index 9777cf370..000000000 Binary files a/files/08_0742_example.mp3 and /dev/null differ diff --git a/files/08_0742_meaning.mp3 b/files/08_0742_meaning.mp3 deleted file mode 100644 index e3c25e793..000000000 Binary files a/files/08_0742_meaning.mp3 and /dev/null differ diff --git a/files/08_0743.jpg b/files/08_0743.jpg deleted file mode 100644 index e08a385a1..000000000 Binary files a/files/08_0743.jpg and /dev/null differ diff --git a/files/08_0743.mp3 b/files/08_0743.mp3 deleted file mode 100644 index f66d21b8f..000000000 Binary files a/files/08_0743.mp3 and /dev/null differ diff --git a/files/08_0743_example.mp3 b/files/08_0743_example.mp3 deleted file mode 100644 index 57e56a1de..000000000 Binary files a/files/08_0743_example.mp3 and /dev/null differ diff --git a/files/08_0743_meaning.mp3 b/files/08_0743_meaning.mp3 deleted file mode 100644 index cdee56ae3..000000000 Binary files a/files/08_0743_meaning.mp3 and /dev/null differ diff --git a/files/08_0744.jpg b/files/08_0744.jpg deleted file mode 100644 index b1f270a27..000000000 Binary files a/files/08_0744.jpg and /dev/null differ diff --git a/files/08_0744.mp3 b/files/08_0744.mp3 deleted file mode 100644 index f393f2d0b..000000000 Binary files a/files/08_0744.mp3 and /dev/null differ diff --git a/files/08_0744_example.mp3 b/files/08_0744_example.mp3 deleted file mode 100644 index debaa32b3..000000000 Binary files a/files/08_0744_example.mp3 and /dev/null differ diff --git a/files/08_0744_meaning.mp3 b/files/08_0744_meaning.mp3 deleted file mode 100644 index 12e785675..000000000 Binary files a/files/08_0744_meaning.mp3 and /dev/null differ diff --git a/files/08_0745.jpg b/files/08_0745.jpg deleted file mode 100644 index 73085fd64..000000000 Binary files a/files/08_0745.jpg and /dev/null differ diff --git a/files/08_0745.mp3 b/files/08_0745.mp3 deleted file mode 100644 index 215e56bcd..000000000 Binary files a/files/08_0745.mp3 and /dev/null differ diff --git a/files/08_0745_example.mp3 b/files/08_0745_example.mp3 deleted file mode 100644 index d14ad4a83..000000000 Binary files a/files/08_0745_example.mp3 and /dev/null differ diff --git a/files/08_0745_meaning.mp3 b/files/08_0745_meaning.mp3 deleted file mode 100644 index fb486f697..000000000 Binary files a/files/08_0745_meaning.mp3 and /dev/null differ diff --git a/files/08_0746.jpg b/files/08_0746.jpg deleted file mode 100644 index 742a2247a..000000000 Binary files a/files/08_0746.jpg and /dev/null differ diff --git a/files/08_0746.mp3 b/files/08_0746.mp3 deleted file mode 100644 index 54dc2cabc..000000000 Binary files a/files/08_0746.mp3 and /dev/null differ diff --git a/files/08_0746_example.mp3 b/files/08_0746_example.mp3 deleted file mode 100644 index 7591cd2da..000000000 Binary files a/files/08_0746_example.mp3 and /dev/null differ diff --git a/files/08_0746_meaning.mp3 b/files/08_0746_meaning.mp3 deleted file mode 100644 index 216f6cf31..000000000 Binary files a/files/08_0746_meaning.mp3 and /dev/null differ diff --git a/files/08_0747.jpg b/files/08_0747.jpg deleted file mode 100644 index 7baecfd75..000000000 Binary files a/files/08_0747.jpg and /dev/null differ diff --git a/files/08_0747.mp3 b/files/08_0747.mp3 deleted file mode 100644 index 5663de895..000000000 Binary files a/files/08_0747.mp3 and /dev/null differ diff --git a/files/08_0747_example.mp3 b/files/08_0747_example.mp3 deleted file mode 100644 index 43747409d..000000000 Binary files a/files/08_0747_example.mp3 and /dev/null differ diff --git a/files/08_0747_meaning.mp3 b/files/08_0747_meaning.mp3 deleted file mode 100644 index 0e8838c0d..000000000 Binary files a/files/08_0747_meaning.mp3 and /dev/null differ diff --git a/files/08_0748.jpg b/files/08_0748.jpg deleted file mode 100644 index f74148365..000000000 Binary files a/files/08_0748.jpg and /dev/null differ diff --git a/files/08_0748.mp3 b/files/08_0748.mp3 deleted file mode 100644 index d34650c97..000000000 Binary files a/files/08_0748.mp3 and /dev/null differ diff --git a/files/08_0748_example.mp3 b/files/08_0748_example.mp3 deleted file mode 100644 index beed5e05a..000000000 Binary files a/files/08_0748_example.mp3 and /dev/null differ diff --git a/files/08_0748_meaning.mp3 b/files/08_0748_meaning.mp3 deleted file mode 100644 index 074c700e6..000000000 Binary files a/files/08_0748_meaning.mp3 and /dev/null differ diff --git a/files/08_0749.jpg b/files/08_0749.jpg deleted file mode 100644 index a2d8a8628..000000000 Binary files a/files/08_0749.jpg and /dev/null differ diff --git a/files/08_0749.mp3 b/files/08_0749.mp3 deleted file mode 100644 index 0d5e1772a..000000000 Binary files a/files/08_0749.mp3 and /dev/null differ diff --git a/files/08_0749_example.mp3 b/files/08_0749_example.mp3 deleted file mode 100644 index a7f693923..000000000 Binary files a/files/08_0749_example.mp3 and /dev/null differ diff --git a/files/08_0749_meaning.mp3 b/files/08_0749_meaning.mp3 deleted file mode 100644 index 9f06e919c..000000000 Binary files a/files/08_0749_meaning.mp3 and /dev/null differ diff --git a/files/08_0750.jpg b/files/08_0750.jpg deleted file mode 100644 index c1bb33cb5..000000000 Binary files a/files/08_0750.jpg and /dev/null differ diff --git a/files/08_0750.mp3 b/files/08_0750.mp3 deleted file mode 100644 index aa00476f9..000000000 Binary files a/files/08_0750.mp3 and /dev/null differ diff --git a/files/08_0750_example.mp3 b/files/08_0750_example.mp3 deleted file mode 100644 index 0b975ecad..000000000 Binary files a/files/08_0750_example.mp3 and /dev/null differ diff --git a/files/08_0750_meaning.mp3 b/files/08_0750_meaning.mp3 deleted file mode 100644 index f019285d5..000000000 Binary files a/files/08_0750_meaning.mp3 and /dev/null differ diff --git a/files/08_0751.jpg b/files/08_0751.jpg deleted file mode 100644 index 52d9c2788..000000000 Binary files a/files/08_0751.jpg and /dev/null differ diff --git a/files/08_0751.mp3 b/files/08_0751.mp3 deleted file mode 100644 index 870087e06..000000000 Binary files a/files/08_0751.mp3 and /dev/null differ diff --git a/files/08_0751_example.mp3 b/files/08_0751_example.mp3 deleted file mode 100644 index e99ad6bd2..000000000 Binary files a/files/08_0751_example.mp3 and /dev/null differ diff --git a/files/08_0751_meaning.mp3 b/files/08_0751_meaning.mp3 deleted file mode 100644 index 6332f3f75..000000000 Binary files a/files/08_0751_meaning.mp3 and /dev/null differ diff --git a/files/08_0752.jpg b/files/08_0752.jpg deleted file mode 100644 index f244e028d..000000000 Binary files a/files/08_0752.jpg and /dev/null differ diff --git a/files/08_0752.mp3 b/files/08_0752.mp3 deleted file mode 100644 index b37695f79..000000000 Binary files a/files/08_0752.mp3 and /dev/null differ diff --git a/files/08_0752_example.mp3 b/files/08_0752_example.mp3 deleted file mode 100644 index c1bcef5c3..000000000 Binary files a/files/08_0752_example.mp3 and /dev/null differ diff --git a/files/08_0752_meaning.mp3 b/files/08_0752_meaning.mp3 deleted file mode 100644 index eeed41dd7..000000000 Binary files a/files/08_0752_meaning.mp3 and /dev/null differ diff --git a/files/08_0753.jpg b/files/08_0753.jpg deleted file mode 100644 index 748f9cb31..000000000 Binary files a/files/08_0753.jpg and /dev/null differ diff --git a/files/08_0753.mp3 b/files/08_0753.mp3 deleted file mode 100644 index 9fdecd122..000000000 Binary files a/files/08_0753.mp3 and /dev/null differ diff --git a/files/08_0753_example.mp3 b/files/08_0753_example.mp3 deleted file mode 100644 index 8ad594013..000000000 Binary files a/files/08_0753_example.mp3 and /dev/null differ diff --git a/files/08_0753_meaning.mp3 b/files/08_0753_meaning.mp3 deleted file mode 100644 index a0fafcfdc..000000000 Binary files a/files/08_0753_meaning.mp3 and /dev/null differ diff --git a/files/08_0754.jpg b/files/08_0754.jpg deleted file mode 100644 index 38dc4f661..000000000 Binary files a/files/08_0754.jpg and /dev/null differ diff --git a/files/08_0754.mp3 b/files/08_0754.mp3 deleted file mode 100644 index 2c9b3896b..000000000 Binary files a/files/08_0754.mp3 and /dev/null differ diff --git a/files/08_0754_example.mp3 b/files/08_0754_example.mp3 deleted file mode 100644 index c07b251e6..000000000 Binary files a/files/08_0754_example.mp3 and /dev/null differ diff --git a/files/08_0754_meaning.mp3 b/files/08_0754_meaning.mp3 deleted file mode 100644 index 6a650575e..000000000 Binary files a/files/08_0754_meaning.mp3 and /dev/null differ diff --git a/files/08_0755.jpg b/files/08_0755.jpg deleted file mode 100644 index 566f8beec..000000000 Binary files a/files/08_0755.jpg and /dev/null differ diff --git a/files/08_0755.mp3 b/files/08_0755.mp3 deleted file mode 100644 index e5f49da1c..000000000 Binary files a/files/08_0755.mp3 and /dev/null differ diff --git a/files/08_0755_example.mp3 b/files/08_0755_example.mp3 deleted file mode 100644 index 87f1a2566..000000000 Binary files a/files/08_0755_example.mp3 and /dev/null differ diff --git a/files/08_0755_meaning.mp3 b/files/08_0755_meaning.mp3 deleted file mode 100644 index da130491d..000000000 Binary files a/files/08_0755_meaning.mp3 and /dev/null differ diff --git a/files/08_0756.jpg b/files/08_0756.jpg deleted file mode 100644 index 5af8209f1..000000000 Binary files a/files/08_0756.jpg and /dev/null differ diff --git a/files/08_0756.mp3 b/files/08_0756.mp3 deleted file mode 100644 index d126397ac..000000000 Binary files a/files/08_0756.mp3 and /dev/null differ diff --git a/files/08_0756_example.mp3 b/files/08_0756_example.mp3 deleted file mode 100644 index d78309f9e..000000000 Binary files a/files/08_0756_example.mp3 and /dev/null differ diff --git a/files/08_0756_meaning.mp3 b/files/08_0756_meaning.mp3 deleted file mode 100644 index c0f63e239..000000000 Binary files a/files/08_0756_meaning.mp3 and /dev/null differ diff --git a/files/08_0757.jpg b/files/08_0757.jpg deleted file mode 100644 index 103795caf..000000000 Binary files a/files/08_0757.jpg and /dev/null differ diff --git a/files/08_0757.mp3 b/files/08_0757.mp3 deleted file mode 100644 index f5d5cd256..000000000 Binary files a/files/08_0757.mp3 and /dev/null differ diff --git a/files/08_0757_example.mp3 b/files/08_0757_example.mp3 deleted file mode 100644 index 3a8826573..000000000 Binary files a/files/08_0757_example.mp3 and /dev/null differ diff --git a/files/08_0757_meaning.mp3 b/files/08_0757_meaning.mp3 deleted file mode 100644 index 80fa1b6d5..000000000 Binary files a/files/08_0757_meaning.mp3 and /dev/null differ diff --git a/files/08_0758.jpg b/files/08_0758.jpg deleted file mode 100644 index 9073b59fd..000000000 Binary files a/files/08_0758.jpg and /dev/null differ diff --git a/files/08_0758.mp3 b/files/08_0758.mp3 deleted file mode 100644 index f9b0ca74c..000000000 Binary files a/files/08_0758.mp3 and /dev/null differ diff --git a/files/08_0758_example.mp3 b/files/08_0758_example.mp3 deleted file mode 100644 index b3b2c91d5..000000000 Binary files a/files/08_0758_example.mp3 and /dev/null differ diff --git a/files/08_0758_meaning.mp3 b/files/08_0758_meaning.mp3 deleted file mode 100644 index 270c8632f..000000000 Binary files a/files/08_0758_meaning.mp3 and /dev/null differ diff --git a/files/08_0759.jpg b/files/08_0759.jpg deleted file mode 100644 index 237b883e7..000000000 Binary files a/files/08_0759.jpg and /dev/null differ diff --git a/files/08_0759.mp3 b/files/08_0759.mp3 deleted file mode 100644 index 8ac7df933..000000000 Binary files a/files/08_0759.mp3 and /dev/null differ diff --git a/files/08_0759_example.mp3 b/files/08_0759_example.mp3 deleted file mode 100644 index b4f6d3c1d..000000000 Binary files a/files/08_0759_example.mp3 and /dev/null differ diff --git a/files/08_0759_meaning.mp3 b/files/08_0759_meaning.mp3 deleted file mode 100644 index 0c1f59823..000000000 Binary files a/files/08_0759_meaning.mp3 and /dev/null differ diff --git a/files/08_0760.jpg b/files/08_0760.jpg deleted file mode 100644 index aa0eb4a38..000000000 Binary files a/files/08_0760.jpg and /dev/null differ diff --git a/files/08_0760.mp3 b/files/08_0760.mp3 deleted file mode 100644 index fc677faa7..000000000 Binary files a/files/08_0760.mp3 and /dev/null differ diff --git a/files/08_0760_example.mp3 b/files/08_0760_example.mp3 deleted file mode 100644 index 4de862468..000000000 Binary files a/files/08_0760_example.mp3 and /dev/null differ diff --git a/files/08_0760_meaning.mp3 b/files/08_0760_meaning.mp3 deleted file mode 100644 index ace3f93dd..000000000 Binary files a/files/08_0760_meaning.mp3 and /dev/null differ diff --git a/files/08_1341.jpg b/files/08_1341.jpg deleted file mode 100644 index b5fabc669..000000000 Binary files a/files/08_1341.jpg and /dev/null differ diff --git a/files/08_1341.mp3 b/files/08_1341.mp3 deleted file mode 100644 index 3f59a6218..000000000 Binary files a/files/08_1341.mp3 and /dev/null differ diff --git a/files/08_1341_example.mp3 b/files/08_1341_example.mp3 deleted file mode 100644 index f50b5871b..000000000 Binary files a/files/08_1341_example.mp3 and /dev/null differ diff --git a/files/08_1341_meaning.mp3 b/files/08_1341_meaning.mp3 deleted file mode 100644 index bd85796d9..000000000 Binary files a/files/08_1341_meaning.mp3 and /dev/null differ diff --git a/files/08_1342.jpg b/files/08_1342.jpg deleted file mode 100644 index 74b469205..000000000 Binary files a/files/08_1342.jpg and /dev/null differ diff --git a/files/08_1342.mp3 b/files/08_1342.mp3 deleted file mode 100644 index a68481d2e..000000000 Binary files a/files/08_1342.mp3 and /dev/null differ diff --git a/files/08_1342_example.mp3 b/files/08_1342_example.mp3 deleted file mode 100644 index df138a178..000000000 Binary files a/files/08_1342_example.mp3 and /dev/null differ diff --git a/files/08_1342_meaning.mp3 b/files/08_1342_meaning.mp3 deleted file mode 100644 index 581589437..000000000 Binary files a/files/08_1342_meaning.mp3 and /dev/null differ diff --git a/files/08_1343.jpg b/files/08_1343.jpg deleted file mode 100644 index a8e498667..000000000 Binary files a/files/08_1343.jpg and /dev/null differ diff --git a/files/08_1343.mp3 b/files/08_1343.mp3 deleted file mode 100644 index 8f73db038..000000000 Binary files a/files/08_1343.mp3 and /dev/null differ diff --git a/files/08_1343_example.mp3 b/files/08_1343_example.mp3 deleted file mode 100644 index 5d1455bf1..000000000 Binary files a/files/08_1343_example.mp3 and /dev/null differ diff --git a/files/08_1343_meaning.mp3 b/files/08_1343_meaning.mp3 deleted file mode 100644 index 985e3852d..000000000 Binary files a/files/08_1343_meaning.mp3 and /dev/null differ diff --git a/files/08_1344.jpg b/files/08_1344.jpg deleted file mode 100644 index 8b12a55a5..000000000 Binary files a/files/08_1344.jpg and /dev/null differ diff --git a/files/08_1344.mp3 b/files/08_1344.mp3 deleted file mode 100644 index f697f13c7..000000000 Binary files a/files/08_1344.mp3 and /dev/null differ diff --git a/files/08_1344_example.mp3 b/files/08_1344_example.mp3 deleted file mode 100644 index 2377db6cd..000000000 Binary files a/files/08_1344_example.mp3 and /dev/null differ diff --git a/files/08_1344_meaning.mp3 b/files/08_1344_meaning.mp3 deleted file mode 100644 index 4d9fa2165..000000000 Binary files a/files/08_1344_meaning.mp3 and /dev/null differ diff --git a/files/08_1345.jpg b/files/08_1345.jpg deleted file mode 100644 index d476525b7..000000000 Binary files a/files/08_1345.jpg and /dev/null differ diff --git a/files/08_1345.mp3 b/files/08_1345.mp3 deleted file mode 100644 index 980a48b2f..000000000 Binary files a/files/08_1345.mp3 and /dev/null differ diff --git a/files/08_1345_example.mp3 b/files/08_1345_example.mp3 deleted file mode 100644 index ef014baaf..000000000 Binary files a/files/08_1345_example.mp3 and /dev/null differ diff --git a/files/08_1345_meaning.mp3 b/files/08_1345_meaning.mp3 deleted file mode 100644 index 59cd5fd91..000000000 Binary files a/files/08_1345_meaning.mp3 and /dev/null differ diff --git a/files/08_1346.jpg b/files/08_1346.jpg deleted file mode 100644 index 78cd176d1..000000000 Binary files a/files/08_1346.jpg and /dev/null differ diff --git a/files/08_1346.mp3 b/files/08_1346.mp3 deleted file mode 100644 index cc76ca3d8..000000000 Binary files a/files/08_1346.mp3 and /dev/null differ diff --git a/files/08_1346_example.mp3 b/files/08_1346_example.mp3 deleted file mode 100644 index f5f8d8c37..000000000 Binary files a/files/08_1346_example.mp3 and /dev/null differ diff --git a/files/08_1346_meaning.mp3 b/files/08_1346_meaning.mp3 deleted file mode 100644 index a2ce74eef..000000000 Binary files a/files/08_1346_meaning.mp3 and /dev/null differ diff --git a/files/08_1347.jpg b/files/08_1347.jpg deleted file mode 100644 index 1934bec67..000000000 Binary files a/files/08_1347.jpg and /dev/null differ diff --git a/files/08_1347.mp3 b/files/08_1347.mp3 deleted file mode 100644 index b1cbdfb8f..000000000 Binary files a/files/08_1347.mp3 and /dev/null differ diff --git a/files/08_1347_example.mp3 b/files/08_1347_example.mp3 deleted file mode 100644 index c4dcc27b0..000000000 Binary files a/files/08_1347_example.mp3 and /dev/null differ diff --git a/files/08_1347_meaning.mp3 b/files/08_1347_meaning.mp3 deleted file mode 100644 index d99c01f9f..000000000 Binary files a/files/08_1347_meaning.mp3 and /dev/null differ diff --git a/files/08_1348.jpg b/files/08_1348.jpg deleted file mode 100644 index 2e574f795..000000000 Binary files a/files/08_1348.jpg and /dev/null differ diff --git a/files/08_1348.mp3 b/files/08_1348.mp3 deleted file mode 100644 index daa604907..000000000 Binary files a/files/08_1348.mp3 and /dev/null differ diff --git a/files/08_1348_example.mp3 b/files/08_1348_example.mp3 deleted file mode 100644 index c5589da3d..000000000 Binary files a/files/08_1348_example.mp3 and /dev/null differ diff --git a/files/08_1348_meaning.mp3 b/files/08_1348_meaning.mp3 deleted file mode 100644 index 3ba632f09..000000000 Binary files a/files/08_1348_meaning.mp3 and /dev/null differ diff --git a/files/08_1349.jpg b/files/08_1349.jpg deleted file mode 100644 index 9c8966757..000000000 Binary files a/files/08_1349.jpg and /dev/null differ diff --git a/files/08_1349.mp3 b/files/08_1349.mp3 deleted file mode 100644 index 3dd2c1d7b..000000000 Binary files a/files/08_1349.mp3 and /dev/null differ diff --git a/files/08_1349_example.mp3 b/files/08_1349_example.mp3 deleted file mode 100644 index 139adae3b..000000000 Binary files a/files/08_1349_example.mp3 and /dev/null differ diff --git a/files/08_1349_meaning.mp3 b/files/08_1349_meaning.mp3 deleted file mode 100644 index 81222722e..000000000 Binary files a/files/08_1349_meaning.mp3 and /dev/null differ diff --git a/files/08_1350.jpg b/files/08_1350.jpg deleted file mode 100644 index fd9d02849..000000000 Binary files a/files/08_1350.jpg and /dev/null differ diff --git a/files/08_1350.mp3 b/files/08_1350.mp3 deleted file mode 100644 index 5bee76902..000000000 Binary files a/files/08_1350.mp3 and /dev/null differ diff --git a/files/08_1350_example.mp3 b/files/08_1350_example.mp3 deleted file mode 100644 index 69c370c22..000000000 Binary files a/files/08_1350_example.mp3 and /dev/null differ diff --git a/files/08_1350_meaning.mp3 b/files/08_1350_meaning.mp3 deleted file mode 100644 index 19b86ffb7..000000000 Binary files a/files/08_1350_meaning.mp3 and /dev/null differ diff --git a/files/08_1351.jpg b/files/08_1351.jpg deleted file mode 100644 index 317b0e6ed..000000000 Binary files a/files/08_1351.jpg and /dev/null differ diff --git a/files/08_1351.mp3 b/files/08_1351.mp3 deleted file mode 100644 index 560c1a4f1..000000000 Binary files a/files/08_1351.mp3 and /dev/null differ diff --git a/files/08_1351_example.mp3 b/files/08_1351_example.mp3 deleted file mode 100644 index d2af59829..000000000 Binary files a/files/08_1351_example.mp3 and /dev/null differ diff --git a/files/08_1351_meaning.mp3 b/files/08_1351_meaning.mp3 deleted file mode 100644 index 31dc641aa..000000000 Binary files a/files/08_1351_meaning.mp3 and /dev/null differ diff --git a/files/08_1352.jpg b/files/08_1352.jpg deleted file mode 100644 index 6e3257ac5..000000000 Binary files a/files/08_1352.jpg and /dev/null differ diff --git a/files/08_1352.mp3 b/files/08_1352.mp3 deleted file mode 100644 index 9d6667b11..000000000 Binary files a/files/08_1352.mp3 and /dev/null differ diff --git a/files/08_1352_example.mp3 b/files/08_1352_example.mp3 deleted file mode 100644 index 809414c1f..000000000 Binary files a/files/08_1352_example.mp3 and /dev/null differ diff --git a/files/08_1352_meaning.mp3 b/files/08_1352_meaning.mp3 deleted file mode 100644 index c95c5a5b9..000000000 Binary files a/files/08_1352_meaning.mp3 and /dev/null differ diff --git a/files/08_1353.jpg b/files/08_1353.jpg deleted file mode 100644 index 3ee8d833c..000000000 Binary files a/files/08_1353.jpg and /dev/null differ diff --git a/files/08_1353.mp3 b/files/08_1353.mp3 deleted file mode 100644 index c00fef4de..000000000 Binary files a/files/08_1353.mp3 and /dev/null differ diff --git a/files/08_1353_example.mp3 b/files/08_1353_example.mp3 deleted file mode 100644 index 209ffc02a..000000000 Binary files a/files/08_1353_example.mp3 and /dev/null differ diff --git a/files/08_1353_meaning.mp3 b/files/08_1353_meaning.mp3 deleted file mode 100644 index 6fdad86ee..000000000 Binary files a/files/08_1353_meaning.mp3 and /dev/null differ diff --git a/files/08_1354.jpg b/files/08_1354.jpg deleted file mode 100644 index 38b1a2056..000000000 Binary files a/files/08_1354.jpg and /dev/null differ diff --git a/files/08_1354.mp3 b/files/08_1354.mp3 deleted file mode 100644 index f8390580a..000000000 Binary files a/files/08_1354.mp3 and /dev/null differ diff --git a/files/08_1354_example.mp3 b/files/08_1354_example.mp3 deleted file mode 100644 index da6cc48ee..000000000 Binary files a/files/08_1354_example.mp3 and /dev/null differ diff --git a/files/08_1354_meaning.mp3 b/files/08_1354_meaning.mp3 deleted file mode 100644 index 3171bcd5a..000000000 Binary files a/files/08_1354_meaning.mp3 and /dev/null differ diff --git a/files/08_1355.jpg b/files/08_1355.jpg deleted file mode 100644 index e3c3ae5ed..000000000 Binary files a/files/08_1355.jpg and /dev/null differ diff --git a/files/08_1355.mp3 b/files/08_1355.mp3 deleted file mode 100644 index c9b575711..000000000 Binary files a/files/08_1355.mp3 and /dev/null differ diff --git a/files/08_1355_example.mp3 b/files/08_1355_example.mp3 deleted file mode 100644 index ab106dd33..000000000 Binary files a/files/08_1355_example.mp3 and /dev/null differ diff --git a/files/08_1355_meaning.mp3 b/files/08_1355_meaning.mp3 deleted file mode 100644 index 2041d0661..000000000 Binary files a/files/08_1355_meaning.mp3 and /dev/null differ diff --git a/files/08_1356.jpg b/files/08_1356.jpg deleted file mode 100644 index 3d78cc4e6..000000000 Binary files a/files/08_1356.jpg and /dev/null differ diff --git a/files/08_1356.mp3 b/files/08_1356.mp3 deleted file mode 100644 index 0e218030d..000000000 Binary files a/files/08_1356.mp3 and /dev/null differ diff --git a/files/08_1356_example.mp3 b/files/08_1356_example.mp3 deleted file mode 100644 index cedb8ca3f..000000000 Binary files a/files/08_1356_example.mp3 and /dev/null differ diff --git a/files/08_1356_meaning.mp3 b/files/08_1356_meaning.mp3 deleted file mode 100644 index 88a68472f..000000000 Binary files a/files/08_1356_meaning.mp3 and /dev/null differ diff --git a/files/08_1357.jpg b/files/08_1357.jpg deleted file mode 100644 index aefc761d2..000000000 Binary files a/files/08_1357.jpg and /dev/null differ diff --git a/files/08_1357.mp3 b/files/08_1357.mp3 deleted file mode 100644 index c6fd17c1f..000000000 Binary files a/files/08_1357.mp3 and /dev/null differ diff --git a/files/08_1357_example.mp3 b/files/08_1357_example.mp3 deleted file mode 100644 index 15d5d597b..000000000 Binary files a/files/08_1357_example.mp3 and /dev/null differ diff --git a/files/08_1357_meaning.mp3 b/files/08_1357_meaning.mp3 deleted file mode 100644 index fb30fb8e0..000000000 Binary files a/files/08_1357_meaning.mp3 and /dev/null differ diff --git a/files/08_1358.jpg b/files/08_1358.jpg deleted file mode 100644 index db124166a..000000000 Binary files a/files/08_1358.jpg and /dev/null differ diff --git a/files/08_1358.mp3 b/files/08_1358.mp3 deleted file mode 100644 index cd13249cf..000000000 Binary files a/files/08_1358.mp3 and /dev/null differ diff --git a/files/08_1358_example.mp3 b/files/08_1358_example.mp3 deleted file mode 100644 index fc01cc59f..000000000 Binary files a/files/08_1358_example.mp3 and /dev/null differ diff --git a/files/08_1358_meaning.mp3 b/files/08_1358_meaning.mp3 deleted file mode 100644 index 91926440a..000000000 Binary files a/files/08_1358_meaning.mp3 and /dev/null differ diff --git a/files/08_1359.jpg b/files/08_1359.jpg deleted file mode 100644 index dddc1b079..000000000 Binary files a/files/08_1359.jpg and /dev/null differ diff --git a/files/08_1359.mp3 b/files/08_1359.mp3 deleted file mode 100644 index 50c6233c6..000000000 Binary files a/files/08_1359.mp3 and /dev/null differ diff --git a/files/08_1359_example.mp3 b/files/08_1359_example.mp3 deleted file mode 100644 index 4d01ad641..000000000 Binary files a/files/08_1359_example.mp3 and /dev/null differ diff --git a/files/08_1359_meaning.mp3 b/files/08_1359_meaning.mp3 deleted file mode 100644 index 5238df9b6..000000000 Binary files a/files/08_1359_meaning.mp3 and /dev/null differ diff --git a/files/08_1360.jpg b/files/08_1360.jpg deleted file mode 100644 index d212efae5..000000000 Binary files a/files/08_1360.jpg and /dev/null differ diff --git a/files/08_1360.mp3 b/files/08_1360.mp3 deleted file mode 100644 index 688adbf97..000000000 Binary files a/files/08_1360.mp3 and /dev/null differ diff --git a/files/08_1360_example.mp3 b/files/08_1360_example.mp3 deleted file mode 100644 index 341291e5d..000000000 Binary files a/files/08_1360_example.mp3 and /dev/null differ diff --git a/files/08_1360_meaning.mp3 b/files/08_1360_meaning.mp3 deleted file mode 100644 index 79b88fe44..000000000 Binary files a/files/08_1360_meaning.mp3 and /dev/null differ diff --git a/files/08_1941.jpg b/files/08_1941.jpg deleted file mode 100644 index 567061c38..000000000 Binary files a/files/08_1941.jpg and /dev/null differ diff --git a/files/08_1941.mp3 b/files/08_1941.mp3 deleted file mode 100644 index 535bbbcc0..000000000 Binary files a/files/08_1941.mp3 and /dev/null differ diff --git a/files/08_1941_example.mp3 b/files/08_1941_example.mp3 deleted file mode 100644 index 65d59f5d6..000000000 Binary files a/files/08_1941_example.mp3 and /dev/null differ diff --git a/files/08_1941_meaning.mp3 b/files/08_1941_meaning.mp3 deleted file mode 100644 index 5159c02e1..000000000 Binary files a/files/08_1941_meaning.mp3 and /dev/null differ diff --git a/files/08_1942.jpg b/files/08_1942.jpg deleted file mode 100644 index 83b55a154..000000000 Binary files a/files/08_1942.jpg and /dev/null differ diff --git a/files/08_1942.mp3 b/files/08_1942.mp3 deleted file mode 100644 index 86d7a1215..000000000 Binary files a/files/08_1942.mp3 and /dev/null differ diff --git a/files/08_1942_example.mp3 b/files/08_1942_example.mp3 deleted file mode 100644 index 88c7af26a..000000000 Binary files a/files/08_1942_example.mp3 and /dev/null differ diff --git a/files/08_1942_meaning.mp3 b/files/08_1942_meaning.mp3 deleted file mode 100644 index 10251e6ec..000000000 Binary files a/files/08_1942_meaning.mp3 and /dev/null differ diff --git a/files/08_1943.jpg b/files/08_1943.jpg deleted file mode 100644 index 0aa7f7b12..000000000 Binary files a/files/08_1943.jpg and /dev/null differ diff --git a/files/08_1943.mp3 b/files/08_1943.mp3 deleted file mode 100644 index 5564e2990..000000000 Binary files a/files/08_1943.mp3 and /dev/null differ diff --git a/files/08_1943_example.mp3 b/files/08_1943_example.mp3 deleted file mode 100644 index 55e9c6544..000000000 Binary files a/files/08_1943_example.mp3 and /dev/null differ diff --git a/files/08_1943_meaning.mp3 b/files/08_1943_meaning.mp3 deleted file mode 100644 index ccecffec1..000000000 Binary files a/files/08_1943_meaning.mp3 and /dev/null differ diff --git a/files/08_1944.jpg b/files/08_1944.jpg deleted file mode 100644 index 830dea798..000000000 Binary files a/files/08_1944.jpg and /dev/null differ diff --git a/files/08_1944.mp3 b/files/08_1944.mp3 deleted file mode 100644 index 84907f031..000000000 Binary files a/files/08_1944.mp3 and /dev/null differ diff --git a/files/08_1944_example.mp3 b/files/08_1944_example.mp3 deleted file mode 100644 index 8ba0845b3..000000000 Binary files a/files/08_1944_example.mp3 and /dev/null differ diff --git a/files/08_1944_meaning.mp3 b/files/08_1944_meaning.mp3 deleted file mode 100644 index 71feb960e..000000000 Binary files a/files/08_1944_meaning.mp3 and /dev/null differ diff --git a/files/08_1945.jpg b/files/08_1945.jpg deleted file mode 100644 index d91591b13..000000000 Binary files a/files/08_1945.jpg and /dev/null differ diff --git a/files/08_1945.mp3 b/files/08_1945.mp3 deleted file mode 100644 index 88f8e1586..000000000 Binary files a/files/08_1945.mp3 and /dev/null differ diff --git a/files/08_1945_example.mp3 b/files/08_1945_example.mp3 deleted file mode 100644 index ec044271b..000000000 Binary files a/files/08_1945_example.mp3 and /dev/null differ diff --git a/files/08_1945_meaning.mp3 b/files/08_1945_meaning.mp3 deleted file mode 100644 index aec85d51b..000000000 Binary files a/files/08_1945_meaning.mp3 and /dev/null differ diff --git a/files/08_1946.jpg b/files/08_1946.jpg deleted file mode 100644 index 15f4507b1..000000000 Binary files a/files/08_1946.jpg and /dev/null differ diff --git a/files/08_1946.mp3 b/files/08_1946.mp3 deleted file mode 100644 index 27ca3bd59..000000000 Binary files a/files/08_1946.mp3 and /dev/null differ diff --git a/files/08_1946_example.mp3 b/files/08_1946_example.mp3 deleted file mode 100644 index 7137d0041..000000000 Binary files a/files/08_1946_example.mp3 and /dev/null differ diff --git a/files/08_1946_meaning.mp3 b/files/08_1946_meaning.mp3 deleted file mode 100644 index cd72673ba..000000000 Binary files a/files/08_1946_meaning.mp3 and /dev/null differ diff --git a/files/08_1947.jpg b/files/08_1947.jpg deleted file mode 100644 index 2713b6dfd..000000000 Binary files a/files/08_1947.jpg and /dev/null differ diff --git a/files/08_1947.mp3 b/files/08_1947.mp3 deleted file mode 100644 index ea1f97fd1..000000000 Binary files a/files/08_1947.mp3 and /dev/null differ diff --git a/files/08_1947_example.mp3 b/files/08_1947_example.mp3 deleted file mode 100644 index 70fcebfce..000000000 Binary files a/files/08_1947_example.mp3 and /dev/null differ diff --git a/files/08_1947_meaning.mp3 b/files/08_1947_meaning.mp3 deleted file mode 100644 index 031427349..000000000 Binary files a/files/08_1947_meaning.mp3 and /dev/null differ diff --git a/files/08_1948.jpg b/files/08_1948.jpg deleted file mode 100644 index a66c1f0b6..000000000 Binary files a/files/08_1948.jpg and /dev/null differ diff --git a/files/08_1948.mp3 b/files/08_1948.mp3 deleted file mode 100644 index 856f68d06..000000000 Binary files a/files/08_1948.mp3 and /dev/null differ diff --git a/files/08_1948_example.mp3 b/files/08_1948_example.mp3 deleted file mode 100644 index 372fbee59..000000000 Binary files a/files/08_1948_example.mp3 and /dev/null differ diff --git a/files/08_1948_meaning.mp3 b/files/08_1948_meaning.mp3 deleted file mode 100644 index 94d1cb82f..000000000 Binary files a/files/08_1948_meaning.mp3 and /dev/null differ diff --git a/files/08_1949.jpg b/files/08_1949.jpg deleted file mode 100644 index 4d89fd905..000000000 Binary files a/files/08_1949.jpg and /dev/null differ diff --git a/files/08_1949.mp3 b/files/08_1949.mp3 deleted file mode 100644 index ab2f13bad..000000000 Binary files a/files/08_1949.mp3 and /dev/null differ diff --git a/files/08_1949_example.mp3 b/files/08_1949_example.mp3 deleted file mode 100644 index 575fab5c6..000000000 Binary files a/files/08_1949_example.mp3 and /dev/null differ diff --git a/files/08_1949_meaning.mp3 b/files/08_1949_meaning.mp3 deleted file mode 100644 index e4c41158c..000000000 Binary files a/files/08_1949_meaning.mp3 and /dev/null differ diff --git a/files/08_1950.jpg b/files/08_1950.jpg deleted file mode 100644 index 2e715ebe3..000000000 Binary files a/files/08_1950.jpg and /dev/null differ diff --git a/files/08_1950.mp3 b/files/08_1950.mp3 deleted file mode 100644 index 49493fbbe..000000000 Binary files a/files/08_1950.mp3 and /dev/null differ diff --git a/files/08_1950_example.mp3 b/files/08_1950_example.mp3 deleted file mode 100644 index 911e5612d..000000000 Binary files a/files/08_1950_example.mp3 and /dev/null differ diff --git a/files/08_1950_meaning.mp3 b/files/08_1950_meaning.mp3 deleted file mode 100644 index fb343deed..000000000 Binary files a/files/08_1950_meaning.mp3 and /dev/null differ diff --git a/files/08_1951.jpg b/files/08_1951.jpg deleted file mode 100644 index f2569ad89..000000000 Binary files a/files/08_1951.jpg and /dev/null differ diff --git a/files/08_1951.mp3 b/files/08_1951.mp3 deleted file mode 100644 index 4b3635044..000000000 Binary files a/files/08_1951.mp3 and /dev/null differ diff --git a/files/08_1951_example.mp3 b/files/08_1951_example.mp3 deleted file mode 100644 index 62a6b13b0..000000000 Binary files a/files/08_1951_example.mp3 and /dev/null differ diff --git a/files/08_1951_meaning.mp3 b/files/08_1951_meaning.mp3 deleted file mode 100644 index 4b23eac1d..000000000 Binary files a/files/08_1951_meaning.mp3 and /dev/null differ diff --git a/files/08_1952.jpg b/files/08_1952.jpg deleted file mode 100644 index c2bb20613..000000000 Binary files a/files/08_1952.jpg and /dev/null differ diff --git a/files/08_1952.mp3 b/files/08_1952.mp3 deleted file mode 100644 index 5e0f9357c..000000000 Binary files a/files/08_1952.mp3 and /dev/null differ diff --git a/files/08_1952_example.mp3 b/files/08_1952_example.mp3 deleted file mode 100644 index 4c28c66e8..000000000 Binary files a/files/08_1952_example.mp3 and /dev/null differ diff --git a/files/08_1952_meaning.mp3 b/files/08_1952_meaning.mp3 deleted file mode 100644 index 2dca290f0..000000000 Binary files a/files/08_1952_meaning.mp3 and /dev/null differ diff --git a/files/08_1953.jpg b/files/08_1953.jpg deleted file mode 100644 index 76fba5c93..000000000 Binary files a/files/08_1953.jpg and /dev/null differ diff --git a/files/08_1953.mp3 b/files/08_1953.mp3 deleted file mode 100644 index 299b30ce2..000000000 Binary files a/files/08_1953.mp3 and /dev/null differ diff --git a/files/08_1953_example.mp3 b/files/08_1953_example.mp3 deleted file mode 100644 index ffd44eead..000000000 Binary files a/files/08_1953_example.mp3 and /dev/null differ diff --git a/files/08_1953_meaning.mp3 b/files/08_1953_meaning.mp3 deleted file mode 100644 index e635e016a..000000000 Binary files a/files/08_1953_meaning.mp3 and /dev/null differ diff --git a/files/08_1954.jpg b/files/08_1954.jpg deleted file mode 100644 index 096ac07d9..000000000 Binary files a/files/08_1954.jpg and /dev/null differ diff --git a/files/08_1954.mp3 b/files/08_1954.mp3 deleted file mode 100644 index 674e999f5..000000000 Binary files a/files/08_1954.mp3 and /dev/null differ diff --git a/files/08_1954_example.mp3 b/files/08_1954_example.mp3 deleted file mode 100644 index aa2af549d..000000000 Binary files a/files/08_1954_example.mp3 and /dev/null differ diff --git a/files/08_1954_meaning.mp3 b/files/08_1954_meaning.mp3 deleted file mode 100644 index cc02b1276..000000000 Binary files a/files/08_1954_meaning.mp3 and /dev/null differ diff --git a/files/08_1955.jpg b/files/08_1955.jpg deleted file mode 100644 index ea03b5321..000000000 Binary files a/files/08_1955.jpg and /dev/null differ diff --git a/files/08_1955.mp3 b/files/08_1955.mp3 deleted file mode 100644 index cb3871636..000000000 Binary files a/files/08_1955.mp3 and /dev/null differ diff --git a/files/08_1955_example.mp3 b/files/08_1955_example.mp3 deleted file mode 100644 index 7341c9f7e..000000000 Binary files a/files/08_1955_example.mp3 and /dev/null differ diff --git a/files/08_1955_meaning.mp3 b/files/08_1955_meaning.mp3 deleted file mode 100644 index ebc016d4e..000000000 Binary files a/files/08_1955_meaning.mp3 and /dev/null differ diff --git a/files/08_1956.jpg b/files/08_1956.jpg deleted file mode 100644 index 0ac55ec40..000000000 Binary files a/files/08_1956.jpg and /dev/null differ diff --git a/files/08_1956.mp3 b/files/08_1956.mp3 deleted file mode 100644 index 6e451f053..000000000 Binary files a/files/08_1956.mp3 and /dev/null differ diff --git a/files/08_1956_example.mp3 b/files/08_1956_example.mp3 deleted file mode 100644 index 1009262ca..000000000 Binary files a/files/08_1956_example.mp3 and /dev/null differ diff --git a/files/08_1956_meaning.mp3 b/files/08_1956_meaning.mp3 deleted file mode 100644 index 4f908f243..000000000 Binary files a/files/08_1956_meaning.mp3 and /dev/null differ diff --git a/files/08_1957.jpg b/files/08_1957.jpg deleted file mode 100644 index 6607e42cb..000000000 Binary files a/files/08_1957.jpg and /dev/null differ diff --git a/files/08_1957.mp3 b/files/08_1957.mp3 deleted file mode 100644 index e98d18102..000000000 Binary files a/files/08_1957.mp3 and /dev/null differ diff --git a/files/08_1957_example.mp3 b/files/08_1957_example.mp3 deleted file mode 100644 index 0eb3e65df..000000000 Binary files a/files/08_1957_example.mp3 and /dev/null differ diff --git a/files/08_1957_meaning.mp3 b/files/08_1957_meaning.mp3 deleted file mode 100644 index 8f439ec8b..000000000 Binary files a/files/08_1957_meaning.mp3 and /dev/null differ diff --git a/files/08_1958.jpg b/files/08_1958.jpg deleted file mode 100644 index 267178693..000000000 Binary files a/files/08_1958.jpg and /dev/null differ diff --git a/files/08_1958.mp3 b/files/08_1958.mp3 deleted file mode 100644 index 0d52ea6e0..000000000 Binary files a/files/08_1958.mp3 and /dev/null differ diff --git a/files/08_1958_example.mp3 b/files/08_1958_example.mp3 deleted file mode 100644 index 1c8c8f8cc..000000000 Binary files a/files/08_1958_example.mp3 and /dev/null differ diff --git a/files/08_1958_meaning.mp3 b/files/08_1958_meaning.mp3 deleted file mode 100644 index 827b0508e..000000000 Binary files a/files/08_1958_meaning.mp3 and /dev/null differ diff --git a/files/08_1959.jpg b/files/08_1959.jpg deleted file mode 100644 index c7b910651..000000000 Binary files a/files/08_1959.jpg and /dev/null differ diff --git a/files/08_1959.mp3 b/files/08_1959.mp3 deleted file mode 100644 index c345fea53..000000000 Binary files a/files/08_1959.mp3 and /dev/null differ diff --git a/files/08_1959_example.mp3 b/files/08_1959_example.mp3 deleted file mode 100644 index b411f5a1c..000000000 Binary files a/files/08_1959_example.mp3 and /dev/null differ diff --git a/files/08_1959_meaning.mp3 b/files/08_1959_meaning.mp3 deleted file mode 100644 index 265ac09d1..000000000 Binary files a/files/08_1959_meaning.mp3 and /dev/null differ diff --git a/files/08_1960.jpg b/files/08_1960.jpg deleted file mode 100644 index 807658cab..000000000 Binary files a/files/08_1960.jpg and /dev/null differ diff --git a/files/08_1960.mp3 b/files/08_1960.mp3 deleted file mode 100644 index d88a1c773..000000000 Binary files a/files/08_1960.mp3 and /dev/null differ diff --git a/files/08_1960_example.mp3 b/files/08_1960_example.mp3 deleted file mode 100644 index e2beccbfb..000000000 Binary files a/files/08_1960_example.mp3 and /dev/null differ diff --git a/files/08_1960_meaning.mp3 b/files/08_1960_meaning.mp3 deleted file mode 100644 index 576d92207..000000000 Binary files a/files/08_1960_meaning.mp3 and /dev/null differ diff --git a/files/08_2541.jpg b/files/08_2541.jpg deleted file mode 100644 index 01fa29c72..000000000 Binary files a/files/08_2541.jpg and /dev/null differ diff --git a/files/08_2541.mp3 b/files/08_2541.mp3 deleted file mode 100644 index 47b63b72a..000000000 Binary files a/files/08_2541.mp3 and /dev/null differ diff --git a/files/08_2541_example.mp3 b/files/08_2541_example.mp3 deleted file mode 100644 index 4c8de916e..000000000 Binary files a/files/08_2541_example.mp3 and /dev/null differ diff --git a/files/08_2541_meaning.mp3 b/files/08_2541_meaning.mp3 deleted file mode 100644 index c2ed3f1b5..000000000 Binary files a/files/08_2541_meaning.mp3 and /dev/null differ diff --git a/files/08_2542.jpg b/files/08_2542.jpg deleted file mode 100644 index 173782a58..000000000 Binary files a/files/08_2542.jpg and /dev/null differ diff --git a/files/08_2542.mp3 b/files/08_2542.mp3 deleted file mode 100644 index 5d557e968..000000000 Binary files a/files/08_2542.mp3 and /dev/null differ diff --git a/files/08_2542_example.mp3 b/files/08_2542_example.mp3 deleted file mode 100644 index 21e3ab306..000000000 Binary files a/files/08_2542_example.mp3 and /dev/null differ diff --git a/files/08_2542_meaning.mp3 b/files/08_2542_meaning.mp3 deleted file mode 100644 index b69e54cfb..000000000 Binary files a/files/08_2542_meaning.mp3 and /dev/null differ diff --git a/files/08_2543.jpg b/files/08_2543.jpg deleted file mode 100644 index b16cf7d80..000000000 Binary files a/files/08_2543.jpg and /dev/null differ diff --git a/files/08_2543.mp3 b/files/08_2543.mp3 deleted file mode 100644 index ebc7269df..000000000 Binary files a/files/08_2543.mp3 and /dev/null differ diff --git a/files/08_2543_example.mp3 b/files/08_2543_example.mp3 deleted file mode 100644 index b4775bf97..000000000 Binary files a/files/08_2543_example.mp3 and /dev/null differ diff --git a/files/08_2543_meaning.mp3 b/files/08_2543_meaning.mp3 deleted file mode 100644 index 14e903069..000000000 Binary files a/files/08_2543_meaning.mp3 and /dev/null differ diff --git a/files/08_2544.jpg b/files/08_2544.jpg deleted file mode 100644 index 8f4e6b9bd..000000000 Binary files a/files/08_2544.jpg and /dev/null differ diff --git a/files/08_2544.mp3 b/files/08_2544.mp3 deleted file mode 100644 index 9ab5363ab..000000000 Binary files a/files/08_2544.mp3 and /dev/null differ diff --git a/files/08_2544_example.mp3 b/files/08_2544_example.mp3 deleted file mode 100644 index abefbda8b..000000000 Binary files a/files/08_2544_example.mp3 and /dev/null differ diff --git a/files/08_2544_meaning.mp3 b/files/08_2544_meaning.mp3 deleted file mode 100644 index 6c2788fc4..000000000 Binary files a/files/08_2544_meaning.mp3 and /dev/null differ diff --git a/files/08_2545.jpg b/files/08_2545.jpg deleted file mode 100644 index 5517a2b15..000000000 Binary files a/files/08_2545.jpg and /dev/null differ diff --git a/files/08_2545.mp3 b/files/08_2545.mp3 deleted file mode 100644 index e4980316f..000000000 Binary files a/files/08_2545.mp3 and /dev/null differ diff --git a/files/08_2545_example.mp3 b/files/08_2545_example.mp3 deleted file mode 100644 index 7783aa097..000000000 Binary files a/files/08_2545_example.mp3 and /dev/null differ diff --git a/files/08_2545_meaning.mp3 b/files/08_2545_meaning.mp3 deleted file mode 100644 index d9c459097..000000000 Binary files a/files/08_2545_meaning.mp3 and /dev/null differ diff --git a/files/08_2546.jpg b/files/08_2546.jpg deleted file mode 100644 index c5b99c230..000000000 Binary files a/files/08_2546.jpg and /dev/null differ diff --git a/files/08_2546.mp3 b/files/08_2546.mp3 deleted file mode 100644 index c5c56015b..000000000 Binary files a/files/08_2546.mp3 and /dev/null differ diff --git a/files/08_2546_example.mp3 b/files/08_2546_example.mp3 deleted file mode 100644 index 3175e945f..000000000 Binary files a/files/08_2546_example.mp3 and /dev/null differ diff --git a/files/08_2546_meaning.mp3 b/files/08_2546_meaning.mp3 deleted file mode 100644 index 458bcd950..000000000 Binary files a/files/08_2546_meaning.mp3 and /dev/null differ diff --git a/files/08_2547.jpg b/files/08_2547.jpg deleted file mode 100644 index ef26654b5..000000000 Binary files a/files/08_2547.jpg and /dev/null differ diff --git a/files/08_2547.mp3 b/files/08_2547.mp3 deleted file mode 100644 index 1f0cd6d29..000000000 Binary files a/files/08_2547.mp3 and /dev/null differ diff --git a/files/08_2547_example.mp3 b/files/08_2547_example.mp3 deleted file mode 100644 index 019172df3..000000000 Binary files a/files/08_2547_example.mp3 and /dev/null differ diff --git a/files/08_2547_meaning.mp3 b/files/08_2547_meaning.mp3 deleted file mode 100644 index 0e95e184d..000000000 Binary files a/files/08_2547_meaning.mp3 and /dev/null differ diff --git a/files/08_2548.jpg b/files/08_2548.jpg deleted file mode 100644 index 18eda99ba..000000000 Binary files a/files/08_2548.jpg and /dev/null differ diff --git a/files/08_2548.mp3 b/files/08_2548.mp3 deleted file mode 100644 index 83d2e8c60..000000000 Binary files a/files/08_2548.mp3 and /dev/null differ diff --git a/files/08_2548_example.mp3 b/files/08_2548_example.mp3 deleted file mode 100644 index d5ae3438a..000000000 Binary files a/files/08_2548_example.mp3 and /dev/null differ diff --git a/files/08_2548_meaning.mp3 b/files/08_2548_meaning.mp3 deleted file mode 100644 index a59a6819c..000000000 Binary files a/files/08_2548_meaning.mp3 and /dev/null differ diff --git a/files/08_2549.jpg b/files/08_2549.jpg deleted file mode 100644 index de5488ab4..000000000 Binary files a/files/08_2549.jpg and /dev/null differ diff --git a/files/08_2549.mp3 b/files/08_2549.mp3 deleted file mode 100644 index 9f3ad41aa..000000000 Binary files a/files/08_2549.mp3 and /dev/null differ diff --git a/files/08_2549_example.mp3 b/files/08_2549_example.mp3 deleted file mode 100644 index 522d46511..000000000 Binary files a/files/08_2549_example.mp3 and /dev/null differ diff --git a/files/08_2549_meaning.mp3 b/files/08_2549_meaning.mp3 deleted file mode 100644 index f7b1b421f..000000000 Binary files a/files/08_2549_meaning.mp3 and /dev/null differ diff --git a/files/08_2550.jpg b/files/08_2550.jpg deleted file mode 100644 index a818b72e5..000000000 Binary files a/files/08_2550.jpg and /dev/null differ diff --git a/files/08_2550.mp3 b/files/08_2550.mp3 deleted file mode 100644 index d508c8d92..000000000 Binary files a/files/08_2550.mp3 and /dev/null differ diff --git a/files/08_2550_example.mp3 b/files/08_2550_example.mp3 deleted file mode 100644 index 3f5c3da26..000000000 Binary files a/files/08_2550_example.mp3 and /dev/null differ diff --git a/files/08_2550_meaning.mp3 b/files/08_2550_meaning.mp3 deleted file mode 100644 index 29e8c6ace..000000000 Binary files a/files/08_2550_meaning.mp3 and /dev/null differ diff --git a/files/08_2551.jpg b/files/08_2551.jpg deleted file mode 100644 index 0fda01032..000000000 Binary files a/files/08_2551.jpg and /dev/null differ diff --git a/files/08_2551.mp3 b/files/08_2551.mp3 deleted file mode 100644 index a4363cfe7..000000000 Binary files a/files/08_2551.mp3 and /dev/null differ diff --git a/files/08_2551_example.mp3 b/files/08_2551_example.mp3 deleted file mode 100644 index 1126ff379..000000000 Binary files a/files/08_2551_example.mp3 and /dev/null differ diff --git a/files/08_2551_meaning.mp3 b/files/08_2551_meaning.mp3 deleted file mode 100644 index af7076ab1..000000000 Binary files a/files/08_2551_meaning.mp3 and /dev/null differ diff --git a/files/08_2552.jpg b/files/08_2552.jpg deleted file mode 100644 index 2bc5016ac..000000000 Binary files a/files/08_2552.jpg and /dev/null differ diff --git a/files/08_2552.mp3 b/files/08_2552.mp3 deleted file mode 100644 index f8a9b62cc..000000000 Binary files a/files/08_2552.mp3 and /dev/null differ diff --git a/files/08_2552_example.mp3 b/files/08_2552_example.mp3 deleted file mode 100644 index 9243f58be..000000000 Binary files a/files/08_2552_example.mp3 and /dev/null differ diff --git a/files/08_2552_meaning.mp3 b/files/08_2552_meaning.mp3 deleted file mode 100644 index ecee0979e..000000000 Binary files a/files/08_2552_meaning.mp3 and /dev/null differ diff --git a/files/08_2553.jpg b/files/08_2553.jpg deleted file mode 100644 index 773ddc98b..000000000 Binary files a/files/08_2553.jpg and /dev/null differ diff --git a/files/08_2553.mp3 b/files/08_2553.mp3 deleted file mode 100644 index 3cfb00868..000000000 Binary files a/files/08_2553.mp3 and /dev/null differ diff --git a/files/08_2553_example.mp3 b/files/08_2553_example.mp3 deleted file mode 100644 index cfb382160..000000000 Binary files a/files/08_2553_example.mp3 and /dev/null differ diff --git a/files/08_2553_meaning.mp3 b/files/08_2553_meaning.mp3 deleted file mode 100644 index f890c12f4..000000000 Binary files a/files/08_2553_meaning.mp3 and /dev/null differ diff --git a/files/08_2554.jpg b/files/08_2554.jpg deleted file mode 100644 index 1d800e89d..000000000 Binary files a/files/08_2554.jpg and /dev/null differ diff --git a/files/08_2554.mp3 b/files/08_2554.mp3 deleted file mode 100644 index 4a03c1d44..000000000 Binary files a/files/08_2554.mp3 and /dev/null differ diff --git a/files/08_2554_example.mp3 b/files/08_2554_example.mp3 deleted file mode 100644 index 0ff540e0e..000000000 Binary files a/files/08_2554_example.mp3 and /dev/null differ diff --git a/files/08_2554_meaning.mp3 b/files/08_2554_meaning.mp3 deleted file mode 100644 index de3031ee9..000000000 Binary files a/files/08_2554_meaning.mp3 and /dev/null differ diff --git a/files/08_2555.jpg b/files/08_2555.jpg deleted file mode 100644 index 9cfeb691f..000000000 Binary files a/files/08_2555.jpg and /dev/null differ diff --git a/files/08_2555.mp3 b/files/08_2555.mp3 deleted file mode 100644 index 5b08bfd0a..000000000 Binary files a/files/08_2555.mp3 and /dev/null differ diff --git a/files/08_2555_example.mp3 b/files/08_2555_example.mp3 deleted file mode 100644 index 9fd006374..000000000 Binary files a/files/08_2555_example.mp3 and /dev/null differ diff --git a/files/08_2555_meaning.mp3 b/files/08_2555_meaning.mp3 deleted file mode 100644 index d5cb1aefe..000000000 Binary files a/files/08_2555_meaning.mp3 and /dev/null differ diff --git a/files/08_2556.jpg b/files/08_2556.jpg deleted file mode 100644 index 988b38b0f..000000000 Binary files a/files/08_2556.jpg and /dev/null differ diff --git a/files/08_2556.mp3 b/files/08_2556.mp3 deleted file mode 100644 index 9e294ab57..000000000 Binary files a/files/08_2556.mp3 and /dev/null differ diff --git a/files/08_2556_example.mp3 b/files/08_2556_example.mp3 deleted file mode 100644 index c10127fff..000000000 Binary files a/files/08_2556_example.mp3 and /dev/null differ diff --git a/files/08_2556_meaning.mp3 b/files/08_2556_meaning.mp3 deleted file mode 100644 index 64064e387..000000000 Binary files a/files/08_2556_meaning.mp3 and /dev/null differ diff --git a/files/08_2557.jpg b/files/08_2557.jpg deleted file mode 100644 index 119e6b727..000000000 Binary files a/files/08_2557.jpg and /dev/null differ diff --git a/files/08_2557.mp3 b/files/08_2557.mp3 deleted file mode 100644 index b729a66e5..000000000 Binary files a/files/08_2557.mp3 and /dev/null differ diff --git a/files/08_2557_example.mp3 b/files/08_2557_example.mp3 deleted file mode 100644 index 97457feb9..000000000 Binary files a/files/08_2557_example.mp3 and /dev/null differ diff --git a/files/08_2557_meaning.mp3 b/files/08_2557_meaning.mp3 deleted file mode 100644 index 182ece8f1..000000000 Binary files a/files/08_2557_meaning.mp3 and /dev/null differ diff --git a/files/08_2558.jpg b/files/08_2558.jpg deleted file mode 100644 index a835f044e..000000000 Binary files a/files/08_2558.jpg and /dev/null differ diff --git a/files/08_2558.mp3 b/files/08_2558.mp3 deleted file mode 100644 index 802fd252c..000000000 Binary files a/files/08_2558.mp3 and /dev/null differ diff --git a/files/08_2558_example.mp3 b/files/08_2558_example.mp3 deleted file mode 100644 index 78c52a0a4..000000000 Binary files a/files/08_2558_example.mp3 and /dev/null differ diff --git a/files/08_2558_meaning.mp3 b/files/08_2558_meaning.mp3 deleted file mode 100644 index 3e8d0b70e..000000000 Binary files a/files/08_2558_meaning.mp3 and /dev/null differ diff --git a/files/08_2559.jpg b/files/08_2559.jpg deleted file mode 100644 index e03c5b191..000000000 Binary files a/files/08_2559.jpg and /dev/null differ diff --git a/files/08_2559.mp3 b/files/08_2559.mp3 deleted file mode 100644 index e4ad93ff6..000000000 Binary files a/files/08_2559.mp3 and /dev/null differ diff --git a/files/08_2559_example.mp3 b/files/08_2559_example.mp3 deleted file mode 100644 index e6b4d5836..000000000 Binary files a/files/08_2559_example.mp3 and /dev/null differ diff --git a/files/08_2559_meaning.mp3 b/files/08_2559_meaning.mp3 deleted file mode 100644 index 3c34ba36a..000000000 Binary files a/files/08_2559_meaning.mp3 and /dev/null differ diff --git a/files/08_2560.jpg b/files/08_2560.jpg deleted file mode 100644 index 6ce4fe7f8..000000000 Binary files a/files/08_2560.jpg and /dev/null differ diff --git a/files/08_2560.mp3 b/files/08_2560.mp3 deleted file mode 100644 index fd9f231c7..000000000 Binary files a/files/08_2560.mp3 and /dev/null differ diff --git a/files/08_2560_example.mp3 b/files/08_2560_example.mp3 deleted file mode 100644 index c87f9b725..000000000 Binary files a/files/08_2560_example.mp3 and /dev/null differ diff --git a/files/08_2560_meaning.mp3 b/files/08_2560_meaning.mp3 deleted file mode 100644 index 1efa44c04..000000000 Binary files a/files/08_2560_meaning.mp3 and /dev/null differ diff --git a/files/08_3141.jpg b/files/08_3141.jpg deleted file mode 100644 index 06bd5d4a1..000000000 Binary files a/files/08_3141.jpg and /dev/null differ diff --git a/files/08_3141.mp3 b/files/08_3141.mp3 deleted file mode 100644 index bdbf8ac69..000000000 Binary files a/files/08_3141.mp3 and /dev/null differ diff --git a/files/08_3141_example.mp3 b/files/08_3141_example.mp3 deleted file mode 100644 index f0a221d0b..000000000 Binary files a/files/08_3141_example.mp3 and /dev/null differ diff --git a/files/08_3141_meaning.mp3 b/files/08_3141_meaning.mp3 deleted file mode 100644 index 7eb5a15d4..000000000 Binary files a/files/08_3141_meaning.mp3 and /dev/null differ diff --git a/files/08_3142.jpg b/files/08_3142.jpg deleted file mode 100644 index 83c22cd93..000000000 Binary files a/files/08_3142.jpg and /dev/null differ diff --git a/files/08_3142.mp3 b/files/08_3142.mp3 deleted file mode 100644 index 9b3fdc1f9..000000000 Binary files a/files/08_3142.mp3 and /dev/null differ diff --git a/files/08_3142_example.mp3 b/files/08_3142_example.mp3 deleted file mode 100644 index e25a843d4..000000000 Binary files a/files/08_3142_example.mp3 and /dev/null differ diff --git a/files/08_3142_meaning.mp3 b/files/08_3142_meaning.mp3 deleted file mode 100644 index b49c6d8b7..000000000 Binary files a/files/08_3142_meaning.mp3 and /dev/null differ diff --git a/files/08_3143.jpg b/files/08_3143.jpg deleted file mode 100644 index 2d280e907..000000000 Binary files a/files/08_3143.jpg and /dev/null differ diff --git a/files/08_3143.mp3 b/files/08_3143.mp3 deleted file mode 100644 index 7e7fee157..000000000 Binary files a/files/08_3143.mp3 and /dev/null differ diff --git a/files/08_3143_example.mp3 b/files/08_3143_example.mp3 deleted file mode 100644 index 0d7d7369f..000000000 Binary files a/files/08_3143_example.mp3 and /dev/null differ diff --git a/files/08_3143_meaning.mp3 b/files/08_3143_meaning.mp3 deleted file mode 100644 index a7ec67a72..000000000 Binary files a/files/08_3143_meaning.mp3 and /dev/null differ diff --git a/files/08_3144.jpg b/files/08_3144.jpg deleted file mode 100644 index 0e96c1557..000000000 Binary files a/files/08_3144.jpg and /dev/null differ diff --git a/files/08_3144.mp3 b/files/08_3144.mp3 deleted file mode 100644 index 66970eda4..000000000 Binary files a/files/08_3144.mp3 and /dev/null differ diff --git a/files/08_3144_example.mp3 b/files/08_3144_example.mp3 deleted file mode 100644 index 9621a409b..000000000 Binary files a/files/08_3144_example.mp3 and /dev/null differ diff --git a/files/08_3144_meaning.mp3 b/files/08_3144_meaning.mp3 deleted file mode 100644 index f13f381c3..000000000 Binary files a/files/08_3144_meaning.mp3 and /dev/null differ diff --git a/files/08_3145.jpg b/files/08_3145.jpg deleted file mode 100644 index 133049862..000000000 Binary files a/files/08_3145.jpg and /dev/null differ diff --git a/files/08_3145.mp3 b/files/08_3145.mp3 deleted file mode 100644 index 97c0a36f6..000000000 Binary files a/files/08_3145.mp3 and /dev/null differ diff --git a/files/08_3145_example.mp3 b/files/08_3145_example.mp3 deleted file mode 100644 index 6a03b7ca1..000000000 Binary files a/files/08_3145_example.mp3 and /dev/null differ diff --git a/files/08_3145_meaning.mp3 b/files/08_3145_meaning.mp3 deleted file mode 100644 index 521bbd269..000000000 Binary files a/files/08_3145_meaning.mp3 and /dev/null differ diff --git a/files/08_3146.jpg b/files/08_3146.jpg deleted file mode 100644 index fdb105aa0..000000000 Binary files a/files/08_3146.jpg and /dev/null differ diff --git a/files/08_3146.mp3 b/files/08_3146.mp3 deleted file mode 100644 index 618517738..000000000 Binary files a/files/08_3146.mp3 and /dev/null differ diff --git a/files/08_3146_example.mp3 b/files/08_3146_example.mp3 deleted file mode 100644 index 85f031658..000000000 Binary files a/files/08_3146_example.mp3 and /dev/null differ diff --git a/files/08_3146_meaning.mp3 b/files/08_3146_meaning.mp3 deleted file mode 100644 index e97d45f40..000000000 Binary files a/files/08_3146_meaning.mp3 and /dev/null differ diff --git a/files/08_3147.jpg b/files/08_3147.jpg deleted file mode 100644 index e9e3ca0c1..000000000 Binary files a/files/08_3147.jpg and /dev/null differ diff --git a/files/08_3147.mp3 b/files/08_3147.mp3 deleted file mode 100644 index 58e743f1e..000000000 Binary files a/files/08_3147.mp3 and /dev/null differ diff --git a/files/08_3147_example.mp3 b/files/08_3147_example.mp3 deleted file mode 100644 index d604c2e60..000000000 Binary files a/files/08_3147_example.mp3 and /dev/null differ diff --git a/files/08_3147_meaning.mp3 b/files/08_3147_meaning.mp3 deleted file mode 100644 index eba4c6719..000000000 Binary files a/files/08_3147_meaning.mp3 and /dev/null differ diff --git a/files/08_3148.jpg b/files/08_3148.jpg deleted file mode 100644 index 72a5b6ee1..000000000 Binary files a/files/08_3148.jpg and /dev/null differ diff --git a/files/08_3148.mp3 b/files/08_3148.mp3 deleted file mode 100644 index 569342656..000000000 Binary files a/files/08_3148.mp3 and /dev/null differ diff --git a/files/08_3148_example.mp3 b/files/08_3148_example.mp3 deleted file mode 100644 index bdf4b96fa..000000000 Binary files a/files/08_3148_example.mp3 and /dev/null differ diff --git a/files/08_3148_meaning.mp3 b/files/08_3148_meaning.mp3 deleted file mode 100644 index b27eb444c..000000000 Binary files a/files/08_3148_meaning.mp3 and /dev/null differ diff --git a/files/08_3149.jpg b/files/08_3149.jpg deleted file mode 100644 index ab0fbfaaa..000000000 Binary files a/files/08_3149.jpg and /dev/null differ diff --git a/files/08_3149.mp3 b/files/08_3149.mp3 deleted file mode 100644 index 1c172622b..000000000 Binary files a/files/08_3149.mp3 and /dev/null differ diff --git a/files/08_3149_example.mp3 b/files/08_3149_example.mp3 deleted file mode 100644 index fc8bbf027..000000000 Binary files a/files/08_3149_example.mp3 and /dev/null differ diff --git a/files/08_3149_meaning.mp3 b/files/08_3149_meaning.mp3 deleted file mode 100644 index 81e051f06..000000000 Binary files a/files/08_3149_meaning.mp3 and /dev/null differ diff --git a/files/08_3150.jpg b/files/08_3150.jpg deleted file mode 100644 index 2202cec08..000000000 Binary files a/files/08_3150.jpg and /dev/null differ diff --git a/files/08_3150.mp3 b/files/08_3150.mp3 deleted file mode 100644 index 26e86c83d..000000000 Binary files a/files/08_3150.mp3 and /dev/null differ diff --git a/files/08_3150_example.mp3 b/files/08_3150_example.mp3 deleted file mode 100644 index f7cadf8aa..000000000 Binary files a/files/08_3150_example.mp3 and /dev/null differ diff --git a/files/08_3150_meaning.mp3 b/files/08_3150_meaning.mp3 deleted file mode 100644 index a38e16e7c..000000000 Binary files a/files/08_3150_meaning.mp3 and /dev/null differ diff --git a/files/08_3151.jpg b/files/08_3151.jpg deleted file mode 100644 index 7b8c89e75..000000000 Binary files a/files/08_3151.jpg and /dev/null differ diff --git a/files/08_3151.mp3 b/files/08_3151.mp3 deleted file mode 100644 index 22513c4c0..000000000 Binary files a/files/08_3151.mp3 and /dev/null differ diff --git a/files/08_3151_example.mp3 b/files/08_3151_example.mp3 deleted file mode 100644 index f17ebf5bb..000000000 Binary files a/files/08_3151_example.mp3 and /dev/null differ diff --git a/files/08_3151_meaning.mp3 b/files/08_3151_meaning.mp3 deleted file mode 100644 index 2e276da33..000000000 Binary files a/files/08_3151_meaning.mp3 and /dev/null differ diff --git a/files/08_3152.jpg b/files/08_3152.jpg deleted file mode 100644 index 1c6df206c..000000000 Binary files a/files/08_3152.jpg and /dev/null differ diff --git a/files/08_3152.mp3 b/files/08_3152.mp3 deleted file mode 100644 index 153a498e6..000000000 Binary files a/files/08_3152.mp3 and /dev/null differ diff --git a/files/08_3152_example.mp3 b/files/08_3152_example.mp3 deleted file mode 100644 index ff505418d..000000000 Binary files a/files/08_3152_example.mp3 and /dev/null differ diff --git a/files/08_3152_meaning.mp3 b/files/08_3152_meaning.mp3 deleted file mode 100644 index 710508667..000000000 Binary files a/files/08_3152_meaning.mp3 and /dev/null differ diff --git a/files/08_3153.jpg b/files/08_3153.jpg deleted file mode 100644 index 1a0e3345f..000000000 Binary files a/files/08_3153.jpg and /dev/null differ diff --git a/files/08_3153.mp3 b/files/08_3153.mp3 deleted file mode 100644 index 6e34c056d..000000000 Binary files a/files/08_3153.mp3 and /dev/null differ diff --git a/files/08_3153_example.mp3 b/files/08_3153_example.mp3 deleted file mode 100644 index 4511dc2db..000000000 Binary files a/files/08_3153_example.mp3 and /dev/null differ diff --git a/files/08_3153_meaning.mp3 b/files/08_3153_meaning.mp3 deleted file mode 100644 index 74036307b..000000000 Binary files a/files/08_3153_meaning.mp3 and /dev/null differ diff --git a/files/08_3154.jpg b/files/08_3154.jpg deleted file mode 100644 index dda8b3d4e..000000000 Binary files a/files/08_3154.jpg and /dev/null differ diff --git a/files/08_3154.mp3 b/files/08_3154.mp3 deleted file mode 100644 index 948ff766a..000000000 Binary files a/files/08_3154.mp3 and /dev/null differ diff --git a/files/08_3154_example.mp3 b/files/08_3154_example.mp3 deleted file mode 100644 index 1ac42f4e4..000000000 Binary files a/files/08_3154_example.mp3 and /dev/null differ diff --git a/files/08_3154_meaning.mp3 b/files/08_3154_meaning.mp3 deleted file mode 100644 index c17a61dad..000000000 Binary files a/files/08_3154_meaning.mp3 and /dev/null differ diff --git a/files/08_3155.jpg b/files/08_3155.jpg deleted file mode 100644 index 554130c9e..000000000 Binary files a/files/08_3155.jpg and /dev/null differ diff --git a/files/08_3155.mp3 b/files/08_3155.mp3 deleted file mode 100644 index e3803dc62..000000000 Binary files a/files/08_3155.mp3 and /dev/null differ diff --git a/files/08_3155_example.mp3 b/files/08_3155_example.mp3 deleted file mode 100644 index a68b60fb0..000000000 Binary files a/files/08_3155_example.mp3 and /dev/null differ diff --git a/files/08_3155_meaning.mp3 b/files/08_3155_meaning.mp3 deleted file mode 100644 index 6620a7a30..000000000 Binary files a/files/08_3155_meaning.mp3 and /dev/null differ diff --git a/files/08_3156.jpg b/files/08_3156.jpg deleted file mode 100644 index c8812ff8c..000000000 Binary files a/files/08_3156.jpg and /dev/null differ diff --git a/files/08_3156.mp3 b/files/08_3156.mp3 deleted file mode 100644 index 201eb7679..000000000 Binary files a/files/08_3156.mp3 and /dev/null differ diff --git a/files/08_3156_example.mp3 b/files/08_3156_example.mp3 deleted file mode 100644 index 64c2b3aa6..000000000 Binary files a/files/08_3156_example.mp3 and /dev/null differ diff --git a/files/08_3156_meaning.mp3 b/files/08_3156_meaning.mp3 deleted file mode 100644 index ef828ab1c..000000000 Binary files a/files/08_3156_meaning.mp3 and /dev/null differ diff --git a/files/08_3157.jpg b/files/08_3157.jpg deleted file mode 100644 index 3ea714e43..000000000 Binary files a/files/08_3157.jpg and /dev/null differ diff --git a/files/08_3157.mp3 b/files/08_3157.mp3 deleted file mode 100644 index b5e572818..000000000 Binary files a/files/08_3157.mp3 and /dev/null differ diff --git a/files/08_3157_example.mp3 b/files/08_3157_example.mp3 deleted file mode 100644 index 29bbf5f67..000000000 Binary files a/files/08_3157_example.mp3 and /dev/null differ diff --git a/files/08_3157_meaning.mp3 b/files/08_3157_meaning.mp3 deleted file mode 100644 index 8b814cb7e..000000000 Binary files a/files/08_3157_meaning.mp3 and /dev/null differ diff --git a/files/08_3158.jpg b/files/08_3158.jpg deleted file mode 100644 index 5616a0988..000000000 Binary files a/files/08_3158.jpg and /dev/null differ diff --git a/files/08_3158.mp3 b/files/08_3158.mp3 deleted file mode 100644 index c6869a29d..000000000 Binary files a/files/08_3158.mp3 and /dev/null differ diff --git a/files/08_3158_example.mp3 b/files/08_3158_example.mp3 deleted file mode 100644 index 85472f514..000000000 Binary files a/files/08_3158_example.mp3 and /dev/null differ diff --git a/files/08_3158_meaning.mp3 b/files/08_3158_meaning.mp3 deleted file mode 100644 index ce74d8098..000000000 Binary files a/files/08_3158_meaning.mp3 and /dev/null differ diff --git a/files/08_3159.jpg b/files/08_3159.jpg deleted file mode 100644 index 6bf6da070..000000000 Binary files a/files/08_3159.jpg and /dev/null differ diff --git a/files/08_3159.mp3 b/files/08_3159.mp3 deleted file mode 100644 index b601a10d6..000000000 Binary files a/files/08_3159.mp3 and /dev/null differ diff --git a/files/08_3159_example.mp3 b/files/08_3159_example.mp3 deleted file mode 100644 index c7fd586cb..000000000 Binary files a/files/08_3159_example.mp3 and /dev/null differ diff --git a/files/08_3159_meaning.mp3 b/files/08_3159_meaning.mp3 deleted file mode 100644 index bdf6e7705..000000000 Binary files a/files/08_3159_meaning.mp3 and /dev/null differ diff --git a/files/08_3160.jpg b/files/08_3160.jpg deleted file mode 100644 index fc38654d7..000000000 Binary files a/files/08_3160.jpg and /dev/null differ diff --git a/files/08_3160.mp3 b/files/08_3160.mp3 deleted file mode 100644 index c1d11ed4e..000000000 Binary files a/files/08_3160.mp3 and /dev/null differ diff --git a/files/08_3160_example.mp3 b/files/08_3160_example.mp3 deleted file mode 100644 index 971937beb..000000000 Binary files a/files/08_3160_example.mp3 and /dev/null differ diff --git a/files/08_3160_meaning.mp3 b/files/08_3160_meaning.mp3 deleted file mode 100644 index 7f08676fb..000000000 Binary files a/files/08_3160_meaning.mp3 and /dev/null differ diff --git a/files/09_0161.jpg b/files/09_0161.jpg deleted file mode 100644 index 962a37ed5..000000000 Binary files a/files/09_0161.jpg and /dev/null differ diff --git a/files/09_0161.mp3 b/files/09_0161.mp3 deleted file mode 100644 index ea730e57b..000000000 Binary files a/files/09_0161.mp3 and /dev/null differ diff --git a/files/09_0161_example.mp3 b/files/09_0161_example.mp3 deleted file mode 100644 index 52d2f65ac..000000000 Binary files a/files/09_0161_example.mp3 and /dev/null differ diff --git a/files/09_0161_meaning.mp3 b/files/09_0161_meaning.mp3 deleted file mode 100644 index db0a03303..000000000 Binary files a/files/09_0161_meaning.mp3 and /dev/null differ diff --git a/files/09_0162.jpg b/files/09_0162.jpg deleted file mode 100644 index ce3d08257..000000000 Binary files a/files/09_0162.jpg and /dev/null differ diff --git a/files/09_0162.mp3 b/files/09_0162.mp3 deleted file mode 100644 index e8e3e60ae..000000000 Binary files a/files/09_0162.mp3 and /dev/null differ diff --git a/files/09_0162_example.mp3 b/files/09_0162_example.mp3 deleted file mode 100644 index c75000bee..000000000 Binary files a/files/09_0162_example.mp3 and /dev/null differ diff --git a/files/09_0162_meaning.mp3 b/files/09_0162_meaning.mp3 deleted file mode 100644 index da8d5ca72..000000000 Binary files a/files/09_0162_meaning.mp3 and /dev/null differ diff --git a/files/09_0163.jpg b/files/09_0163.jpg deleted file mode 100644 index d7e31913f..000000000 Binary files a/files/09_0163.jpg and /dev/null differ diff --git a/files/09_0163.mp3 b/files/09_0163.mp3 deleted file mode 100644 index 4f13cb0b4..000000000 Binary files a/files/09_0163.mp3 and /dev/null differ diff --git a/files/09_0163_example.mp3 b/files/09_0163_example.mp3 deleted file mode 100644 index 9bc6aaa2b..000000000 Binary files a/files/09_0163_example.mp3 and /dev/null differ diff --git a/files/09_0163_meaning.mp3 b/files/09_0163_meaning.mp3 deleted file mode 100644 index a7266e013..000000000 Binary files a/files/09_0163_meaning.mp3 and /dev/null differ diff --git a/files/09_0164.jpg b/files/09_0164.jpg deleted file mode 100644 index 969f0b6eb..000000000 Binary files a/files/09_0164.jpg and /dev/null differ diff --git a/files/09_0164.mp3 b/files/09_0164.mp3 deleted file mode 100644 index 36564531c..000000000 Binary files a/files/09_0164.mp3 and /dev/null differ diff --git a/files/09_0164_example.mp3 b/files/09_0164_example.mp3 deleted file mode 100644 index f33a3617a..000000000 Binary files a/files/09_0164_example.mp3 and /dev/null differ diff --git a/files/09_0164_meaning.mp3 b/files/09_0164_meaning.mp3 deleted file mode 100644 index b80b65450..000000000 Binary files a/files/09_0164_meaning.mp3 and /dev/null differ diff --git a/files/09_0165.jpg b/files/09_0165.jpg deleted file mode 100644 index 8f87f5597..000000000 Binary files a/files/09_0165.jpg and /dev/null differ diff --git a/files/09_0165.mp3 b/files/09_0165.mp3 deleted file mode 100644 index 070bea903..000000000 Binary files a/files/09_0165.mp3 and /dev/null differ diff --git a/files/09_0165_example.mp3 b/files/09_0165_example.mp3 deleted file mode 100644 index 988d8f0db..000000000 Binary files a/files/09_0165_example.mp3 and /dev/null differ diff --git a/files/09_0165_meaning.mp3 b/files/09_0165_meaning.mp3 deleted file mode 100644 index ae5c151f4..000000000 Binary files a/files/09_0165_meaning.mp3 and /dev/null differ diff --git a/files/09_0166.jpg b/files/09_0166.jpg deleted file mode 100644 index 30551d7ae..000000000 Binary files a/files/09_0166.jpg and /dev/null differ diff --git a/files/09_0166.mp3 b/files/09_0166.mp3 deleted file mode 100644 index db9b5ba2c..000000000 Binary files a/files/09_0166.mp3 and /dev/null differ diff --git a/files/09_0166_example.mp3 b/files/09_0166_example.mp3 deleted file mode 100644 index 66b981485..000000000 Binary files a/files/09_0166_example.mp3 and /dev/null differ diff --git a/files/09_0166_meaning.mp3 b/files/09_0166_meaning.mp3 deleted file mode 100644 index 82381572f..000000000 Binary files a/files/09_0166_meaning.mp3 and /dev/null differ diff --git a/files/09_0167.jpg b/files/09_0167.jpg deleted file mode 100644 index f15a14cea..000000000 Binary files a/files/09_0167.jpg and /dev/null differ diff --git a/files/09_0167.mp3 b/files/09_0167.mp3 deleted file mode 100644 index f85a7e434..000000000 Binary files a/files/09_0167.mp3 and /dev/null differ diff --git a/files/09_0167_example.mp3 b/files/09_0167_example.mp3 deleted file mode 100644 index 80093fb84..000000000 Binary files a/files/09_0167_example.mp3 and /dev/null differ diff --git a/files/09_0167_meaning.mp3 b/files/09_0167_meaning.mp3 deleted file mode 100644 index 7c3937fb0..000000000 Binary files a/files/09_0167_meaning.mp3 and /dev/null differ diff --git a/files/09_0168.jpg b/files/09_0168.jpg deleted file mode 100644 index 0969cec78..000000000 Binary files a/files/09_0168.jpg and /dev/null differ diff --git a/files/09_0168.mp3 b/files/09_0168.mp3 deleted file mode 100644 index f4b569dfc..000000000 Binary files a/files/09_0168.mp3 and /dev/null differ diff --git a/files/09_0168_example.mp3 b/files/09_0168_example.mp3 deleted file mode 100644 index fad5b8c27..000000000 Binary files a/files/09_0168_example.mp3 and /dev/null differ diff --git a/files/09_0168_meaning.mp3 b/files/09_0168_meaning.mp3 deleted file mode 100644 index 3aa05803d..000000000 Binary files a/files/09_0168_meaning.mp3 and /dev/null differ diff --git a/files/09_0169.jpg b/files/09_0169.jpg deleted file mode 100644 index 744c9dae3..000000000 Binary files a/files/09_0169.jpg and /dev/null differ diff --git a/files/09_0169.mp3 b/files/09_0169.mp3 deleted file mode 100644 index 3e7ec4fe0..000000000 Binary files a/files/09_0169.mp3 and /dev/null differ diff --git a/files/09_0169_example.mp3 b/files/09_0169_example.mp3 deleted file mode 100644 index bd9f936a1..000000000 Binary files a/files/09_0169_example.mp3 and /dev/null differ diff --git a/files/09_0169_meaning.mp3 b/files/09_0169_meaning.mp3 deleted file mode 100644 index 68ba43bbc..000000000 Binary files a/files/09_0169_meaning.mp3 and /dev/null differ diff --git a/files/09_0170.jpg b/files/09_0170.jpg deleted file mode 100644 index bd050e8b6..000000000 Binary files a/files/09_0170.jpg and /dev/null differ diff --git a/files/09_0170.mp3 b/files/09_0170.mp3 deleted file mode 100644 index b51b5e80c..000000000 Binary files a/files/09_0170.mp3 and /dev/null differ diff --git a/files/09_0170_example.mp3 b/files/09_0170_example.mp3 deleted file mode 100644 index a3fa0b09e..000000000 Binary files a/files/09_0170_example.mp3 and /dev/null differ diff --git a/files/09_0170_meaning.mp3 b/files/09_0170_meaning.mp3 deleted file mode 100644 index 0225b2970..000000000 Binary files a/files/09_0170_meaning.mp3 and /dev/null differ diff --git a/files/09_0171.jpg b/files/09_0171.jpg deleted file mode 100644 index f922b9511..000000000 Binary files a/files/09_0171.jpg and /dev/null differ diff --git a/files/09_0171.mp3 b/files/09_0171.mp3 deleted file mode 100644 index c19f6cee6..000000000 Binary files a/files/09_0171.mp3 and /dev/null differ diff --git a/files/09_0171_example.mp3 b/files/09_0171_example.mp3 deleted file mode 100644 index 351e5f094..000000000 Binary files a/files/09_0171_example.mp3 and /dev/null differ diff --git a/files/09_0171_meaning.mp3 b/files/09_0171_meaning.mp3 deleted file mode 100644 index 42e2a81ac..000000000 Binary files a/files/09_0171_meaning.mp3 and /dev/null differ diff --git a/files/09_0172.jpg b/files/09_0172.jpg deleted file mode 100644 index 22066debf..000000000 Binary files a/files/09_0172.jpg and /dev/null differ diff --git a/files/09_0172.mp3 b/files/09_0172.mp3 deleted file mode 100644 index 0a8c4e749..000000000 Binary files a/files/09_0172.mp3 and /dev/null differ diff --git a/files/09_0172_example.mp3 b/files/09_0172_example.mp3 deleted file mode 100644 index daff8aac1..000000000 Binary files a/files/09_0172_example.mp3 and /dev/null differ diff --git a/files/09_0172_meaning.mp3 b/files/09_0172_meaning.mp3 deleted file mode 100644 index 7c0a63f3b..000000000 Binary files a/files/09_0172_meaning.mp3 and /dev/null differ diff --git a/files/09_0173.jpg b/files/09_0173.jpg deleted file mode 100644 index 04299400f..000000000 Binary files a/files/09_0173.jpg and /dev/null differ diff --git a/files/09_0173.mp3 b/files/09_0173.mp3 deleted file mode 100644 index 1c73dbbbb..000000000 Binary files a/files/09_0173.mp3 and /dev/null differ diff --git a/files/09_0173_example.mp3 b/files/09_0173_example.mp3 deleted file mode 100644 index 90e755ee1..000000000 Binary files a/files/09_0173_example.mp3 and /dev/null differ diff --git a/files/09_0173_meaning.mp3 b/files/09_0173_meaning.mp3 deleted file mode 100644 index 1e6ca1fb9..000000000 Binary files a/files/09_0173_meaning.mp3 and /dev/null differ diff --git a/files/09_0174.jpg b/files/09_0174.jpg deleted file mode 100644 index c04a46123..000000000 Binary files a/files/09_0174.jpg and /dev/null differ diff --git a/files/09_0174.mp3 b/files/09_0174.mp3 deleted file mode 100644 index 3fb97b417..000000000 Binary files a/files/09_0174.mp3 and /dev/null differ diff --git a/files/09_0174_example.mp3 b/files/09_0174_example.mp3 deleted file mode 100644 index c701111ce..000000000 Binary files a/files/09_0174_example.mp3 and /dev/null differ diff --git a/files/09_0174_meaning.mp3 b/files/09_0174_meaning.mp3 deleted file mode 100644 index 8faf83b70..000000000 Binary files a/files/09_0174_meaning.mp3 and /dev/null differ diff --git a/files/09_0175.jpg b/files/09_0175.jpg deleted file mode 100644 index 5d70aec08..000000000 Binary files a/files/09_0175.jpg and /dev/null differ diff --git a/files/09_0175.mp3 b/files/09_0175.mp3 deleted file mode 100644 index c885eb14e..000000000 Binary files a/files/09_0175.mp3 and /dev/null differ diff --git a/files/09_0175_example.mp3 b/files/09_0175_example.mp3 deleted file mode 100644 index f2ee52adf..000000000 Binary files a/files/09_0175_example.mp3 and /dev/null differ diff --git a/files/09_0175_meaning.mp3 b/files/09_0175_meaning.mp3 deleted file mode 100644 index 024611908..000000000 Binary files a/files/09_0175_meaning.mp3 and /dev/null differ diff --git a/files/09_0176.jpg b/files/09_0176.jpg deleted file mode 100644 index e5bce4070..000000000 Binary files a/files/09_0176.jpg and /dev/null differ diff --git a/files/09_0176.mp3 b/files/09_0176.mp3 deleted file mode 100644 index 0923dee35..000000000 Binary files a/files/09_0176.mp3 and /dev/null differ diff --git a/files/09_0176_example.mp3 b/files/09_0176_example.mp3 deleted file mode 100644 index c0d151929..000000000 Binary files a/files/09_0176_example.mp3 and /dev/null differ diff --git a/files/09_0176_meaning.mp3 b/files/09_0176_meaning.mp3 deleted file mode 100644 index 27fc6e1fe..000000000 Binary files a/files/09_0176_meaning.mp3 and /dev/null differ diff --git a/files/09_0177.jpg b/files/09_0177.jpg deleted file mode 100644 index 82de30251..000000000 Binary files a/files/09_0177.jpg and /dev/null differ diff --git a/files/09_0177.mp3 b/files/09_0177.mp3 deleted file mode 100644 index ce26a4b80..000000000 Binary files a/files/09_0177.mp3 and /dev/null differ diff --git a/files/09_0177_example.mp3 b/files/09_0177_example.mp3 deleted file mode 100644 index 8d5f84d27..000000000 Binary files a/files/09_0177_example.mp3 and /dev/null differ diff --git a/files/09_0177_meaning.mp3 b/files/09_0177_meaning.mp3 deleted file mode 100644 index c767387e1..000000000 Binary files a/files/09_0177_meaning.mp3 and /dev/null differ diff --git a/files/09_0178.jpg b/files/09_0178.jpg deleted file mode 100644 index e04342d2f..000000000 Binary files a/files/09_0178.jpg and /dev/null differ diff --git a/files/09_0178.mp3 b/files/09_0178.mp3 deleted file mode 100644 index ca39d6b64..000000000 Binary files a/files/09_0178.mp3 and /dev/null differ diff --git a/files/09_0178_example.mp3 b/files/09_0178_example.mp3 deleted file mode 100644 index c0a2a8250..000000000 Binary files a/files/09_0178_example.mp3 and /dev/null differ diff --git a/files/09_0178_meaning.mp3 b/files/09_0178_meaning.mp3 deleted file mode 100644 index a3908ab69..000000000 Binary files a/files/09_0178_meaning.mp3 and /dev/null differ diff --git a/files/09_0179.jpg b/files/09_0179.jpg deleted file mode 100644 index 2e5f9a15e..000000000 Binary files a/files/09_0179.jpg and /dev/null differ diff --git a/files/09_0179.mp3 b/files/09_0179.mp3 deleted file mode 100644 index 37ef2f01a..000000000 Binary files a/files/09_0179.mp3 and /dev/null differ diff --git a/files/09_0179_example.mp3 b/files/09_0179_example.mp3 deleted file mode 100644 index 21336b225..000000000 Binary files a/files/09_0179_example.mp3 and /dev/null differ diff --git a/files/09_0179_meaning.mp3 b/files/09_0179_meaning.mp3 deleted file mode 100644 index 7635e9e57..000000000 Binary files a/files/09_0179_meaning.mp3 and /dev/null differ diff --git a/files/09_0180.jpg b/files/09_0180.jpg deleted file mode 100644 index 0cf3d9a36..000000000 Binary files a/files/09_0180.jpg and /dev/null differ diff --git a/files/09_0180.mp3 b/files/09_0180.mp3 deleted file mode 100644 index 68315f626..000000000 Binary files a/files/09_0180.mp3 and /dev/null differ diff --git a/files/09_0180_example.mp3 b/files/09_0180_example.mp3 deleted file mode 100644 index 66dffd1dc..000000000 Binary files a/files/09_0180_example.mp3 and /dev/null differ diff --git a/files/09_0180_meaning.mp3 b/files/09_0180_meaning.mp3 deleted file mode 100644 index a37d9c987..000000000 Binary files a/files/09_0180_meaning.mp3 and /dev/null differ diff --git a/files/09_0761.jpg b/files/09_0761.jpg deleted file mode 100644 index 9035d3878..000000000 Binary files a/files/09_0761.jpg and /dev/null differ diff --git a/files/09_0761.mp3 b/files/09_0761.mp3 deleted file mode 100644 index 16c603c48..000000000 Binary files a/files/09_0761.mp3 and /dev/null differ diff --git a/files/09_0761_example.mp3 b/files/09_0761_example.mp3 deleted file mode 100644 index 8cea6d126..000000000 Binary files a/files/09_0761_example.mp3 and /dev/null differ diff --git a/files/09_0761_meaning.mp3 b/files/09_0761_meaning.mp3 deleted file mode 100644 index 43056acfa..000000000 Binary files a/files/09_0761_meaning.mp3 and /dev/null differ diff --git a/files/09_0762.jpg b/files/09_0762.jpg deleted file mode 100644 index a8e76b235..000000000 Binary files a/files/09_0762.jpg and /dev/null differ diff --git a/files/09_0762.mp3 b/files/09_0762.mp3 deleted file mode 100644 index 0a82b7274..000000000 Binary files a/files/09_0762.mp3 and /dev/null differ diff --git a/files/09_0762_example.mp3 b/files/09_0762_example.mp3 deleted file mode 100644 index 77cbdfe71..000000000 Binary files a/files/09_0762_example.mp3 and /dev/null differ diff --git a/files/09_0762_meaning.mp3 b/files/09_0762_meaning.mp3 deleted file mode 100644 index 6307f304e..000000000 Binary files a/files/09_0762_meaning.mp3 and /dev/null differ diff --git a/files/09_0763.jpg b/files/09_0763.jpg deleted file mode 100644 index 692a65f45..000000000 Binary files a/files/09_0763.jpg and /dev/null differ diff --git a/files/09_0763.mp3 b/files/09_0763.mp3 deleted file mode 100644 index 9fea8d2bd..000000000 Binary files a/files/09_0763.mp3 and /dev/null differ diff --git a/files/09_0763_example.mp3 b/files/09_0763_example.mp3 deleted file mode 100644 index e1ad321b9..000000000 Binary files a/files/09_0763_example.mp3 and /dev/null differ diff --git a/files/09_0763_meaning.mp3 b/files/09_0763_meaning.mp3 deleted file mode 100644 index 476f7d63c..000000000 Binary files a/files/09_0763_meaning.mp3 and /dev/null differ diff --git a/files/09_0764.jpg b/files/09_0764.jpg deleted file mode 100644 index 4511e1351..000000000 Binary files a/files/09_0764.jpg and /dev/null differ diff --git a/files/09_0764.mp3 b/files/09_0764.mp3 deleted file mode 100644 index 8a0ee4da6..000000000 Binary files a/files/09_0764.mp3 and /dev/null differ diff --git a/files/09_0764_example.mp3 b/files/09_0764_example.mp3 deleted file mode 100644 index c2ff40df0..000000000 Binary files a/files/09_0764_example.mp3 and /dev/null differ diff --git a/files/09_0764_meaning.mp3 b/files/09_0764_meaning.mp3 deleted file mode 100644 index 4453f472a..000000000 Binary files a/files/09_0764_meaning.mp3 and /dev/null differ diff --git a/files/09_0765.jpg b/files/09_0765.jpg deleted file mode 100644 index d74a7e147..000000000 Binary files a/files/09_0765.jpg and /dev/null differ diff --git a/files/09_0765.mp3 b/files/09_0765.mp3 deleted file mode 100644 index b447c4404..000000000 Binary files a/files/09_0765.mp3 and /dev/null differ diff --git a/files/09_0765_example.mp3 b/files/09_0765_example.mp3 deleted file mode 100644 index dac39f31e..000000000 Binary files a/files/09_0765_example.mp3 and /dev/null differ diff --git a/files/09_0765_meaning.mp3 b/files/09_0765_meaning.mp3 deleted file mode 100644 index 912321c70..000000000 Binary files a/files/09_0765_meaning.mp3 and /dev/null differ diff --git a/files/09_0766.jpg b/files/09_0766.jpg deleted file mode 100644 index 7e2ee469d..000000000 Binary files a/files/09_0766.jpg and /dev/null differ diff --git a/files/09_0766.mp3 b/files/09_0766.mp3 deleted file mode 100644 index a8f35b76a..000000000 Binary files a/files/09_0766.mp3 and /dev/null differ diff --git a/files/09_0766_example.mp3 b/files/09_0766_example.mp3 deleted file mode 100644 index 8a912df6e..000000000 Binary files a/files/09_0766_example.mp3 and /dev/null differ diff --git a/files/09_0766_meaning.mp3 b/files/09_0766_meaning.mp3 deleted file mode 100644 index c8448e0fc..000000000 Binary files a/files/09_0766_meaning.mp3 and /dev/null differ diff --git a/files/09_0767.jpg b/files/09_0767.jpg deleted file mode 100644 index 5099e2f42..000000000 Binary files a/files/09_0767.jpg and /dev/null differ diff --git a/files/09_0767.mp3 b/files/09_0767.mp3 deleted file mode 100644 index 2d34b5515..000000000 Binary files a/files/09_0767.mp3 and /dev/null differ diff --git a/files/09_0767_example.mp3 b/files/09_0767_example.mp3 deleted file mode 100644 index 79151fa2b..000000000 Binary files a/files/09_0767_example.mp3 and /dev/null differ diff --git a/files/09_0767_meaning.mp3 b/files/09_0767_meaning.mp3 deleted file mode 100644 index f49c1bc99..000000000 Binary files a/files/09_0767_meaning.mp3 and /dev/null differ diff --git a/files/09_0768.jpg b/files/09_0768.jpg deleted file mode 100644 index eeb2d352e..000000000 Binary files a/files/09_0768.jpg and /dev/null differ diff --git a/files/09_0768.mp3 b/files/09_0768.mp3 deleted file mode 100644 index fa2aa7479..000000000 Binary files a/files/09_0768.mp3 and /dev/null differ diff --git a/files/09_0768_example.mp3 b/files/09_0768_example.mp3 deleted file mode 100644 index 6ab256f4a..000000000 Binary files a/files/09_0768_example.mp3 and /dev/null differ diff --git a/files/09_0768_meaning.mp3 b/files/09_0768_meaning.mp3 deleted file mode 100644 index 698642f44..000000000 Binary files a/files/09_0768_meaning.mp3 and /dev/null differ diff --git a/files/09_0769.jpg b/files/09_0769.jpg deleted file mode 100644 index 14d055f7f..000000000 Binary files a/files/09_0769.jpg and /dev/null differ diff --git a/files/09_0769.mp3 b/files/09_0769.mp3 deleted file mode 100644 index a5c2f9603..000000000 Binary files a/files/09_0769.mp3 and /dev/null differ diff --git a/files/09_0769_example.mp3 b/files/09_0769_example.mp3 deleted file mode 100644 index 7978ef8b1..000000000 Binary files a/files/09_0769_example.mp3 and /dev/null differ diff --git a/files/09_0769_meaning.mp3 b/files/09_0769_meaning.mp3 deleted file mode 100644 index 3f22e035f..000000000 Binary files a/files/09_0769_meaning.mp3 and /dev/null differ diff --git a/files/09_0770.jpg b/files/09_0770.jpg deleted file mode 100644 index 3dcda8b89..000000000 Binary files a/files/09_0770.jpg and /dev/null differ diff --git a/files/09_0770.mp3 b/files/09_0770.mp3 deleted file mode 100644 index ccae68067..000000000 Binary files a/files/09_0770.mp3 and /dev/null differ diff --git a/files/09_0770_example.mp3 b/files/09_0770_example.mp3 deleted file mode 100644 index a45c5bd79..000000000 Binary files a/files/09_0770_example.mp3 and /dev/null differ diff --git a/files/09_0770_meaning.mp3 b/files/09_0770_meaning.mp3 deleted file mode 100644 index 63aa4e303..000000000 Binary files a/files/09_0770_meaning.mp3 and /dev/null differ diff --git a/files/09_0771.jpg b/files/09_0771.jpg deleted file mode 100644 index 542d25475..000000000 Binary files a/files/09_0771.jpg and /dev/null differ diff --git a/files/09_0771.mp3 b/files/09_0771.mp3 deleted file mode 100644 index da319a4c5..000000000 Binary files a/files/09_0771.mp3 and /dev/null differ diff --git a/files/09_0771_example.mp3 b/files/09_0771_example.mp3 deleted file mode 100644 index f4d3d4e27..000000000 Binary files a/files/09_0771_example.mp3 and /dev/null differ diff --git a/files/09_0771_meaning.mp3 b/files/09_0771_meaning.mp3 deleted file mode 100644 index 3aeaf533c..000000000 Binary files a/files/09_0771_meaning.mp3 and /dev/null differ diff --git a/files/09_0772.jpg b/files/09_0772.jpg deleted file mode 100644 index 061cebdad..000000000 Binary files a/files/09_0772.jpg and /dev/null differ diff --git a/files/09_0772.mp3 b/files/09_0772.mp3 deleted file mode 100644 index a21c6b4a3..000000000 Binary files a/files/09_0772.mp3 and /dev/null differ diff --git a/files/09_0772_example.mp3 b/files/09_0772_example.mp3 deleted file mode 100644 index e5030e32e..000000000 Binary files a/files/09_0772_example.mp3 and /dev/null differ diff --git a/files/09_0772_meaning.mp3 b/files/09_0772_meaning.mp3 deleted file mode 100644 index 2ca87e014..000000000 Binary files a/files/09_0772_meaning.mp3 and /dev/null differ diff --git a/files/09_0773.jpg b/files/09_0773.jpg deleted file mode 100644 index 7fbeb3b5f..000000000 Binary files a/files/09_0773.jpg and /dev/null differ diff --git a/files/09_0773.mp3 b/files/09_0773.mp3 deleted file mode 100644 index ab7ae95a6..000000000 Binary files a/files/09_0773.mp3 and /dev/null differ diff --git a/files/09_0773_example.mp3 b/files/09_0773_example.mp3 deleted file mode 100644 index 901955d81..000000000 Binary files a/files/09_0773_example.mp3 and /dev/null differ diff --git a/files/09_0773_meaning.mp3 b/files/09_0773_meaning.mp3 deleted file mode 100644 index 840386896..000000000 Binary files a/files/09_0773_meaning.mp3 and /dev/null differ diff --git a/files/09_0774.jpg b/files/09_0774.jpg deleted file mode 100644 index 0cc4be0f8..000000000 Binary files a/files/09_0774.jpg and /dev/null differ diff --git a/files/09_0774.mp3 b/files/09_0774.mp3 deleted file mode 100644 index 9e99fb9b0..000000000 Binary files a/files/09_0774.mp3 and /dev/null differ diff --git a/files/09_0774_example.mp3 b/files/09_0774_example.mp3 deleted file mode 100644 index 1486db5b4..000000000 Binary files a/files/09_0774_example.mp3 and /dev/null differ diff --git a/files/09_0774_meaning.mp3 b/files/09_0774_meaning.mp3 deleted file mode 100644 index 087323b23..000000000 Binary files a/files/09_0774_meaning.mp3 and /dev/null differ diff --git a/files/09_0775.jpg b/files/09_0775.jpg deleted file mode 100644 index d7dc831f5..000000000 Binary files a/files/09_0775.jpg and /dev/null differ diff --git a/files/09_0775.mp3 b/files/09_0775.mp3 deleted file mode 100644 index d0f1490b4..000000000 Binary files a/files/09_0775.mp3 and /dev/null differ diff --git a/files/09_0775_example.mp3 b/files/09_0775_example.mp3 deleted file mode 100644 index 3be2989b7..000000000 Binary files a/files/09_0775_example.mp3 and /dev/null differ diff --git a/files/09_0775_meaning.mp3 b/files/09_0775_meaning.mp3 deleted file mode 100644 index 447a7f0a0..000000000 Binary files a/files/09_0775_meaning.mp3 and /dev/null differ diff --git a/files/09_0776.jpg b/files/09_0776.jpg deleted file mode 100644 index 05f1106ca..000000000 Binary files a/files/09_0776.jpg and /dev/null differ diff --git a/files/09_0776.mp3 b/files/09_0776.mp3 deleted file mode 100644 index a8b2cc6e3..000000000 Binary files a/files/09_0776.mp3 and /dev/null differ diff --git a/files/09_0776_example.mp3 b/files/09_0776_example.mp3 deleted file mode 100644 index 8288ef4a4..000000000 Binary files a/files/09_0776_example.mp3 and /dev/null differ diff --git a/files/09_0776_meaning.mp3 b/files/09_0776_meaning.mp3 deleted file mode 100644 index 979984179..000000000 Binary files a/files/09_0776_meaning.mp3 and /dev/null differ diff --git a/files/09_0777.jpg b/files/09_0777.jpg deleted file mode 100644 index 7cb330723..000000000 Binary files a/files/09_0777.jpg and /dev/null differ diff --git a/files/09_0777.mp3 b/files/09_0777.mp3 deleted file mode 100644 index 0fbb23f17..000000000 Binary files a/files/09_0777.mp3 and /dev/null differ diff --git a/files/09_0777_example.mp3 b/files/09_0777_example.mp3 deleted file mode 100644 index 3fb7ebbe4..000000000 Binary files a/files/09_0777_example.mp3 and /dev/null differ diff --git a/files/09_0777_meaning.mp3 b/files/09_0777_meaning.mp3 deleted file mode 100644 index 3f3ab632b..000000000 Binary files a/files/09_0777_meaning.mp3 and /dev/null differ diff --git a/files/09_0778.jpg b/files/09_0778.jpg deleted file mode 100644 index 2d0e43958..000000000 Binary files a/files/09_0778.jpg and /dev/null differ diff --git a/files/09_0778.mp3 b/files/09_0778.mp3 deleted file mode 100644 index 7704ec27c..000000000 Binary files a/files/09_0778.mp3 and /dev/null differ diff --git a/files/09_0778_example.mp3 b/files/09_0778_example.mp3 deleted file mode 100644 index 8d2190fdc..000000000 Binary files a/files/09_0778_example.mp3 and /dev/null differ diff --git a/files/09_0778_meaning.mp3 b/files/09_0778_meaning.mp3 deleted file mode 100644 index 08a6f0e00..000000000 Binary files a/files/09_0778_meaning.mp3 and /dev/null differ diff --git a/files/09_0779.jpg b/files/09_0779.jpg deleted file mode 100644 index b142371dd..000000000 Binary files a/files/09_0779.jpg and /dev/null differ diff --git a/files/09_0779.mp3 b/files/09_0779.mp3 deleted file mode 100644 index cff0bd5a6..000000000 Binary files a/files/09_0779.mp3 and /dev/null differ diff --git a/files/09_0779_example.mp3 b/files/09_0779_example.mp3 deleted file mode 100644 index 52f398b3b..000000000 Binary files a/files/09_0779_example.mp3 and /dev/null differ diff --git a/files/09_0779_meaning.mp3 b/files/09_0779_meaning.mp3 deleted file mode 100644 index 8e45d8847..000000000 Binary files a/files/09_0779_meaning.mp3 and /dev/null differ diff --git a/files/09_0780.jpg b/files/09_0780.jpg deleted file mode 100644 index 7ee9ebe52..000000000 Binary files a/files/09_0780.jpg and /dev/null differ diff --git a/files/09_0780.mp3 b/files/09_0780.mp3 deleted file mode 100644 index a192ac7e3..000000000 Binary files a/files/09_0780.mp3 and /dev/null differ diff --git a/files/09_0780_example.mp3 b/files/09_0780_example.mp3 deleted file mode 100644 index 71a7b14b4..000000000 Binary files a/files/09_0780_example.mp3 and /dev/null differ diff --git a/files/09_0780_meaning.mp3 b/files/09_0780_meaning.mp3 deleted file mode 100644 index 0e6902006..000000000 Binary files a/files/09_0780_meaning.mp3 and /dev/null differ diff --git a/files/09_1361.jpg b/files/09_1361.jpg deleted file mode 100644 index a35b63d2e..000000000 Binary files a/files/09_1361.jpg and /dev/null differ diff --git a/files/09_1361.mp3 b/files/09_1361.mp3 deleted file mode 100644 index 40665316f..000000000 Binary files a/files/09_1361.mp3 and /dev/null differ diff --git a/files/09_1361_example.mp3 b/files/09_1361_example.mp3 deleted file mode 100644 index 5a7767446..000000000 Binary files a/files/09_1361_example.mp3 and /dev/null differ diff --git a/files/09_1361_meaning.mp3 b/files/09_1361_meaning.mp3 deleted file mode 100644 index f43c0c1ed..000000000 Binary files a/files/09_1361_meaning.mp3 and /dev/null differ diff --git a/files/09_1362.jpg b/files/09_1362.jpg deleted file mode 100644 index 28fb64706..000000000 Binary files a/files/09_1362.jpg and /dev/null differ diff --git a/files/09_1362.mp3 b/files/09_1362.mp3 deleted file mode 100644 index f50ba3f56..000000000 Binary files a/files/09_1362.mp3 and /dev/null differ diff --git a/files/09_1362_example.mp3 b/files/09_1362_example.mp3 deleted file mode 100644 index 041880cf4..000000000 Binary files a/files/09_1362_example.mp3 and /dev/null differ diff --git a/files/09_1362_meaning.mp3 b/files/09_1362_meaning.mp3 deleted file mode 100644 index 96e0dad17..000000000 Binary files a/files/09_1362_meaning.mp3 and /dev/null differ diff --git a/files/09_1363.jpg b/files/09_1363.jpg deleted file mode 100644 index a2f611a8e..000000000 Binary files a/files/09_1363.jpg and /dev/null differ diff --git a/files/09_1363.mp3 b/files/09_1363.mp3 deleted file mode 100644 index 68d52c431..000000000 Binary files a/files/09_1363.mp3 and /dev/null differ diff --git a/files/09_1363_example.mp3 b/files/09_1363_example.mp3 deleted file mode 100644 index 1a3272090..000000000 Binary files a/files/09_1363_example.mp3 and /dev/null differ diff --git a/files/09_1363_meaning.mp3 b/files/09_1363_meaning.mp3 deleted file mode 100644 index ac81a3f15..000000000 Binary files a/files/09_1363_meaning.mp3 and /dev/null differ diff --git a/files/09_1364.jpg b/files/09_1364.jpg deleted file mode 100644 index f16845694..000000000 Binary files a/files/09_1364.jpg and /dev/null differ diff --git a/files/09_1364.mp3 b/files/09_1364.mp3 deleted file mode 100644 index 7a125fa6c..000000000 Binary files a/files/09_1364.mp3 and /dev/null differ diff --git a/files/09_1364_example.mp3 b/files/09_1364_example.mp3 deleted file mode 100644 index 217ab8270..000000000 Binary files a/files/09_1364_example.mp3 and /dev/null differ diff --git a/files/09_1364_meaning.mp3 b/files/09_1364_meaning.mp3 deleted file mode 100644 index ce21b03e5..000000000 Binary files a/files/09_1364_meaning.mp3 and /dev/null differ diff --git a/files/09_1365.jpg b/files/09_1365.jpg deleted file mode 100644 index 2d5b7583a..000000000 Binary files a/files/09_1365.jpg and /dev/null differ diff --git a/files/09_1365.mp3 b/files/09_1365.mp3 deleted file mode 100644 index 39251d267..000000000 Binary files a/files/09_1365.mp3 and /dev/null differ diff --git a/files/09_1365_example.mp3 b/files/09_1365_example.mp3 deleted file mode 100644 index 773410a30..000000000 Binary files a/files/09_1365_example.mp3 and /dev/null differ diff --git a/files/09_1365_meaning.mp3 b/files/09_1365_meaning.mp3 deleted file mode 100644 index a3465f665..000000000 Binary files a/files/09_1365_meaning.mp3 and /dev/null differ diff --git a/files/09_1366.jpg b/files/09_1366.jpg deleted file mode 100644 index 7ecaf6e77..000000000 Binary files a/files/09_1366.jpg and /dev/null differ diff --git a/files/09_1366.mp3 b/files/09_1366.mp3 deleted file mode 100644 index b078cdb50..000000000 Binary files a/files/09_1366.mp3 and /dev/null differ diff --git a/files/09_1366_example.mp3 b/files/09_1366_example.mp3 deleted file mode 100644 index a9b4d1ddc..000000000 Binary files a/files/09_1366_example.mp3 and /dev/null differ diff --git a/files/09_1366_meaning.mp3 b/files/09_1366_meaning.mp3 deleted file mode 100644 index ff5bf0d17..000000000 Binary files a/files/09_1366_meaning.mp3 and /dev/null differ diff --git a/files/09_1367.jpg b/files/09_1367.jpg deleted file mode 100644 index de1fd6b2b..000000000 Binary files a/files/09_1367.jpg and /dev/null differ diff --git a/files/09_1367.mp3 b/files/09_1367.mp3 deleted file mode 100644 index 3879cbbf8..000000000 Binary files a/files/09_1367.mp3 and /dev/null differ diff --git a/files/09_1367_example.mp3 b/files/09_1367_example.mp3 deleted file mode 100644 index 57fdd50f8..000000000 Binary files a/files/09_1367_example.mp3 and /dev/null differ diff --git a/files/09_1367_meaning.mp3 b/files/09_1367_meaning.mp3 deleted file mode 100644 index 9b5272b8c..000000000 Binary files a/files/09_1367_meaning.mp3 and /dev/null differ diff --git a/files/09_1368.jpg b/files/09_1368.jpg deleted file mode 100644 index 778dfbbe1..000000000 Binary files a/files/09_1368.jpg and /dev/null differ diff --git a/files/09_1368.mp3 b/files/09_1368.mp3 deleted file mode 100644 index 015767442..000000000 Binary files a/files/09_1368.mp3 and /dev/null differ diff --git a/files/09_1368_example.mp3 b/files/09_1368_example.mp3 deleted file mode 100644 index af49c46c0..000000000 Binary files a/files/09_1368_example.mp3 and /dev/null differ diff --git a/files/09_1368_meaning.mp3 b/files/09_1368_meaning.mp3 deleted file mode 100644 index 601957223..000000000 Binary files a/files/09_1368_meaning.mp3 and /dev/null differ diff --git a/files/09_1369.jpg b/files/09_1369.jpg deleted file mode 100644 index 6760e0ec5..000000000 Binary files a/files/09_1369.jpg and /dev/null differ diff --git a/files/09_1369.mp3 b/files/09_1369.mp3 deleted file mode 100644 index aa6389fa8..000000000 Binary files a/files/09_1369.mp3 and /dev/null differ diff --git a/files/09_1369_example.mp3 b/files/09_1369_example.mp3 deleted file mode 100644 index 4532b97d5..000000000 Binary files a/files/09_1369_example.mp3 and /dev/null differ diff --git a/files/09_1369_meaning.mp3 b/files/09_1369_meaning.mp3 deleted file mode 100644 index 43d1b8deb..000000000 Binary files a/files/09_1369_meaning.mp3 and /dev/null differ diff --git a/files/09_1370.jpg b/files/09_1370.jpg deleted file mode 100644 index e1379163d..000000000 Binary files a/files/09_1370.jpg and /dev/null differ diff --git a/files/09_1370.mp3 b/files/09_1370.mp3 deleted file mode 100644 index 6cd37909f..000000000 Binary files a/files/09_1370.mp3 and /dev/null differ diff --git a/files/09_1370_example.mp3 b/files/09_1370_example.mp3 deleted file mode 100644 index 940d23624..000000000 Binary files a/files/09_1370_example.mp3 and /dev/null differ diff --git a/files/09_1370_meaning.mp3 b/files/09_1370_meaning.mp3 deleted file mode 100644 index 8e087c398..000000000 Binary files a/files/09_1370_meaning.mp3 and /dev/null differ diff --git a/files/09_1371.jpg b/files/09_1371.jpg deleted file mode 100644 index 80a5eb7df..000000000 Binary files a/files/09_1371.jpg and /dev/null differ diff --git a/files/09_1371.mp3 b/files/09_1371.mp3 deleted file mode 100644 index f973b752e..000000000 Binary files a/files/09_1371.mp3 and /dev/null differ diff --git a/files/09_1371_example.mp3 b/files/09_1371_example.mp3 deleted file mode 100644 index 3b8dc764e..000000000 Binary files a/files/09_1371_example.mp3 and /dev/null differ diff --git a/files/09_1371_meaning.mp3 b/files/09_1371_meaning.mp3 deleted file mode 100644 index 09b395ada..000000000 Binary files a/files/09_1371_meaning.mp3 and /dev/null differ diff --git a/files/09_1372.jpg b/files/09_1372.jpg deleted file mode 100644 index 9520324b7..000000000 Binary files a/files/09_1372.jpg and /dev/null differ diff --git a/files/09_1372.mp3 b/files/09_1372.mp3 deleted file mode 100644 index 48d7ac813..000000000 Binary files a/files/09_1372.mp3 and /dev/null differ diff --git a/files/09_1372_example.mp3 b/files/09_1372_example.mp3 deleted file mode 100644 index d4984dcfd..000000000 Binary files a/files/09_1372_example.mp3 and /dev/null differ diff --git a/files/09_1372_meaning.mp3 b/files/09_1372_meaning.mp3 deleted file mode 100644 index 826810b8c..000000000 Binary files a/files/09_1372_meaning.mp3 and /dev/null differ diff --git a/files/09_1373.jpg b/files/09_1373.jpg deleted file mode 100644 index 1c97de782..000000000 Binary files a/files/09_1373.jpg and /dev/null differ diff --git a/files/09_1373.mp3 b/files/09_1373.mp3 deleted file mode 100644 index b1323331f..000000000 Binary files a/files/09_1373.mp3 and /dev/null differ diff --git a/files/09_1373_example.mp3 b/files/09_1373_example.mp3 deleted file mode 100644 index 327c4a29b..000000000 Binary files a/files/09_1373_example.mp3 and /dev/null differ diff --git a/files/09_1373_meaning.mp3 b/files/09_1373_meaning.mp3 deleted file mode 100644 index 38ead1f43..000000000 Binary files a/files/09_1373_meaning.mp3 and /dev/null differ diff --git a/files/09_1374.jpg b/files/09_1374.jpg deleted file mode 100644 index e7fb25195..000000000 Binary files a/files/09_1374.jpg and /dev/null differ diff --git a/files/09_1374.mp3 b/files/09_1374.mp3 deleted file mode 100644 index 8528f770e..000000000 Binary files a/files/09_1374.mp3 and /dev/null differ diff --git a/files/09_1374_example.mp3 b/files/09_1374_example.mp3 deleted file mode 100644 index 929e2af1f..000000000 Binary files a/files/09_1374_example.mp3 and /dev/null differ diff --git a/files/09_1374_meaning.mp3 b/files/09_1374_meaning.mp3 deleted file mode 100644 index 2842d126d..000000000 Binary files a/files/09_1374_meaning.mp3 and /dev/null differ diff --git a/files/09_1375.jpg b/files/09_1375.jpg deleted file mode 100644 index c33859a68..000000000 Binary files a/files/09_1375.jpg and /dev/null differ diff --git a/files/09_1375.mp3 b/files/09_1375.mp3 deleted file mode 100644 index 1614a59d4..000000000 Binary files a/files/09_1375.mp3 and /dev/null differ diff --git a/files/09_1375_example.mp3 b/files/09_1375_example.mp3 deleted file mode 100644 index f1755ae24..000000000 Binary files a/files/09_1375_example.mp3 and /dev/null differ diff --git a/files/09_1375_meaning.mp3 b/files/09_1375_meaning.mp3 deleted file mode 100644 index 9101ef3a5..000000000 Binary files a/files/09_1375_meaning.mp3 and /dev/null differ diff --git a/files/09_1376.jpg b/files/09_1376.jpg deleted file mode 100644 index eed8cb2c3..000000000 Binary files a/files/09_1376.jpg and /dev/null differ diff --git a/files/09_1376.mp3 b/files/09_1376.mp3 deleted file mode 100644 index 0e166e87d..000000000 Binary files a/files/09_1376.mp3 and /dev/null differ diff --git a/files/09_1376_example.mp3 b/files/09_1376_example.mp3 deleted file mode 100644 index 5b9084d5e..000000000 Binary files a/files/09_1376_example.mp3 and /dev/null differ diff --git a/files/09_1376_meaning.mp3 b/files/09_1376_meaning.mp3 deleted file mode 100644 index ae91c311f..000000000 Binary files a/files/09_1376_meaning.mp3 and /dev/null differ diff --git a/files/09_1377.jpg b/files/09_1377.jpg deleted file mode 100644 index 27970906c..000000000 Binary files a/files/09_1377.jpg and /dev/null differ diff --git a/files/09_1377.mp3 b/files/09_1377.mp3 deleted file mode 100644 index 56618ae7b..000000000 Binary files a/files/09_1377.mp3 and /dev/null differ diff --git a/files/09_1377_example.mp3 b/files/09_1377_example.mp3 deleted file mode 100644 index 0d2419584..000000000 Binary files a/files/09_1377_example.mp3 and /dev/null differ diff --git a/files/09_1377_meaning.mp3 b/files/09_1377_meaning.mp3 deleted file mode 100644 index c49754296..000000000 Binary files a/files/09_1377_meaning.mp3 and /dev/null differ diff --git a/files/09_1378.jpg b/files/09_1378.jpg deleted file mode 100644 index 052f49362..000000000 Binary files a/files/09_1378.jpg and /dev/null differ diff --git a/files/09_1378.mp3 b/files/09_1378.mp3 deleted file mode 100644 index ffd2ae1c4..000000000 Binary files a/files/09_1378.mp3 and /dev/null differ diff --git a/files/09_1378_example.mp3 b/files/09_1378_example.mp3 deleted file mode 100644 index 5f8167249..000000000 Binary files a/files/09_1378_example.mp3 and /dev/null differ diff --git a/files/09_1378_meaning.mp3 b/files/09_1378_meaning.mp3 deleted file mode 100644 index dee80513f..000000000 Binary files a/files/09_1378_meaning.mp3 and /dev/null differ diff --git a/files/09_1379.jpg b/files/09_1379.jpg deleted file mode 100644 index 7ba493d6f..000000000 Binary files a/files/09_1379.jpg and /dev/null differ diff --git a/files/09_1379.mp3 b/files/09_1379.mp3 deleted file mode 100644 index 51f9c8ffe..000000000 Binary files a/files/09_1379.mp3 and /dev/null differ diff --git a/files/09_1379_example.mp3 b/files/09_1379_example.mp3 deleted file mode 100644 index 750ad8232..000000000 Binary files a/files/09_1379_example.mp3 and /dev/null differ diff --git a/files/09_1379_meaning.mp3 b/files/09_1379_meaning.mp3 deleted file mode 100644 index bb29d4a80..000000000 Binary files a/files/09_1379_meaning.mp3 and /dev/null differ diff --git a/files/09_1380.jpg b/files/09_1380.jpg deleted file mode 100644 index 4fcbabcc1..000000000 Binary files a/files/09_1380.jpg and /dev/null differ diff --git a/files/09_1380.mp3 b/files/09_1380.mp3 deleted file mode 100644 index fdc33511b..000000000 Binary files a/files/09_1380.mp3 and /dev/null differ diff --git a/files/09_1380_example.mp3 b/files/09_1380_example.mp3 deleted file mode 100644 index cf7c56644..000000000 Binary files a/files/09_1380_example.mp3 and /dev/null differ diff --git a/files/09_1380_meaning.mp3 b/files/09_1380_meaning.mp3 deleted file mode 100644 index 0e804ce71..000000000 Binary files a/files/09_1380_meaning.mp3 and /dev/null differ diff --git a/files/09_1961.jpg b/files/09_1961.jpg deleted file mode 100644 index 573d9c70b..000000000 Binary files a/files/09_1961.jpg and /dev/null differ diff --git a/files/09_1961.mp3 b/files/09_1961.mp3 deleted file mode 100644 index d21c4a3b3..000000000 Binary files a/files/09_1961.mp3 and /dev/null differ diff --git a/files/09_1961_example.mp3 b/files/09_1961_example.mp3 deleted file mode 100644 index 03da9474c..000000000 Binary files a/files/09_1961_example.mp3 and /dev/null differ diff --git a/files/09_1961_meaning.mp3 b/files/09_1961_meaning.mp3 deleted file mode 100644 index 2166ad01c..000000000 Binary files a/files/09_1961_meaning.mp3 and /dev/null differ diff --git a/files/09_1962.jpg b/files/09_1962.jpg deleted file mode 100644 index cbdc1ac05..000000000 Binary files a/files/09_1962.jpg and /dev/null differ diff --git a/files/09_1962.mp3 b/files/09_1962.mp3 deleted file mode 100644 index 95c3fdbeb..000000000 Binary files a/files/09_1962.mp3 and /dev/null differ diff --git a/files/09_1962_example.mp3 b/files/09_1962_example.mp3 deleted file mode 100644 index a969fff89..000000000 Binary files a/files/09_1962_example.mp3 and /dev/null differ diff --git a/files/09_1962_meaning.mp3 b/files/09_1962_meaning.mp3 deleted file mode 100644 index 8020fcc0c..000000000 Binary files a/files/09_1962_meaning.mp3 and /dev/null differ diff --git a/files/09_1963.jpg b/files/09_1963.jpg deleted file mode 100644 index ce87be686..000000000 Binary files a/files/09_1963.jpg and /dev/null differ diff --git a/files/09_1963.mp3 b/files/09_1963.mp3 deleted file mode 100644 index 318d668a2..000000000 Binary files a/files/09_1963.mp3 and /dev/null differ diff --git a/files/09_1963_example.mp3 b/files/09_1963_example.mp3 deleted file mode 100644 index 9c15b048b..000000000 Binary files a/files/09_1963_example.mp3 and /dev/null differ diff --git a/files/09_1963_meaning.mp3 b/files/09_1963_meaning.mp3 deleted file mode 100644 index 1fa3c3b1e..000000000 Binary files a/files/09_1963_meaning.mp3 and /dev/null differ diff --git a/files/09_1964.jpg b/files/09_1964.jpg deleted file mode 100644 index bdc77821e..000000000 Binary files a/files/09_1964.jpg and /dev/null differ diff --git a/files/09_1964.mp3 b/files/09_1964.mp3 deleted file mode 100644 index d38fd39b0..000000000 Binary files a/files/09_1964.mp3 and /dev/null differ diff --git a/files/09_1964_example.mp3 b/files/09_1964_example.mp3 deleted file mode 100644 index d74dae5d0..000000000 Binary files a/files/09_1964_example.mp3 and /dev/null differ diff --git a/files/09_1964_meaning.mp3 b/files/09_1964_meaning.mp3 deleted file mode 100644 index b1483e30f..000000000 Binary files a/files/09_1964_meaning.mp3 and /dev/null differ diff --git a/files/09_1965.jpg b/files/09_1965.jpg deleted file mode 100644 index 53497116e..000000000 Binary files a/files/09_1965.jpg and /dev/null differ diff --git a/files/09_1965.mp3 b/files/09_1965.mp3 deleted file mode 100644 index 4bd8a4287..000000000 Binary files a/files/09_1965.mp3 and /dev/null differ diff --git a/files/09_1965_example.mp3 b/files/09_1965_example.mp3 deleted file mode 100644 index 5a6acd03b..000000000 Binary files a/files/09_1965_example.mp3 and /dev/null differ diff --git a/files/09_1965_meaning.mp3 b/files/09_1965_meaning.mp3 deleted file mode 100644 index 0d7fe0abe..000000000 Binary files a/files/09_1965_meaning.mp3 and /dev/null differ diff --git a/files/09_1966.jpg b/files/09_1966.jpg deleted file mode 100644 index 4a1068d86..000000000 Binary files a/files/09_1966.jpg and /dev/null differ diff --git a/files/09_1966.mp3 b/files/09_1966.mp3 deleted file mode 100644 index e21fcb368..000000000 Binary files a/files/09_1966.mp3 and /dev/null differ diff --git a/files/09_1966_example.mp3 b/files/09_1966_example.mp3 deleted file mode 100644 index 0a8e18075..000000000 Binary files a/files/09_1966_example.mp3 and /dev/null differ diff --git a/files/09_1966_meaning.mp3 b/files/09_1966_meaning.mp3 deleted file mode 100644 index fb4c292c6..000000000 Binary files a/files/09_1966_meaning.mp3 and /dev/null differ diff --git a/files/09_1967.jpg b/files/09_1967.jpg deleted file mode 100644 index 517d5f39e..000000000 Binary files a/files/09_1967.jpg and /dev/null differ diff --git a/files/09_1967.mp3 b/files/09_1967.mp3 deleted file mode 100644 index d4c2f1c05..000000000 Binary files a/files/09_1967.mp3 and /dev/null differ diff --git a/files/09_1967_example.mp3 b/files/09_1967_example.mp3 deleted file mode 100644 index 13ae6d392..000000000 Binary files a/files/09_1967_example.mp3 and /dev/null differ diff --git a/files/09_1967_meaning.mp3 b/files/09_1967_meaning.mp3 deleted file mode 100644 index 090527def..000000000 Binary files a/files/09_1967_meaning.mp3 and /dev/null differ diff --git a/files/09_1968.jpg b/files/09_1968.jpg deleted file mode 100644 index 4c4b861ca..000000000 Binary files a/files/09_1968.jpg and /dev/null differ diff --git a/files/09_1968.mp3 b/files/09_1968.mp3 deleted file mode 100644 index 8f5240b1e..000000000 Binary files a/files/09_1968.mp3 and /dev/null differ diff --git a/files/09_1968_example.mp3 b/files/09_1968_example.mp3 deleted file mode 100644 index c213acd3b..000000000 Binary files a/files/09_1968_example.mp3 and /dev/null differ diff --git a/files/09_1968_meaning.mp3 b/files/09_1968_meaning.mp3 deleted file mode 100644 index bcccb620a..000000000 Binary files a/files/09_1968_meaning.mp3 and /dev/null differ diff --git a/files/09_1969.jpg b/files/09_1969.jpg deleted file mode 100644 index 2538fa1d8..000000000 Binary files a/files/09_1969.jpg and /dev/null differ diff --git a/files/09_1969.mp3 b/files/09_1969.mp3 deleted file mode 100644 index d60624e78..000000000 Binary files a/files/09_1969.mp3 and /dev/null differ diff --git a/files/09_1969_example.mp3 b/files/09_1969_example.mp3 deleted file mode 100644 index 668703487..000000000 Binary files a/files/09_1969_example.mp3 and /dev/null differ diff --git a/files/09_1969_meaning.mp3 b/files/09_1969_meaning.mp3 deleted file mode 100644 index 87fd0255d..000000000 Binary files a/files/09_1969_meaning.mp3 and /dev/null differ diff --git a/files/09_1970.jpg b/files/09_1970.jpg deleted file mode 100644 index 4b779cd93..000000000 Binary files a/files/09_1970.jpg and /dev/null differ diff --git a/files/09_1970.mp3 b/files/09_1970.mp3 deleted file mode 100644 index 3f957f6db..000000000 Binary files a/files/09_1970.mp3 and /dev/null differ diff --git a/files/09_1970_example.mp3 b/files/09_1970_example.mp3 deleted file mode 100644 index 0c08fe9e6..000000000 Binary files a/files/09_1970_example.mp3 and /dev/null differ diff --git a/files/09_1970_meaning.mp3 b/files/09_1970_meaning.mp3 deleted file mode 100644 index 116e4036c..000000000 Binary files a/files/09_1970_meaning.mp3 and /dev/null differ diff --git a/files/09_1971.jpg b/files/09_1971.jpg deleted file mode 100644 index b918d55e7..000000000 Binary files a/files/09_1971.jpg and /dev/null differ diff --git a/files/09_1971.mp3 b/files/09_1971.mp3 deleted file mode 100644 index 655c053dc..000000000 Binary files a/files/09_1971.mp3 and /dev/null differ diff --git a/files/09_1971_example.mp3 b/files/09_1971_example.mp3 deleted file mode 100644 index 8cb56cb63..000000000 Binary files a/files/09_1971_example.mp3 and /dev/null differ diff --git a/files/09_1971_meaning.mp3 b/files/09_1971_meaning.mp3 deleted file mode 100644 index c3a6a8fab..000000000 Binary files a/files/09_1971_meaning.mp3 and /dev/null differ diff --git a/files/09_1972.jpg b/files/09_1972.jpg deleted file mode 100644 index 54b5d9e77..000000000 Binary files a/files/09_1972.jpg and /dev/null differ diff --git a/files/09_1972.mp3 b/files/09_1972.mp3 deleted file mode 100644 index fc11ac856..000000000 Binary files a/files/09_1972.mp3 and /dev/null differ diff --git a/files/09_1972_example.mp3 b/files/09_1972_example.mp3 deleted file mode 100644 index db92bf684..000000000 Binary files a/files/09_1972_example.mp3 and /dev/null differ diff --git a/files/09_1972_meaning.mp3 b/files/09_1972_meaning.mp3 deleted file mode 100644 index 82fbd90cf..000000000 Binary files a/files/09_1972_meaning.mp3 and /dev/null differ diff --git a/files/09_1973.jpg b/files/09_1973.jpg deleted file mode 100644 index 56a8e0254..000000000 Binary files a/files/09_1973.jpg and /dev/null differ diff --git a/files/09_1973.mp3 b/files/09_1973.mp3 deleted file mode 100644 index 48c329f91..000000000 Binary files a/files/09_1973.mp3 and /dev/null differ diff --git a/files/09_1973_example.mp3 b/files/09_1973_example.mp3 deleted file mode 100644 index a20b2b846..000000000 Binary files a/files/09_1973_example.mp3 and /dev/null differ diff --git a/files/09_1973_meaning.mp3 b/files/09_1973_meaning.mp3 deleted file mode 100644 index 3509804be..000000000 Binary files a/files/09_1973_meaning.mp3 and /dev/null differ diff --git a/files/09_1974.jpg b/files/09_1974.jpg deleted file mode 100644 index 8e85adf9d..000000000 Binary files a/files/09_1974.jpg and /dev/null differ diff --git a/files/09_1974.mp3 b/files/09_1974.mp3 deleted file mode 100644 index f401f1425..000000000 Binary files a/files/09_1974.mp3 and /dev/null differ diff --git a/files/09_1974_example.mp3 b/files/09_1974_example.mp3 deleted file mode 100644 index 036bd5cf2..000000000 Binary files a/files/09_1974_example.mp3 and /dev/null differ diff --git a/files/09_1974_meaning.mp3 b/files/09_1974_meaning.mp3 deleted file mode 100644 index 3a14d5e1c..000000000 Binary files a/files/09_1974_meaning.mp3 and /dev/null differ diff --git a/files/09_1975.jpg b/files/09_1975.jpg deleted file mode 100644 index 7d75af925..000000000 Binary files a/files/09_1975.jpg and /dev/null differ diff --git a/files/09_1975.mp3 b/files/09_1975.mp3 deleted file mode 100644 index bd40c0536..000000000 Binary files a/files/09_1975.mp3 and /dev/null differ diff --git a/files/09_1975_example.mp3 b/files/09_1975_example.mp3 deleted file mode 100644 index c9c681eb8..000000000 Binary files a/files/09_1975_example.mp3 and /dev/null differ diff --git a/files/09_1975_meaning.mp3 b/files/09_1975_meaning.mp3 deleted file mode 100644 index 6e4f365e6..000000000 Binary files a/files/09_1975_meaning.mp3 and /dev/null differ diff --git a/files/09_1976.jpg b/files/09_1976.jpg deleted file mode 100644 index c2f3362bc..000000000 Binary files a/files/09_1976.jpg and /dev/null differ diff --git a/files/09_1976.mp3 b/files/09_1976.mp3 deleted file mode 100644 index 5a4180a9b..000000000 Binary files a/files/09_1976.mp3 and /dev/null differ diff --git a/files/09_1976_example.mp3 b/files/09_1976_example.mp3 deleted file mode 100644 index 87a9148f9..000000000 Binary files a/files/09_1976_example.mp3 and /dev/null differ diff --git a/files/09_1976_meaning.mp3 b/files/09_1976_meaning.mp3 deleted file mode 100644 index 3acc06d8d..000000000 Binary files a/files/09_1976_meaning.mp3 and /dev/null differ diff --git a/files/09_1977.jpg b/files/09_1977.jpg deleted file mode 100644 index 897c7cfa0..000000000 Binary files a/files/09_1977.jpg and /dev/null differ diff --git a/files/09_1977.mp3 b/files/09_1977.mp3 deleted file mode 100644 index 63748ac35..000000000 Binary files a/files/09_1977.mp3 and /dev/null differ diff --git a/files/09_1977_example.mp3 b/files/09_1977_example.mp3 deleted file mode 100644 index 546af021e..000000000 Binary files a/files/09_1977_example.mp3 and /dev/null differ diff --git a/files/09_1977_meaning.mp3 b/files/09_1977_meaning.mp3 deleted file mode 100644 index e73c4a225..000000000 Binary files a/files/09_1977_meaning.mp3 and /dev/null differ diff --git a/files/09_1978.jpg b/files/09_1978.jpg deleted file mode 100644 index 1aa31dddc..000000000 Binary files a/files/09_1978.jpg and /dev/null differ diff --git a/files/09_1978.mp3 b/files/09_1978.mp3 deleted file mode 100644 index c5b56f7cc..000000000 Binary files a/files/09_1978.mp3 and /dev/null differ diff --git a/files/09_1978_example.mp3 b/files/09_1978_example.mp3 deleted file mode 100644 index f48a30b8a..000000000 Binary files a/files/09_1978_example.mp3 and /dev/null differ diff --git a/files/09_1978_meaning.mp3 b/files/09_1978_meaning.mp3 deleted file mode 100644 index db9bb7cb6..000000000 Binary files a/files/09_1978_meaning.mp3 and /dev/null differ diff --git a/files/09_1979.jpg b/files/09_1979.jpg deleted file mode 100644 index 705ebf522..000000000 Binary files a/files/09_1979.jpg and /dev/null differ diff --git a/files/09_1979.mp3 b/files/09_1979.mp3 deleted file mode 100644 index ac95e60c5..000000000 Binary files a/files/09_1979.mp3 and /dev/null differ diff --git a/files/09_1979_example.mp3 b/files/09_1979_example.mp3 deleted file mode 100644 index 8de1381b4..000000000 Binary files a/files/09_1979_example.mp3 and /dev/null differ diff --git a/files/09_1979_meaning.mp3 b/files/09_1979_meaning.mp3 deleted file mode 100644 index a7dffaacd..000000000 Binary files a/files/09_1979_meaning.mp3 and /dev/null differ diff --git a/files/09_1980.jpg b/files/09_1980.jpg deleted file mode 100644 index 59e465329..000000000 Binary files a/files/09_1980.jpg and /dev/null differ diff --git a/files/09_1980.mp3 b/files/09_1980.mp3 deleted file mode 100644 index 669d19f06..000000000 Binary files a/files/09_1980.mp3 and /dev/null differ diff --git a/files/09_1980_example.mp3 b/files/09_1980_example.mp3 deleted file mode 100644 index dd5a0a5c1..000000000 Binary files a/files/09_1980_example.mp3 and /dev/null differ diff --git a/files/09_1980_meaning.mp3 b/files/09_1980_meaning.mp3 deleted file mode 100644 index 4467cfb45..000000000 Binary files a/files/09_1980_meaning.mp3 and /dev/null differ diff --git a/files/09_2561.jpg b/files/09_2561.jpg deleted file mode 100644 index ce903b954..000000000 Binary files a/files/09_2561.jpg and /dev/null differ diff --git a/files/09_2561.mp3 b/files/09_2561.mp3 deleted file mode 100644 index 5f902ddf1..000000000 Binary files a/files/09_2561.mp3 and /dev/null differ diff --git a/files/09_2561_example.mp3 b/files/09_2561_example.mp3 deleted file mode 100644 index 727c3c568..000000000 Binary files a/files/09_2561_example.mp3 and /dev/null differ diff --git a/files/09_2561_meaning.mp3 b/files/09_2561_meaning.mp3 deleted file mode 100644 index f3996dc99..000000000 Binary files a/files/09_2561_meaning.mp3 and /dev/null differ diff --git a/files/09_2562.jpg b/files/09_2562.jpg deleted file mode 100644 index b6e61ac7e..000000000 Binary files a/files/09_2562.jpg and /dev/null differ diff --git a/files/09_2562.mp3 b/files/09_2562.mp3 deleted file mode 100644 index cf104c8c0..000000000 Binary files a/files/09_2562.mp3 and /dev/null differ diff --git a/files/09_2562_example.mp3 b/files/09_2562_example.mp3 deleted file mode 100644 index f45136791..000000000 Binary files a/files/09_2562_example.mp3 and /dev/null differ diff --git a/files/09_2562_meaning.mp3 b/files/09_2562_meaning.mp3 deleted file mode 100644 index 312a1f62e..000000000 Binary files a/files/09_2562_meaning.mp3 and /dev/null differ diff --git a/files/09_2563.jpg b/files/09_2563.jpg deleted file mode 100644 index be2b88910..000000000 Binary files a/files/09_2563.jpg and /dev/null differ diff --git a/files/09_2563.mp3 b/files/09_2563.mp3 deleted file mode 100644 index 858dbcb42..000000000 Binary files a/files/09_2563.mp3 and /dev/null differ diff --git a/files/09_2563_example.mp3 b/files/09_2563_example.mp3 deleted file mode 100644 index 5d2ed0ca0..000000000 Binary files a/files/09_2563_example.mp3 and /dev/null differ diff --git a/files/09_2563_meaning.mp3 b/files/09_2563_meaning.mp3 deleted file mode 100644 index 7dddcd70a..000000000 Binary files a/files/09_2563_meaning.mp3 and /dev/null differ diff --git a/files/09_2564.jpg b/files/09_2564.jpg deleted file mode 100644 index bb5e2715f..000000000 Binary files a/files/09_2564.jpg and /dev/null differ diff --git a/files/09_2564.mp3 b/files/09_2564.mp3 deleted file mode 100644 index 6573dfd61..000000000 Binary files a/files/09_2564.mp3 and /dev/null differ diff --git a/files/09_2564_example.mp3 b/files/09_2564_example.mp3 deleted file mode 100644 index e380d4d66..000000000 Binary files a/files/09_2564_example.mp3 and /dev/null differ diff --git a/files/09_2564_meaning.mp3 b/files/09_2564_meaning.mp3 deleted file mode 100644 index abd23dd2b..000000000 Binary files a/files/09_2564_meaning.mp3 and /dev/null differ diff --git a/files/09_2565.jpg b/files/09_2565.jpg deleted file mode 100644 index 2e9fe434a..000000000 Binary files a/files/09_2565.jpg and /dev/null differ diff --git a/files/09_2565.mp3 b/files/09_2565.mp3 deleted file mode 100644 index 54d7b1ad5..000000000 Binary files a/files/09_2565.mp3 and /dev/null differ diff --git a/files/09_2565_example.mp3 b/files/09_2565_example.mp3 deleted file mode 100644 index fe442a11b..000000000 Binary files a/files/09_2565_example.mp3 and /dev/null differ diff --git a/files/09_2565_meaning.mp3 b/files/09_2565_meaning.mp3 deleted file mode 100644 index 30f3bc69e..000000000 Binary files a/files/09_2565_meaning.mp3 and /dev/null differ diff --git a/files/09_2566.jpg b/files/09_2566.jpg deleted file mode 100644 index ff40bd4ff..000000000 Binary files a/files/09_2566.jpg and /dev/null differ diff --git a/files/09_2566.mp3 b/files/09_2566.mp3 deleted file mode 100644 index 438e74619..000000000 Binary files a/files/09_2566.mp3 and /dev/null differ diff --git a/files/09_2566_example.mp3 b/files/09_2566_example.mp3 deleted file mode 100644 index b625e210f..000000000 Binary files a/files/09_2566_example.mp3 and /dev/null differ diff --git a/files/09_2566_meaning.mp3 b/files/09_2566_meaning.mp3 deleted file mode 100644 index a7234791b..000000000 Binary files a/files/09_2566_meaning.mp3 and /dev/null differ diff --git a/files/09_2567.jpg b/files/09_2567.jpg deleted file mode 100644 index 6a518f365..000000000 Binary files a/files/09_2567.jpg and /dev/null differ diff --git a/files/09_2567.mp3 b/files/09_2567.mp3 deleted file mode 100644 index adf796302..000000000 Binary files a/files/09_2567.mp3 and /dev/null differ diff --git a/files/09_2567_example.mp3 b/files/09_2567_example.mp3 deleted file mode 100644 index dcf1ef629..000000000 Binary files a/files/09_2567_example.mp3 and /dev/null differ diff --git a/files/09_2567_meaning.mp3 b/files/09_2567_meaning.mp3 deleted file mode 100644 index 40fcf20c1..000000000 Binary files a/files/09_2567_meaning.mp3 and /dev/null differ diff --git a/files/09_2568.jpg b/files/09_2568.jpg deleted file mode 100644 index 7945b4006..000000000 Binary files a/files/09_2568.jpg and /dev/null differ diff --git a/files/09_2568.mp3 b/files/09_2568.mp3 deleted file mode 100644 index 423415bf0..000000000 Binary files a/files/09_2568.mp3 and /dev/null differ diff --git a/files/09_2568_example.mp3 b/files/09_2568_example.mp3 deleted file mode 100644 index 1bd679200..000000000 Binary files a/files/09_2568_example.mp3 and /dev/null differ diff --git a/files/09_2568_meaning.mp3 b/files/09_2568_meaning.mp3 deleted file mode 100644 index 7e28f5ac8..000000000 Binary files a/files/09_2568_meaning.mp3 and /dev/null differ diff --git a/files/09_2569.jpg b/files/09_2569.jpg deleted file mode 100644 index b26a22262..000000000 Binary files a/files/09_2569.jpg and /dev/null differ diff --git a/files/09_2569.mp3 b/files/09_2569.mp3 deleted file mode 100644 index 25cd1ea29..000000000 Binary files a/files/09_2569.mp3 and /dev/null differ diff --git a/files/09_2569_example.mp3 b/files/09_2569_example.mp3 deleted file mode 100644 index bea7a89bf..000000000 Binary files a/files/09_2569_example.mp3 and /dev/null differ diff --git a/files/09_2569_meaning.mp3 b/files/09_2569_meaning.mp3 deleted file mode 100644 index 01e70f76f..000000000 Binary files a/files/09_2569_meaning.mp3 and /dev/null differ diff --git a/files/09_2570.jpg b/files/09_2570.jpg deleted file mode 100644 index eb3b08a6b..000000000 Binary files a/files/09_2570.jpg and /dev/null differ diff --git a/files/09_2570.mp3 b/files/09_2570.mp3 deleted file mode 100644 index deee8f0b3..000000000 Binary files a/files/09_2570.mp3 and /dev/null differ diff --git a/files/09_2570_example.mp3 b/files/09_2570_example.mp3 deleted file mode 100644 index 883a09475..000000000 Binary files a/files/09_2570_example.mp3 and /dev/null differ diff --git a/files/09_2570_meaning.mp3 b/files/09_2570_meaning.mp3 deleted file mode 100644 index 672252800..000000000 Binary files a/files/09_2570_meaning.mp3 and /dev/null differ diff --git a/files/09_2571.jpg b/files/09_2571.jpg deleted file mode 100644 index c2438117b..000000000 Binary files a/files/09_2571.jpg and /dev/null differ diff --git a/files/09_2571.mp3 b/files/09_2571.mp3 deleted file mode 100644 index dc2745dd3..000000000 Binary files a/files/09_2571.mp3 and /dev/null differ diff --git a/files/09_2571_example.mp3 b/files/09_2571_example.mp3 deleted file mode 100644 index 1c07d4285..000000000 Binary files a/files/09_2571_example.mp3 and /dev/null differ diff --git a/files/09_2571_meaning.mp3 b/files/09_2571_meaning.mp3 deleted file mode 100644 index 76ab76fc7..000000000 Binary files a/files/09_2571_meaning.mp3 and /dev/null differ diff --git a/files/09_2572.jpg b/files/09_2572.jpg deleted file mode 100644 index 69703f756..000000000 Binary files a/files/09_2572.jpg and /dev/null differ diff --git a/files/09_2572.mp3 b/files/09_2572.mp3 deleted file mode 100644 index 42de75fce..000000000 Binary files a/files/09_2572.mp3 and /dev/null differ diff --git a/files/09_2572_example.mp3 b/files/09_2572_example.mp3 deleted file mode 100644 index 90da0cb50..000000000 Binary files a/files/09_2572_example.mp3 and /dev/null differ diff --git a/files/09_2572_meaning.mp3 b/files/09_2572_meaning.mp3 deleted file mode 100644 index 70be0a4b7..000000000 Binary files a/files/09_2572_meaning.mp3 and /dev/null differ diff --git a/files/09_2573.jpg b/files/09_2573.jpg deleted file mode 100644 index ad01a7886..000000000 Binary files a/files/09_2573.jpg and /dev/null differ diff --git a/files/09_2573.mp3 b/files/09_2573.mp3 deleted file mode 100644 index e6ddc8cd6..000000000 Binary files a/files/09_2573.mp3 and /dev/null differ diff --git a/files/09_2573_example.mp3 b/files/09_2573_example.mp3 deleted file mode 100644 index c9abd1806..000000000 Binary files a/files/09_2573_example.mp3 and /dev/null differ diff --git a/files/09_2573_meaning.mp3 b/files/09_2573_meaning.mp3 deleted file mode 100644 index 91a0e460b..000000000 Binary files a/files/09_2573_meaning.mp3 and /dev/null differ diff --git a/files/09_2574.jpg b/files/09_2574.jpg deleted file mode 100644 index 7d280185d..000000000 Binary files a/files/09_2574.jpg and /dev/null differ diff --git a/files/09_2574.mp3 b/files/09_2574.mp3 deleted file mode 100644 index 635f9d1ef..000000000 Binary files a/files/09_2574.mp3 and /dev/null differ diff --git a/files/09_2574_example.mp3 b/files/09_2574_example.mp3 deleted file mode 100644 index 8cc11f83f..000000000 Binary files a/files/09_2574_example.mp3 and /dev/null differ diff --git a/files/09_2574_meaning.mp3 b/files/09_2574_meaning.mp3 deleted file mode 100644 index 5643f6773..000000000 Binary files a/files/09_2574_meaning.mp3 and /dev/null differ diff --git a/files/09_2575.jpg b/files/09_2575.jpg deleted file mode 100644 index eb5944135..000000000 Binary files a/files/09_2575.jpg and /dev/null differ diff --git a/files/09_2575.mp3 b/files/09_2575.mp3 deleted file mode 100644 index ec38c5f84..000000000 Binary files a/files/09_2575.mp3 and /dev/null differ diff --git a/files/09_2575_example.mp3 b/files/09_2575_example.mp3 deleted file mode 100644 index bf8c3a98d..000000000 Binary files a/files/09_2575_example.mp3 and /dev/null differ diff --git a/files/09_2575_meaning.mp3 b/files/09_2575_meaning.mp3 deleted file mode 100644 index 4541e67bc..000000000 Binary files a/files/09_2575_meaning.mp3 and /dev/null differ diff --git a/files/09_2576.jpg b/files/09_2576.jpg deleted file mode 100644 index 238c45fb3..000000000 Binary files a/files/09_2576.jpg and /dev/null differ diff --git a/files/09_2576.mp3 b/files/09_2576.mp3 deleted file mode 100644 index a011d183b..000000000 Binary files a/files/09_2576.mp3 and /dev/null differ diff --git a/files/09_2576_example.mp3 b/files/09_2576_example.mp3 deleted file mode 100644 index 0bd7e97e1..000000000 Binary files a/files/09_2576_example.mp3 and /dev/null differ diff --git a/files/09_2576_meaning.mp3 b/files/09_2576_meaning.mp3 deleted file mode 100644 index a13b83783..000000000 Binary files a/files/09_2576_meaning.mp3 and /dev/null differ diff --git a/files/09_2577.jpg b/files/09_2577.jpg deleted file mode 100644 index 08cc80f7c..000000000 Binary files a/files/09_2577.jpg and /dev/null differ diff --git a/files/09_2577.mp3 b/files/09_2577.mp3 deleted file mode 100644 index 70fa2d84a..000000000 Binary files a/files/09_2577.mp3 and /dev/null differ diff --git a/files/09_2577_example.mp3 b/files/09_2577_example.mp3 deleted file mode 100644 index f0da80d4e..000000000 Binary files a/files/09_2577_example.mp3 and /dev/null differ diff --git a/files/09_2577_meaning.mp3 b/files/09_2577_meaning.mp3 deleted file mode 100644 index e7eb8f680..000000000 Binary files a/files/09_2577_meaning.mp3 and /dev/null differ diff --git a/files/09_2578.jpg b/files/09_2578.jpg deleted file mode 100644 index 41d558b05..000000000 Binary files a/files/09_2578.jpg and /dev/null differ diff --git a/files/09_2578.mp3 b/files/09_2578.mp3 deleted file mode 100644 index c6cc5839d..000000000 Binary files a/files/09_2578.mp3 and /dev/null differ diff --git a/files/09_2578_example.mp3 b/files/09_2578_example.mp3 deleted file mode 100644 index 8d3dcff7d..000000000 Binary files a/files/09_2578_example.mp3 and /dev/null differ diff --git a/files/09_2578_meaning.mp3 b/files/09_2578_meaning.mp3 deleted file mode 100644 index 7652d2a0e..000000000 Binary files a/files/09_2578_meaning.mp3 and /dev/null differ diff --git a/files/09_2579.jpg b/files/09_2579.jpg deleted file mode 100644 index 11f5631ed..000000000 Binary files a/files/09_2579.jpg and /dev/null differ diff --git a/files/09_2579.mp3 b/files/09_2579.mp3 deleted file mode 100644 index 453a80bf7..000000000 Binary files a/files/09_2579.mp3 and /dev/null differ diff --git a/files/09_2579_example.mp3 b/files/09_2579_example.mp3 deleted file mode 100644 index cd44086b3..000000000 Binary files a/files/09_2579_example.mp3 and /dev/null differ diff --git a/files/09_2579_meaning.mp3 b/files/09_2579_meaning.mp3 deleted file mode 100644 index fb73c1cdb..000000000 Binary files a/files/09_2579_meaning.mp3 and /dev/null differ diff --git a/files/09_2580.jpg b/files/09_2580.jpg deleted file mode 100644 index 7480512f1..000000000 Binary files a/files/09_2580.jpg and /dev/null differ diff --git a/files/09_2580.mp3 b/files/09_2580.mp3 deleted file mode 100644 index 4d2e0e9fb..000000000 Binary files a/files/09_2580.mp3 and /dev/null differ diff --git a/files/09_2580_example.mp3 b/files/09_2580_example.mp3 deleted file mode 100644 index f06ea0798..000000000 Binary files a/files/09_2580_example.mp3 and /dev/null differ diff --git a/files/09_2580_meaning.mp3 b/files/09_2580_meaning.mp3 deleted file mode 100644 index f467be634..000000000 Binary files a/files/09_2580_meaning.mp3 and /dev/null differ diff --git a/files/09_3161.jpg b/files/09_3161.jpg deleted file mode 100644 index 90bda42e5..000000000 Binary files a/files/09_3161.jpg and /dev/null differ diff --git a/files/09_3161.mp3 b/files/09_3161.mp3 deleted file mode 100644 index 680fd792f..000000000 Binary files a/files/09_3161.mp3 and /dev/null differ diff --git a/files/09_3161_example.mp3 b/files/09_3161_example.mp3 deleted file mode 100644 index fd1a3699c..000000000 Binary files a/files/09_3161_example.mp3 and /dev/null differ diff --git a/files/09_3161_meaning.mp3 b/files/09_3161_meaning.mp3 deleted file mode 100644 index 92b282770..000000000 Binary files a/files/09_3161_meaning.mp3 and /dev/null differ diff --git a/files/09_3162.jpg b/files/09_3162.jpg deleted file mode 100644 index 327036704..000000000 Binary files a/files/09_3162.jpg and /dev/null differ diff --git a/files/09_3162.mp3 b/files/09_3162.mp3 deleted file mode 100644 index 80421c9bb..000000000 Binary files a/files/09_3162.mp3 and /dev/null differ diff --git a/files/09_3162_example.mp3 b/files/09_3162_example.mp3 deleted file mode 100644 index 41681b072..000000000 Binary files a/files/09_3162_example.mp3 and /dev/null differ diff --git a/files/09_3162_meaning.mp3 b/files/09_3162_meaning.mp3 deleted file mode 100644 index 309ec0a01..000000000 Binary files a/files/09_3162_meaning.mp3 and /dev/null differ diff --git a/files/09_3163.jpg b/files/09_3163.jpg deleted file mode 100644 index 78a7c361e..000000000 Binary files a/files/09_3163.jpg and /dev/null differ diff --git a/files/09_3163.mp3 b/files/09_3163.mp3 deleted file mode 100644 index 8e8537a52..000000000 Binary files a/files/09_3163.mp3 and /dev/null differ diff --git a/files/09_3163_example.mp3 b/files/09_3163_example.mp3 deleted file mode 100644 index 06b55ba18..000000000 Binary files a/files/09_3163_example.mp3 and /dev/null differ diff --git a/files/09_3163_meaning.mp3 b/files/09_3163_meaning.mp3 deleted file mode 100644 index 9f7789f86..000000000 Binary files a/files/09_3163_meaning.mp3 and /dev/null differ diff --git a/files/09_3164.jpg b/files/09_3164.jpg deleted file mode 100644 index f7443f8e5..000000000 Binary files a/files/09_3164.jpg and /dev/null differ diff --git a/files/09_3164.mp3 b/files/09_3164.mp3 deleted file mode 100644 index 5a40d5b0b..000000000 Binary files a/files/09_3164.mp3 and /dev/null differ diff --git a/files/09_3164_example.mp3 b/files/09_3164_example.mp3 deleted file mode 100644 index 001f8e1d1..000000000 Binary files a/files/09_3164_example.mp3 and /dev/null differ diff --git a/files/09_3164_meaning.mp3 b/files/09_3164_meaning.mp3 deleted file mode 100644 index 086355cfc..000000000 Binary files a/files/09_3164_meaning.mp3 and /dev/null differ diff --git a/files/09_3165.jpg b/files/09_3165.jpg deleted file mode 100644 index 36dcf0dab..000000000 Binary files a/files/09_3165.jpg and /dev/null differ diff --git a/files/09_3165.mp3 b/files/09_3165.mp3 deleted file mode 100644 index 52185d465..000000000 Binary files a/files/09_3165.mp3 and /dev/null differ diff --git a/files/09_3165_example.mp3 b/files/09_3165_example.mp3 deleted file mode 100644 index 37cec8960..000000000 Binary files a/files/09_3165_example.mp3 and /dev/null differ diff --git a/files/09_3165_meaning.mp3 b/files/09_3165_meaning.mp3 deleted file mode 100644 index 4ff249fe3..000000000 Binary files a/files/09_3165_meaning.mp3 and /dev/null differ diff --git a/files/09_3166.jpg b/files/09_3166.jpg deleted file mode 100644 index e775ffad9..000000000 Binary files a/files/09_3166.jpg and /dev/null differ diff --git a/files/09_3166.mp3 b/files/09_3166.mp3 deleted file mode 100644 index 97b9ba450..000000000 Binary files a/files/09_3166.mp3 and /dev/null differ diff --git a/files/09_3166_example.mp3 b/files/09_3166_example.mp3 deleted file mode 100644 index 12473bd94..000000000 Binary files a/files/09_3166_example.mp3 and /dev/null differ diff --git a/files/09_3166_meaning.mp3 b/files/09_3166_meaning.mp3 deleted file mode 100644 index 9415232e3..000000000 Binary files a/files/09_3166_meaning.mp3 and /dev/null differ diff --git a/files/09_3167.jpg b/files/09_3167.jpg deleted file mode 100644 index 255996ae6..000000000 Binary files a/files/09_3167.jpg and /dev/null differ diff --git a/files/09_3167.mp3 b/files/09_3167.mp3 deleted file mode 100644 index 70dbfb4e7..000000000 Binary files a/files/09_3167.mp3 and /dev/null differ diff --git a/files/09_3167_example.mp3 b/files/09_3167_example.mp3 deleted file mode 100644 index 50e7370e7..000000000 Binary files a/files/09_3167_example.mp3 and /dev/null differ diff --git a/files/09_3167_meaning.mp3 b/files/09_3167_meaning.mp3 deleted file mode 100644 index 1559d9de2..000000000 Binary files a/files/09_3167_meaning.mp3 and /dev/null differ diff --git a/files/09_3168.jpg b/files/09_3168.jpg deleted file mode 100644 index 9475bf14b..000000000 Binary files a/files/09_3168.jpg and /dev/null differ diff --git a/files/09_3168.mp3 b/files/09_3168.mp3 deleted file mode 100644 index e982935a5..000000000 Binary files a/files/09_3168.mp3 and /dev/null differ diff --git a/files/09_3168_example.mp3 b/files/09_3168_example.mp3 deleted file mode 100644 index ff13bb74f..000000000 Binary files a/files/09_3168_example.mp3 and /dev/null differ diff --git a/files/09_3168_meaning.mp3 b/files/09_3168_meaning.mp3 deleted file mode 100644 index 2827c6520..000000000 Binary files a/files/09_3168_meaning.mp3 and /dev/null differ diff --git a/files/09_3169.jpg b/files/09_3169.jpg deleted file mode 100644 index 4229f0d3a..000000000 Binary files a/files/09_3169.jpg and /dev/null differ diff --git a/files/09_3169.mp3 b/files/09_3169.mp3 deleted file mode 100644 index bacaeb268..000000000 Binary files a/files/09_3169.mp3 and /dev/null differ diff --git a/files/09_3169_example.mp3 b/files/09_3169_example.mp3 deleted file mode 100644 index 2e22d70a8..000000000 Binary files a/files/09_3169_example.mp3 and /dev/null differ diff --git a/files/09_3169_meaning.mp3 b/files/09_3169_meaning.mp3 deleted file mode 100644 index d941f436f..000000000 Binary files a/files/09_3169_meaning.mp3 and /dev/null differ diff --git a/files/09_3170.jpg b/files/09_3170.jpg deleted file mode 100644 index 15f49d543..000000000 Binary files a/files/09_3170.jpg and /dev/null differ diff --git a/files/09_3170.mp3 b/files/09_3170.mp3 deleted file mode 100644 index 4a9abc75e..000000000 Binary files a/files/09_3170.mp3 and /dev/null differ diff --git a/files/09_3170_example.mp3 b/files/09_3170_example.mp3 deleted file mode 100644 index 7f35d11d6..000000000 Binary files a/files/09_3170_example.mp3 and /dev/null differ diff --git a/files/09_3170_meaning.mp3 b/files/09_3170_meaning.mp3 deleted file mode 100644 index 68a554a14..000000000 Binary files a/files/09_3170_meaning.mp3 and /dev/null differ diff --git a/files/09_3171.jpg b/files/09_3171.jpg deleted file mode 100644 index 8e05e5050..000000000 Binary files a/files/09_3171.jpg and /dev/null differ diff --git a/files/09_3171.mp3 b/files/09_3171.mp3 deleted file mode 100644 index 1fea9cacc..000000000 Binary files a/files/09_3171.mp3 and /dev/null differ diff --git a/files/09_3171_example.mp3 b/files/09_3171_example.mp3 deleted file mode 100644 index 859f8ab25..000000000 Binary files a/files/09_3171_example.mp3 and /dev/null differ diff --git a/files/09_3171_meaning.mp3 b/files/09_3171_meaning.mp3 deleted file mode 100644 index 391ba0753..000000000 Binary files a/files/09_3171_meaning.mp3 and /dev/null differ diff --git a/files/09_3172.jpg b/files/09_3172.jpg deleted file mode 100644 index 80a53f251..000000000 Binary files a/files/09_3172.jpg and /dev/null differ diff --git a/files/09_3172.mp3 b/files/09_3172.mp3 deleted file mode 100644 index 73a0b42da..000000000 Binary files a/files/09_3172.mp3 and /dev/null differ diff --git a/files/09_3172_example.mp3 b/files/09_3172_example.mp3 deleted file mode 100644 index 7ed8e673d..000000000 Binary files a/files/09_3172_example.mp3 and /dev/null differ diff --git a/files/09_3172_meaning.mp3 b/files/09_3172_meaning.mp3 deleted file mode 100644 index 2937748d7..000000000 Binary files a/files/09_3172_meaning.mp3 and /dev/null differ diff --git a/files/09_3173.jpg b/files/09_3173.jpg deleted file mode 100644 index 0814d947a..000000000 Binary files a/files/09_3173.jpg and /dev/null differ diff --git a/files/09_3173.mp3 b/files/09_3173.mp3 deleted file mode 100644 index 18115aaa9..000000000 Binary files a/files/09_3173.mp3 and /dev/null differ diff --git a/files/09_3173_example.mp3 b/files/09_3173_example.mp3 deleted file mode 100644 index 1910036c8..000000000 Binary files a/files/09_3173_example.mp3 and /dev/null differ diff --git a/files/09_3173_meaning.mp3 b/files/09_3173_meaning.mp3 deleted file mode 100644 index 7aeefa846..000000000 Binary files a/files/09_3173_meaning.mp3 and /dev/null differ diff --git a/files/09_3174.jpg b/files/09_3174.jpg deleted file mode 100644 index 0b6293974..000000000 Binary files a/files/09_3174.jpg and /dev/null differ diff --git a/files/09_3174.mp3 b/files/09_3174.mp3 deleted file mode 100644 index e77e898a9..000000000 Binary files a/files/09_3174.mp3 and /dev/null differ diff --git a/files/09_3174_example.mp3 b/files/09_3174_example.mp3 deleted file mode 100644 index 51d381c68..000000000 Binary files a/files/09_3174_example.mp3 and /dev/null differ diff --git a/files/09_3174_meaning.mp3 b/files/09_3174_meaning.mp3 deleted file mode 100644 index 535f7ff2d..000000000 Binary files a/files/09_3174_meaning.mp3 and /dev/null differ diff --git a/files/09_3175.jpg b/files/09_3175.jpg deleted file mode 100644 index ccd4a63c4..000000000 Binary files a/files/09_3175.jpg and /dev/null differ diff --git a/files/09_3175.mp3 b/files/09_3175.mp3 deleted file mode 100644 index ef8fcb9a5..000000000 Binary files a/files/09_3175.mp3 and /dev/null differ diff --git a/files/09_3175_example.mp3 b/files/09_3175_example.mp3 deleted file mode 100644 index bb9bd329d..000000000 Binary files a/files/09_3175_example.mp3 and /dev/null differ diff --git a/files/09_3175_meaning.mp3 b/files/09_3175_meaning.mp3 deleted file mode 100644 index f1afb7398..000000000 Binary files a/files/09_3175_meaning.mp3 and /dev/null differ diff --git a/files/09_3176.jpg b/files/09_3176.jpg deleted file mode 100644 index 96bbd2a54..000000000 Binary files a/files/09_3176.jpg and /dev/null differ diff --git a/files/09_3176.mp3 b/files/09_3176.mp3 deleted file mode 100644 index fdf1df332..000000000 Binary files a/files/09_3176.mp3 and /dev/null differ diff --git a/files/09_3176_example.mp3 b/files/09_3176_example.mp3 deleted file mode 100644 index 754f50b8e..000000000 Binary files a/files/09_3176_example.mp3 and /dev/null differ diff --git a/files/09_3176_meaning.mp3 b/files/09_3176_meaning.mp3 deleted file mode 100644 index 19ab9a4f9..000000000 Binary files a/files/09_3176_meaning.mp3 and /dev/null differ diff --git a/files/09_3177.jpg b/files/09_3177.jpg deleted file mode 100644 index f43e0f678..000000000 Binary files a/files/09_3177.jpg and /dev/null differ diff --git a/files/09_3177.mp3 b/files/09_3177.mp3 deleted file mode 100644 index 95dc9494a..000000000 Binary files a/files/09_3177.mp3 and /dev/null differ diff --git a/files/09_3177_example.mp3 b/files/09_3177_example.mp3 deleted file mode 100644 index a17dde6eb..000000000 Binary files a/files/09_3177_example.mp3 and /dev/null differ diff --git a/files/09_3177_meaning.mp3 b/files/09_3177_meaning.mp3 deleted file mode 100644 index 5788a1968..000000000 Binary files a/files/09_3177_meaning.mp3 and /dev/null differ diff --git a/files/09_3178.jpg b/files/09_3178.jpg deleted file mode 100644 index 79f7a8478..000000000 Binary files a/files/09_3178.jpg and /dev/null differ diff --git a/files/09_3178.mp3 b/files/09_3178.mp3 deleted file mode 100644 index 78fa03aa0..000000000 Binary files a/files/09_3178.mp3 and /dev/null differ diff --git a/files/09_3178_example.mp3 b/files/09_3178_example.mp3 deleted file mode 100644 index f1dd7107b..000000000 Binary files a/files/09_3178_example.mp3 and /dev/null differ diff --git a/files/09_3178_meaning.mp3 b/files/09_3178_meaning.mp3 deleted file mode 100644 index f6bdd807e..000000000 Binary files a/files/09_3178_meaning.mp3 and /dev/null differ diff --git a/files/09_3179.jpg b/files/09_3179.jpg deleted file mode 100644 index 9661a2f80..000000000 Binary files a/files/09_3179.jpg and /dev/null differ diff --git a/files/09_3179.mp3 b/files/09_3179.mp3 deleted file mode 100644 index 8f72916e8..000000000 Binary files a/files/09_3179.mp3 and /dev/null differ diff --git a/files/09_3179_example.mp3 b/files/09_3179_example.mp3 deleted file mode 100644 index 578e5d1b1..000000000 Binary files a/files/09_3179_example.mp3 and /dev/null differ diff --git a/files/09_3179_meaning.mp3 b/files/09_3179_meaning.mp3 deleted file mode 100644 index f79962621..000000000 Binary files a/files/09_3179_meaning.mp3 and /dev/null differ diff --git a/files/09_3180.jpg b/files/09_3180.jpg deleted file mode 100644 index b5794c954..000000000 Binary files a/files/09_3180.jpg and /dev/null differ diff --git a/files/09_3180.mp3 b/files/09_3180.mp3 deleted file mode 100644 index 1ad6001db..000000000 Binary files a/files/09_3180.mp3 and /dev/null differ diff --git a/files/09_3180_example.mp3 b/files/09_3180_example.mp3 deleted file mode 100644 index d8e66c3d0..000000000 Binary files a/files/09_3180_example.mp3 and /dev/null differ diff --git a/files/09_3180_meaning.mp3 b/files/09_3180_meaning.mp3 deleted file mode 100644 index 5d1461438..000000000 Binary files a/files/09_3180_meaning.mp3 and /dev/null differ diff --git a/files/10_0181.jpg b/files/10_0181.jpg deleted file mode 100644 index 8a96e80ff..000000000 Binary files a/files/10_0181.jpg and /dev/null differ diff --git a/files/10_0181.mp3 b/files/10_0181.mp3 deleted file mode 100644 index d46373674..000000000 Binary files a/files/10_0181.mp3 and /dev/null differ diff --git a/files/10_0181_example.mp3 b/files/10_0181_example.mp3 deleted file mode 100644 index 2cd3c0fdd..000000000 Binary files a/files/10_0181_example.mp3 and /dev/null differ diff --git a/files/10_0181_meaning.mp3 b/files/10_0181_meaning.mp3 deleted file mode 100644 index 68a31d0a5..000000000 Binary files a/files/10_0181_meaning.mp3 and /dev/null differ diff --git a/files/10_0182.jpg b/files/10_0182.jpg deleted file mode 100644 index 2df345836..000000000 Binary files a/files/10_0182.jpg and /dev/null differ diff --git a/files/10_0182.mp3 b/files/10_0182.mp3 deleted file mode 100644 index 54715d39a..000000000 Binary files a/files/10_0182.mp3 and /dev/null differ diff --git a/files/10_0182_example.mp3 b/files/10_0182_example.mp3 deleted file mode 100644 index 6657262c0..000000000 Binary files a/files/10_0182_example.mp3 and /dev/null differ diff --git a/files/10_0182_meaning.mp3 b/files/10_0182_meaning.mp3 deleted file mode 100644 index 488241b99..000000000 Binary files a/files/10_0182_meaning.mp3 and /dev/null differ diff --git a/files/10_0183.jpg b/files/10_0183.jpg deleted file mode 100644 index 93c47651e..000000000 Binary files a/files/10_0183.jpg and /dev/null differ diff --git a/files/10_0183.mp3 b/files/10_0183.mp3 deleted file mode 100644 index e9c15b687..000000000 Binary files a/files/10_0183.mp3 and /dev/null differ diff --git a/files/10_0183_example.mp3 b/files/10_0183_example.mp3 deleted file mode 100644 index da7adf428..000000000 Binary files a/files/10_0183_example.mp3 and /dev/null differ diff --git a/files/10_0183_meaning.mp3 b/files/10_0183_meaning.mp3 deleted file mode 100644 index 8f32b22c4..000000000 Binary files a/files/10_0183_meaning.mp3 and /dev/null differ diff --git a/files/10_0184.jpg b/files/10_0184.jpg deleted file mode 100644 index 87ad227f0..000000000 Binary files a/files/10_0184.jpg and /dev/null differ diff --git a/files/10_0184.mp3 b/files/10_0184.mp3 deleted file mode 100644 index 76a5f97dc..000000000 Binary files a/files/10_0184.mp3 and /dev/null differ diff --git a/files/10_0184_example.mp3 b/files/10_0184_example.mp3 deleted file mode 100644 index 56a02d096..000000000 Binary files a/files/10_0184_example.mp3 and /dev/null differ diff --git a/files/10_0184_meaning.mp3 b/files/10_0184_meaning.mp3 deleted file mode 100644 index 2ec8b9838..000000000 Binary files a/files/10_0184_meaning.mp3 and /dev/null differ diff --git a/files/10_0185.jpg b/files/10_0185.jpg deleted file mode 100644 index 03c8ab1d9..000000000 Binary files a/files/10_0185.jpg and /dev/null differ diff --git a/files/10_0185.mp3 b/files/10_0185.mp3 deleted file mode 100644 index 8a863363b..000000000 Binary files a/files/10_0185.mp3 and /dev/null differ diff --git a/files/10_0185_example.mp3 b/files/10_0185_example.mp3 deleted file mode 100644 index 532d2d281..000000000 Binary files a/files/10_0185_example.mp3 and /dev/null differ diff --git a/files/10_0185_meaning.mp3 b/files/10_0185_meaning.mp3 deleted file mode 100644 index ae81ad6ff..000000000 Binary files a/files/10_0185_meaning.mp3 and /dev/null differ diff --git a/files/10_0186.jpg b/files/10_0186.jpg deleted file mode 100644 index fe1ff52cd..000000000 Binary files a/files/10_0186.jpg and /dev/null differ diff --git a/files/10_0186.mp3 b/files/10_0186.mp3 deleted file mode 100644 index 5b85fb495..000000000 Binary files a/files/10_0186.mp3 and /dev/null differ diff --git a/files/10_0186_example.mp3 b/files/10_0186_example.mp3 deleted file mode 100644 index 36351a8c5..000000000 Binary files a/files/10_0186_example.mp3 and /dev/null differ diff --git a/files/10_0186_meaning.mp3 b/files/10_0186_meaning.mp3 deleted file mode 100644 index ba3df7bef..000000000 Binary files a/files/10_0186_meaning.mp3 and /dev/null differ diff --git a/files/10_0187.jpg b/files/10_0187.jpg deleted file mode 100644 index 5974b20e2..000000000 Binary files a/files/10_0187.jpg and /dev/null differ diff --git a/files/10_0187.mp3 b/files/10_0187.mp3 deleted file mode 100644 index 5d10b3c8d..000000000 Binary files a/files/10_0187.mp3 and /dev/null differ diff --git a/files/10_0187_example.mp3 b/files/10_0187_example.mp3 deleted file mode 100644 index 6113882a4..000000000 Binary files a/files/10_0187_example.mp3 and /dev/null differ diff --git a/files/10_0187_meaning.mp3 b/files/10_0187_meaning.mp3 deleted file mode 100644 index 0dc5188c1..000000000 Binary files a/files/10_0187_meaning.mp3 and /dev/null differ diff --git a/files/10_0188.jpg b/files/10_0188.jpg deleted file mode 100644 index 3b45ed425..000000000 Binary files a/files/10_0188.jpg and /dev/null differ diff --git a/files/10_0188.mp3 b/files/10_0188.mp3 deleted file mode 100644 index 94336ca93..000000000 Binary files a/files/10_0188.mp3 and /dev/null differ diff --git a/files/10_0188_example.mp3 b/files/10_0188_example.mp3 deleted file mode 100644 index b36a254fe..000000000 Binary files a/files/10_0188_example.mp3 and /dev/null differ diff --git a/files/10_0188_meaning.mp3 b/files/10_0188_meaning.mp3 deleted file mode 100644 index 605a427ee..000000000 Binary files a/files/10_0188_meaning.mp3 and /dev/null differ diff --git a/files/10_0189.jpg b/files/10_0189.jpg deleted file mode 100644 index 40cf48a60..000000000 Binary files a/files/10_0189.jpg and /dev/null differ diff --git a/files/10_0189.mp3 b/files/10_0189.mp3 deleted file mode 100644 index 7de885016..000000000 Binary files a/files/10_0189.mp3 and /dev/null differ diff --git a/files/10_0189_example.mp3 b/files/10_0189_example.mp3 deleted file mode 100644 index 78bbd5d8a..000000000 Binary files a/files/10_0189_example.mp3 and /dev/null differ diff --git a/files/10_0189_meaning.mp3 b/files/10_0189_meaning.mp3 deleted file mode 100644 index 2873e9f22..000000000 Binary files a/files/10_0189_meaning.mp3 and /dev/null differ diff --git a/files/10_0190.jpg b/files/10_0190.jpg deleted file mode 100644 index f551ac475..000000000 Binary files a/files/10_0190.jpg and /dev/null differ diff --git a/files/10_0190.mp3 b/files/10_0190.mp3 deleted file mode 100644 index 2851bb859..000000000 Binary files a/files/10_0190.mp3 and /dev/null differ diff --git a/files/10_0190_example.mp3 b/files/10_0190_example.mp3 deleted file mode 100644 index dab05c39d..000000000 Binary files a/files/10_0190_example.mp3 and /dev/null differ diff --git a/files/10_0190_meaning.mp3 b/files/10_0190_meaning.mp3 deleted file mode 100644 index ac0c231d0..000000000 Binary files a/files/10_0190_meaning.mp3 and /dev/null differ diff --git a/files/10_0191.jpg b/files/10_0191.jpg deleted file mode 100644 index 7a0299feb..000000000 Binary files a/files/10_0191.jpg and /dev/null differ diff --git a/files/10_0191.mp3 b/files/10_0191.mp3 deleted file mode 100644 index 0eea28bfa..000000000 Binary files a/files/10_0191.mp3 and /dev/null differ diff --git a/files/10_0191_example.mp3 b/files/10_0191_example.mp3 deleted file mode 100644 index 800b910cb..000000000 Binary files a/files/10_0191_example.mp3 and /dev/null differ diff --git a/files/10_0191_meaning.mp3 b/files/10_0191_meaning.mp3 deleted file mode 100644 index 33ddf926c..000000000 Binary files a/files/10_0191_meaning.mp3 and /dev/null differ diff --git a/files/10_0192.jpg b/files/10_0192.jpg deleted file mode 100644 index 39158d5bf..000000000 Binary files a/files/10_0192.jpg and /dev/null differ diff --git a/files/10_0192.mp3 b/files/10_0192.mp3 deleted file mode 100644 index 09d4cb769..000000000 Binary files a/files/10_0192.mp3 and /dev/null differ diff --git a/files/10_0192_example.mp3 b/files/10_0192_example.mp3 deleted file mode 100644 index 3b59726cd..000000000 Binary files a/files/10_0192_example.mp3 and /dev/null differ diff --git a/files/10_0192_meaning.mp3 b/files/10_0192_meaning.mp3 deleted file mode 100644 index 09f61e8a5..000000000 Binary files a/files/10_0192_meaning.mp3 and /dev/null differ diff --git a/files/10_0193.jpg b/files/10_0193.jpg deleted file mode 100644 index 3f9150254..000000000 Binary files a/files/10_0193.jpg and /dev/null differ diff --git a/files/10_0193.mp3 b/files/10_0193.mp3 deleted file mode 100644 index 4a27efc53..000000000 Binary files a/files/10_0193.mp3 and /dev/null differ diff --git a/files/10_0193_example.mp3 b/files/10_0193_example.mp3 deleted file mode 100644 index 107c0faaa..000000000 Binary files a/files/10_0193_example.mp3 and /dev/null differ diff --git a/files/10_0193_meaning.mp3 b/files/10_0193_meaning.mp3 deleted file mode 100644 index 7940a6c87..000000000 Binary files a/files/10_0193_meaning.mp3 and /dev/null differ diff --git a/files/10_0194.jpg b/files/10_0194.jpg deleted file mode 100644 index 461466e06..000000000 Binary files a/files/10_0194.jpg and /dev/null differ diff --git a/files/10_0194.mp3 b/files/10_0194.mp3 deleted file mode 100644 index aae0acb79..000000000 Binary files a/files/10_0194.mp3 and /dev/null differ diff --git a/files/10_0194_example.mp3 b/files/10_0194_example.mp3 deleted file mode 100644 index 5ecbc22ae..000000000 Binary files a/files/10_0194_example.mp3 and /dev/null differ diff --git a/files/10_0194_meaning.mp3 b/files/10_0194_meaning.mp3 deleted file mode 100644 index b170d1f08..000000000 Binary files a/files/10_0194_meaning.mp3 and /dev/null differ diff --git a/files/10_0195.jpg b/files/10_0195.jpg deleted file mode 100644 index e020200a2..000000000 Binary files a/files/10_0195.jpg and /dev/null differ diff --git a/files/10_0195.mp3 b/files/10_0195.mp3 deleted file mode 100644 index a2514edc0..000000000 Binary files a/files/10_0195.mp3 and /dev/null differ diff --git a/files/10_0195_example.mp3 b/files/10_0195_example.mp3 deleted file mode 100644 index a73d9df99..000000000 Binary files a/files/10_0195_example.mp3 and /dev/null differ diff --git a/files/10_0195_meaning.mp3 b/files/10_0195_meaning.mp3 deleted file mode 100644 index a7b69710f..000000000 Binary files a/files/10_0195_meaning.mp3 and /dev/null differ diff --git a/files/10_0196.jpg b/files/10_0196.jpg deleted file mode 100644 index 74aa3c852..000000000 Binary files a/files/10_0196.jpg and /dev/null differ diff --git a/files/10_0196.mp3 b/files/10_0196.mp3 deleted file mode 100644 index 0b1186f62..000000000 Binary files a/files/10_0196.mp3 and /dev/null differ diff --git a/files/10_0196_example.mp3 b/files/10_0196_example.mp3 deleted file mode 100644 index b7986b06e..000000000 Binary files a/files/10_0196_example.mp3 and /dev/null differ diff --git a/files/10_0196_meaning.mp3 b/files/10_0196_meaning.mp3 deleted file mode 100644 index c0e3810f0..000000000 Binary files a/files/10_0196_meaning.mp3 and /dev/null differ diff --git a/files/10_0197.jpg b/files/10_0197.jpg deleted file mode 100644 index 467d5d69b..000000000 Binary files a/files/10_0197.jpg and /dev/null differ diff --git a/files/10_0197.mp3 b/files/10_0197.mp3 deleted file mode 100644 index 30996f082..000000000 Binary files a/files/10_0197.mp3 and /dev/null differ diff --git a/files/10_0197_example.mp3 b/files/10_0197_example.mp3 deleted file mode 100644 index 8be5b15de..000000000 Binary files a/files/10_0197_example.mp3 and /dev/null differ diff --git a/files/10_0197_meaning.mp3 b/files/10_0197_meaning.mp3 deleted file mode 100644 index 19f2926a6..000000000 Binary files a/files/10_0197_meaning.mp3 and /dev/null differ diff --git a/files/10_0198.jpg b/files/10_0198.jpg deleted file mode 100644 index 7f5bfa0d4..000000000 Binary files a/files/10_0198.jpg and /dev/null differ diff --git a/files/10_0198.mp3 b/files/10_0198.mp3 deleted file mode 100644 index 1b47ab9e4..000000000 Binary files a/files/10_0198.mp3 and /dev/null differ diff --git a/files/10_0198_example.mp3 b/files/10_0198_example.mp3 deleted file mode 100644 index da770b290..000000000 Binary files a/files/10_0198_example.mp3 and /dev/null differ diff --git a/files/10_0198_meaning.mp3 b/files/10_0198_meaning.mp3 deleted file mode 100644 index a238970f9..000000000 Binary files a/files/10_0198_meaning.mp3 and /dev/null differ diff --git a/files/10_0199.jpg b/files/10_0199.jpg deleted file mode 100644 index 3f0bcff99..000000000 Binary files a/files/10_0199.jpg and /dev/null differ diff --git a/files/10_0199.mp3 b/files/10_0199.mp3 deleted file mode 100644 index 32104948a..000000000 Binary files a/files/10_0199.mp3 and /dev/null differ diff --git a/files/10_0199_example.mp3 b/files/10_0199_example.mp3 deleted file mode 100644 index 284d5681f..000000000 Binary files a/files/10_0199_example.mp3 and /dev/null differ diff --git a/files/10_0199_meaning.mp3 b/files/10_0199_meaning.mp3 deleted file mode 100644 index 286fe3e27..000000000 Binary files a/files/10_0199_meaning.mp3 and /dev/null differ diff --git a/files/10_0200.jpg b/files/10_0200.jpg deleted file mode 100644 index 9dce03ca7..000000000 Binary files a/files/10_0200.jpg and /dev/null differ diff --git a/files/10_0200.mp3 b/files/10_0200.mp3 deleted file mode 100644 index 96ed9d0cf..000000000 Binary files a/files/10_0200.mp3 and /dev/null differ diff --git a/files/10_0200_example.mp3 b/files/10_0200_example.mp3 deleted file mode 100644 index 54d4c005a..000000000 Binary files a/files/10_0200_example.mp3 and /dev/null differ diff --git a/files/10_0200_meaning.mp3 b/files/10_0200_meaning.mp3 deleted file mode 100644 index 2df4f37fe..000000000 Binary files a/files/10_0200_meaning.mp3 and /dev/null differ diff --git a/files/10_0781.jpg b/files/10_0781.jpg deleted file mode 100644 index bbccb6f06..000000000 Binary files a/files/10_0781.jpg and /dev/null differ diff --git a/files/10_0781.mp3 b/files/10_0781.mp3 deleted file mode 100644 index 992df8c99..000000000 Binary files a/files/10_0781.mp3 and /dev/null differ diff --git a/files/10_0781_example.mp3 b/files/10_0781_example.mp3 deleted file mode 100644 index 2c7dec049..000000000 Binary files a/files/10_0781_example.mp3 and /dev/null differ diff --git a/files/10_0781_meaning.mp3 b/files/10_0781_meaning.mp3 deleted file mode 100644 index de8f40aee..000000000 Binary files a/files/10_0781_meaning.mp3 and /dev/null differ diff --git a/files/10_0782.jpg b/files/10_0782.jpg deleted file mode 100644 index 374ad3f24..000000000 Binary files a/files/10_0782.jpg and /dev/null differ diff --git a/files/10_0782.mp3 b/files/10_0782.mp3 deleted file mode 100644 index 1d2dc3b02..000000000 Binary files a/files/10_0782.mp3 and /dev/null differ diff --git a/files/10_0782_example.mp3 b/files/10_0782_example.mp3 deleted file mode 100644 index f10f061c0..000000000 Binary files a/files/10_0782_example.mp3 and /dev/null differ diff --git a/files/10_0782_meaning.mp3 b/files/10_0782_meaning.mp3 deleted file mode 100644 index 7fbb4cb0d..000000000 Binary files a/files/10_0782_meaning.mp3 and /dev/null differ diff --git a/files/10_0783.jpg b/files/10_0783.jpg deleted file mode 100644 index 9eace6c40..000000000 Binary files a/files/10_0783.jpg and /dev/null differ diff --git a/files/10_0783.mp3 b/files/10_0783.mp3 deleted file mode 100644 index 7d31e02ee..000000000 Binary files a/files/10_0783.mp3 and /dev/null differ diff --git a/files/10_0783_example.mp3 b/files/10_0783_example.mp3 deleted file mode 100644 index 35ab83145..000000000 Binary files a/files/10_0783_example.mp3 and /dev/null differ diff --git a/files/10_0783_meaning.mp3 b/files/10_0783_meaning.mp3 deleted file mode 100644 index 128159b67..000000000 Binary files a/files/10_0783_meaning.mp3 and /dev/null differ diff --git a/files/10_0784.jpg b/files/10_0784.jpg deleted file mode 100644 index 4024528cd..000000000 Binary files a/files/10_0784.jpg and /dev/null differ diff --git a/files/10_0784.mp3 b/files/10_0784.mp3 deleted file mode 100644 index 352e7d2e9..000000000 Binary files a/files/10_0784.mp3 and /dev/null differ diff --git a/files/10_0784_example.mp3 b/files/10_0784_example.mp3 deleted file mode 100644 index 09f9fceaa..000000000 Binary files a/files/10_0784_example.mp3 and /dev/null differ diff --git a/files/10_0784_meaning.mp3 b/files/10_0784_meaning.mp3 deleted file mode 100644 index 902a6ac3d..000000000 Binary files a/files/10_0784_meaning.mp3 and /dev/null differ diff --git a/files/10_0785.jpg b/files/10_0785.jpg deleted file mode 100644 index 5bfeff062..000000000 Binary files a/files/10_0785.jpg and /dev/null differ diff --git a/files/10_0785.mp3 b/files/10_0785.mp3 deleted file mode 100644 index 05783e384..000000000 Binary files a/files/10_0785.mp3 and /dev/null differ diff --git a/files/10_0785_example.mp3 b/files/10_0785_example.mp3 deleted file mode 100644 index d9f7ff49f..000000000 Binary files a/files/10_0785_example.mp3 and /dev/null differ diff --git a/files/10_0785_meaning.mp3 b/files/10_0785_meaning.mp3 deleted file mode 100644 index 7d5e05787..000000000 Binary files a/files/10_0785_meaning.mp3 and /dev/null differ diff --git a/files/10_0786.jpg b/files/10_0786.jpg deleted file mode 100644 index 5f3d2da35..000000000 Binary files a/files/10_0786.jpg and /dev/null differ diff --git a/files/10_0786.mp3 b/files/10_0786.mp3 deleted file mode 100644 index 02bf21103..000000000 Binary files a/files/10_0786.mp3 and /dev/null differ diff --git a/files/10_0786_example.mp3 b/files/10_0786_example.mp3 deleted file mode 100644 index eb8c54255..000000000 Binary files a/files/10_0786_example.mp3 and /dev/null differ diff --git a/files/10_0786_meaning.mp3 b/files/10_0786_meaning.mp3 deleted file mode 100644 index ecc40ae52..000000000 Binary files a/files/10_0786_meaning.mp3 and /dev/null differ diff --git a/files/10_0787.jpg b/files/10_0787.jpg deleted file mode 100644 index aa36c0a56..000000000 Binary files a/files/10_0787.jpg and /dev/null differ diff --git a/files/10_0787.mp3 b/files/10_0787.mp3 deleted file mode 100644 index c8bd1c176..000000000 Binary files a/files/10_0787.mp3 and /dev/null differ diff --git a/files/10_0787_example.mp3 b/files/10_0787_example.mp3 deleted file mode 100644 index 852322110..000000000 Binary files a/files/10_0787_example.mp3 and /dev/null differ diff --git a/files/10_0787_meaning.mp3 b/files/10_0787_meaning.mp3 deleted file mode 100644 index f6f2340bb..000000000 Binary files a/files/10_0787_meaning.mp3 and /dev/null differ diff --git a/files/10_0788.jpg b/files/10_0788.jpg deleted file mode 100644 index 0a654e8c9..000000000 Binary files a/files/10_0788.jpg and /dev/null differ diff --git a/files/10_0788.mp3 b/files/10_0788.mp3 deleted file mode 100644 index fb075fd88..000000000 Binary files a/files/10_0788.mp3 and /dev/null differ diff --git a/files/10_0788_example.mp3 b/files/10_0788_example.mp3 deleted file mode 100644 index a827f899a..000000000 Binary files a/files/10_0788_example.mp3 and /dev/null differ diff --git a/files/10_0788_meaning.mp3 b/files/10_0788_meaning.mp3 deleted file mode 100644 index 444939c2c..000000000 Binary files a/files/10_0788_meaning.mp3 and /dev/null differ diff --git a/files/10_0789.jpg b/files/10_0789.jpg deleted file mode 100644 index 4a5a941a2..000000000 Binary files a/files/10_0789.jpg and /dev/null differ diff --git a/files/10_0789.mp3 b/files/10_0789.mp3 deleted file mode 100644 index 2a5316ece..000000000 Binary files a/files/10_0789.mp3 and /dev/null differ diff --git a/files/10_0789_example.mp3 b/files/10_0789_example.mp3 deleted file mode 100644 index 1069c71d9..000000000 Binary files a/files/10_0789_example.mp3 and /dev/null differ diff --git a/files/10_0789_meaning.mp3 b/files/10_0789_meaning.mp3 deleted file mode 100644 index ec19a2d1b..000000000 Binary files a/files/10_0789_meaning.mp3 and /dev/null differ diff --git a/files/10_0790.jpg b/files/10_0790.jpg deleted file mode 100644 index 6105d40dc..000000000 Binary files a/files/10_0790.jpg and /dev/null differ diff --git a/files/10_0790.mp3 b/files/10_0790.mp3 deleted file mode 100644 index 15205a8a8..000000000 Binary files a/files/10_0790.mp3 and /dev/null differ diff --git a/files/10_0790_example.mp3 b/files/10_0790_example.mp3 deleted file mode 100644 index b060f4c3a..000000000 Binary files a/files/10_0790_example.mp3 and /dev/null differ diff --git a/files/10_0790_meaning.mp3 b/files/10_0790_meaning.mp3 deleted file mode 100644 index 80259cf00..000000000 Binary files a/files/10_0790_meaning.mp3 and /dev/null differ diff --git a/files/10_0791.jpg b/files/10_0791.jpg deleted file mode 100644 index d19fa8c2e..000000000 Binary files a/files/10_0791.jpg and /dev/null differ diff --git a/files/10_0791.mp3 b/files/10_0791.mp3 deleted file mode 100644 index 441a30a62..000000000 Binary files a/files/10_0791.mp3 and /dev/null differ diff --git a/files/10_0791_example.mp3 b/files/10_0791_example.mp3 deleted file mode 100644 index 7f462555b..000000000 Binary files a/files/10_0791_example.mp3 and /dev/null differ diff --git a/files/10_0791_meaning.mp3 b/files/10_0791_meaning.mp3 deleted file mode 100644 index 49c66720b..000000000 Binary files a/files/10_0791_meaning.mp3 and /dev/null differ diff --git a/files/10_0792.jpg b/files/10_0792.jpg deleted file mode 100644 index 16e9b7610..000000000 Binary files a/files/10_0792.jpg and /dev/null differ diff --git a/files/10_0792.mp3 b/files/10_0792.mp3 deleted file mode 100644 index af83e34dc..000000000 Binary files a/files/10_0792.mp3 and /dev/null differ diff --git a/files/10_0792_example.mp3 b/files/10_0792_example.mp3 deleted file mode 100644 index bf29b717d..000000000 Binary files a/files/10_0792_example.mp3 and /dev/null differ diff --git a/files/10_0792_meaning.mp3 b/files/10_0792_meaning.mp3 deleted file mode 100644 index ea54b74b0..000000000 Binary files a/files/10_0792_meaning.mp3 and /dev/null differ diff --git a/files/10_0793.jpg b/files/10_0793.jpg deleted file mode 100644 index 7a752ecca..000000000 Binary files a/files/10_0793.jpg and /dev/null differ diff --git a/files/10_0793.mp3 b/files/10_0793.mp3 deleted file mode 100644 index 285dd8fde..000000000 Binary files a/files/10_0793.mp3 and /dev/null differ diff --git a/files/10_0793_example.mp3 b/files/10_0793_example.mp3 deleted file mode 100644 index 4706e9934..000000000 Binary files a/files/10_0793_example.mp3 and /dev/null differ diff --git a/files/10_0793_meaning.mp3 b/files/10_0793_meaning.mp3 deleted file mode 100644 index a968c7628..000000000 Binary files a/files/10_0793_meaning.mp3 and /dev/null differ diff --git a/files/10_0794.jpg b/files/10_0794.jpg deleted file mode 100644 index f38153b89..000000000 Binary files a/files/10_0794.jpg and /dev/null differ diff --git a/files/10_0794.mp3 b/files/10_0794.mp3 deleted file mode 100644 index c2274b189..000000000 Binary files a/files/10_0794.mp3 and /dev/null differ diff --git a/files/10_0794_example.mp3 b/files/10_0794_example.mp3 deleted file mode 100644 index 845d0f168..000000000 Binary files a/files/10_0794_example.mp3 and /dev/null differ diff --git a/files/10_0794_meaning.mp3 b/files/10_0794_meaning.mp3 deleted file mode 100644 index 60063d63c..000000000 Binary files a/files/10_0794_meaning.mp3 and /dev/null differ diff --git a/files/10_0795.jpg b/files/10_0795.jpg deleted file mode 100644 index 253d5a883..000000000 Binary files a/files/10_0795.jpg and /dev/null differ diff --git a/files/10_0795.mp3 b/files/10_0795.mp3 deleted file mode 100644 index 29b4080b1..000000000 Binary files a/files/10_0795.mp3 and /dev/null differ diff --git a/files/10_0795_example.mp3 b/files/10_0795_example.mp3 deleted file mode 100644 index f0b80ba0a..000000000 Binary files a/files/10_0795_example.mp3 and /dev/null differ diff --git a/files/10_0795_meaning.mp3 b/files/10_0795_meaning.mp3 deleted file mode 100644 index 7408e3a54..000000000 Binary files a/files/10_0795_meaning.mp3 and /dev/null differ diff --git a/files/10_0796.jpg b/files/10_0796.jpg deleted file mode 100644 index a1fcfb6fd..000000000 Binary files a/files/10_0796.jpg and /dev/null differ diff --git a/files/10_0796.mp3 b/files/10_0796.mp3 deleted file mode 100644 index a152ce8c7..000000000 Binary files a/files/10_0796.mp3 and /dev/null differ diff --git a/files/10_0796_example.mp3 b/files/10_0796_example.mp3 deleted file mode 100644 index f9f072693..000000000 Binary files a/files/10_0796_example.mp3 and /dev/null differ diff --git a/files/10_0796_meaning.mp3 b/files/10_0796_meaning.mp3 deleted file mode 100644 index 08f9da6f9..000000000 Binary files a/files/10_0796_meaning.mp3 and /dev/null differ diff --git a/files/10_0797.jpg b/files/10_0797.jpg deleted file mode 100644 index 5111bb824..000000000 Binary files a/files/10_0797.jpg and /dev/null differ diff --git a/files/10_0797.mp3 b/files/10_0797.mp3 deleted file mode 100644 index 4f2cb60b6..000000000 Binary files a/files/10_0797.mp3 and /dev/null differ diff --git a/files/10_0797_example.mp3 b/files/10_0797_example.mp3 deleted file mode 100644 index 5a7c8d412..000000000 Binary files a/files/10_0797_example.mp3 and /dev/null differ diff --git a/files/10_0797_meaning.mp3 b/files/10_0797_meaning.mp3 deleted file mode 100644 index 9a94600ac..000000000 Binary files a/files/10_0797_meaning.mp3 and /dev/null differ diff --git a/files/10_0798.jpg b/files/10_0798.jpg deleted file mode 100644 index dac04d4c7..000000000 Binary files a/files/10_0798.jpg and /dev/null differ diff --git a/files/10_0798.mp3 b/files/10_0798.mp3 deleted file mode 100644 index 0385ba0b1..000000000 Binary files a/files/10_0798.mp3 and /dev/null differ diff --git a/files/10_0798_example.mp3 b/files/10_0798_example.mp3 deleted file mode 100644 index 68b57aa52..000000000 Binary files a/files/10_0798_example.mp3 and /dev/null differ diff --git a/files/10_0798_meaning.mp3 b/files/10_0798_meaning.mp3 deleted file mode 100644 index 6668a752e..000000000 Binary files a/files/10_0798_meaning.mp3 and /dev/null differ diff --git a/files/10_0799.jpg b/files/10_0799.jpg deleted file mode 100644 index 427b94e3b..000000000 Binary files a/files/10_0799.jpg and /dev/null differ diff --git a/files/10_0799.mp3 b/files/10_0799.mp3 deleted file mode 100644 index a476c0d09..000000000 Binary files a/files/10_0799.mp3 and /dev/null differ diff --git a/files/10_0799_example.mp3 b/files/10_0799_example.mp3 deleted file mode 100644 index 23e8f09e2..000000000 Binary files a/files/10_0799_example.mp3 and /dev/null differ diff --git a/files/10_0799_meaning.mp3 b/files/10_0799_meaning.mp3 deleted file mode 100644 index 90513ac42..000000000 Binary files a/files/10_0799_meaning.mp3 and /dev/null differ diff --git a/files/10_0800.jpg b/files/10_0800.jpg deleted file mode 100644 index 4345b7a76..000000000 Binary files a/files/10_0800.jpg and /dev/null differ diff --git a/files/10_0800.mp3 b/files/10_0800.mp3 deleted file mode 100644 index 2b5449640..000000000 Binary files a/files/10_0800.mp3 and /dev/null differ diff --git a/files/10_0800_example.mp3 b/files/10_0800_example.mp3 deleted file mode 100644 index b82f5ae7f..000000000 Binary files a/files/10_0800_example.mp3 and /dev/null differ diff --git a/files/10_0800_meaning.mp3 b/files/10_0800_meaning.mp3 deleted file mode 100644 index 80e1e989a..000000000 Binary files a/files/10_0800_meaning.mp3 and /dev/null differ diff --git a/files/10_1381.jpg b/files/10_1381.jpg deleted file mode 100644 index df5c83c8c..000000000 Binary files a/files/10_1381.jpg and /dev/null differ diff --git a/files/10_1381.mp3 b/files/10_1381.mp3 deleted file mode 100644 index 5305ad50a..000000000 Binary files a/files/10_1381.mp3 and /dev/null differ diff --git a/files/10_1381_example.mp3 b/files/10_1381_example.mp3 deleted file mode 100644 index d83c002d3..000000000 Binary files a/files/10_1381_example.mp3 and /dev/null differ diff --git a/files/10_1381_meaning.mp3 b/files/10_1381_meaning.mp3 deleted file mode 100644 index 9b55ccd77..000000000 Binary files a/files/10_1381_meaning.mp3 and /dev/null differ diff --git a/files/10_1382.jpg b/files/10_1382.jpg deleted file mode 100644 index 954430333..000000000 Binary files a/files/10_1382.jpg and /dev/null differ diff --git a/files/10_1382.mp3 b/files/10_1382.mp3 deleted file mode 100644 index cc1b90594..000000000 Binary files a/files/10_1382.mp3 and /dev/null differ diff --git a/files/10_1382_example.mp3 b/files/10_1382_example.mp3 deleted file mode 100644 index d828c7079..000000000 Binary files a/files/10_1382_example.mp3 and /dev/null differ diff --git a/files/10_1382_meaning.mp3 b/files/10_1382_meaning.mp3 deleted file mode 100644 index 871ca8c91..000000000 Binary files a/files/10_1382_meaning.mp3 and /dev/null differ diff --git a/files/10_1383.jpg b/files/10_1383.jpg deleted file mode 100644 index 65c4c85b0..000000000 Binary files a/files/10_1383.jpg and /dev/null differ diff --git a/files/10_1383.mp3 b/files/10_1383.mp3 deleted file mode 100644 index 6c0459847..000000000 Binary files a/files/10_1383.mp3 and /dev/null differ diff --git a/files/10_1383_example.mp3 b/files/10_1383_example.mp3 deleted file mode 100644 index 47db49392..000000000 Binary files a/files/10_1383_example.mp3 and /dev/null differ diff --git a/files/10_1383_meaning.mp3 b/files/10_1383_meaning.mp3 deleted file mode 100644 index f3444b7ac..000000000 Binary files a/files/10_1383_meaning.mp3 and /dev/null differ diff --git a/files/10_1384.jpg b/files/10_1384.jpg deleted file mode 100644 index ebd13e15c..000000000 Binary files a/files/10_1384.jpg and /dev/null differ diff --git a/files/10_1384.mp3 b/files/10_1384.mp3 deleted file mode 100644 index bea05edc8..000000000 Binary files a/files/10_1384.mp3 and /dev/null differ diff --git a/files/10_1384_example.mp3 b/files/10_1384_example.mp3 deleted file mode 100644 index 6e6d16bf2..000000000 Binary files a/files/10_1384_example.mp3 and /dev/null differ diff --git a/files/10_1384_meaning.mp3 b/files/10_1384_meaning.mp3 deleted file mode 100644 index 117ea84a8..000000000 Binary files a/files/10_1384_meaning.mp3 and /dev/null differ diff --git a/files/10_1385.jpg b/files/10_1385.jpg deleted file mode 100644 index 05ca2c906..000000000 Binary files a/files/10_1385.jpg and /dev/null differ diff --git a/files/10_1385.mp3 b/files/10_1385.mp3 deleted file mode 100644 index 1362c66aa..000000000 Binary files a/files/10_1385.mp3 and /dev/null differ diff --git a/files/10_1385_example.mp3 b/files/10_1385_example.mp3 deleted file mode 100644 index 3d6c4a61d..000000000 Binary files a/files/10_1385_example.mp3 and /dev/null differ diff --git a/files/10_1385_meaning.mp3 b/files/10_1385_meaning.mp3 deleted file mode 100644 index 4be86bba5..000000000 Binary files a/files/10_1385_meaning.mp3 and /dev/null differ diff --git a/files/10_1386.jpg b/files/10_1386.jpg deleted file mode 100644 index d8a8a09d2..000000000 Binary files a/files/10_1386.jpg and /dev/null differ diff --git a/files/10_1386.mp3 b/files/10_1386.mp3 deleted file mode 100644 index 1ab187f2d..000000000 Binary files a/files/10_1386.mp3 and /dev/null differ diff --git a/files/10_1386_example.mp3 b/files/10_1386_example.mp3 deleted file mode 100644 index f29e27742..000000000 Binary files a/files/10_1386_example.mp3 and /dev/null differ diff --git a/files/10_1386_meaning.mp3 b/files/10_1386_meaning.mp3 deleted file mode 100644 index b3aaed1bf..000000000 Binary files a/files/10_1386_meaning.mp3 and /dev/null differ diff --git a/files/10_1387.jpg b/files/10_1387.jpg deleted file mode 100644 index 6ce76ac1b..000000000 Binary files a/files/10_1387.jpg and /dev/null differ diff --git a/files/10_1387.mp3 b/files/10_1387.mp3 deleted file mode 100644 index cb12a9698..000000000 Binary files a/files/10_1387.mp3 and /dev/null differ diff --git a/files/10_1387_example.mp3 b/files/10_1387_example.mp3 deleted file mode 100644 index fecac2904..000000000 Binary files a/files/10_1387_example.mp3 and /dev/null differ diff --git a/files/10_1387_meaning.mp3 b/files/10_1387_meaning.mp3 deleted file mode 100644 index 12a15b1f8..000000000 Binary files a/files/10_1387_meaning.mp3 and /dev/null differ diff --git a/files/10_1388.jpg b/files/10_1388.jpg deleted file mode 100644 index 09dcb2af0..000000000 Binary files a/files/10_1388.jpg and /dev/null differ diff --git a/files/10_1388.mp3 b/files/10_1388.mp3 deleted file mode 100644 index 077b792d1..000000000 Binary files a/files/10_1388.mp3 and /dev/null differ diff --git a/files/10_1388_example.mp3 b/files/10_1388_example.mp3 deleted file mode 100644 index 5f7393d56..000000000 Binary files a/files/10_1388_example.mp3 and /dev/null differ diff --git a/files/10_1388_meaning.mp3 b/files/10_1388_meaning.mp3 deleted file mode 100644 index 729693ae9..000000000 Binary files a/files/10_1388_meaning.mp3 and /dev/null differ diff --git a/files/10_1389.jpg b/files/10_1389.jpg deleted file mode 100644 index 8f91b395f..000000000 Binary files a/files/10_1389.jpg and /dev/null differ diff --git a/files/10_1389.mp3 b/files/10_1389.mp3 deleted file mode 100644 index 2229226c5..000000000 Binary files a/files/10_1389.mp3 and /dev/null differ diff --git a/files/10_1389_example.mp3 b/files/10_1389_example.mp3 deleted file mode 100644 index daf00136c..000000000 Binary files a/files/10_1389_example.mp3 and /dev/null differ diff --git a/files/10_1389_meaning.mp3 b/files/10_1389_meaning.mp3 deleted file mode 100644 index 9fee73469..000000000 Binary files a/files/10_1389_meaning.mp3 and /dev/null differ diff --git a/files/10_1390.jpg b/files/10_1390.jpg deleted file mode 100644 index dedaf4a28..000000000 Binary files a/files/10_1390.jpg and /dev/null differ diff --git a/files/10_1390.mp3 b/files/10_1390.mp3 deleted file mode 100644 index 4456bb9a1..000000000 Binary files a/files/10_1390.mp3 and /dev/null differ diff --git a/files/10_1390_example.mp3 b/files/10_1390_example.mp3 deleted file mode 100644 index 01f272344..000000000 Binary files a/files/10_1390_example.mp3 and /dev/null differ diff --git a/files/10_1390_meaning.mp3 b/files/10_1390_meaning.mp3 deleted file mode 100644 index f6fe3a6c6..000000000 Binary files a/files/10_1390_meaning.mp3 and /dev/null differ diff --git a/files/10_1391.jpg b/files/10_1391.jpg deleted file mode 100644 index 58d3b9029..000000000 Binary files a/files/10_1391.jpg and /dev/null differ diff --git a/files/10_1391.mp3 b/files/10_1391.mp3 deleted file mode 100644 index b877151ea..000000000 Binary files a/files/10_1391.mp3 and /dev/null differ diff --git a/files/10_1391_example.mp3 b/files/10_1391_example.mp3 deleted file mode 100644 index 3fcf72cfc..000000000 Binary files a/files/10_1391_example.mp3 and /dev/null differ diff --git a/files/10_1391_meaning.mp3 b/files/10_1391_meaning.mp3 deleted file mode 100644 index 706be0dd0..000000000 Binary files a/files/10_1391_meaning.mp3 and /dev/null differ diff --git a/files/10_1392.jpg b/files/10_1392.jpg deleted file mode 100644 index bfd4015b0..000000000 Binary files a/files/10_1392.jpg and /dev/null differ diff --git a/files/10_1392.mp3 b/files/10_1392.mp3 deleted file mode 100644 index 5187c5385..000000000 Binary files a/files/10_1392.mp3 and /dev/null differ diff --git a/files/10_1392_example.mp3 b/files/10_1392_example.mp3 deleted file mode 100644 index 24aef9bda..000000000 Binary files a/files/10_1392_example.mp3 and /dev/null differ diff --git a/files/10_1392_meaning.mp3 b/files/10_1392_meaning.mp3 deleted file mode 100644 index 55f5b0da8..000000000 Binary files a/files/10_1392_meaning.mp3 and /dev/null differ diff --git a/files/10_1393.jpg b/files/10_1393.jpg deleted file mode 100644 index c1dd50512..000000000 Binary files a/files/10_1393.jpg and /dev/null differ diff --git a/files/10_1393.mp3 b/files/10_1393.mp3 deleted file mode 100644 index fc5cdef0b..000000000 Binary files a/files/10_1393.mp3 and /dev/null differ diff --git a/files/10_1393_example.mp3 b/files/10_1393_example.mp3 deleted file mode 100644 index 1b2a14c56..000000000 Binary files a/files/10_1393_example.mp3 and /dev/null differ diff --git a/files/10_1393_meaning.mp3 b/files/10_1393_meaning.mp3 deleted file mode 100644 index 6fd817d5e..000000000 Binary files a/files/10_1393_meaning.mp3 and /dev/null differ diff --git a/files/10_1394.jpg b/files/10_1394.jpg deleted file mode 100644 index e9c47b024..000000000 Binary files a/files/10_1394.jpg and /dev/null differ diff --git a/files/10_1394.mp3 b/files/10_1394.mp3 deleted file mode 100644 index fba166283..000000000 Binary files a/files/10_1394.mp3 and /dev/null differ diff --git a/files/10_1394_example.mp3 b/files/10_1394_example.mp3 deleted file mode 100644 index 59ac18c9c..000000000 Binary files a/files/10_1394_example.mp3 and /dev/null differ diff --git a/files/10_1394_meaning.mp3 b/files/10_1394_meaning.mp3 deleted file mode 100644 index 79888392d..000000000 Binary files a/files/10_1394_meaning.mp3 and /dev/null differ diff --git a/files/10_1395.jpg b/files/10_1395.jpg deleted file mode 100644 index fffc1e96d..000000000 Binary files a/files/10_1395.jpg and /dev/null differ diff --git a/files/10_1395.mp3 b/files/10_1395.mp3 deleted file mode 100644 index 8b557972c..000000000 Binary files a/files/10_1395.mp3 and /dev/null differ diff --git a/files/10_1395_example.mp3 b/files/10_1395_example.mp3 deleted file mode 100644 index 7bed92eec..000000000 Binary files a/files/10_1395_example.mp3 and /dev/null differ diff --git a/files/10_1395_meaning.mp3 b/files/10_1395_meaning.mp3 deleted file mode 100644 index ef4ff3f35..000000000 Binary files a/files/10_1395_meaning.mp3 and /dev/null differ diff --git a/files/10_1396.jpg b/files/10_1396.jpg deleted file mode 100644 index 8c4921964..000000000 Binary files a/files/10_1396.jpg and /dev/null differ diff --git a/files/10_1396.mp3 b/files/10_1396.mp3 deleted file mode 100644 index 28f4b67ac..000000000 Binary files a/files/10_1396.mp3 and /dev/null differ diff --git a/files/10_1396_example.mp3 b/files/10_1396_example.mp3 deleted file mode 100644 index 05dd4ad20..000000000 Binary files a/files/10_1396_example.mp3 and /dev/null differ diff --git a/files/10_1396_meaning.mp3 b/files/10_1396_meaning.mp3 deleted file mode 100644 index 3f3edc714..000000000 Binary files a/files/10_1396_meaning.mp3 and /dev/null differ diff --git a/files/10_1397.jpg b/files/10_1397.jpg deleted file mode 100644 index d657146e7..000000000 Binary files a/files/10_1397.jpg and /dev/null differ diff --git a/files/10_1397.mp3 b/files/10_1397.mp3 deleted file mode 100644 index bc4fcc6a1..000000000 Binary files a/files/10_1397.mp3 and /dev/null differ diff --git a/files/10_1397_example.mp3 b/files/10_1397_example.mp3 deleted file mode 100644 index da9319c7d..000000000 Binary files a/files/10_1397_example.mp3 and /dev/null differ diff --git a/files/10_1397_meaning.mp3 b/files/10_1397_meaning.mp3 deleted file mode 100644 index 181544ff7..000000000 Binary files a/files/10_1397_meaning.mp3 and /dev/null differ diff --git a/files/10_1398.jpg b/files/10_1398.jpg deleted file mode 100644 index 086596691..000000000 Binary files a/files/10_1398.jpg and /dev/null differ diff --git a/files/10_1398.mp3 b/files/10_1398.mp3 deleted file mode 100644 index 73dc53525..000000000 Binary files a/files/10_1398.mp3 and /dev/null differ diff --git a/files/10_1398_example.mp3 b/files/10_1398_example.mp3 deleted file mode 100644 index b93626e22..000000000 Binary files a/files/10_1398_example.mp3 and /dev/null differ diff --git a/files/10_1398_meaning.mp3 b/files/10_1398_meaning.mp3 deleted file mode 100644 index 30e384457..000000000 Binary files a/files/10_1398_meaning.mp3 and /dev/null differ diff --git a/files/10_1399.jpg b/files/10_1399.jpg deleted file mode 100644 index 1cfd4d9ad..000000000 Binary files a/files/10_1399.jpg and /dev/null differ diff --git a/files/10_1399.mp3 b/files/10_1399.mp3 deleted file mode 100644 index 98cc97bfe..000000000 Binary files a/files/10_1399.mp3 and /dev/null differ diff --git a/files/10_1399_example.mp3 b/files/10_1399_example.mp3 deleted file mode 100644 index 736c6d145..000000000 Binary files a/files/10_1399_example.mp3 and /dev/null differ diff --git a/files/10_1399_meaning.mp3 b/files/10_1399_meaning.mp3 deleted file mode 100644 index 25d5b8e3c..000000000 Binary files a/files/10_1399_meaning.mp3 and /dev/null differ diff --git a/files/10_1400.jpg b/files/10_1400.jpg deleted file mode 100644 index 7f7f40b0f..000000000 Binary files a/files/10_1400.jpg and /dev/null differ diff --git a/files/10_1400.mp3 b/files/10_1400.mp3 deleted file mode 100644 index d64de1a86..000000000 Binary files a/files/10_1400.mp3 and /dev/null differ diff --git a/files/10_1400_example.mp3 b/files/10_1400_example.mp3 deleted file mode 100644 index f7256e7fe..000000000 Binary files a/files/10_1400_example.mp3 and /dev/null differ diff --git a/files/10_1400_meaning.mp3 b/files/10_1400_meaning.mp3 deleted file mode 100644 index 5f0577aa5..000000000 Binary files a/files/10_1400_meaning.mp3 and /dev/null differ diff --git a/files/10_1981.jpg b/files/10_1981.jpg deleted file mode 100644 index e17d9d114..000000000 Binary files a/files/10_1981.jpg and /dev/null differ diff --git a/files/10_1981.mp3 b/files/10_1981.mp3 deleted file mode 100644 index 931623ffd..000000000 Binary files a/files/10_1981.mp3 and /dev/null differ diff --git a/files/10_1981_example.mp3 b/files/10_1981_example.mp3 deleted file mode 100644 index 78ec9cd24..000000000 Binary files a/files/10_1981_example.mp3 and /dev/null differ diff --git a/files/10_1981_meaning.mp3 b/files/10_1981_meaning.mp3 deleted file mode 100644 index 6e386f735..000000000 Binary files a/files/10_1981_meaning.mp3 and /dev/null differ diff --git a/files/10_1982.jpg b/files/10_1982.jpg deleted file mode 100644 index 0c11b2c1b..000000000 Binary files a/files/10_1982.jpg and /dev/null differ diff --git a/files/10_1982.mp3 b/files/10_1982.mp3 deleted file mode 100644 index dc7f03fb7..000000000 Binary files a/files/10_1982.mp3 and /dev/null differ diff --git a/files/10_1982_example.mp3 b/files/10_1982_example.mp3 deleted file mode 100644 index 0793cac2e..000000000 Binary files a/files/10_1982_example.mp3 and /dev/null differ diff --git a/files/10_1982_meaning.mp3 b/files/10_1982_meaning.mp3 deleted file mode 100644 index 656ef378a..000000000 Binary files a/files/10_1982_meaning.mp3 and /dev/null differ diff --git a/files/10_1983.jpg b/files/10_1983.jpg deleted file mode 100644 index 6a09c4f8f..000000000 Binary files a/files/10_1983.jpg and /dev/null differ diff --git a/files/10_1983.mp3 b/files/10_1983.mp3 deleted file mode 100644 index 98ec764d8..000000000 Binary files a/files/10_1983.mp3 and /dev/null differ diff --git a/files/10_1983_example.mp3 b/files/10_1983_example.mp3 deleted file mode 100644 index ee16eeb52..000000000 Binary files a/files/10_1983_example.mp3 and /dev/null differ diff --git a/files/10_1983_meaning.mp3 b/files/10_1983_meaning.mp3 deleted file mode 100644 index 5c0fc8aeb..000000000 Binary files a/files/10_1983_meaning.mp3 and /dev/null differ diff --git a/files/10_1984.jpg b/files/10_1984.jpg deleted file mode 100644 index 8d6c57dcf..000000000 Binary files a/files/10_1984.jpg and /dev/null differ diff --git a/files/10_1984.mp3 b/files/10_1984.mp3 deleted file mode 100644 index b28a80639..000000000 Binary files a/files/10_1984.mp3 and /dev/null differ diff --git a/files/10_1984_example.mp3 b/files/10_1984_example.mp3 deleted file mode 100644 index 3ba98cf80..000000000 Binary files a/files/10_1984_example.mp3 and /dev/null differ diff --git a/files/10_1984_meaning.mp3 b/files/10_1984_meaning.mp3 deleted file mode 100644 index 5c8388c8c..000000000 Binary files a/files/10_1984_meaning.mp3 and /dev/null differ diff --git a/files/10_1985.jpg b/files/10_1985.jpg deleted file mode 100644 index 4c866275a..000000000 Binary files a/files/10_1985.jpg and /dev/null differ diff --git a/files/10_1985.mp3 b/files/10_1985.mp3 deleted file mode 100644 index 898da006b..000000000 Binary files a/files/10_1985.mp3 and /dev/null differ diff --git a/files/10_1985_example.mp3 b/files/10_1985_example.mp3 deleted file mode 100644 index aa3285fb7..000000000 Binary files a/files/10_1985_example.mp3 and /dev/null differ diff --git a/files/10_1985_meaning.mp3 b/files/10_1985_meaning.mp3 deleted file mode 100644 index 592116958..000000000 Binary files a/files/10_1985_meaning.mp3 and /dev/null differ diff --git a/files/10_1986.jpg b/files/10_1986.jpg deleted file mode 100644 index e29cfbc4d..000000000 Binary files a/files/10_1986.jpg and /dev/null differ diff --git a/files/10_1986.mp3 b/files/10_1986.mp3 deleted file mode 100644 index d99ed9f31..000000000 Binary files a/files/10_1986.mp3 and /dev/null differ diff --git a/files/10_1986_example.mp3 b/files/10_1986_example.mp3 deleted file mode 100644 index 28faaf6c3..000000000 Binary files a/files/10_1986_example.mp3 and /dev/null differ diff --git a/files/10_1986_meaning.mp3 b/files/10_1986_meaning.mp3 deleted file mode 100644 index 6e45f8da6..000000000 Binary files a/files/10_1986_meaning.mp3 and /dev/null differ diff --git a/files/10_1987.jpg b/files/10_1987.jpg deleted file mode 100644 index 280315f59..000000000 Binary files a/files/10_1987.jpg and /dev/null differ diff --git a/files/10_1987.mp3 b/files/10_1987.mp3 deleted file mode 100644 index f0c85634b..000000000 Binary files a/files/10_1987.mp3 and /dev/null differ diff --git a/files/10_1987_example.mp3 b/files/10_1987_example.mp3 deleted file mode 100644 index aa924d154..000000000 Binary files a/files/10_1987_example.mp3 and /dev/null differ diff --git a/files/10_1987_meaning.mp3 b/files/10_1987_meaning.mp3 deleted file mode 100644 index ab1159e6b..000000000 Binary files a/files/10_1987_meaning.mp3 and /dev/null differ diff --git a/files/10_1988.jpg b/files/10_1988.jpg deleted file mode 100644 index 3d1f5c5d9..000000000 Binary files a/files/10_1988.jpg and /dev/null differ diff --git a/files/10_1988.mp3 b/files/10_1988.mp3 deleted file mode 100644 index 109b500ab..000000000 Binary files a/files/10_1988.mp3 and /dev/null differ diff --git a/files/10_1988_example.mp3 b/files/10_1988_example.mp3 deleted file mode 100644 index abba672ea..000000000 Binary files a/files/10_1988_example.mp3 and /dev/null differ diff --git a/files/10_1988_meaning.mp3 b/files/10_1988_meaning.mp3 deleted file mode 100644 index bdb837f44..000000000 Binary files a/files/10_1988_meaning.mp3 and /dev/null differ diff --git a/files/10_1989.jpg b/files/10_1989.jpg deleted file mode 100644 index 4fbd820da..000000000 Binary files a/files/10_1989.jpg and /dev/null differ diff --git a/files/10_1989.mp3 b/files/10_1989.mp3 deleted file mode 100644 index b36c0430c..000000000 Binary files a/files/10_1989.mp3 and /dev/null differ diff --git a/files/10_1989_example.mp3 b/files/10_1989_example.mp3 deleted file mode 100644 index 26ae012eb..000000000 Binary files a/files/10_1989_example.mp3 and /dev/null differ diff --git a/files/10_1989_meaning.mp3 b/files/10_1989_meaning.mp3 deleted file mode 100644 index b8d7d3bb2..000000000 Binary files a/files/10_1989_meaning.mp3 and /dev/null differ diff --git a/files/10_1990.jpg b/files/10_1990.jpg deleted file mode 100644 index f2670e202..000000000 Binary files a/files/10_1990.jpg and /dev/null differ diff --git a/files/10_1990.mp3 b/files/10_1990.mp3 deleted file mode 100644 index fc3437ede..000000000 Binary files a/files/10_1990.mp3 and /dev/null differ diff --git a/files/10_1990_example.mp3 b/files/10_1990_example.mp3 deleted file mode 100644 index 112f4b037..000000000 Binary files a/files/10_1990_example.mp3 and /dev/null differ diff --git a/files/10_1990_meaning.mp3 b/files/10_1990_meaning.mp3 deleted file mode 100644 index 7e866120e..000000000 Binary files a/files/10_1990_meaning.mp3 and /dev/null differ diff --git a/files/10_1991.jpg b/files/10_1991.jpg deleted file mode 100644 index f652a3ddf..000000000 Binary files a/files/10_1991.jpg and /dev/null differ diff --git a/files/10_1991.mp3 b/files/10_1991.mp3 deleted file mode 100644 index 04d055a64..000000000 Binary files a/files/10_1991.mp3 and /dev/null differ diff --git a/files/10_1991_example.mp3 b/files/10_1991_example.mp3 deleted file mode 100644 index 8cb3a90aa..000000000 Binary files a/files/10_1991_example.mp3 and /dev/null differ diff --git a/files/10_1991_meaning.mp3 b/files/10_1991_meaning.mp3 deleted file mode 100644 index 5453d96ee..000000000 Binary files a/files/10_1991_meaning.mp3 and /dev/null differ diff --git a/files/10_1992.jpg b/files/10_1992.jpg deleted file mode 100644 index 0beae50d7..000000000 Binary files a/files/10_1992.jpg and /dev/null differ diff --git a/files/10_1992.mp3 b/files/10_1992.mp3 deleted file mode 100644 index 9f509d126..000000000 Binary files a/files/10_1992.mp3 and /dev/null differ diff --git a/files/10_1992_example.mp3 b/files/10_1992_example.mp3 deleted file mode 100644 index f0666fdd8..000000000 Binary files a/files/10_1992_example.mp3 and /dev/null differ diff --git a/files/10_1992_meaning.mp3 b/files/10_1992_meaning.mp3 deleted file mode 100644 index 11a17ac4c..000000000 Binary files a/files/10_1992_meaning.mp3 and /dev/null differ diff --git a/files/10_1993.jpg b/files/10_1993.jpg deleted file mode 100644 index af1d46ae8..000000000 Binary files a/files/10_1993.jpg and /dev/null differ diff --git a/files/10_1993.mp3 b/files/10_1993.mp3 deleted file mode 100644 index 7b4a5b550..000000000 Binary files a/files/10_1993.mp3 and /dev/null differ diff --git a/files/10_1993_example.mp3 b/files/10_1993_example.mp3 deleted file mode 100644 index b4a22c45c..000000000 Binary files a/files/10_1993_example.mp3 and /dev/null differ diff --git a/files/10_1993_meaning.mp3 b/files/10_1993_meaning.mp3 deleted file mode 100644 index 4b38a4929..000000000 Binary files a/files/10_1993_meaning.mp3 and /dev/null differ diff --git a/files/10_1994.jpg b/files/10_1994.jpg deleted file mode 100644 index 739c51985..000000000 Binary files a/files/10_1994.jpg and /dev/null differ diff --git a/files/10_1994.mp3 b/files/10_1994.mp3 deleted file mode 100644 index 00606ddcd..000000000 Binary files a/files/10_1994.mp3 and /dev/null differ diff --git a/files/10_1994_example.mp3 b/files/10_1994_example.mp3 deleted file mode 100644 index 24743a744..000000000 Binary files a/files/10_1994_example.mp3 and /dev/null differ diff --git a/files/10_1994_meaning.mp3 b/files/10_1994_meaning.mp3 deleted file mode 100644 index 7d8a4fa3e..000000000 Binary files a/files/10_1994_meaning.mp3 and /dev/null differ diff --git a/files/10_1995.jpg b/files/10_1995.jpg deleted file mode 100644 index a8b61390f..000000000 Binary files a/files/10_1995.jpg and /dev/null differ diff --git a/files/10_1995.mp3 b/files/10_1995.mp3 deleted file mode 100644 index 8682caa23..000000000 Binary files a/files/10_1995.mp3 and /dev/null differ diff --git a/files/10_1995_example.mp3 b/files/10_1995_example.mp3 deleted file mode 100644 index 658ece423..000000000 Binary files a/files/10_1995_example.mp3 and /dev/null differ diff --git a/files/10_1995_meaning.mp3 b/files/10_1995_meaning.mp3 deleted file mode 100644 index 83d453f1e..000000000 Binary files a/files/10_1995_meaning.mp3 and /dev/null differ diff --git a/files/10_1996.jpg b/files/10_1996.jpg deleted file mode 100644 index c4d53b7fc..000000000 Binary files a/files/10_1996.jpg and /dev/null differ diff --git a/files/10_1996.mp3 b/files/10_1996.mp3 deleted file mode 100644 index 6d8d8f01e..000000000 Binary files a/files/10_1996.mp3 and /dev/null differ diff --git a/files/10_1996_example.mp3 b/files/10_1996_example.mp3 deleted file mode 100644 index 84a356b60..000000000 Binary files a/files/10_1996_example.mp3 and /dev/null differ diff --git a/files/10_1996_meaning.mp3 b/files/10_1996_meaning.mp3 deleted file mode 100644 index 69902c3e3..000000000 Binary files a/files/10_1996_meaning.mp3 and /dev/null differ diff --git a/files/10_1997.jpg b/files/10_1997.jpg deleted file mode 100644 index 58cd5006f..000000000 Binary files a/files/10_1997.jpg and /dev/null differ diff --git a/files/10_1997.mp3 b/files/10_1997.mp3 deleted file mode 100644 index 986db1cf2..000000000 Binary files a/files/10_1997.mp3 and /dev/null differ diff --git a/files/10_1997_example.mp3 b/files/10_1997_example.mp3 deleted file mode 100644 index 158cfb91c..000000000 Binary files a/files/10_1997_example.mp3 and /dev/null differ diff --git a/files/10_1997_meaning.mp3 b/files/10_1997_meaning.mp3 deleted file mode 100644 index c622c26d0..000000000 Binary files a/files/10_1997_meaning.mp3 and /dev/null differ diff --git a/files/10_1998.jpg b/files/10_1998.jpg deleted file mode 100644 index 74b2024e7..000000000 Binary files a/files/10_1998.jpg and /dev/null differ diff --git a/files/10_1998.mp3 b/files/10_1998.mp3 deleted file mode 100644 index f743e8202..000000000 Binary files a/files/10_1998.mp3 and /dev/null differ diff --git a/files/10_1998_example.mp3 b/files/10_1998_example.mp3 deleted file mode 100644 index 35ac1b78b..000000000 Binary files a/files/10_1998_example.mp3 and /dev/null differ diff --git a/files/10_1998_meaning.mp3 b/files/10_1998_meaning.mp3 deleted file mode 100644 index 87fa6fc57..000000000 Binary files a/files/10_1998_meaning.mp3 and /dev/null differ diff --git a/files/10_1999.jpg b/files/10_1999.jpg deleted file mode 100644 index e1697cbf5..000000000 Binary files a/files/10_1999.jpg and /dev/null differ diff --git a/files/10_1999.mp3 b/files/10_1999.mp3 deleted file mode 100644 index 5e2cd96fe..000000000 Binary files a/files/10_1999.mp3 and /dev/null differ diff --git a/files/10_1999_example.mp3 b/files/10_1999_example.mp3 deleted file mode 100644 index ab15e99c1..000000000 Binary files a/files/10_1999_example.mp3 and /dev/null differ diff --git a/files/10_1999_meaning.mp3 b/files/10_1999_meaning.mp3 deleted file mode 100644 index 17f7639ec..000000000 Binary files a/files/10_1999_meaning.mp3 and /dev/null differ diff --git a/files/10_2000.jpg b/files/10_2000.jpg deleted file mode 100644 index 7b34ec408..000000000 Binary files a/files/10_2000.jpg and /dev/null differ diff --git a/files/10_2000.mp3 b/files/10_2000.mp3 deleted file mode 100644 index eb22ac987..000000000 Binary files a/files/10_2000.mp3 and /dev/null differ diff --git a/files/10_2000_example.mp3 b/files/10_2000_example.mp3 deleted file mode 100644 index 259b4ec05..000000000 Binary files a/files/10_2000_example.mp3 and /dev/null differ diff --git a/files/10_2000_meaning.mp3 b/files/10_2000_meaning.mp3 deleted file mode 100644 index aa6bc57bc..000000000 Binary files a/files/10_2000_meaning.mp3 and /dev/null differ diff --git a/files/10_2581.jpg b/files/10_2581.jpg deleted file mode 100644 index 7f894d1f6..000000000 Binary files a/files/10_2581.jpg and /dev/null differ diff --git a/files/10_2581.mp3 b/files/10_2581.mp3 deleted file mode 100644 index 2e4dea154..000000000 Binary files a/files/10_2581.mp3 and /dev/null differ diff --git a/files/10_2581_example.mp3 b/files/10_2581_example.mp3 deleted file mode 100644 index 562527b64..000000000 Binary files a/files/10_2581_example.mp3 and /dev/null differ diff --git a/files/10_2581_meaning.mp3 b/files/10_2581_meaning.mp3 deleted file mode 100644 index 964f6682d..000000000 Binary files a/files/10_2581_meaning.mp3 and /dev/null differ diff --git a/files/10_2582.jpg b/files/10_2582.jpg deleted file mode 100644 index 0d2902ae6..000000000 Binary files a/files/10_2582.jpg and /dev/null differ diff --git a/files/10_2582.mp3 b/files/10_2582.mp3 deleted file mode 100644 index 7c0420ccd..000000000 Binary files a/files/10_2582.mp3 and /dev/null differ diff --git a/files/10_2582_example.mp3 b/files/10_2582_example.mp3 deleted file mode 100644 index e44791d2c..000000000 Binary files a/files/10_2582_example.mp3 and /dev/null differ diff --git a/files/10_2582_meaning.mp3 b/files/10_2582_meaning.mp3 deleted file mode 100644 index 0fd037005..000000000 Binary files a/files/10_2582_meaning.mp3 and /dev/null differ diff --git a/files/10_2583.jpg b/files/10_2583.jpg deleted file mode 100644 index 37fbdb7b1..000000000 Binary files a/files/10_2583.jpg and /dev/null differ diff --git a/files/10_2583.mp3 b/files/10_2583.mp3 deleted file mode 100644 index f79f2b282..000000000 Binary files a/files/10_2583.mp3 and /dev/null differ diff --git a/files/10_2583_example.mp3 b/files/10_2583_example.mp3 deleted file mode 100644 index 388965c91..000000000 Binary files a/files/10_2583_example.mp3 and /dev/null differ diff --git a/files/10_2583_meaning.mp3 b/files/10_2583_meaning.mp3 deleted file mode 100644 index 80f45f0e8..000000000 Binary files a/files/10_2583_meaning.mp3 and /dev/null differ diff --git a/files/10_2584.jpg b/files/10_2584.jpg deleted file mode 100644 index 4f84ac14e..000000000 Binary files a/files/10_2584.jpg and /dev/null differ diff --git a/files/10_2584.mp3 b/files/10_2584.mp3 deleted file mode 100644 index 0d15d9158..000000000 Binary files a/files/10_2584.mp3 and /dev/null differ diff --git a/files/10_2584_example.mp3 b/files/10_2584_example.mp3 deleted file mode 100644 index b03c38d27..000000000 Binary files a/files/10_2584_example.mp3 and /dev/null differ diff --git a/files/10_2584_meaning.mp3 b/files/10_2584_meaning.mp3 deleted file mode 100644 index 382c57d08..000000000 Binary files a/files/10_2584_meaning.mp3 and /dev/null differ diff --git a/files/10_2585.jpg b/files/10_2585.jpg deleted file mode 100644 index c970ce28f..000000000 Binary files a/files/10_2585.jpg and /dev/null differ diff --git a/files/10_2585.mp3 b/files/10_2585.mp3 deleted file mode 100644 index a19246aeb..000000000 Binary files a/files/10_2585.mp3 and /dev/null differ diff --git a/files/10_2585_example.mp3 b/files/10_2585_example.mp3 deleted file mode 100644 index e4ca1e96a..000000000 Binary files a/files/10_2585_example.mp3 and /dev/null differ diff --git a/files/10_2585_meaning.mp3 b/files/10_2585_meaning.mp3 deleted file mode 100644 index 8107443fd..000000000 Binary files a/files/10_2585_meaning.mp3 and /dev/null differ diff --git a/files/10_2586.jpg b/files/10_2586.jpg deleted file mode 100644 index d7a3404c5..000000000 Binary files a/files/10_2586.jpg and /dev/null differ diff --git a/files/10_2586.mp3 b/files/10_2586.mp3 deleted file mode 100644 index c4feeff5d..000000000 Binary files a/files/10_2586.mp3 and /dev/null differ diff --git a/files/10_2586_example.mp3 b/files/10_2586_example.mp3 deleted file mode 100644 index dba68ce7e..000000000 Binary files a/files/10_2586_example.mp3 and /dev/null differ diff --git a/files/10_2586_meaning.mp3 b/files/10_2586_meaning.mp3 deleted file mode 100644 index 50be7a7af..000000000 Binary files a/files/10_2586_meaning.mp3 and /dev/null differ diff --git a/files/10_2587.jpg b/files/10_2587.jpg deleted file mode 100644 index 5dfd20fc2..000000000 Binary files a/files/10_2587.jpg and /dev/null differ diff --git a/files/10_2587.mp3 b/files/10_2587.mp3 deleted file mode 100644 index c9a830d5e..000000000 Binary files a/files/10_2587.mp3 and /dev/null differ diff --git a/files/10_2587_example.mp3 b/files/10_2587_example.mp3 deleted file mode 100644 index ecfdc35ad..000000000 Binary files a/files/10_2587_example.mp3 and /dev/null differ diff --git a/files/10_2587_meaning.mp3 b/files/10_2587_meaning.mp3 deleted file mode 100644 index 285c9aaf8..000000000 Binary files a/files/10_2587_meaning.mp3 and /dev/null differ diff --git a/files/10_2588.jpg b/files/10_2588.jpg deleted file mode 100644 index 722727abd..000000000 Binary files a/files/10_2588.jpg and /dev/null differ diff --git a/files/10_2588.mp3 b/files/10_2588.mp3 deleted file mode 100644 index 5e82e425a..000000000 Binary files a/files/10_2588.mp3 and /dev/null differ diff --git a/files/10_2588_example.mp3 b/files/10_2588_example.mp3 deleted file mode 100644 index 6e13ea01c..000000000 Binary files a/files/10_2588_example.mp3 and /dev/null differ diff --git a/files/10_2588_meaning.mp3 b/files/10_2588_meaning.mp3 deleted file mode 100644 index 302ded763..000000000 Binary files a/files/10_2588_meaning.mp3 and /dev/null differ diff --git a/files/10_2589.jpg b/files/10_2589.jpg deleted file mode 100644 index 7bca990d4..000000000 Binary files a/files/10_2589.jpg and /dev/null differ diff --git a/files/10_2589.mp3 b/files/10_2589.mp3 deleted file mode 100644 index f3ff8bf01..000000000 Binary files a/files/10_2589.mp3 and /dev/null differ diff --git a/files/10_2589_example.mp3 b/files/10_2589_example.mp3 deleted file mode 100644 index 0784be93a..000000000 Binary files a/files/10_2589_example.mp3 and /dev/null differ diff --git a/files/10_2589_meaning.mp3 b/files/10_2589_meaning.mp3 deleted file mode 100644 index 1e74f5013..000000000 Binary files a/files/10_2589_meaning.mp3 and /dev/null differ diff --git a/files/10_2590.jpg b/files/10_2590.jpg deleted file mode 100644 index b88205b88..000000000 Binary files a/files/10_2590.jpg and /dev/null differ diff --git a/files/10_2590.mp3 b/files/10_2590.mp3 deleted file mode 100644 index 6f3d6ec29..000000000 Binary files a/files/10_2590.mp3 and /dev/null differ diff --git a/files/10_2590_example.mp3 b/files/10_2590_example.mp3 deleted file mode 100644 index 2ca9d4926..000000000 Binary files a/files/10_2590_example.mp3 and /dev/null differ diff --git a/files/10_2590_meaning.mp3 b/files/10_2590_meaning.mp3 deleted file mode 100644 index e0c5d1309..000000000 Binary files a/files/10_2590_meaning.mp3 and /dev/null differ diff --git a/files/10_2591.jpg b/files/10_2591.jpg deleted file mode 100644 index fa00334c6..000000000 Binary files a/files/10_2591.jpg and /dev/null differ diff --git a/files/10_2591.mp3 b/files/10_2591.mp3 deleted file mode 100644 index e61ebac3d..000000000 Binary files a/files/10_2591.mp3 and /dev/null differ diff --git a/files/10_2591_example.mp3 b/files/10_2591_example.mp3 deleted file mode 100644 index be42d47f6..000000000 Binary files a/files/10_2591_example.mp3 and /dev/null differ diff --git a/files/10_2591_meaning.mp3 b/files/10_2591_meaning.mp3 deleted file mode 100644 index c5e283dbb..000000000 Binary files a/files/10_2591_meaning.mp3 and /dev/null differ diff --git a/files/10_2592.jpg b/files/10_2592.jpg deleted file mode 100644 index 7c323506f..000000000 Binary files a/files/10_2592.jpg and /dev/null differ diff --git a/files/10_2592.mp3 b/files/10_2592.mp3 deleted file mode 100644 index c02dba5e2..000000000 Binary files a/files/10_2592.mp3 and /dev/null differ diff --git a/files/10_2592_example.mp3 b/files/10_2592_example.mp3 deleted file mode 100644 index e8bd12748..000000000 Binary files a/files/10_2592_example.mp3 and /dev/null differ diff --git a/files/10_2592_meaning.mp3 b/files/10_2592_meaning.mp3 deleted file mode 100644 index 97f55601b..000000000 Binary files a/files/10_2592_meaning.mp3 and /dev/null differ diff --git a/files/10_2593.jpg b/files/10_2593.jpg deleted file mode 100644 index 44c73772d..000000000 Binary files a/files/10_2593.jpg and /dev/null differ diff --git a/files/10_2593.mp3 b/files/10_2593.mp3 deleted file mode 100644 index 19776b999..000000000 Binary files a/files/10_2593.mp3 and /dev/null differ diff --git a/files/10_2593_example.mp3 b/files/10_2593_example.mp3 deleted file mode 100644 index 34659a0cb..000000000 Binary files a/files/10_2593_example.mp3 and /dev/null differ diff --git a/files/10_2593_meaning.mp3 b/files/10_2593_meaning.mp3 deleted file mode 100644 index d90d1976a..000000000 Binary files a/files/10_2593_meaning.mp3 and /dev/null differ diff --git a/files/10_2594.jpg b/files/10_2594.jpg deleted file mode 100644 index bd18eb2ca..000000000 Binary files a/files/10_2594.jpg and /dev/null differ diff --git a/files/10_2594.mp3 b/files/10_2594.mp3 deleted file mode 100644 index 657c0f9f8..000000000 Binary files a/files/10_2594.mp3 and /dev/null differ diff --git a/files/10_2594_example.mp3 b/files/10_2594_example.mp3 deleted file mode 100644 index 5fe579ee7..000000000 Binary files a/files/10_2594_example.mp3 and /dev/null differ diff --git a/files/10_2594_meaning.mp3 b/files/10_2594_meaning.mp3 deleted file mode 100644 index 2487d0fd8..000000000 Binary files a/files/10_2594_meaning.mp3 and /dev/null differ diff --git a/files/10_2595.jpg b/files/10_2595.jpg deleted file mode 100644 index 8bdec169d..000000000 Binary files a/files/10_2595.jpg and /dev/null differ diff --git a/files/10_2595.mp3 b/files/10_2595.mp3 deleted file mode 100644 index bd4d6b277..000000000 Binary files a/files/10_2595.mp3 and /dev/null differ diff --git a/files/10_2595_example.mp3 b/files/10_2595_example.mp3 deleted file mode 100644 index ac364251d..000000000 Binary files a/files/10_2595_example.mp3 and /dev/null differ diff --git a/files/10_2595_meaning.mp3 b/files/10_2595_meaning.mp3 deleted file mode 100644 index b06bbcbc9..000000000 Binary files a/files/10_2595_meaning.mp3 and /dev/null differ diff --git a/files/10_2596.jpg b/files/10_2596.jpg deleted file mode 100644 index 3fd0939d8..000000000 Binary files a/files/10_2596.jpg and /dev/null differ diff --git a/files/10_2596.mp3 b/files/10_2596.mp3 deleted file mode 100644 index 881b6f5cc..000000000 Binary files a/files/10_2596.mp3 and /dev/null differ diff --git a/files/10_2596_example.mp3 b/files/10_2596_example.mp3 deleted file mode 100644 index 903ce77f5..000000000 Binary files a/files/10_2596_example.mp3 and /dev/null differ diff --git a/files/10_2596_meaning.mp3 b/files/10_2596_meaning.mp3 deleted file mode 100644 index f966bf614..000000000 Binary files a/files/10_2596_meaning.mp3 and /dev/null differ diff --git a/files/10_2597.jpg b/files/10_2597.jpg deleted file mode 100644 index 6a4d20463..000000000 Binary files a/files/10_2597.jpg and /dev/null differ diff --git a/files/10_2597.mp3 b/files/10_2597.mp3 deleted file mode 100644 index 865bc3653..000000000 Binary files a/files/10_2597.mp3 and /dev/null differ diff --git a/files/10_2597_example.mp3 b/files/10_2597_example.mp3 deleted file mode 100644 index 0e65b2da5..000000000 Binary files a/files/10_2597_example.mp3 and /dev/null differ diff --git a/files/10_2597_meaning.mp3 b/files/10_2597_meaning.mp3 deleted file mode 100644 index 8485f2758..000000000 Binary files a/files/10_2597_meaning.mp3 and /dev/null differ diff --git a/files/10_2598.jpg b/files/10_2598.jpg deleted file mode 100644 index 99b8697cf..000000000 Binary files a/files/10_2598.jpg and /dev/null differ diff --git a/files/10_2598.mp3 b/files/10_2598.mp3 deleted file mode 100644 index ecc91fe3e..000000000 Binary files a/files/10_2598.mp3 and /dev/null differ diff --git a/files/10_2598_example.mp3 b/files/10_2598_example.mp3 deleted file mode 100644 index 45323064b..000000000 Binary files a/files/10_2598_example.mp3 and /dev/null differ diff --git a/files/10_2598_meaning.mp3 b/files/10_2598_meaning.mp3 deleted file mode 100644 index 36fb386a5..000000000 Binary files a/files/10_2598_meaning.mp3 and /dev/null differ diff --git a/files/10_2599.jpg b/files/10_2599.jpg deleted file mode 100644 index 578a9b9b1..000000000 Binary files a/files/10_2599.jpg and /dev/null differ diff --git a/files/10_2599.mp3 b/files/10_2599.mp3 deleted file mode 100644 index 90b354af0..000000000 Binary files a/files/10_2599.mp3 and /dev/null differ diff --git a/files/10_2599_example.mp3 b/files/10_2599_example.mp3 deleted file mode 100644 index f82fef03e..000000000 Binary files a/files/10_2599_example.mp3 and /dev/null differ diff --git a/files/10_2599_meaning.mp3 b/files/10_2599_meaning.mp3 deleted file mode 100644 index a14d3b01b..000000000 Binary files a/files/10_2599_meaning.mp3 and /dev/null differ diff --git a/files/10_2600.jpg b/files/10_2600.jpg deleted file mode 100644 index 7494b2bdd..000000000 Binary files a/files/10_2600.jpg and /dev/null differ diff --git a/files/10_2600.mp3 b/files/10_2600.mp3 deleted file mode 100644 index 6320d08d6..000000000 Binary files a/files/10_2600.mp3 and /dev/null differ diff --git a/files/10_2600_example.mp3 b/files/10_2600_example.mp3 deleted file mode 100644 index a8cbfb957..000000000 Binary files a/files/10_2600_example.mp3 and /dev/null differ diff --git a/files/10_2600_meaning.mp3 b/files/10_2600_meaning.mp3 deleted file mode 100644 index a6b4fc343..000000000 Binary files a/files/10_2600_meaning.mp3 and /dev/null differ diff --git a/files/10_3181.jpg b/files/10_3181.jpg deleted file mode 100644 index 3aae9772d..000000000 Binary files a/files/10_3181.jpg and /dev/null differ diff --git a/files/10_3181.mp3 b/files/10_3181.mp3 deleted file mode 100644 index e0717df6b..000000000 Binary files a/files/10_3181.mp3 and /dev/null differ diff --git a/files/10_3181_example.mp3 b/files/10_3181_example.mp3 deleted file mode 100644 index ddd29ddce..000000000 Binary files a/files/10_3181_example.mp3 and /dev/null differ diff --git a/files/10_3181_meaning.mp3 b/files/10_3181_meaning.mp3 deleted file mode 100644 index dbbb470d1..000000000 Binary files a/files/10_3181_meaning.mp3 and /dev/null differ diff --git a/files/10_3182.jpg b/files/10_3182.jpg deleted file mode 100644 index b9c939a5c..000000000 Binary files a/files/10_3182.jpg and /dev/null differ diff --git a/files/10_3182.mp3 b/files/10_3182.mp3 deleted file mode 100644 index 77a5dd177..000000000 Binary files a/files/10_3182.mp3 and /dev/null differ diff --git a/files/10_3182_example.mp3 b/files/10_3182_example.mp3 deleted file mode 100644 index 5f8461f0b..000000000 Binary files a/files/10_3182_example.mp3 and /dev/null differ diff --git a/files/10_3182_meaning.mp3 b/files/10_3182_meaning.mp3 deleted file mode 100644 index af92d00f9..000000000 Binary files a/files/10_3182_meaning.mp3 and /dev/null differ diff --git a/files/10_3183.jpg b/files/10_3183.jpg deleted file mode 100644 index c114381ce..000000000 Binary files a/files/10_3183.jpg and /dev/null differ diff --git a/files/10_3183.mp3 b/files/10_3183.mp3 deleted file mode 100644 index 8e447ac26..000000000 Binary files a/files/10_3183.mp3 and /dev/null differ diff --git a/files/10_3183_example.mp3 b/files/10_3183_example.mp3 deleted file mode 100644 index 339cde81b..000000000 Binary files a/files/10_3183_example.mp3 and /dev/null differ diff --git a/files/10_3183_meaning.mp3 b/files/10_3183_meaning.mp3 deleted file mode 100644 index 9bf597af2..000000000 Binary files a/files/10_3183_meaning.mp3 and /dev/null differ diff --git a/files/10_3184.jpg b/files/10_3184.jpg deleted file mode 100644 index efd6e3df0..000000000 Binary files a/files/10_3184.jpg and /dev/null differ diff --git a/files/10_3184.mp3 b/files/10_3184.mp3 deleted file mode 100644 index dd930b6f8..000000000 Binary files a/files/10_3184.mp3 and /dev/null differ diff --git a/files/10_3184_example.mp3 b/files/10_3184_example.mp3 deleted file mode 100644 index f9153a6ce..000000000 Binary files a/files/10_3184_example.mp3 and /dev/null differ diff --git a/files/10_3184_meaning.mp3 b/files/10_3184_meaning.mp3 deleted file mode 100644 index 52f666f45..000000000 Binary files a/files/10_3184_meaning.mp3 and /dev/null differ diff --git a/files/10_3185.jpg b/files/10_3185.jpg deleted file mode 100644 index bd09f1755..000000000 Binary files a/files/10_3185.jpg and /dev/null differ diff --git a/files/10_3185.mp3 b/files/10_3185.mp3 deleted file mode 100644 index d4dfeb382..000000000 Binary files a/files/10_3185.mp3 and /dev/null differ diff --git a/files/10_3185_example.mp3 b/files/10_3185_example.mp3 deleted file mode 100644 index ac948f0fb..000000000 Binary files a/files/10_3185_example.mp3 and /dev/null differ diff --git a/files/10_3185_meaning.mp3 b/files/10_3185_meaning.mp3 deleted file mode 100644 index f092f5064..000000000 Binary files a/files/10_3185_meaning.mp3 and /dev/null differ diff --git a/files/10_3186.jpg b/files/10_3186.jpg deleted file mode 100644 index 93715a00b..000000000 Binary files a/files/10_3186.jpg and /dev/null differ diff --git a/files/10_3186.mp3 b/files/10_3186.mp3 deleted file mode 100644 index cd27c5e0e..000000000 Binary files a/files/10_3186.mp3 and /dev/null differ diff --git a/files/10_3186_example.mp3 b/files/10_3186_example.mp3 deleted file mode 100644 index de4cc6eef..000000000 Binary files a/files/10_3186_example.mp3 and /dev/null differ diff --git a/files/10_3186_meaning.mp3 b/files/10_3186_meaning.mp3 deleted file mode 100644 index c53b9ccda..000000000 Binary files a/files/10_3186_meaning.mp3 and /dev/null differ diff --git a/files/10_3187.jpg b/files/10_3187.jpg deleted file mode 100644 index be261c3e9..000000000 Binary files a/files/10_3187.jpg and /dev/null differ diff --git a/files/10_3187.mp3 b/files/10_3187.mp3 deleted file mode 100644 index 08fa2d50a..000000000 Binary files a/files/10_3187.mp3 and /dev/null differ diff --git a/files/10_3187_example.mp3 b/files/10_3187_example.mp3 deleted file mode 100644 index 64cb0cfcb..000000000 Binary files a/files/10_3187_example.mp3 and /dev/null differ diff --git a/files/10_3187_meaning.mp3 b/files/10_3187_meaning.mp3 deleted file mode 100644 index a941399fb..000000000 Binary files a/files/10_3187_meaning.mp3 and /dev/null differ diff --git a/files/10_3188.jpg b/files/10_3188.jpg deleted file mode 100644 index 3977ae2ff..000000000 Binary files a/files/10_3188.jpg and /dev/null differ diff --git a/files/10_3188.mp3 b/files/10_3188.mp3 deleted file mode 100644 index d1b36af43..000000000 Binary files a/files/10_3188.mp3 and /dev/null differ diff --git a/files/10_3188_example.mp3 b/files/10_3188_example.mp3 deleted file mode 100644 index 10b1e0361..000000000 Binary files a/files/10_3188_example.mp3 and /dev/null differ diff --git a/files/10_3188_meaning.mp3 b/files/10_3188_meaning.mp3 deleted file mode 100644 index 5f42f72e6..000000000 Binary files a/files/10_3188_meaning.mp3 and /dev/null differ diff --git a/files/10_3189.jpg b/files/10_3189.jpg deleted file mode 100644 index a1a5ff506..000000000 Binary files a/files/10_3189.jpg and /dev/null differ diff --git a/files/10_3189.mp3 b/files/10_3189.mp3 deleted file mode 100644 index 32f646704..000000000 Binary files a/files/10_3189.mp3 and /dev/null differ diff --git a/files/10_3189_example.mp3 b/files/10_3189_example.mp3 deleted file mode 100644 index 4687f2130..000000000 Binary files a/files/10_3189_example.mp3 and /dev/null differ diff --git a/files/10_3189_meaning.mp3 b/files/10_3189_meaning.mp3 deleted file mode 100644 index a3d10ff7f..000000000 Binary files a/files/10_3189_meaning.mp3 and /dev/null differ diff --git a/files/10_3190.jpg b/files/10_3190.jpg deleted file mode 100644 index 077a16ca1..000000000 Binary files a/files/10_3190.jpg and /dev/null differ diff --git a/files/10_3190.mp3 b/files/10_3190.mp3 deleted file mode 100644 index e811cd567..000000000 Binary files a/files/10_3190.mp3 and /dev/null differ diff --git a/files/10_3190_example.mp3 b/files/10_3190_example.mp3 deleted file mode 100644 index 1d2b210e7..000000000 Binary files a/files/10_3190_example.mp3 and /dev/null differ diff --git a/files/10_3190_meaning.mp3 b/files/10_3190_meaning.mp3 deleted file mode 100644 index 352412f8f..000000000 Binary files a/files/10_3190_meaning.mp3 and /dev/null differ diff --git a/files/10_3191.jpg b/files/10_3191.jpg deleted file mode 100644 index cb3dc5d9f..000000000 Binary files a/files/10_3191.jpg and /dev/null differ diff --git a/files/10_3191.mp3 b/files/10_3191.mp3 deleted file mode 100644 index a7ef14ba3..000000000 Binary files a/files/10_3191.mp3 and /dev/null differ diff --git a/files/10_3191_example.mp3 b/files/10_3191_example.mp3 deleted file mode 100644 index 711ab7f6b..000000000 Binary files a/files/10_3191_example.mp3 and /dev/null differ diff --git a/files/10_3191_meaning.mp3 b/files/10_3191_meaning.mp3 deleted file mode 100644 index 0bf13873c..000000000 Binary files a/files/10_3191_meaning.mp3 and /dev/null differ diff --git a/files/10_3192.jpg b/files/10_3192.jpg deleted file mode 100644 index 8b5bdb5fd..000000000 Binary files a/files/10_3192.jpg and /dev/null differ diff --git a/files/10_3192.mp3 b/files/10_3192.mp3 deleted file mode 100644 index 3e41eef37..000000000 Binary files a/files/10_3192.mp3 and /dev/null differ diff --git a/files/10_3192_example.mp3 b/files/10_3192_example.mp3 deleted file mode 100644 index f4e162eff..000000000 Binary files a/files/10_3192_example.mp3 and /dev/null differ diff --git a/files/10_3192_meaning.mp3 b/files/10_3192_meaning.mp3 deleted file mode 100644 index b7659a93c..000000000 Binary files a/files/10_3192_meaning.mp3 and /dev/null differ diff --git a/files/10_3193.jpg b/files/10_3193.jpg deleted file mode 100644 index a88a62e66..000000000 Binary files a/files/10_3193.jpg and /dev/null differ diff --git a/files/10_3193.mp3 b/files/10_3193.mp3 deleted file mode 100644 index 396cf92f0..000000000 Binary files a/files/10_3193.mp3 and /dev/null differ diff --git a/files/10_3193_example.mp3 b/files/10_3193_example.mp3 deleted file mode 100644 index d4516c845..000000000 Binary files a/files/10_3193_example.mp3 and /dev/null differ diff --git a/files/10_3193_meaning.mp3 b/files/10_3193_meaning.mp3 deleted file mode 100644 index 560be8354..000000000 Binary files a/files/10_3193_meaning.mp3 and /dev/null differ diff --git a/files/10_3194.jpg b/files/10_3194.jpg deleted file mode 100644 index 66d5d071a..000000000 Binary files a/files/10_3194.jpg and /dev/null differ diff --git a/files/10_3194.mp3 b/files/10_3194.mp3 deleted file mode 100644 index 569b29606..000000000 Binary files a/files/10_3194.mp3 and /dev/null differ diff --git a/files/10_3194_example.mp3 b/files/10_3194_example.mp3 deleted file mode 100644 index 0628e8b87..000000000 Binary files a/files/10_3194_example.mp3 and /dev/null differ diff --git a/files/10_3194_meaning.mp3 b/files/10_3194_meaning.mp3 deleted file mode 100644 index 12335d0ce..000000000 Binary files a/files/10_3194_meaning.mp3 and /dev/null differ diff --git a/files/10_3195.jpg b/files/10_3195.jpg deleted file mode 100644 index e82d2df7e..000000000 Binary files a/files/10_3195.jpg and /dev/null differ diff --git a/files/10_3195.mp3 b/files/10_3195.mp3 deleted file mode 100644 index 66e055c8f..000000000 Binary files a/files/10_3195.mp3 and /dev/null differ diff --git a/files/10_3195_example.mp3 b/files/10_3195_example.mp3 deleted file mode 100644 index 09600555d..000000000 Binary files a/files/10_3195_example.mp3 and /dev/null differ diff --git a/files/10_3195_meaning.mp3 b/files/10_3195_meaning.mp3 deleted file mode 100644 index be46d717a..000000000 Binary files a/files/10_3195_meaning.mp3 and /dev/null differ diff --git a/files/10_3196.jpg b/files/10_3196.jpg deleted file mode 100644 index d9088718e..000000000 Binary files a/files/10_3196.jpg and /dev/null differ diff --git a/files/10_3196.mp3 b/files/10_3196.mp3 deleted file mode 100644 index 0cfe546e8..000000000 Binary files a/files/10_3196.mp3 and /dev/null differ diff --git a/files/10_3196_example.mp3 b/files/10_3196_example.mp3 deleted file mode 100644 index 9ddc4a937..000000000 Binary files a/files/10_3196_example.mp3 and /dev/null differ diff --git a/files/10_3196_meaning.mp3 b/files/10_3196_meaning.mp3 deleted file mode 100644 index c8cc1e0d0..000000000 Binary files a/files/10_3196_meaning.mp3 and /dev/null differ diff --git a/files/10_3197.jpg b/files/10_3197.jpg deleted file mode 100644 index 8dbbacd30..000000000 Binary files a/files/10_3197.jpg and /dev/null differ diff --git a/files/10_3197.mp3 b/files/10_3197.mp3 deleted file mode 100644 index c2d609c43..000000000 Binary files a/files/10_3197.mp3 and /dev/null differ diff --git a/files/10_3197_example.mp3 b/files/10_3197_example.mp3 deleted file mode 100644 index 754747687..000000000 Binary files a/files/10_3197_example.mp3 and /dev/null differ diff --git a/files/10_3197_meaning.mp3 b/files/10_3197_meaning.mp3 deleted file mode 100644 index 8ddecbde8..000000000 Binary files a/files/10_3197_meaning.mp3 and /dev/null differ diff --git a/files/10_3198.jpg b/files/10_3198.jpg deleted file mode 100644 index 3a671b8c4..000000000 Binary files a/files/10_3198.jpg and /dev/null differ diff --git a/files/10_3198.mp3 b/files/10_3198.mp3 deleted file mode 100644 index 8526fb6b0..000000000 Binary files a/files/10_3198.mp3 and /dev/null differ diff --git a/files/10_3198_example.mp3 b/files/10_3198_example.mp3 deleted file mode 100644 index 641717de3..000000000 Binary files a/files/10_3198_example.mp3 and /dev/null differ diff --git a/files/10_3198_meaning.mp3 b/files/10_3198_meaning.mp3 deleted file mode 100644 index fabd83d1e..000000000 Binary files a/files/10_3198_meaning.mp3 and /dev/null differ diff --git a/files/10_3199.jpg b/files/10_3199.jpg deleted file mode 100644 index cca31cb07..000000000 Binary files a/files/10_3199.jpg and /dev/null differ diff --git a/files/10_3199.mp3 b/files/10_3199.mp3 deleted file mode 100644 index c57c5c31d..000000000 Binary files a/files/10_3199.mp3 and /dev/null differ diff --git a/files/10_3199_example.mp3 b/files/10_3199_example.mp3 deleted file mode 100644 index 2cf49396b..000000000 Binary files a/files/10_3199_example.mp3 and /dev/null differ diff --git a/files/10_3199_meaning.mp3 b/files/10_3199_meaning.mp3 deleted file mode 100644 index 2406d3672..000000000 Binary files a/files/10_3199_meaning.mp3 and /dev/null differ diff --git a/files/10_3200.jpg b/files/10_3200.jpg deleted file mode 100644 index f56539973..000000000 Binary files a/files/10_3200.jpg and /dev/null differ diff --git a/files/10_3200.mp3 b/files/10_3200.mp3 deleted file mode 100644 index 012696d68..000000000 Binary files a/files/10_3200.mp3 and /dev/null differ diff --git a/files/10_3200_example.mp3 b/files/10_3200_example.mp3 deleted file mode 100644 index 24035b70d..000000000 Binary files a/files/10_3200_example.mp3 and /dev/null differ diff --git a/files/10_3200_meaning.mp3 b/files/10_3200_meaning.mp3 deleted file mode 100644 index 67db2c88d..000000000 Binary files a/files/10_3200_meaning.mp3 and /dev/null differ diff --git a/files/11_0201.jpg b/files/11_0201.jpg deleted file mode 100644 index 176b381c3..000000000 Binary files a/files/11_0201.jpg and /dev/null differ diff --git a/files/11_0201.mp3 b/files/11_0201.mp3 deleted file mode 100644 index e5a5c08da..000000000 Binary files a/files/11_0201.mp3 and /dev/null differ diff --git a/files/11_0201_example.mp3 b/files/11_0201_example.mp3 deleted file mode 100644 index e924eb8c6..000000000 Binary files a/files/11_0201_example.mp3 and /dev/null differ diff --git a/files/11_0201_meaning.mp3 b/files/11_0201_meaning.mp3 deleted file mode 100644 index 38a91c470..000000000 Binary files a/files/11_0201_meaning.mp3 and /dev/null differ diff --git a/files/11_0202.jpg b/files/11_0202.jpg deleted file mode 100644 index d66483563..000000000 Binary files a/files/11_0202.jpg and /dev/null differ diff --git a/files/11_0202.mp3 b/files/11_0202.mp3 deleted file mode 100644 index 791bdf655..000000000 Binary files a/files/11_0202.mp3 and /dev/null differ diff --git a/files/11_0202_example.mp3 b/files/11_0202_example.mp3 deleted file mode 100644 index ccaff80e8..000000000 Binary files a/files/11_0202_example.mp3 and /dev/null differ diff --git a/files/11_0202_meaning.mp3 b/files/11_0202_meaning.mp3 deleted file mode 100644 index beaade2d9..000000000 Binary files a/files/11_0202_meaning.mp3 and /dev/null differ diff --git a/files/11_0203.jpg b/files/11_0203.jpg deleted file mode 100644 index 5ead30023..000000000 Binary files a/files/11_0203.jpg and /dev/null differ diff --git a/files/11_0203.mp3 b/files/11_0203.mp3 deleted file mode 100644 index d252d2da7..000000000 Binary files a/files/11_0203.mp3 and /dev/null differ diff --git a/files/11_0203_example.mp3 b/files/11_0203_example.mp3 deleted file mode 100644 index d3efab35a..000000000 Binary files a/files/11_0203_example.mp3 and /dev/null differ diff --git a/files/11_0203_meaning.mp3 b/files/11_0203_meaning.mp3 deleted file mode 100644 index a670c082f..000000000 Binary files a/files/11_0203_meaning.mp3 and /dev/null differ diff --git a/files/11_0204.jpg b/files/11_0204.jpg deleted file mode 100644 index 2ebe76f48..000000000 Binary files a/files/11_0204.jpg and /dev/null differ diff --git a/files/11_0204.mp3 b/files/11_0204.mp3 deleted file mode 100644 index 4195a0b01..000000000 Binary files a/files/11_0204.mp3 and /dev/null differ diff --git a/files/11_0204_example.mp3 b/files/11_0204_example.mp3 deleted file mode 100644 index f02535cc7..000000000 Binary files a/files/11_0204_example.mp3 and /dev/null differ diff --git a/files/11_0204_meaning.mp3 b/files/11_0204_meaning.mp3 deleted file mode 100644 index c5b3f9c4e..000000000 Binary files a/files/11_0204_meaning.mp3 and /dev/null differ diff --git a/files/11_0205.jpg b/files/11_0205.jpg deleted file mode 100644 index 6da62f07a..000000000 Binary files a/files/11_0205.jpg and /dev/null differ diff --git a/files/11_0205.mp3 b/files/11_0205.mp3 deleted file mode 100644 index 0acb2a465..000000000 Binary files a/files/11_0205.mp3 and /dev/null differ diff --git a/files/11_0205_example.mp3 b/files/11_0205_example.mp3 deleted file mode 100644 index b7bcdce0e..000000000 Binary files a/files/11_0205_example.mp3 and /dev/null differ diff --git a/files/11_0205_meaning.mp3 b/files/11_0205_meaning.mp3 deleted file mode 100644 index a608f0890..000000000 Binary files a/files/11_0205_meaning.mp3 and /dev/null differ diff --git a/files/11_0206.jpg b/files/11_0206.jpg deleted file mode 100644 index 551635016..000000000 Binary files a/files/11_0206.jpg and /dev/null differ diff --git a/files/11_0206.mp3 b/files/11_0206.mp3 deleted file mode 100644 index 5e690380f..000000000 Binary files a/files/11_0206.mp3 and /dev/null differ diff --git a/files/11_0206_example.mp3 b/files/11_0206_example.mp3 deleted file mode 100644 index 38fb892d3..000000000 Binary files a/files/11_0206_example.mp3 and /dev/null differ diff --git a/files/11_0206_meaning.mp3 b/files/11_0206_meaning.mp3 deleted file mode 100644 index 1cb21824c..000000000 Binary files a/files/11_0206_meaning.mp3 and /dev/null differ diff --git a/files/11_0207.jpg b/files/11_0207.jpg deleted file mode 100644 index bef9c036f..000000000 Binary files a/files/11_0207.jpg and /dev/null differ diff --git a/files/11_0207.mp3 b/files/11_0207.mp3 deleted file mode 100644 index 7fd52dd5f..000000000 Binary files a/files/11_0207.mp3 and /dev/null differ diff --git a/files/11_0207_example.mp3 b/files/11_0207_example.mp3 deleted file mode 100644 index e38fd4c2d..000000000 Binary files a/files/11_0207_example.mp3 and /dev/null differ diff --git a/files/11_0207_meaning.mp3 b/files/11_0207_meaning.mp3 deleted file mode 100644 index f4b565c54..000000000 Binary files a/files/11_0207_meaning.mp3 and /dev/null differ diff --git a/files/11_0208.jpg b/files/11_0208.jpg deleted file mode 100644 index 879b0dffe..000000000 Binary files a/files/11_0208.jpg and /dev/null differ diff --git a/files/11_0208.mp3 b/files/11_0208.mp3 deleted file mode 100644 index 16d91c763..000000000 Binary files a/files/11_0208.mp3 and /dev/null differ diff --git a/files/11_0208_example.mp3 b/files/11_0208_example.mp3 deleted file mode 100644 index a2e908a21..000000000 Binary files a/files/11_0208_example.mp3 and /dev/null differ diff --git a/files/11_0208_meaning.mp3 b/files/11_0208_meaning.mp3 deleted file mode 100644 index 9d8956b28..000000000 Binary files a/files/11_0208_meaning.mp3 and /dev/null differ diff --git a/files/11_0209.jpg b/files/11_0209.jpg deleted file mode 100644 index 1f35efd92..000000000 Binary files a/files/11_0209.jpg and /dev/null differ diff --git a/files/11_0209.mp3 b/files/11_0209.mp3 deleted file mode 100644 index 9f5599b8b..000000000 Binary files a/files/11_0209.mp3 and /dev/null differ diff --git a/files/11_0209_example.mp3 b/files/11_0209_example.mp3 deleted file mode 100644 index 02ae492ea..000000000 Binary files a/files/11_0209_example.mp3 and /dev/null differ diff --git a/files/11_0209_meaning.mp3 b/files/11_0209_meaning.mp3 deleted file mode 100644 index 0f685c98c..000000000 Binary files a/files/11_0209_meaning.mp3 and /dev/null differ diff --git a/files/11_0210.jpg b/files/11_0210.jpg deleted file mode 100644 index 71f0ea95b..000000000 Binary files a/files/11_0210.jpg and /dev/null differ diff --git a/files/11_0210.mp3 b/files/11_0210.mp3 deleted file mode 100644 index cba96fdd1..000000000 Binary files a/files/11_0210.mp3 and /dev/null differ diff --git a/files/11_0210_example.mp3 b/files/11_0210_example.mp3 deleted file mode 100644 index 907a9ab6f..000000000 Binary files a/files/11_0210_example.mp3 and /dev/null differ diff --git a/files/11_0210_meaning.mp3 b/files/11_0210_meaning.mp3 deleted file mode 100644 index b20756e29..000000000 Binary files a/files/11_0210_meaning.mp3 and /dev/null differ diff --git a/files/11_0211.jpg b/files/11_0211.jpg deleted file mode 100644 index 8fca88166..000000000 Binary files a/files/11_0211.jpg and /dev/null differ diff --git a/files/11_0211.mp3 b/files/11_0211.mp3 deleted file mode 100644 index d688c3e96..000000000 Binary files a/files/11_0211.mp3 and /dev/null differ diff --git a/files/11_0211_example.mp3 b/files/11_0211_example.mp3 deleted file mode 100644 index 93a65f8f4..000000000 Binary files a/files/11_0211_example.mp3 and /dev/null differ diff --git a/files/11_0211_meaning.mp3 b/files/11_0211_meaning.mp3 deleted file mode 100644 index 3ab0fc97c..000000000 Binary files a/files/11_0211_meaning.mp3 and /dev/null differ diff --git a/files/11_0212.jpg b/files/11_0212.jpg deleted file mode 100644 index 7f0b1e0f5..000000000 Binary files a/files/11_0212.jpg and /dev/null differ diff --git a/files/11_0212.mp3 b/files/11_0212.mp3 deleted file mode 100644 index 046b9f616..000000000 Binary files a/files/11_0212.mp3 and /dev/null differ diff --git a/files/11_0212_example.mp3 b/files/11_0212_example.mp3 deleted file mode 100644 index d3f5c5954..000000000 Binary files a/files/11_0212_example.mp3 and /dev/null differ diff --git a/files/11_0212_meaning.mp3 b/files/11_0212_meaning.mp3 deleted file mode 100644 index 6589b0450..000000000 Binary files a/files/11_0212_meaning.mp3 and /dev/null differ diff --git a/files/11_0213.jpg b/files/11_0213.jpg deleted file mode 100644 index 8ca726a80..000000000 Binary files a/files/11_0213.jpg and /dev/null differ diff --git a/files/11_0213.mp3 b/files/11_0213.mp3 deleted file mode 100644 index 0492633d4..000000000 Binary files a/files/11_0213.mp3 and /dev/null differ diff --git a/files/11_0213_example.mp3 b/files/11_0213_example.mp3 deleted file mode 100644 index f8c39870b..000000000 Binary files a/files/11_0213_example.mp3 and /dev/null differ diff --git a/files/11_0213_meaning.mp3 b/files/11_0213_meaning.mp3 deleted file mode 100644 index 6482e5e54..000000000 Binary files a/files/11_0213_meaning.mp3 and /dev/null differ diff --git a/files/11_0214.jpg b/files/11_0214.jpg deleted file mode 100644 index 32d3a024c..000000000 Binary files a/files/11_0214.jpg and /dev/null differ diff --git a/files/11_0214.mp3 b/files/11_0214.mp3 deleted file mode 100644 index ff21b7afa..000000000 Binary files a/files/11_0214.mp3 and /dev/null differ diff --git a/files/11_0214_example.mp3 b/files/11_0214_example.mp3 deleted file mode 100644 index 5b2ebfcec..000000000 Binary files a/files/11_0214_example.mp3 and /dev/null differ diff --git a/files/11_0214_meaning.mp3 b/files/11_0214_meaning.mp3 deleted file mode 100644 index 4869561ba..000000000 Binary files a/files/11_0214_meaning.mp3 and /dev/null differ diff --git a/files/11_0215.jpg b/files/11_0215.jpg deleted file mode 100644 index e26a2803f..000000000 Binary files a/files/11_0215.jpg and /dev/null differ diff --git a/files/11_0215.mp3 b/files/11_0215.mp3 deleted file mode 100644 index 775952d51..000000000 Binary files a/files/11_0215.mp3 and /dev/null differ diff --git a/files/11_0215_example.mp3 b/files/11_0215_example.mp3 deleted file mode 100644 index 5e6417945..000000000 Binary files a/files/11_0215_example.mp3 and /dev/null differ diff --git a/files/11_0215_meaning.mp3 b/files/11_0215_meaning.mp3 deleted file mode 100644 index 7c544d924..000000000 Binary files a/files/11_0215_meaning.mp3 and /dev/null differ diff --git a/files/11_0216.jpg b/files/11_0216.jpg deleted file mode 100644 index ce31e7bc6..000000000 Binary files a/files/11_0216.jpg and /dev/null differ diff --git a/files/11_0216.mp3 b/files/11_0216.mp3 deleted file mode 100644 index 9f531808a..000000000 Binary files a/files/11_0216.mp3 and /dev/null differ diff --git a/files/11_0216_example.mp3 b/files/11_0216_example.mp3 deleted file mode 100644 index aeb31c761..000000000 Binary files a/files/11_0216_example.mp3 and /dev/null differ diff --git a/files/11_0216_meaning.mp3 b/files/11_0216_meaning.mp3 deleted file mode 100644 index 88fc13e78..000000000 Binary files a/files/11_0216_meaning.mp3 and /dev/null differ diff --git a/files/11_0217.jpg b/files/11_0217.jpg deleted file mode 100644 index 36578b116..000000000 Binary files a/files/11_0217.jpg and /dev/null differ diff --git a/files/11_0217.mp3 b/files/11_0217.mp3 deleted file mode 100644 index 731a9a5e2..000000000 Binary files a/files/11_0217.mp3 and /dev/null differ diff --git a/files/11_0217_example.mp3 b/files/11_0217_example.mp3 deleted file mode 100644 index 1f4608e19..000000000 Binary files a/files/11_0217_example.mp3 and /dev/null differ diff --git a/files/11_0217_meaning.mp3 b/files/11_0217_meaning.mp3 deleted file mode 100644 index 1143b5a48..000000000 Binary files a/files/11_0217_meaning.mp3 and /dev/null differ diff --git a/files/11_0218.jpg b/files/11_0218.jpg deleted file mode 100644 index 8872e48b6..000000000 Binary files a/files/11_0218.jpg and /dev/null differ diff --git a/files/11_0218.mp3 b/files/11_0218.mp3 deleted file mode 100644 index 257244af1..000000000 Binary files a/files/11_0218.mp3 and /dev/null differ diff --git a/files/11_0218_example.mp3 b/files/11_0218_example.mp3 deleted file mode 100644 index b7a336194..000000000 Binary files a/files/11_0218_example.mp3 and /dev/null differ diff --git a/files/11_0218_meaning.mp3 b/files/11_0218_meaning.mp3 deleted file mode 100644 index d0208fbbd..000000000 Binary files a/files/11_0218_meaning.mp3 and /dev/null differ diff --git a/files/11_0219.jpg b/files/11_0219.jpg deleted file mode 100644 index 1016b7c7c..000000000 Binary files a/files/11_0219.jpg and /dev/null differ diff --git a/files/11_0219.mp3 b/files/11_0219.mp3 deleted file mode 100644 index da6d24ad9..000000000 Binary files a/files/11_0219.mp3 and /dev/null differ diff --git a/files/11_0219_example.mp3 b/files/11_0219_example.mp3 deleted file mode 100644 index 2d7a91234..000000000 Binary files a/files/11_0219_example.mp3 and /dev/null differ diff --git a/files/11_0219_meaning.mp3 b/files/11_0219_meaning.mp3 deleted file mode 100644 index dbce46fd7..000000000 Binary files a/files/11_0219_meaning.mp3 and /dev/null differ diff --git a/files/11_0220.jpg b/files/11_0220.jpg deleted file mode 100644 index 6825ac837..000000000 Binary files a/files/11_0220.jpg and /dev/null differ diff --git a/files/11_0220.mp3 b/files/11_0220.mp3 deleted file mode 100644 index 7ce8a21ad..000000000 Binary files a/files/11_0220.mp3 and /dev/null differ diff --git a/files/11_0220_example.mp3 b/files/11_0220_example.mp3 deleted file mode 100644 index c3146de57..000000000 Binary files a/files/11_0220_example.mp3 and /dev/null differ diff --git a/files/11_0220_meaning.mp3 b/files/11_0220_meaning.mp3 deleted file mode 100644 index c34d3a511..000000000 Binary files a/files/11_0220_meaning.mp3 and /dev/null differ diff --git a/files/11_0801.jpg b/files/11_0801.jpg deleted file mode 100644 index d72ded11e..000000000 Binary files a/files/11_0801.jpg and /dev/null differ diff --git a/files/11_0801.mp3 b/files/11_0801.mp3 deleted file mode 100644 index f76c380b4..000000000 Binary files a/files/11_0801.mp3 and /dev/null differ diff --git a/files/11_0801_example.mp3 b/files/11_0801_example.mp3 deleted file mode 100644 index f03207ac1..000000000 Binary files a/files/11_0801_example.mp3 and /dev/null differ diff --git a/files/11_0801_meaning.mp3 b/files/11_0801_meaning.mp3 deleted file mode 100644 index b830a6624..000000000 Binary files a/files/11_0801_meaning.mp3 and /dev/null differ diff --git a/files/11_0802.jpg b/files/11_0802.jpg deleted file mode 100644 index 79a6d42e4..000000000 Binary files a/files/11_0802.jpg and /dev/null differ diff --git a/files/11_0802.mp3 b/files/11_0802.mp3 deleted file mode 100644 index 41dda2e42..000000000 Binary files a/files/11_0802.mp3 and /dev/null differ diff --git a/files/11_0802_example.mp3 b/files/11_0802_example.mp3 deleted file mode 100644 index dddf838e3..000000000 Binary files a/files/11_0802_example.mp3 and /dev/null differ diff --git a/files/11_0802_meaning.mp3 b/files/11_0802_meaning.mp3 deleted file mode 100644 index 501ec7912..000000000 Binary files a/files/11_0802_meaning.mp3 and /dev/null differ diff --git a/files/11_0803.jpg b/files/11_0803.jpg deleted file mode 100644 index e2aeac65c..000000000 Binary files a/files/11_0803.jpg and /dev/null differ diff --git a/files/11_0803.mp3 b/files/11_0803.mp3 deleted file mode 100644 index 1ed005db2..000000000 Binary files a/files/11_0803.mp3 and /dev/null differ diff --git a/files/11_0803_example.mp3 b/files/11_0803_example.mp3 deleted file mode 100644 index f2e34a67e..000000000 Binary files a/files/11_0803_example.mp3 and /dev/null differ diff --git a/files/11_0803_meaning.mp3 b/files/11_0803_meaning.mp3 deleted file mode 100644 index e20d7b175..000000000 Binary files a/files/11_0803_meaning.mp3 and /dev/null differ diff --git a/files/11_0804.jpg b/files/11_0804.jpg deleted file mode 100644 index 48c7becc6..000000000 Binary files a/files/11_0804.jpg and /dev/null differ diff --git a/files/11_0804.mp3 b/files/11_0804.mp3 deleted file mode 100644 index 386828acc..000000000 Binary files a/files/11_0804.mp3 and /dev/null differ diff --git a/files/11_0804_example.mp3 b/files/11_0804_example.mp3 deleted file mode 100644 index 8e5973721..000000000 Binary files a/files/11_0804_example.mp3 and /dev/null differ diff --git a/files/11_0804_meaning.mp3 b/files/11_0804_meaning.mp3 deleted file mode 100644 index c18b128f3..000000000 Binary files a/files/11_0804_meaning.mp3 and /dev/null differ diff --git a/files/11_0805.jpg b/files/11_0805.jpg deleted file mode 100644 index 1fe9af437..000000000 Binary files a/files/11_0805.jpg and /dev/null differ diff --git a/files/11_0805.mp3 b/files/11_0805.mp3 deleted file mode 100644 index 764531d3c..000000000 Binary files a/files/11_0805.mp3 and /dev/null differ diff --git a/files/11_0805_example.mp3 b/files/11_0805_example.mp3 deleted file mode 100644 index e171993d2..000000000 Binary files a/files/11_0805_example.mp3 and /dev/null differ diff --git a/files/11_0805_meaning.mp3 b/files/11_0805_meaning.mp3 deleted file mode 100644 index f409609ca..000000000 Binary files a/files/11_0805_meaning.mp3 and /dev/null differ diff --git a/files/11_0806.jpg b/files/11_0806.jpg deleted file mode 100644 index d5e210bf5..000000000 Binary files a/files/11_0806.jpg and /dev/null differ diff --git a/files/11_0806.mp3 b/files/11_0806.mp3 deleted file mode 100644 index 93d65867e..000000000 Binary files a/files/11_0806.mp3 and /dev/null differ diff --git a/files/11_0806_example.mp3 b/files/11_0806_example.mp3 deleted file mode 100644 index f90f7d17b..000000000 Binary files a/files/11_0806_example.mp3 and /dev/null differ diff --git a/files/11_0806_meaning.mp3 b/files/11_0806_meaning.mp3 deleted file mode 100644 index 00bee20b6..000000000 Binary files a/files/11_0806_meaning.mp3 and /dev/null differ diff --git a/files/11_0807.jpg b/files/11_0807.jpg deleted file mode 100644 index e7640a7f5..000000000 Binary files a/files/11_0807.jpg and /dev/null differ diff --git a/files/11_0807.mp3 b/files/11_0807.mp3 deleted file mode 100644 index 9106d1ee2..000000000 Binary files a/files/11_0807.mp3 and /dev/null differ diff --git a/files/11_0807_example.mp3 b/files/11_0807_example.mp3 deleted file mode 100644 index bbf5fcc0b..000000000 Binary files a/files/11_0807_example.mp3 and /dev/null differ diff --git a/files/11_0807_meaning.mp3 b/files/11_0807_meaning.mp3 deleted file mode 100644 index 9f47be73f..000000000 Binary files a/files/11_0807_meaning.mp3 and /dev/null differ diff --git a/files/11_0808.jpg b/files/11_0808.jpg deleted file mode 100644 index 7521ad553..000000000 Binary files a/files/11_0808.jpg and /dev/null differ diff --git a/files/11_0808.mp3 b/files/11_0808.mp3 deleted file mode 100644 index ae0c5b043..000000000 Binary files a/files/11_0808.mp3 and /dev/null differ diff --git a/files/11_0808_example.mp3 b/files/11_0808_example.mp3 deleted file mode 100644 index 78ddb08ef..000000000 Binary files a/files/11_0808_example.mp3 and /dev/null differ diff --git a/files/11_0808_meaning.mp3 b/files/11_0808_meaning.mp3 deleted file mode 100644 index 76119c90f..000000000 Binary files a/files/11_0808_meaning.mp3 and /dev/null differ diff --git a/files/11_0809.jpg b/files/11_0809.jpg deleted file mode 100644 index 61c8f0bc7..000000000 Binary files a/files/11_0809.jpg and /dev/null differ diff --git a/files/11_0809.mp3 b/files/11_0809.mp3 deleted file mode 100644 index f8ea9f36e..000000000 Binary files a/files/11_0809.mp3 and /dev/null differ diff --git a/files/11_0809_example.mp3 b/files/11_0809_example.mp3 deleted file mode 100644 index 9bc4fad6a..000000000 Binary files a/files/11_0809_example.mp3 and /dev/null differ diff --git a/files/11_0809_meaning.mp3 b/files/11_0809_meaning.mp3 deleted file mode 100644 index 98bc8cacb..000000000 Binary files a/files/11_0809_meaning.mp3 and /dev/null differ diff --git a/files/11_0810.jpg b/files/11_0810.jpg deleted file mode 100644 index af8af62ec..000000000 Binary files a/files/11_0810.jpg and /dev/null differ diff --git a/files/11_0810.mp3 b/files/11_0810.mp3 deleted file mode 100644 index 99c86dccb..000000000 Binary files a/files/11_0810.mp3 and /dev/null differ diff --git a/files/11_0810_example.mp3 b/files/11_0810_example.mp3 deleted file mode 100644 index 9115824ae..000000000 Binary files a/files/11_0810_example.mp3 and /dev/null differ diff --git a/files/11_0810_meaning.mp3 b/files/11_0810_meaning.mp3 deleted file mode 100644 index 60f88832a..000000000 Binary files a/files/11_0810_meaning.mp3 and /dev/null differ diff --git a/files/11_0811.jpg b/files/11_0811.jpg deleted file mode 100644 index b1d996e5b..000000000 Binary files a/files/11_0811.jpg and /dev/null differ diff --git a/files/11_0811.mp3 b/files/11_0811.mp3 deleted file mode 100644 index cb488d4cb..000000000 Binary files a/files/11_0811.mp3 and /dev/null differ diff --git a/files/11_0811_example.mp3 b/files/11_0811_example.mp3 deleted file mode 100644 index db2c7e545..000000000 Binary files a/files/11_0811_example.mp3 and /dev/null differ diff --git a/files/11_0811_meaning.mp3 b/files/11_0811_meaning.mp3 deleted file mode 100644 index 4922ba3a7..000000000 Binary files a/files/11_0811_meaning.mp3 and /dev/null differ diff --git a/files/11_0812.jpg b/files/11_0812.jpg deleted file mode 100644 index fc4904a37..000000000 Binary files a/files/11_0812.jpg and /dev/null differ diff --git a/files/11_0812.mp3 b/files/11_0812.mp3 deleted file mode 100644 index 5aef60ec2..000000000 Binary files a/files/11_0812.mp3 and /dev/null differ diff --git a/files/11_0812_example.mp3 b/files/11_0812_example.mp3 deleted file mode 100644 index 7eaaaf1fe..000000000 Binary files a/files/11_0812_example.mp3 and /dev/null differ diff --git a/files/11_0812_meaning.mp3 b/files/11_0812_meaning.mp3 deleted file mode 100644 index 216c720c0..000000000 Binary files a/files/11_0812_meaning.mp3 and /dev/null differ diff --git a/files/11_0813.jpg b/files/11_0813.jpg deleted file mode 100644 index 403ff9e51..000000000 Binary files a/files/11_0813.jpg and /dev/null differ diff --git a/files/11_0813.mp3 b/files/11_0813.mp3 deleted file mode 100644 index e308fe3cb..000000000 Binary files a/files/11_0813.mp3 and /dev/null differ diff --git a/files/11_0813_example.mp3 b/files/11_0813_example.mp3 deleted file mode 100644 index c43c56203..000000000 Binary files a/files/11_0813_example.mp3 and /dev/null differ diff --git a/files/11_0813_meaning.mp3 b/files/11_0813_meaning.mp3 deleted file mode 100644 index fd430a080..000000000 Binary files a/files/11_0813_meaning.mp3 and /dev/null differ diff --git a/files/11_0814.jpg b/files/11_0814.jpg deleted file mode 100644 index 4ca3fe697..000000000 Binary files a/files/11_0814.jpg and /dev/null differ diff --git a/files/11_0814.mp3 b/files/11_0814.mp3 deleted file mode 100644 index 712c48adf..000000000 Binary files a/files/11_0814.mp3 and /dev/null differ diff --git a/files/11_0814_example.mp3 b/files/11_0814_example.mp3 deleted file mode 100644 index 9347cb907..000000000 Binary files a/files/11_0814_example.mp3 and /dev/null differ diff --git a/files/11_0814_meaning.mp3 b/files/11_0814_meaning.mp3 deleted file mode 100644 index 2ab237800..000000000 Binary files a/files/11_0814_meaning.mp3 and /dev/null differ diff --git a/files/11_0815.jpg b/files/11_0815.jpg deleted file mode 100644 index 0e3a95c63..000000000 Binary files a/files/11_0815.jpg and /dev/null differ diff --git a/files/11_0815.mp3 b/files/11_0815.mp3 deleted file mode 100644 index b213fe61c..000000000 Binary files a/files/11_0815.mp3 and /dev/null differ diff --git a/files/11_0815_example.mp3 b/files/11_0815_example.mp3 deleted file mode 100644 index 39190530b..000000000 Binary files a/files/11_0815_example.mp3 and /dev/null differ diff --git a/files/11_0815_meaning.mp3 b/files/11_0815_meaning.mp3 deleted file mode 100644 index f7e51fc68..000000000 Binary files a/files/11_0815_meaning.mp3 and /dev/null differ diff --git a/files/11_0816.jpg b/files/11_0816.jpg deleted file mode 100644 index 8ce8b4ff4..000000000 Binary files a/files/11_0816.jpg and /dev/null differ diff --git a/files/11_0816.mp3 b/files/11_0816.mp3 deleted file mode 100644 index 73f4e5af2..000000000 Binary files a/files/11_0816.mp3 and /dev/null differ diff --git a/files/11_0816_example.mp3 b/files/11_0816_example.mp3 deleted file mode 100644 index 1a2b057fe..000000000 Binary files a/files/11_0816_example.mp3 and /dev/null differ diff --git a/files/11_0816_meaning.mp3 b/files/11_0816_meaning.mp3 deleted file mode 100644 index 7090bf7f1..000000000 Binary files a/files/11_0816_meaning.mp3 and /dev/null differ diff --git a/files/11_0817.jpg b/files/11_0817.jpg deleted file mode 100644 index c8f34141e..000000000 Binary files a/files/11_0817.jpg and /dev/null differ diff --git a/files/11_0817.mp3 b/files/11_0817.mp3 deleted file mode 100644 index 97c06e5b9..000000000 Binary files a/files/11_0817.mp3 and /dev/null differ diff --git a/files/11_0817_example.mp3 b/files/11_0817_example.mp3 deleted file mode 100644 index b440c440a..000000000 Binary files a/files/11_0817_example.mp3 and /dev/null differ diff --git a/files/11_0817_meaning.mp3 b/files/11_0817_meaning.mp3 deleted file mode 100644 index 1b701867c..000000000 Binary files a/files/11_0817_meaning.mp3 and /dev/null differ diff --git a/files/11_0818.jpg b/files/11_0818.jpg deleted file mode 100644 index 4f8392a7c..000000000 Binary files a/files/11_0818.jpg and /dev/null differ diff --git a/files/11_0818.mp3 b/files/11_0818.mp3 deleted file mode 100644 index 94d661002..000000000 Binary files a/files/11_0818.mp3 and /dev/null differ diff --git a/files/11_0818_example.mp3 b/files/11_0818_example.mp3 deleted file mode 100644 index 5d0661fce..000000000 Binary files a/files/11_0818_example.mp3 and /dev/null differ diff --git a/files/11_0818_meaning.mp3 b/files/11_0818_meaning.mp3 deleted file mode 100644 index e9748009a..000000000 Binary files a/files/11_0818_meaning.mp3 and /dev/null differ diff --git a/files/11_0819.jpg b/files/11_0819.jpg deleted file mode 100644 index e0dcb9fcc..000000000 Binary files a/files/11_0819.jpg and /dev/null differ diff --git a/files/11_0819.mp3 b/files/11_0819.mp3 deleted file mode 100644 index 57276160a..000000000 Binary files a/files/11_0819.mp3 and /dev/null differ diff --git a/files/11_0819_example.mp3 b/files/11_0819_example.mp3 deleted file mode 100644 index 3e591ec2b..000000000 Binary files a/files/11_0819_example.mp3 and /dev/null differ diff --git a/files/11_0819_meaning.mp3 b/files/11_0819_meaning.mp3 deleted file mode 100644 index f15467b67..000000000 Binary files a/files/11_0819_meaning.mp3 and /dev/null differ diff --git a/files/11_0820.jpg b/files/11_0820.jpg deleted file mode 100644 index 1163093d6..000000000 Binary files a/files/11_0820.jpg and /dev/null differ diff --git a/files/11_0820.mp3 b/files/11_0820.mp3 deleted file mode 100644 index 5601dc669..000000000 Binary files a/files/11_0820.mp3 and /dev/null differ diff --git a/files/11_0820_example.mp3 b/files/11_0820_example.mp3 deleted file mode 100644 index 0c79a0c26..000000000 Binary files a/files/11_0820_example.mp3 and /dev/null differ diff --git a/files/11_0820_meaning.mp3 b/files/11_0820_meaning.mp3 deleted file mode 100644 index 4917cf518..000000000 Binary files a/files/11_0820_meaning.mp3 and /dev/null differ diff --git a/files/11_1401.jpg b/files/11_1401.jpg deleted file mode 100644 index 3e75b3ac5..000000000 Binary files a/files/11_1401.jpg and /dev/null differ diff --git a/files/11_1401.mp3 b/files/11_1401.mp3 deleted file mode 100644 index 213dc0a51..000000000 Binary files a/files/11_1401.mp3 and /dev/null differ diff --git a/files/11_1401_example.mp3 b/files/11_1401_example.mp3 deleted file mode 100644 index 177cb234d..000000000 Binary files a/files/11_1401_example.mp3 and /dev/null differ diff --git a/files/11_1401_meaning.mp3 b/files/11_1401_meaning.mp3 deleted file mode 100644 index 58dfec70e..000000000 Binary files a/files/11_1401_meaning.mp3 and /dev/null differ diff --git a/files/11_1402.jpg b/files/11_1402.jpg deleted file mode 100644 index a2518b3c3..000000000 Binary files a/files/11_1402.jpg and /dev/null differ diff --git a/files/11_1402.mp3 b/files/11_1402.mp3 deleted file mode 100644 index 7b8c15db9..000000000 Binary files a/files/11_1402.mp3 and /dev/null differ diff --git a/files/11_1402_example.mp3 b/files/11_1402_example.mp3 deleted file mode 100644 index 62d8e89f8..000000000 Binary files a/files/11_1402_example.mp3 and /dev/null differ diff --git a/files/11_1402_meaning.mp3 b/files/11_1402_meaning.mp3 deleted file mode 100644 index 252e74059..000000000 Binary files a/files/11_1402_meaning.mp3 and /dev/null differ diff --git a/files/11_1403.jpg b/files/11_1403.jpg deleted file mode 100644 index 10035a989..000000000 Binary files a/files/11_1403.jpg and /dev/null differ diff --git a/files/11_1403.mp3 b/files/11_1403.mp3 deleted file mode 100644 index 7638e39f8..000000000 Binary files a/files/11_1403.mp3 and /dev/null differ diff --git a/files/11_1403_example.mp3 b/files/11_1403_example.mp3 deleted file mode 100644 index b39ad0df1..000000000 Binary files a/files/11_1403_example.mp3 and /dev/null differ diff --git a/files/11_1403_meaning.mp3 b/files/11_1403_meaning.mp3 deleted file mode 100644 index 40f6436d3..000000000 Binary files a/files/11_1403_meaning.mp3 and /dev/null differ diff --git a/files/11_1404.jpg b/files/11_1404.jpg deleted file mode 100644 index 993b5f54d..000000000 Binary files a/files/11_1404.jpg and /dev/null differ diff --git a/files/11_1404.mp3 b/files/11_1404.mp3 deleted file mode 100644 index 76baa7ea4..000000000 Binary files a/files/11_1404.mp3 and /dev/null differ diff --git a/files/11_1404_example.mp3 b/files/11_1404_example.mp3 deleted file mode 100644 index bb093f451..000000000 Binary files a/files/11_1404_example.mp3 and /dev/null differ diff --git a/files/11_1404_meaning.mp3 b/files/11_1404_meaning.mp3 deleted file mode 100644 index 829d0f6f7..000000000 Binary files a/files/11_1404_meaning.mp3 and /dev/null differ diff --git a/files/11_1405.jpg b/files/11_1405.jpg deleted file mode 100644 index b08998ee9..000000000 Binary files a/files/11_1405.jpg and /dev/null differ diff --git a/files/11_1405.mp3 b/files/11_1405.mp3 deleted file mode 100644 index 0702928f4..000000000 Binary files a/files/11_1405.mp3 and /dev/null differ diff --git a/files/11_1405_example.mp3 b/files/11_1405_example.mp3 deleted file mode 100644 index 350bc7e07..000000000 Binary files a/files/11_1405_example.mp3 and /dev/null differ diff --git a/files/11_1405_meaning.mp3 b/files/11_1405_meaning.mp3 deleted file mode 100644 index d0941f721..000000000 Binary files a/files/11_1405_meaning.mp3 and /dev/null differ diff --git a/files/11_1406.jpg b/files/11_1406.jpg deleted file mode 100644 index 0f5c9db15..000000000 Binary files a/files/11_1406.jpg and /dev/null differ diff --git a/files/11_1406.mp3 b/files/11_1406.mp3 deleted file mode 100644 index 77088c737..000000000 Binary files a/files/11_1406.mp3 and /dev/null differ diff --git a/files/11_1406_example.mp3 b/files/11_1406_example.mp3 deleted file mode 100644 index 09c2c936e..000000000 Binary files a/files/11_1406_example.mp3 and /dev/null differ diff --git a/files/11_1406_meaning.mp3 b/files/11_1406_meaning.mp3 deleted file mode 100644 index 7e442c184..000000000 Binary files a/files/11_1406_meaning.mp3 and /dev/null differ diff --git a/files/11_1407.jpg b/files/11_1407.jpg deleted file mode 100644 index ad19c59c8..000000000 Binary files a/files/11_1407.jpg and /dev/null differ diff --git a/files/11_1407.mp3 b/files/11_1407.mp3 deleted file mode 100644 index 29e4fdf37..000000000 Binary files a/files/11_1407.mp3 and /dev/null differ diff --git a/files/11_1407_example.mp3 b/files/11_1407_example.mp3 deleted file mode 100644 index 8c8585a78..000000000 Binary files a/files/11_1407_example.mp3 and /dev/null differ diff --git a/files/11_1407_meaning.mp3 b/files/11_1407_meaning.mp3 deleted file mode 100644 index 8ca150c4e..000000000 Binary files a/files/11_1407_meaning.mp3 and /dev/null differ diff --git a/files/11_1408.jpg b/files/11_1408.jpg deleted file mode 100644 index 8b7556abb..000000000 Binary files a/files/11_1408.jpg and /dev/null differ diff --git a/files/11_1408.mp3 b/files/11_1408.mp3 deleted file mode 100644 index 5cd71bd2c..000000000 Binary files a/files/11_1408.mp3 and /dev/null differ diff --git a/files/11_1408_example.mp3 b/files/11_1408_example.mp3 deleted file mode 100644 index a21dd4bec..000000000 Binary files a/files/11_1408_example.mp3 and /dev/null differ diff --git a/files/11_1408_meaning.mp3 b/files/11_1408_meaning.mp3 deleted file mode 100644 index 2255f1ee2..000000000 Binary files a/files/11_1408_meaning.mp3 and /dev/null differ diff --git a/files/11_1409.jpg b/files/11_1409.jpg deleted file mode 100644 index cd0dc3782..000000000 Binary files a/files/11_1409.jpg and /dev/null differ diff --git a/files/11_1409.mp3 b/files/11_1409.mp3 deleted file mode 100644 index 43d293352..000000000 Binary files a/files/11_1409.mp3 and /dev/null differ diff --git a/files/11_1409_example.mp3 b/files/11_1409_example.mp3 deleted file mode 100644 index b6fed851c..000000000 Binary files a/files/11_1409_example.mp3 and /dev/null differ diff --git a/files/11_1409_meaning.mp3 b/files/11_1409_meaning.mp3 deleted file mode 100644 index b5b24c2db..000000000 Binary files a/files/11_1409_meaning.mp3 and /dev/null differ diff --git a/files/11_1410.jpg b/files/11_1410.jpg deleted file mode 100644 index b7917b14d..000000000 Binary files a/files/11_1410.jpg and /dev/null differ diff --git a/files/11_1410.mp3 b/files/11_1410.mp3 deleted file mode 100644 index ff4321af4..000000000 Binary files a/files/11_1410.mp3 and /dev/null differ diff --git a/files/11_1410_example.mp3 b/files/11_1410_example.mp3 deleted file mode 100644 index f3c0c9faa..000000000 Binary files a/files/11_1410_example.mp3 and /dev/null differ diff --git a/files/11_1410_meaning.mp3 b/files/11_1410_meaning.mp3 deleted file mode 100644 index 8ac0ef6ef..000000000 Binary files a/files/11_1410_meaning.mp3 and /dev/null differ diff --git a/files/11_1411.jpg b/files/11_1411.jpg deleted file mode 100644 index c65b089ae..000000000 Binary files a/files/11_1411.jpg and /dev/null differ diff --git a/files/11_1411.mp3 b/files/11_1411.mp3 deleted file mode 100644 index 930242f6e..000000000 Binary files a/files/11_1411.mp3 and /dev/null differ diff --git a/files/11_1411_example.mp3 b/files/11_1411_example.mp3 deleted file mode 100644 index f3b493896..000000000 Binary files a/files/11_1411_example.mp3 and /dev/null differ diff --git a/files/11_1411_meaning.mp3 b/files/11_1411_meaning.mp3 deleted file mode 100644 index 9fcf0b9d7..000000000 Binary files a/files/11_1411_meaning.mp3 and /dev/null differ diff --git a/files/11_1412.jpg b/files/11_1412.jpg deleted file mode 100644 index 194242303..000000000 Binary files a/files/11_1412.jpg and /dev/null differ diff --git a/files/11_1412.mp3 b/files/11_1412.mp3 deleted file mode 100644 index 46d1150cb..000000000 Binary files a/files/11_1412.mp3 and /dev/null differ diff --git a/files/11_1412_example.mp3 b/files/11_1412_example.mp3 deleted file mode 100644 index c33de880b..000000000 Binary files a/files/11_1412_example.mp3 and /dev/null differ diff --git a/files/11_1412_meaning.mp3 b/files/11_1412_meaning.mp3 deleted file mode 100644 index b6a96bc75..000000000 Binary files a/files/11_1412_meaning.mp3 and /dev/null differ diff --git a/files/11_1413.jpg b/files/11_1413.jpg deleted file mode 100644 index 17972ef0f..000000000 Binary files a/files/11_1413.jpg and /dev/null differ diff --git a/files/11_1413.mp3 b/files/11_1413.mp3 deleted file mode 100644 index ac0d5cb0e..000000000 Binary files a/files/11_1413.mp3 and /dev/null differ diff --git a/files/11_1413_example.mp3 b/files/11_1413_example.mp3 deleted file mode 100644 index 3408e9e43..000000000 Binary files a/files/11_1413_example.mp3 and /dev/null differ diff --git a/files/11_1413_meaning.mp3 b/files/11_1413_meaning.mp3 deleted file mode 100644 index 7eb91c9fb..000000000 Binary files a/files/11_1413_meaning.mp3 and /dev/null differ diff --git a/files/11_1414.jpg b/files/11_1414.jpg deleted file mode 100644 index 4819a8c4c..000000000 Binary files a/files/11_1414.jpg and /dev/null differ diff --git a/files/11_1414.mp3 b/files/11_1414.mp3 deleted file mode 100644 index 00d60abd0..000000000 Binary files a/files/11_1414.mp3 and /dev/null differ diff --git a/files/11_1414_example.mp3 b/files/11_1414_example.mp3 deleted file mode 100644 index e6364ab56..000000000 Binary files a/files/11_1414_example.mp3 and /dev/null differ diff --git a/files/11_1414_meaning.mp3 b/files/11_1414_meaning.mp3 deleted file mode 100644 index 4e24c6e3f..000000000 Binary files a/files/11_1414_meaning.mp3 and /dev/null differ diff --git a/files/11_1415.jpg b/files/11_1415.jpg deleted file mode 100644 index bf8d10a4a..000000000 Binary files a/files/11_1415.jpg and /dev/null differ diff --git a/files/11_1415.mp3 b/files/11_1415.mp3 deleted file mode 100644 index 640a7ead8..000000000 Binary files a/files/11_1415.mp3 and /dev/null differ diff --git a/files/11_1415_example.mp3 b/files/11_1415_example.mp3 deleted file mode 100644 index d477e23ef..000000000 Binary files a/files/11_1415_example.mp3 and /dev/null differ diff --git a/files/11_1415_meaning.mp3 b/files/11_1415_meaning.mp3 deleted file mode 100644 index 49e583e17..000000000 Binary files a/files/11_1415_meaning.mp3 and /dev/null differ diff --git a/files/11_1416.jpg b/files/11_1416.jpg deleted file mode 100644 index 8912a9ac5..000000000 Binary files a/files/11_1416.jpg and /dev/null differ diff --git a/files/11_1416.mp3 b/files/11_1416.mp3 deleted file mode 100644 index 742a1b135..000000000 Binary files a/files/11_1416.mp3 and /dev/null differ diff --git a/files/11_1416_example.mp3 b/files/11_1416_example.mp3 deleted file mode 100644 index bf7be0587..000000000 Binary files a/files/11_1416_example.mp3 and /dev/null differ diff --git a/files/11_1416_meaning.mp3 b/files/11_1416_meaning.mp3 deleted file mode 100644 index 6e827fc90..000000000 Binary files a/files/11_1416_meaning.mp3 and /dev/null differ diff --git a/files/11_1417.jpg b/files/11_1417.jpg deleted file mode 100644 index eb600cc7a..000000000 Binary files a/files/11_1417.jpg and /dev/null differ diff --git a/files/11_1417.mp3 b/files/11_1417.mp3 deleted file mode 100644 index fe34988df..000000000 Binary files a/files/11_1417.mp3 and /dev/null differ diff --git a/files/11_1417_example.mp3 b/files/11_1417_example.mp3 deleted file mode 100644 index be3d71f6a..000000000 Binary files a/files/11_1417_example.mp3 and /dev/null differ diff --git a/files/11_1417_meaning.mp3 b/files/11_1417_meaning.mp3 deleted file mode 100644 index 413c38a14..000000000 Binary files a/files/11_1417_meaning.mp3 and /dev/null differ diff --git a/files/11_1418.jpg b/files/11_1418.jpg deleted file mode 100644 index 8c65bb0cc..000000000 Binary files a/files/11_1418.jpg and /dev/null differ diff --git a/files/11_1418.mp3 b/files/11_1418.mp3 deleted file mode 100644 index 6280b3f5d..000000000 Binary files a/files/11_1418.mp3 and /dev/null differ diff --git a/files/11_1418_example.mp3 b/files/11_1418_example.mp3 deleted file mode 100644 index 56af2a0ef..000000000 Binary files a/files/11_1418_example.mp3 and /dev/null differ diff --git a/files/11_1418_meaning.mp3 b/files/11_1418_meaning.mp3 deleted file mode 100644 index aa1fd4bf8..000000000 Binary files a/files/11_1418_meaning.mp3 and /dev/null differ diff --git a/files/11_1419.jpg b/files/11_1419.jpg deleted file mode 100644 index 916e74a4d..000000000 Binary files a/files/11_1419.jpg and /dev/null differ diff --git a/files/11_1419.mp3 b/files/11_1419.mp3 deleted file mode 100644 index b34f7106e..000000000 Binary files a/files/11_1419.mp3 and /dev/null differ diff --git a/files/11_1419_example.mp3 b/files/11_1419_example.mp3 deleted file mode 100644 index 0b7a2bb01..000000000 Binary files a/files/11_1419_example.mp3 and /dev/null differ diff --git a/files/11_1419_meaning.mp3 b/files/11_1419_meaning.mp3 deleted file mode 100644 index 8640f1bdc..000000000 Binary files a/files/11_1419_meaning.mp3 and /dev/null differ diff --git a/files/11_1420.jpg b/files/11_1420.jpg deleted file mode 100644 index 0adaad38d..000000000 Binary files a/files/11_1420.jpg and /dev/null differ diff --git a/files/11_1420.mp3 b/files/11_1420.mp3 deleted file mode 100644 index d6e28fd15..000000000 Binary files a/files/11_1420.mp3 and /dev/null differ diff --git a/files/11_1420_example.mp3 b/files/11_1420_example.mp3 deleted file mode 100644 index 51cf8a353..000000000 Binary files a/files/11_1420_example.mp3 and /dev/null differ diff --git a/files/11_1420_meaning.mp3 b/files/11_1420_meaning.mp3 deleted file mode 100644 index 0993d5080..000000000 Binary files a/files/11_1420_meaning.mp3 and /dev/null differ diff --git a/files/11_2001.jpg b/files/11_2001.jpg deleted file mode 100644 index d234346bc..000000000 Binary files a/files/11_2001.jpg and /dev/null differ diff --git a/files/11_2001.mp3 b/files/11_2001.mp3 deleted file mode 100644 index 37c3695f1..000000000 Binary files a/files/11_2001.mp3 and /dev/null differ diff --git a/files/11_2001_example.mp3 b/files/11_2001_example.mp3 deleted file mode 100644 index c21e9ab56..000000000 Binary files a/files/11_2001_example.mp3 and /dev/null differ diff --git a/files/11_2001_meaning.mp3 b/files/11_2001_meaning.mp3 deleted file mode 100644 index e98ed585d..000000000 Binary files a/files/11_2001_meaning.mp3 and /dev/null differ diff --git a/files/11_2002.jpg b/files/11_2002.jpg deleted file mode 100644 index 928ac30ed..000000000 Binary files a/files/11_2002.jpg and /dev/null differ diff --git a/files/11_2002.mp3 b/files/11_2002.mp3 deleted file mode 100644 index ff3781329..000000000 Binary files a/files/11_2002.mp3 and /dev/null differ diff --git a/files/11_2002_example.mp3 b/files/11_2002_example.mp3 deleted file mode 100644 index 595d7785a..000000000 Binary files a/files/11_2002_example.mp3 and /dev/null differ diff --git a/files/11_2002_meaning.mp3 b/files/11_2002_meaning.mp3 deleted file mode 100644 index bd11fd047..000000000 Binary files a/files/11_2002_meaning.mp3 and /dev/null differ diff --git a/files/11_2003.jpg b/files/11_2003.jpg deleted file mode 100644 index f44ed35f1..000000000 Binary files a/files/11_2003.jpg and /dev/null differ diff --git a/files/11_2003.mp3 b/files/11_2003.mp3 deleted file mode 100644 index 6270903e0..000000000 Binary files a/files/11_2003.mp3 and /dev/null differ diff --git a/files/11_2003_example.mp3 b/files/11_2003_example.mp3 deleted file mode 100644 index 07ae93508..000000000 Binary files a/files/11_2003_example.mp3 and /dev/null differ diff --git a/files/11_2003_meaning.mp3 b/files/11_2003_meaning.mp3 deleted file mode 100644 index e84b89f25..000000000 Binary files a/files/11_2003_meaning.mp3 and /dev/null differ diff --git a/files/11_2004.jpg b/files/11_2004.jpg deleted file mode 100644 index 325bde604..000000000 Binary files a/files/11_2004.jpg and /dev/null differ diff --git a/files/11_2004.mp3 b/files/11_2004.mp3 deleted file mode 100644 index 051bd6b88..000000000 Binary files a/files/11_2004.mp3 and /dev/null differ diff --git a/files/11_2004_example.mp3 b/files/11_2004_example.mp3 deleted file mode 100644 index c720c7e62..000000000 Binary files a/files/11_2004_example.mp3 and /dev/null differ diff --git a/files/11_2004_meaning.mp3 b/files/11_2004_meaning.mp3 deleted file mode 100644 index d1f158a7f..000000000 Binary files a/files/11_2004_meaning.mp3 and /dev/null differ diff --git a/files/11_2005.jpg b/files/11_2005.jpg deleted file mode 100644 index 9c1bb7df2..000000000 Binary files a/files/11_2005.jpg and /dev/null differ diff --git a/files/11_2005.mp3 b/files/11_2005.mp3 deleted file mode 100644 index c516c96c8..000000000 Binary files a/files/11_2005.mp3 and /dev/null differ diff --git a/files/11_2005_example.mp3 b/files/11_2005_example.mp3 deleted file mode 100644 index b977aff0b..000000000 Binary files a/files/11_2005_example.mp3 and /dev/null differ diff --git a/files/11_2005_meaning.mp3 b/files/11_2005_meaning.mp3 deleted file mode 100644 index 98d0fb5f0..000000000 Binary files a/files/11_2005_meaning.mp3 and /dev/null differ diff --git a/files/11_2006.jpg b/files/11_2006.jpg deleted file mode 100644 index 79fdfaf0c..000000000 Binary files a/files/11_2006.jpg and /dev/null differ diff --git a/files/11_2006.mp3 b/files/11_2006.mp3 deleted file mode 100644 index a559e1a86..000000000 Binary files a/files/11_2006.mp3 and /dev/null differ diff --git a/files/11_2006_example.mp3 b/files/11_2006_example.mp3 deleted file mode 100644 index 4375847c2..000000000 Binary files a/files/11_2006_example.mp3 and /dev/null differ diff --git a/files/11_2006_meaning.mp3 b/files/11_2006_meaning.mp3 deleted file mode 100644 index eadfa3c23..000000000 Binary files a/files/11_2006_meaning.mp3 and /dev/null differ diff --git a/files/11_2007.jpg b/files/11_2007.jpg deleted file mode 100644 index a9492cf85..000000000 Binary files a/files/11_2007.jpg and /dev/null differ diff --git a/files/11_2007.mp3 b/files/11_2007.mp3 deleted file mode 100644 index aba5ae2c7..000000000 Binary files a/files/11_2007.mp3 and /dev/null differ diff --git a/files/11_2007_example.mp3 b/files/11_2007_example.mp3 deleted file mode 100644 index 63a2e5272..000000000 Binary files a/files/11_2007_example.mp3 and /dev/null differ diff --git a/files/11_2007_meaning.mp3 b/files/11_2007_meaning.mp3 deleted file mode 100644 index 596ccad86..000000000 Binary files a/files/11_2007_meaning.mp3 and /dev/null differ diff --git a/files/11_2008.jpg b/files/11_2008.jpg deleted file mode 100644 index fd464a114..000000000 Binary files a/files/11_2008.jpg and /dev/null differ diff --git a/files/11_2008.mp3 b/files/11_2008.mp3 deleted file mode 100644 index 64b655e7c..000000000 Binary files a/files/11_2008.mp3 and /dev/null differ diff --git a/files/11_2008_example.mp3 b/files/11_2008_example.mp3 deleted file mode 100644 index fe7e9f071..000000000 Binary files a/files/11_2008_example.mp3 and /dev/null differ diff --git a/files/11_2008_meaning.mp3 b/files/11_2008_meaning.mp3 deleted file mode 100644 index e27b31ba3..000000000 Binary files a/files/11_2008_meaning.mp3 and /dev/null differ diff --git a/files/11_2009.jpg b/files/11_2009.jpg deleted file mode 100644 index 2e0348d63..000000000 Binary files a/files/11_2009.jpg and /dev/null differ diff --git a/files/11_2009.mp3 b/files/11_2009.mp3 deleted file mode 100644 index dfdae0e86..000000000 Binary files a/files/11_2009.mp3 and /dev/null differ diff --git a/files/11_2009_example.mp3 b/files/11_2009_example.mp3 deleted file mode 100644 index e2a89df18..000000000 Binary files a/files/11_2009_example.mp3 and /dev/null differ diff --git a/files/11_2009_meaning.mp3 b/files/11_2009_meaning.mp3 deleted file mode 100644 index 5735af170..000000000 Binary files a/files/11_2009_meaning.mp3 and /dev/null differ diff --git a/files/11_2010.jpg b/files/11_2010.jpg deleted file mode 100644 index 6ab8de65e..000000000 Binary files a/files/11_2010.jpg and /dev/null differ diff --git a/files/11_2010.mp3 b/files/11_2010.mp3 deleted file mode 100644 index 0446caab0..000000000 Binary files a/files/11_2010.mp3 and /dev/null differ diff --git a/files/11_2010_example.mp3 b/files/11_2010_example.mp3 deleted file mode 100644 index 24f5d4a84..000000000 Binary files a/files/11_2010_example.mp3 and /dev/null differ diff --git a/files/11_2010_meaning.mp3 b/files/11_2010_meaning.mp3 deleted file mode 100644 index 4dce78891..000000000 Binary files a/files/11_2010_meaning.mp3 and /dev/null differ diff --git a/files/11_2011.jpg b/files/11_2011.jpg deleted file mode 100644 index 6691663c7..000000000 Binary files a/files/11_2011.jpg and /dev/null differ diff --git a/files/11_2011.mp3 b/files/11_2011.mp3 deleted file mode 100644 index dcc452dad..000000000 Binary files a/files/11_2011.mp3 and /dev/null differ diff --git a/files/11_2011_example.mp3 b/files/11_2011_example.mp3 deleted file mode 100644 index 546a2d368..000000000 Binary files a/files/11_2011_example.mp3 and /dev/null differ diff --git a/files/11_2011_meaning.mp3 b/files/11_2011_meaning.mp3 deleted file mode 100644 index 1ca86a927..000000000 Binary files a/files/11_2011_meaning.mp3 and /dev/null differ diff --git a/files/11_2012.jpg b/files/11_2012.jpg deleted file mode 100644 index cb5ab6a7f..000000000 Binary files a/files/11_2012.jpg and /dev/null differ diff --git a/files/11_2012.mp3 b/files/11_2012.mp3 deleted file mode 100644 index 4b48a9384..000000000 Binary files a/files/11_2012.mp3 and /dev/null differ diff --git a/files/11_2012_example.mp3 b/files/11_2012_example.mp3 deleted file mode 100644 index 2e67a4499..000000000 Binary files a/files/11_2012_example.mp3 and /dev/null differ diff --git a/files/11_2012_meaning.mp3 b/files/11_2012_meaning.mp3 deleted file mode 100644 index b7f7921ff..000000000 Binary files a/files/11_2012_meaning.mp3 and /dev/null differ diff --git a/files/11_2013.jpg b/files/11_2013.jpg deleted file mode 100644 index d283ce4a6..000000000 Binary files a/files/11_2013.jpg and /dev/null differ diff --git a/files/11_2013.mp3 b/files/11_2013.mp3 deleted file mode 100644 index 49c72b677..000000000 Binary files a/files/11_2013.mp3 and /dev/null differ diff --git a/files/11_2013_example.mp3 b/files/11_2013_example.mp3 deleted file mode 100644 index c72e3028e..000000000 Binary files a/files/11_2013_example.mp3 and /dev/null differ diff --git a/files/11_2013_meaning.mp3 b/files/11_2013_meaning.mp3 deleted file mode 100644 index 6fb4f2804..000000000 Binary files a/files/11_2013_meaning.mp3 and /dev/null differ diff --git a/files/11_2014.jpg b/files/11_2014.jpg deleted file mode 100644 index a5cf957e5..000000000 Binary files a/files/11_2014.jpg and /dev/null differ diff --git a/files/11_2014.mp3 b/files/11_2014.mp3 deleted file mode 100644 index 0a895cbf2..000000000 Binary files a/files/11_2014.mp3 and /dev/null differ diff --git a/files/11_2014_example.mp3 b/files/11_2014_example.mp3 deleted file mode 100644 index afd5a5f40..000000000 Binary files a/files/11_2014_example.mp3 and /dev/null differ diff --git a/files/11_2014_meaning.mp3 b/files/11_2014_meaning.mp3 deleted file mode 100644 index 45fc469a0..000000000 Binary files a/files/11_2014_meaning.mp3 and /dev/null differ diff --git a/files/11_2015.jpg b/files/11_2015.jpg deleted file mode 100644 index 7c525cd18..000000000 Binary files a/files/11_2015.jpg and /dev/null differ diff --git a/files/11_2015.mp3 b/files/11_2015.mp3 deleted file mode 100644 index 17f704a7e..000000000 Binary files a/files/11_2015.mp3 and /dev/null differ diff --git a/files/11_2015_example.mp3 b/files/11_2015_example.mp3 deleted file mode 100644 index 4eda3dca5..000000000 Binary files a/files/11_2015_example.mp3 and /dev/null differ diff --git a/files/11_2015_meaning.mp3 b/files/11_2015_meaning.mp3 deleted file mode 100644 index 379cbf993..000000000 Binary files a/files/11_2015_meaning.mp3 and /dev/null differ diff --git a/files/11_2016.jpg b/files/11_2016.jpg deleted file mode 100644 index bcf850c4a..000000000 Binary files a/files/11_2016.jpg and /dev/null differ diff --git a/files/11_2016.mp3 b/files/11_2016.mp3 deleted file mode 100644 index cdf384f2c..000000000 Binary files a/files/11_2016.mp3 and /dev/null differ diff --git a/files/11_2016_example.mp3 b/files/11_2016_example.mp3 deleted file mode 100644 index 54669283c..000000000 Binary files a/files/11_2016_example.mp3 and /dev/null differ diff --git a/files/11_2016_meaning.mp3 b/files/11_2016_meaning.mp3 deleted file mode 100644 index 60afbe900..000000000 Binary files a/files/11_2016_meaning.mp3 and /dev/null differ diff --git a/files/11_2017.jpg b/files/11_2017.jpg deleted file mode 100644 index c41f38acf..000000000 Binary files a/files/11_2017.jpg and /dev/null differ diff --git a/files/11_2017.mp3 b/files/11_2017.mp3 deleted file mode 100644 index 84e1b7ef8..000000000 Binary files a/files/11_2017.mp3 and /dev/null differ diff --git a/files/11_2017_example.mp3 b/files/11_2017_example.mp3 deleted file mode 100644 index 5ae14ee65..000000000 Binary files a/files/11_2017_example.mp3 and /dev/null differ diff --git a/files/11_2017_meaning.mp3 b/files/11_2017_meaning.mp3 deleted file mode 100644 index 89af58a96..000000000 Binary files a/files/11_2017_meaning.mp3 and /dev/null differ diff --git a/files/11_2018.jpg b/files/11_2018.jpg deleted file mode 100644 index 3a0ef79bf..000000000 Binary files a/files/11_2018.jpg and /dev/null differ diff --git a/files/11_2018.mp3 b/files/11_2018.mp3 deleted file mode 100644 index 8546a2c07..000000000 Binary files a/files/11_2018.mp3 and /dev/null differ diff --git a/files/11_2018_example.mp3 b/files/11_2018_example.mp3 deleted file mode 100644 index 7eec01edb..000000000 Binary files a/files/11_2018_example.mp3 and /dev/null differ diff --git a/files/11_2018_meaning.mp3 b/files/11_2018_meaning.mp3 deleted file mode 100644 index 51538ad63..000000000 Binary files a/files/11_2018_meaning.mp3 and /dev/null differ diff --git a/files/11_2019.jpg b/files/11_2019.jpg deleted file mode 100644 index d9462ed6b..000000000 Binary files a/files/11_2019.jpg and /dev/null differ diff --git a/files/11_2019.mp3 b/files/11_2019.mp3 deleted file mode 100644 index 51bc95096..000000000 Binary files a/files/11_2019.mp3 and /dev/null differ diff --git a/files/11_2019_example.mp3 b/files/11_2019_example.mp3 deleted file mode 100644 index de802941b..000000000 Binary files a/files/11_2019_example.mp3 and /dev/null differ diff --git a/files/11_2019_meaning.mp3 b/files/11_2019_meaning.mp3 deleted file mode 100644 index 0c621f5bd..000000000 Binary files a/files/11_2019_meaning.mp3 and /dev/null differ diff --git a/files/11_2020.jpg b/files/11_2020.jpg deleted file mode 100644 index 037e3894d..000000000 Binary files a/files/11_2020.jpg and /dev/null differ diff --git a/files/11_2020.mp3 b/files/11_2020.mp3 deleted file mode 100644 index 6930727a0..000000000 Binary files a/files/11_2020.mp3 and /dev/null differ diff --git a/files/11_2020_example.mp3 b/files/11_2020_example.mp3 deleted file mode 100644 index 6057dd6bb..000000000 Binary files a/files/11_2020_example.mp3 and /dev/null differ diff --git a/files/11_2020_meaning.mp3 b/files/11_2020_meaning.mp3 deleted file mode 100644 index 4b20fe736..000000000 Binary files a/files/11_2020_meaning.mp3 and /dev/null differ diff --git a/files/11_2601.jpg b/files/11_2601.jpg deleted file mode 100644 index 1ae390952..000000000 Binary files a/files/11_2601.jpg and /dev/null differ diff --git a/files/11_2601.mp3 b/files/11_2601.mp3 deleted file mode 100644 index 7b5139698..000000000 Binary files a/files/11_2601.mp3 and /dev/null differ diff --git a/files/11_2601_example.mp3 b/files/11_2601_example.mp3 deleted file mode 100644 index 6fecdbc41..000000000 Binary files a/files/11_2601_example.mp3 and /dev/null differ diff --git a/files/11_2601_meaning.mp3 b/files/11_2601_meaning.mp3 deleted file mode 100644 index 653e5d423..000000000 Binary files a/files/11_2601_meaning.mp3 and /dev/null differ diff --git a/files/11_2602.jpg b/files/11_2602.jpg deleted file mode 100644 index 7f4cb4eb4..000000000 Binary files a/files/11_2602.jpg and /dev/null differ diff --git a/files/11_2602.mp3 b/files/11_2602.mp3 deleted file mode 100644 index b59b92aeb..000000000 Binary files a/files/11_2602.mp3 and /dev/null differ diff --git a/files/11_2602_example.mp3 b/files/11_2602_example.mp3 deleted file mode 100644 index 2b99fd33b..000000000 Binary files a/files/11_2602_example.mp3 and /dev/null differ diff --git a/files/11_2602_meaning.mp3 b/files/11_2602_meaning.mp3 deleted file mode 100644 index c0d2554a9..000000000 Binary files a/files/11_2602_meaning.mp3 and /dev/null differ diff --git a/files/11_2603.jpg b/files/11_2603.jpg deleted file mode 100644 index 15e4bf67c..000000000 Binary files a/files/11_2603.jpg and /dev/null differ diff --git a/files/11_2603.mp3 b/files/11_2603.mp3 deleted file mode 100644 index ca46a3955..000000000 Binary files a/files/11_2603.mp3 and /dev/null differ diff --git a/files/11_2603_example.mp3 b/files/11_2603_example.mp3 deleted file mode 100644 index ca0066913..000000000 Binary files a/files/11_2603_example.mp3 and /dev/null differ diff --git a/files/11_2603_meaning.mp3 b/files/11_2603_meaning.mp3 deleted file mode 100644 index 979275309..000000000 Binary files a/files/11_2603_meaning.mp3 and /dev/null differ diff --git a/files/11_2604.jpg b/files/11_2604.jpg deleted file mode 100644 index 14e4570a1..000000000 Binary files a/files/11_2604.jpg and /dev/null differ diff --git a/files/11_2604.mp3 b/files/11_2604.mp3 deleted file mode 100644 index 0fb4c3455..000000000 Binary files a/files/11_2604.mp3 and /dev/null differ diff --git a/files/11_2604_example.mp3 b/files/11_2604_example.mp3 deleted file mode 100644 index 53ac8e335..000000000 Binary files a/files/11_2604_example.mp3 and /dev/null differ diff --git a/files/11_2604_meaning.mp3 b/files/11_2604_meaning.mp3 deleted file mode 100644 index 651ee69f3..000000000 Binary files a/files/11_2604_meaning.mp3 and /dev/null differ diff --git a/files/11_2605.jpg b/files/11_2605.jpg deleted file mode 100644 index 094ff2003..000000000 Binary files a/files/11_2605.jpg and /dev/null differ diff --git a/files/11_2605.mp3 b/files/11_2605.mp3 deleted file mode 100644 index 87248d067..000000000 Binary files a/files/11_2605.mp3 and /dev/null differ diff --git a/files/11_2605_example.mp3 b/files/11_2605_example.mp3 deleted file mode 100644 index 43d490268..000000000 Binary files a/files/11_2605_example.mp3 and /dev/null differ diff --git a/files/11_2605_meaning.mp3 b/files/11_2605_meaning.mp3 deleted file mode 100644 index a1f548b86..000000000 Binary files a/files/11_2605_meaning.mp3 and /dev/null differ diff --git a/files/11_2606.jpg b/files/11_2606.jpg deleted file mode 100644 index 5d126b96b..000000000 Binary files a/files/11_2606.jpg and /dev/null differ diff --git a/files/11_2606.mp3 b/files/11_2606.mp3 deleted file mode 100644 index 9519f0c4e..000000000 Binary files a/files/11_2606.mp3 and /dev/null differ diff --git a/files/11_2606_example.mp3 b/files/11_2606_example.mp3 deleted file mode 100644 index 7211badbd..000000000 Binary files a/files/11_2606_example.mp3 and /dev/null differ diff --git a/files/11_2606_meaning.mp3 b/files/11_2606_meaning.mp3 deleted file mode 100644 index 4f2282bf9..000000000 Binary files a/files/11_2606_meaning.mp3 and /dev/null differ diff --git a/files/11_2607.jpg b/files/11_2607.jpg deleted file mode 100644 index dba97376c..000000000 Binary files a/files/11_2607.jpg and /dev/null differ diff --git a/files/11_2607.mp3 b/files/11_2607.mp3 deleted file mode 100644 index 3f16a5833..000000000 Binary files a/files/11_2607.mp3 and /dev/null differ diff --git a/files/11_2607_example.mp3 b/files/11_2607_example.mp3 deleted file mode 100644 index bff982355..000000000 Binary files a/files/11_2607_example.mp3 and /dev/null differ diff --git a/files/11_2607_meaning.mp3 b/files/11_2607_meaning.mp3 deleted file mode 100644 index 26657c6c5..000000000 Binary files a/files/11_2607_meaning.mp3 and /dev/null differ diff --git a/files/11_2608.jpg b/files/11_2608.jpg deleted file mode 100644 index 4db263b46..000000000 Binary files a/files/11_2608.jpg and /dev/null differ diff --git a/files/11_2608.mp3 b/files/11_2608.mp3 deleted file mode 100644 index 947fbec43..000000000 Binary files a/files/11_2608.mp3 and /dev/null differ diff --git a/files/11_2608_example.mp3 b/files/11_2608_example.mp3 deleted file mode 100644 index c211eef51..000000000 Binary files a/files/11_2608_example.mp3 and /dev/null differ diff --git a/files/11_2608_meaning.mp3 b/files/11_2608_meaning.mp3 deleted file mode 100644 index 93d848a72..000000000 Binary files a/files/11_2608_meaning.mp3 and /dev/null differ diff --git a/files/11_2609.jpg b/files/11_2609.jpg deleted file mode 100644 index ec0fbbc23..000000000 Binary files a/files/11_2609.jpg and /dev/null differ diff --git a/files/11_2609.mp3 b/files/11_2609.mp3 deleted file mode 100644 index 42c8cf49b..000000000 Binary files a/files/11_2609.mp3 and /dev/null differ diff --git a/files/11_2609_example.mp3 b/files/11_2609_example.mp3 deleted file mode 100644 index 75d29b960..000000000 Binary files a/files/11_2609_example.mp3 and /dev/null differ diff --git a/files/11_2609_meaning.mp3 b/files/11_2609_meaning.mp3 deleted file mode 100644 index a6c03f417..000000000 Binary files a/files/11_2609_meaning.mp3 and /dev/null differ diff --git a/files/11_2610.jpg b/files/11_2610.jpg deleted file mode 100644 index f3a8868ea..000000000 Binary files a/files/11_2610.jpg and /dev/null differ diff --git a/files/11_2610.mp3 b/files/11_2610.mp3 deleted file mode 100644 index 4b7754e63..000000000 Binary files a/files/11_2610.mp3 and /dev/null differ diff --git a/files/11_2610_example.mp3 b/files/11_2610_example.mp3 deleted file mode 100644 index 2d3b8b427..000000000 Binary files a/files/11_2610_example.mp3 and /dev/null differ diff --git a/files/11_2610_meaning.mp3 b/files/11_2610_meaning.mp3 deleted file mode 100644 index 4fb43a399..000000000 Binary files a/files/11_2610_meaning.mp3 and /dev/null differ diff --git a/files/11_2611.jpg b/files/11_2611.jpg deleted file mode 100644 index 0a771ef39..000000000 Binary files a/files/11_2611.jpg and /dev/null differ diff --git a/files/11_2611.mp3 b/files/11_2611.mp3 deleted file mode 100644 index 77ff235cf..000000000 Binary files a/files/11_2611.mp3 and /dev/null differ diff --git a/files/11_2611_example.mp3 b/files/11_2611_example.mp3 deleted file mode 100644 index c47150782..000000000 Binary files a/files/11_2611_example.mp3 and /dev/null differ diff --git a/files/11_2611_meaning.mp3 b/files/11_2611_meaning.mp3 deleted file mode 100644 index a27e2b17d..000000000 Binary files a/files/11_2611_meaning.mp3 and /dev/null differ diff --git a/files/11_2612.jpg b/files/11_2612.jpg deleted file mode 100644 index 0aed89a52..000000000 Binary files a/files/11_2612.jpg and /dev/null differ diff --git a/files/11_2612.mp3 b/files/11_2612.mp3 deleted file mode 100644 index f33151b9d..000000000 Binary files a/files/11_2612.mp3 and /dev/null differ diff --git a/files/11_2612_example.mp3 b/files/11_2612_example.mp3 deleted file mode 100644 index 2ab5ac5f2..000000000 Binary files a/files/11_2612_example.mp3 and /dev/null differ diff --git a/files/11_2612_meaning.mp3 b/files/11_2612_meaning.mp3 deleted file mode 100644 index 13b6cc639..000000000 Binary files a/files/11_2612_meaning.mp3 and /dev/null differ diff --git a/files/11_2613.jpg b/files/11_2613.jpg deleted file mode 100644 index 7cf837190..000000000 Binary files a/files/11_2613.jpg and /dev/null differ diff --git a/files/11_2613.mp3 b/files/11_2613.mp3 deleted file mode 100644 index 9c5bc6a53..000000000 Binary files a/files/11_2613.mp3 and /dev/null differ diff --git a/files/11_2613_example.mp3 b/files/11_2613_example.mp3 deleted file mode 100644 index 52c540174..000000000 Binary files a/files/11_2613_example.mp3 and /dev/null differ diff --git a/files/11_2613_meaning.mp3 b/files/11_2613_meaning.mp3 deleted file mode 100644 index 140a9b68b..000000000 Binary files a/files/11_2613_meaning.mp3 and /dev/null differ diff --git a/files/11_2614.jpg b/files/11_2614.jpg deleted file mode 100644 index 9efd7bc90..000000000 Binary files a/files/11_2614.jpg and /dev/null differ diff --git a/files/11_2614.mp3 b/files/11_2614.mp3 deleted file mode 100644 index 1a093f97a..000000000 Binary files a/files/11_2614.mp3 and /dev/null differ diff --git a/files/11_2614_example.mp3 b/files/11_2614_example.mp3 deleted file mode 100644 index 478389f56..000000000 Binary files a/files/11_2614_example.mp3 and /dev/null differ diff --git a/files/11_2614_meaning.mp3 b/files/11_2614_meaning.mp3 deleted file mode 100644 index c09eeecb1..000000000 Binary files a/files/11_2614_meaning.mp3 and /dev/null differ diff --git a/files/11_2615.jpg b/files/11_2615.jpg deleted file mode 100644 index c90be5675..000000000 Binary files a/files/11_2615.jpg and /dev/null differ diff --git a/files/11_2615.mp3 b/files/11_2615.mp3 deleted file mode 100644 index 570773723..000000000 Binary files a/files/11_2615.mp3 and /dev/null differ diff --git a/files/11_2615_example.mp3 b/files/11_2615_example.mp3 deleted file mode 100644 index 668284659..000000000 Binary files a/files/11_2615_example.mp3 and /dev/null differ diff --git a/files/11_2615_meaning.mp3 b/files/11_2615_meaning.mp3 deleted file mode 100644 index a9be8860c..000000000 Binary files a/files/11_2615_meaning.mp3 and /dev/null differ diff --git a/files/11_2616.jpg b/files/11_2616.jpg deleted file mode 100644 index 639b5ae70..000000000 Binary files a/files/11_2616.jpg and /dev/null differ diff --git a/files/11_2616.mp3 b/files/11_2616.mp3 deleted file mode 100644 index 6a75a6594..000000000 Binary files a/files/11_2616.mp3 and /dev/null differ diff --git a/files/11_2616_example.mp3 b/files/11_2616_example.mp3 deleted file mode 100644 index 9922b5385..000000000 Binary files a/files/11_2616_example.mp3 and /dev/null differ diff --git a/files/11_2616_meaning.mp3 b/files/11_2616_meaning.mp3 deleted file mode 100644 index 8a012f7da..000000000 Binary files a/files/11_2616_meaning.mp3 and /dev/null differ diff --git a/files/11_2617.jpg b/files/11_2617.jpg deleted file mode 100644 index cbb159ef5..000000000 Binary files a/files/11_2617.jpg and /dev/null differ diff --git a/files/11_2617.mp3 b/files/11_2617.mp3 deleted file mode 100644 index 7cdef7981..000000000 Binary files a/files/11_2617.mp3 and /dev/null differ diff --git a/files/11_2617_example.mp3 b/files/11_2617_example.mp3 deleted file mode 100644 index 8c31f186b..000000000 Binary files a/files/11_2617_example.mp3 and /dev/null differ diff --git a/files/11_2617_meaning.mp3 b/files/11_2617_meaning.mp3 deleted file mode 100644 index a0e60e0d4..000000000 Binary files a/files/11_2617_meaning.mp3 and /dev/null differ diff --git a/files/11_2618.jpg b/files/11_2618.jpg deleted file mode 100644 index 3f2c47de5..000000000 Binary files a/files/11_2618.jpg and /dev/null differ diff --git a/files/11_2618.mp3 b/files/11_2618.mp3 deleted file mode 100644 index 29358b185..000000000 Binary files a/files/11_2618.mp3 and /dev/null differ diff --git a/files/11_2618_example.mp3 b/files/11_2618_example.mp3 deleted file mode 100644 index 7b609a8f6..000000000 Binary files a/files/11_2618_example.mp3 and /dev/null differ diff --git a/files/11_2618_meaning.mp3 b/files/11_2618_meaning.mp3 deleted file mode 100644 index c2dac9856..000000000 Binary files a/files/11_2618_meaning.mp3 and /dev/null differ diff --git a/files/11_2619.jpg b/files/11_2619.jpg deleted file mode 100644 index 98b0fb0f5..000000000 Binary files a/files/11_2619.jpg and /dev/null differ diff --git a/files/11_2619.mp3 b/files/11_2619.mp3 deleted file mode 100644 index 75e3cff78..000000000 Binary files a/files/11_2619.mp3 and /dev/null differ diff --git a/files/11_2619_example.mp3 b/files/11_2619_example.mp3 deleted file mode 100644 index 1606fb69b..000000000 Binary files a/files/11_2619_example.mp3 and /dev/null differ diff --git a/files/11_2619_meaning.mp3 b/files/11_2619_meaning.mp3 deleted file mode 100644 index e92931748..000000000 Binary files a/files/11_2619_meaning.mp3 and /dev/null differ diff --git a/files/11_2620.jpg b/files/11_2620.jpg deleted file mode 100644 index ad0f46343..000000000 Binary files a/files/11_2620.jpg and /dev/null differ diff --git a/files/11_2620.mp3 b/files/11_2620.mp3 deleted file mode 100644 index 482b5e5f7..000000000 Binary files a/files/11_2620.mp3 and /dev/null differ diff --git a/files/11_2620_example.mp3 b/files/11_2620_example.mp3 deleted file mode 100644 index 5e29a03a5..000000000 Binary files a/files/11_2620_example.mp3 and /dev/null differ diff --git a/files/11_2620_meaning.mp3 b/files/11_2620_meaning.mp3 deleted file mode 100644 index 28688558b..000000000 Binary files a/files/11_2620_meaning.mp3 and /dev/null differ diff --git a/files/11_3201.jpg b/files/11_3201.jpg deleted file mode 100644 index 5d138ee74..000000000 Binary files a/files/11_3201.jpg and /dev/null differ diff --git a/files/11_3201.mp3 b/files/11_3201.mp3 deleted file mode 100644 index 7b36362ea..000000000 Binary files a/files/11_3201.mp3 and /dev/null differ diff --git a/files/11_3201_example.mp3 b/files/11_3201_example.mp3 deleted file mode 100644 index d6cda9ca3..000000000 Binary files a/files/11_3201_example.mp3 and /dev/null differ diff --git a/files/11_3201_meaning.mp3 b/files/11_3201_meaning.mp3 deleted file mode 100644 index babc12cfe..000000000 Binary files a/files/11_3201_meaning.mp3 and /dev/null differ diff --git a/files/11_3202.jpg b/files/11_3202.jpg deleted file mode 100644 index c6d348179..000000000 Binary files a/files/11_3202.jpg and /dev/null differ diff --git a/files/11_3202.mp3 b/files/11_3202.mp3 deleted file mode 100644 index 0f16bb5da..000000000 Binary files a/files/11_3202.mp3 and /dev/null differ diff --git a/files/11_3202_example.mp3 b/files/11_3202_example.mp3 deleted file mode 100644 index 411fcbc23..000000000 Binary files a/files/11_3202_example.mp3 and /dev/null differ diff --git a/files/11_3202_meaning.mp3 b/files/11_3202_meaning.mp3 deleted file mode 100644 index 08aff3ab9..000000000 Binary files a/files/11_3202_meaning.mp3 and /dev/null differ diff --git a/files/11_3203.jpg b/files/11_3203.jpg deleted file mode 100644 index ebd1c1f44..000000000 Binary files a/files/11_3203.jpg and /dev/null differ diff --git a/files/11_3203.mp3 b/files/11_3203.mp3 deleted file mode 100644 index c8b14a24c..000000000 Binary files a/files/11_3203.mp3 and /dev/null differ diff --git a/files/11_3203_example.mp3 b/files/11_3203_example.mp3 deleted file mode 100644 index 97d63ce94..000000000 Binary files a/files/11_3203_example.mp3 and /dev/null differ diff --git a/files/11_3203_meaning.mp3 b/files/11_3203_meaning.mp3 deleted file mode 100644 index 84e17cc47..000000000 Binary files a/files/11_3203_meaning.mp3 and /dev/null differ diff --git a/files/11_3204.jpg b/files/11_3204.jpg deleted file mode 100644 index 535de1ad3..000000000 Binary files a/files/11_3204.jpg and /dev/null differ diff --git a/files/11_3204.mp3 b/files/11_3204.mp3 deleted file mode 100644 index e94305e39..000000000 Binary files a/files/11_3204.mp3 and /dev/null differ diff --git a/files/11_3204_example.mp3 b/files/11_3204_example.mp3 deleted file mode 100644 index c87d7ecc8..000000000 Binary files a/files/11_3204_example.mp3 and /dev/null differ diff --git a/files/11_3204_meaning.mp3 b/files/11_3204_meaning.mp3 deleted file mode 100644 index 6a5a51c2c..000000000 Binary files a/files/11_3204_meaning.mp3 and /dev/null differ diff --git a/files/11_3205.jpg b/files/11_3205.jpg deleted file mode 100644 index ba4b57820..000000000 Binary files a/files/11_3205.jpg and /dev/null differ diff --git a/files/11_3205.mp3 b/files/11_3205.mp3 deleted file mode 100644 index eeac1645e..000000000 Binary files a/files/11_3205.mp3 and /dev/null differ diff --git a/files/11_3205_example.mp3 b/files/11_3205_example.mp3 deleted file mode 100644 index dd221557c..000000000 Binary files a/files/11_3205_example.mp3 and /dev/null differ diff --git a/files/11_3205_meaning.mp3 b/files/11_3205_meaning.mp3 deleted file mode 100644 index e9c86cedd..000000000 Binary files a/files/11_3205_meaning.mp3 and /dev/null differ diff --git a/files/11_3206.jpg b/files/11_3206.jpg deleted file mode 100644 index 11a8e1113..000000000 Binary files a/files/11_3206.jpg and /dev/null differ diff --git a/files/11_3206.mp3 b/files/11_3206.mp3 deleted file mode 100644 index c4efbaf10..000000000 Binary files a/files/11_3206.mp3 and /dev/null differ diff --git a/files/11_3206_example.mp3 b/files/11_3206_example.mp3 deleted file mode 100644 index 1c8fdb306..000000000 Binary files a/files/11_3206_example.mp3 and /dev/null differ diff --git a/files/11_3206_meaning.mp3 b/files/11_3206_meaning.mp3 deleted file mode 100644 index 658e89caf..000000000 Binary files a/files/11_3206_meaning.mp3 and /dev/null differ diff --git a/files/11_3207.jpg b/files/11_3207.jpg deleted file mode 100644 index 3f22d94ce..000000000 Binary files a/files/11_3207.jpg and /dev/null differ diff --git a/files/11_3207.mp3 b/files/11_3207.mp3 deleted file mode 100644 index 912885775..000000000 Binary files a/files/11_3207.mp3 and /dev/null differ diff --git a/files/11_3207_example.mp3 b/files/11_3207_example.mp3 deleted file mode 100644 index d4bb21605..000000000 Binary files a/files/11_3207_example.mp3 and /dev/null differ diff --git a/files/11_3207_meaning.mp3 b/files/11_3207_meaning.mp3 deleted file mode 100644 index 7521f72ee..000000000 Binary files a/files/11_3207_meaning.mp3 and /dev/null differ diff --git a/files/11_3208.jpg b/files/11_3208.jpg deleted file mode 100644 index fae68e30a..000000000 Binary files a/files/11_3208.jpg and /dev/null differ diff --git a/files/11_3208.mp3 b/files/11_3208.mp3 deleted file mode 100644 index 23bfb239d..000000000 Binary files a/files/11_3208.mp3 and /dev/null differ diff --git a/files/11_3208_example.mp3 b/files/11_3208_example.mp3 deleted file mode 100644 index 235ea901f..000000000 Binary files a/files/11_3208_example.mp3 and /dev/null differ diff --git a/files/11_3208_meaning.mp3 b/files/11_3208_meaning.mp3 deleted file mode 100644 index 17c90064f..000000000 Binary files a/files/11_3208_meaning.mp3 and /dev/null differ diff --git a/files/11_3209.jpg b/files/11_3209.jpg deleted file mode 100644 index 761bdac9e..000000000 Binary files a/files/11_3209.jpg and /dev/null differ diff --git a/files/11_3209.mp3 b/files/11_3209.mp3 deleted file mode 100644 index 0d46541ef..000000000 Binary files a/files/11_3209.mp3 and /dev/null differ diff --git a/files/11_3209_example.mp3 b/files/11_3209_example.mp3 deleted file mode 100644 index f1aba457c..000000000 Binary files a/files/11_3209_example.mp3 and /dev/null differ diff --git a/files/11_3209_meaning.mp3 b/files/11_3209_meaning.mp3 deleted file mode 100644 index 70183b3c7..000000000 Binary files a/files/11_3209_meaning.mp3 and /dev/null differ diff --git a/files/11_3210.jpg b/files/11_3210.jpg deleted file mode 100644 index ba714100a..000000000 Binary files a/files/11_3210.jpg and /dev/null differ diff --git a/files/11_3210.mp3 b/files/11_3210.mp3 deleted file mode 100644 index 5722cc5bb..000000000 Binary files a/files/11_3210.mp3 and /dev/null differ diff --git a/files/11_3210_example.mp3 b/files/11_3210_example.mp3 deleted file mode 100644 index e51b9ee0e..000000000 Binary files a/files/11_3210_example.mp3 and /dev/null differ diff --git a/files/11_3210_meaning.mp3 b/files/11_3210_meaning.mp3 deleted file mode 100644 index bc752885f..000000000 Binary files a/files/11_3210_meaning.mp3 and /dev/null differ diff --git a/files/11_3211.jpg b/files/11_3211.jpg deleted file mode 100644 index c2e799d15..000000000 Binary files a/files/11_3211.jpg and /dev/null differ diff --git a/files/11_3211.mp3 b/files/11_3211.mp3 deleted file mode 100644 index 724f3a139..000000000 Binary files a/files/11_3211.mp3 and /dev/null differ diff --git a/files/11_3211_example.mp3 b/files/11_3211_example.mp3 deleted file mode 100644 index baf7baa0e..000000000 Binary files a/files/11_3211_example.mp3 and /dev/null differ diff --git a/files/11_3211_meaning.mp3 b/files/11_3211_meaning.mp3 deleted file mode 100644 index b9fac3df0..000000000 Binary files a/files/11_3211_meaning.mp3 and /dev/null differ diff --git a/files/11_3212.jpg b/files/11_3212.jpg deleted file mode 100644 index 46795ca58..000000000 Binary files a/files/11_3212.jpg and /dev/null differ diff --git a/files/11_3212.mp3 b/files/11_3212.mp3 deleted file mode 100644 index b2e723870..000000000 Binary files a/files/11_3212.mp3 and /dev/null differ diff --git a/files/11_3212_example.mp3 b/files/11_3212_example.mp3 deleted file mode 100644 index 1194693e8..000000000 Binary files a/files/11_3212_example.mp3 and /dev/null differ diff --git a/files/11_3212_meaning.mp3 b/files/11_3212_meaning.mp3 deleted file mode 100644 index 68c8e60e6..000000000 Binary files a/files/11_3212_meaning.mp3 and /dev/null differ diff --git a/files/11_3213.jpg b/files/11_3213.jpg deleted file mode 100644 index 7103e429e..000000000 Binary files a/files/11_3213.jpg and /dev/null differ diff --git a/files/11_3213.mp3 b/files/11_3213.mp3 deleted file mode 100644 index 9fc10dc9f..000000000 Binary files a/files/11_3213.mp3 and /dev/null differ diff --git a/files/11_3213_example.mp3 b/files/11_3213_example.mp3 deleted file mode 100644 index 9e1e46fe5..000000000 Binary files a/files/11_3213_example.mp3 and /dev/null differ diff --git a/files/11_3213_meaning.mp3 b/files/11_3213_meaning.mp3 deleted file mode 100644 index b52b2a760..000000000 Binary files a/files/11_3213_meaning.mp3 and /dev/null differ diff --git a/files/11_3214.jpg b/files/11_3214.jpg deleted file mode 100644 index f4c4a3b07..000000000 Binary files a/files/11_3214.jpg and /dev/null differ diff --git a/files/11_3214.mp3 b/files/11_3214.mp3 deleted file mode 100644 index 238086006..000000000 Binary files a/files/11_3214.mp3 and /dev/null differ diff --git a/files/11_3214_example.mp3 b/files/11_3214_example.mp3 deleted file mode 100644 index 251d7a008..000000000 Binary files a/files/11_3214_example.mp3 and /dev/null differ diff --git a/files/11_3214_meaning.mp3 b/files/11_3214_meaning.mp3 deleted file mode 100644 index 32bdffbb1..000000000 Binary files a/files/11_3214_meaning.mp3 and /dev/null differ diff --git a/files/11_3215.jpg b/files/11_3215.jpg deleted file mode 100644 index 83c677373..000000000 Binary files a/files/11_3215.jpg and /dev/null differ diff --git a/files/11_3215.mp3 b/files/11_3215.mp3 deleted file mode 100644 index f2af6553f..000000000 Binary files a/files/11_3215.mp3 and /dev/null differ diff --git a/files/11_3215_example.mp3 b/files/11_3215_example.mp3 deleted file mode 100644 index 396f31da2..000000000 Binary files a/files/11_3215_example.mp3 and /dev/null differ diff --git a/files/11_3215_meaning.mp3 b/files/11_3215_meaning.mp3 deleted file mode 100644 index 2edb29704..000000000 Binary files a/files/11_3215_meaning.mp3 and /dev/null differ diff --git a/files/11_3216.jpg b/files/11_3216.jpg deleted file mode 100644 index da3a9bef9..000000000 Binary files a/files/11_3216.jpg and /dev/null differ diff --git a/files/11_3216.mp3 b/files/11_3216.mp3 deleted file mode 100644 index 5cbc4393f..000000000 Binary files a/files/11_3216.mp3 and /dev/null differ diff --git a/files/11_3216_example.mp3 b/files/11_3216_example.mp3 deleted file mode 100644 index 23b415d58..000000000 Binary files a/files/11_3216_example.mp3 and /dev/null differ diff --git a/files/11_3216_meaning.mp3 b/files/11_3216_meaning.mp3 deleted file mode 100644 index 0fcad8980..000000000 Binary files a/files/11_3216_meaning.mp3 and /dev/null differ diff --git a/files/11_3217.jpg b/files/11_3217.jpg deleted file mode 100644 index a6b49f3e3..000000000 Binary files a/files/11_3217.jpg and /dev/null differ diff --git a/files/11_3217.mp3 b/files/11_3217.mp3 deleted file mode 100644 index 25b08320f..000000000 Binary files a/files/11_3217.mp3 and /dev/null differ diff --git a/files/11_3217_example.mp3 b/files/11_3217_example.mp3 deleted file mode 100644 index d34775550..000000000 Binary files a/files/11_3217_example.mp3 and /dev/null differ diff --git a/files/11_3217_meaning.mp3 b/files/11_3217_meaning.mp3 deleted file mode 100644 index 81674498e..000000000 Binary files a/files/11_3217_meaning.mp3 and /dev/null differ diff --git a/files/11_3218.jpg b/files/11_3218.jpg deleted file mode 100644 index 6fdf2f7a8..000000000 Binary files a/files/11_3218.jpg and /dev/null differ diff --git a/files/11_3218.mp3 b/files/11_3218.mp3 deleted file mode 100644 index 30c1c3302..000000000 Binary files a/files/11_3218.mp3 and /dev/null differ diff --git a/files/11_3218_example.mp3 b/files/11_3218_example.mp3 deleted file mode 100644 index d25311b35..000000000 Binary files a/files/11_3218_example.mp3 and /dev/null differ diff --git a/files/11_3218_meaning.mp3 b/files/11_3218_meaning.mp3 deleted file mode 100644 index ced8ad6b9..000000000 Binary files a/files/11_3218_meaning.mp3 and /dev/null differ diff --git a/files/11_3219.jpg b/files/11_3219.jpg deleted file mode 100644 index 4c560b207..000000000 Binary files a/files/11_3219.jpg and /dev/null differ diff --git a/files/11_3219.mp3 b/files/11_3219.mp3 deleted file mode 100644 index b21d880e8..000000000 Binary files a/files/11_3219.mp3 and /dev/null differ diff --git a/files/11_3219_example.mp3 b/files/11_3219_example.mp3 deleted file mode 100644 index 7c714a5d7..000000000 Binary files a/files/11_3219_example.mp3 and /dev/null differ diff --git a/files/11_3219_meaning.mp3 b/files/11_3219_meaning.mp3 deleted file mode 100644 index 79fb89fbc..000000000 Binary files a/files/11_3219_meaning.mp3 and /dev/null differ diff --git a/files/11_3220.jpg b/files/11_3220.jpg deleted file mode 100644 index 9ee20468e..000000000 Binary files a/files/11_3220.jpg and /dev/null differ diff --git a/files/11_3220.mp3 b/files/11_3220.mp3 deleted file mode 100644 index 181c16ce1..000000000 Binary files a/files/11_3220.mp3 and /dev/null differ diff --git a/files/11_3220_example.mp3 b/files/11_3220_example.mp3 deleted file mode 100644 index 55d13df0f..000000000 Binary files a/files/11_3220_example.mp3 and /dev/null differ diff --git a/files/11_3220_meaning.mp3 b/files/11_3220_meaning.mp3 deleted file mode 100644 index 8b49db026..000000000 Binary files a/files/11_3220_meaning.mp3 and /dev/null differ diff --git a/files/12_0221.jpg b/files/12_0221.jpg deleted file mode 100644 index f22e9df62..000000000 Binary files a/files/12_0221.jpg and /dev/null differ diff --git a/files/12_0221.mp3 b/files/12_0221.mp3 deleted file mode 100644 index 270e5cc4c..000000000 Binary files a/files/12_0221.mp3 and /dev/null differ diff --git a/files/12_0221_example.mp3 b/files/12_0221_example.mp3 deleted file mode 100644 index 957890752..000000000 Binary files a/files/12_0221_example.mp3 and /dev/null differ diff --git a/files/12_0221_meaning.mp3 b/files/12_0221_meaning.mp3 deleted file mode 100644 index 65502aace..000000000 Binary files a/files/12_0221_meaning.mp3 and /dev/null differ diff --git a/files/12_0222.jpg b/files/12_0222.jpg deleted file mode 100644 index 480e178ad..000000000 Binary files a/files/12_0222.jpg and /dev/null differ diff --git a/files/12_0222.mp3 b/files/12_0222.mp3 deleted file mode 100644 index 76125a254..000000000 Binary files a/files/12_0222.mp3 and /dev/null differ diff --git a/files/12_0222_example.mp3 b/files/12_0222_example.mp3 deleted file mode 100644 index 8e4cdcca2..000000000 Binary files a/files/12_0222_example.mp3 and /dev/null differ diff --git a/files/12_0222_meaning.mp3 b/files/12_0222_meaning.mp3 deleted file mode 100644 index 80932503e..000000000 Binary files a/files/12_0222_meaning.mp3 and /dev/null differ diff --git a/files/12_0223.jpg b/files/12_0223.jpg deleted file mode 100644 index 5e383a769..000000000 Binary files a/files/12_0223.jpg and /dev/null differ diff --git a/files/12_0223.mp3 b/files/12_0223.mp3 deleted file mode 100644 index 0a3a13ddf..000000000 Binary files a/files/12_0223.mp3 and /dev/null differ diff --git a/files/12_0223_example.mp3 b/files/12_0223_example.mp3 deleted file mode 100644 index 6f9b17faa..000000000 Binary files a/files/12_0223_example.mp3 and /dev/null differ diff --git a/files/12_0223_meaning.mp3 b/files/12_0223_meaning.mp3 deleted file mode 100644 index 61352c8ae..000000000 Binary files a/files/12_0223_meaning.mp3 and /dev/null differ diff --git a/files/12_0224.jpg b/files/12_0224.jpg deleted file mode 100644 index 6de9904f4..000000000 Binary files a/files/12_0224.jpg and /dev/null differ diff --git a/files/12_0224.mp3 b/files/12_0224.mp3 deleted file mode 100644 index 58e38d37f..000000000 Binary files a/files/12_0224.mp3 and /dev/null differ diff --git a/files/12_0224_example.mp3 b/files/12_0224_example.mp3 deleted file mode 100644 index a0bc079d6..000000000 Binary files a/files/12_0224_example.mp3 and /dev/null differ diff --git a/files/12_0224_meaning.mp3 b/files/12_0224_meaning.mp3 deleted file mode 100644 index bd3355f4e..000000000 Binary files a/files/12_0224_meaning.mp3 and /dev/null differ diff --git a/files/12_0225.jpg b/files/12_0225.jpg deleted file mode 100644 index ee61d1129..000000000 Binary files a/files/12_0225.jpg and /dev/null differ diff --git a/files/12_0225.mp3 b/files/12_0225.mp3 deleted file mode 100644 index 3a6f3cd2c..000000000 Binary files a/files/12_0225.mp3 and /dev/null differ diff --git a/files/12_0225_example.mp3 b/files/12_0225_example.mp3 deleted file mode 100644 index ee533c9e8..000000000 Binary files a/files/12_0225_example.mp3 and /dev/null differ diff --git a/files/12_0225_meaning.mp3 b/files/12_0225_meaning.mp3 deleted file mode 100644 index f6775754b..000000000 Binary files a/files/12_0225_meaning.mp3 and /dev/null differ diff --git a/files/12_0226.jpg b/files/12_0226.jpg deleted file mode 100644 index 3c20e9e04..000000000 Binary files a/files/12_0226.jpg and /dev/null differ diff --git a/files/12_0226.mp3 b/files/12_0226.mp3 deleted file mode 100644 index edf3dd7e1..000000000 Binary files a/files/12_0226.mp3 and /dev/null differ diff --git a/files/12_0226_example.mp3 b/files/12_0226_example.mp3 deleted file mode 100644 index 4261e1cf0..000000000 Binary files a/files/12_0226_example.mp3 and /dev/null differ diff --git a/files/12_0226_meaning.mp3 b/files/12_0226_meaning.mp3 deleted file mode 100644 index 9e6344895..000000000 Binary files a/files/12_0226_meaning.mp3 and /dev/null differ diff --git a/files/12_0227.jpg b/files/12_0227.jpg deleted file mode 100644 index d3877b317..000000000 Binary files a/files/12_0227.jpg and /dev/null differ diff --git a/files/12_0227.mp3 b/files/12_0227.mp3 deleted file mode 100644 index 24febba0c..000000000 Binary files a/files/12_0227.mp3 and /dev/null differ diff --git a/files/12_0227_example.mp3 b/files/12_0227_example.mp3 deleted file mode 100644 index c5c4687d7..000000000 Binary files a/files/12_0227_example.mp3 and /dev/null differ diff --git a/files/12_0227_meaning.mp3 b/files/12_0227_meaning.mp3 deleted file mode 100644 index 172a2204d..000000000 Binary files a/files/12_0227_meaning.mp3 and /dev/null differ diff --git a/files/12_0228.jpg b/files/12_0228.jpg deleted file mode 100644 index fa6e6c8d4..000000000 Binary files a/files/12_0228.jpg and /dev/null differ diff --git a/files/12_0228.mp3 b/files/12_0228.mp3 deleted file mode 100644 index ea668e4b8..000000000 Binary files a/files/12_0228.mp3 and /dev/null differ diff --git a/files/12_0228_example.mp3 b/files/12_0228_example.mp3 deleted file mode 100644 index 74d962679..000000000 Binary files a/files/12_0228_example.mp3 and /dev/null differ diff --git a/files/12_0228_meaning.mp3 b/files/12_0228_meaning.mp3 deleted file mode 100644 index 9aa7741ae..000000000 Binary files a/files/12_0228_meaning.mp3 and /dev/null differ diff --git a/files/12_0229.jpg b/files/12_0229.jpg deleted file mode 100644 index 6c653fc1e..000000000 Binary files a/files/12_0229.jpg and /dev/null differ diff --git a/files/12_0229.mp3 b/files/12_0229.mp3 deleted file mode 100644 index e2ca75b5f..000000000 Binary files a/files/12_0229.mp3 and /dev/null differ diff --git a/files/12_0229_example.mp3 b/files/12_0229_example.mp3 deleted file mode 100644 index 088d15321..000000000 Binary files a/files/12_0229_example.mp3 and /dev/null differ diff --git a/files/12_0229_meaning.mp3 b/files/12_0229_meaning.mp3 deleted file mode 100644 index 5cd604652..000000000 Binary files a/files/12_0229_meaning.mp3 and /dev/null differ diff --git a/files/12_0230.jpg b/files/12_0230.jpg deleted file mode 100644 index e24fb1aa9..000000000 Binary files a/files/12_0230.jpg and /dev/null differ diff --git a/files/12_0230.mp3 b/files/12_0230.mp3 deleted file mode 100644 index 510b69973..000000000 Binary files a/files/12_0230.mp3 and /dev/null differ diff --git a/files/12_0230_example.mp3 b/files/12_0230_example.mp3 deleted file mode 100644 index b0ed3a8a6..000000000 Binary files a/files/12_0230_example.mp3 and /dev/null differ diff --git a/files/12_0230_meaning.mp3 b/files/12_0230_meaning.mp3 deleted file mode 100644 index 64319314e..000000000 Binary files a/files/12_0230_meaning.mp3 and /dev/null differ diff --git a/files/12_0231.jpg b/files/12_0231.jpg deleted file mode 100644 index fe16f166b..000000000 Binary files a/files/12_0231.jpg and /dev/null differ diff --git a/files/12_0231.mp3 b/files/12_0231.mp3 deleted file mode 100644 index 73d1e37d5..000000000 Binary files a/files/12_0231.mp3 and /dev/null differ diff --git a/files/12_0231_example.mp3 b/files/12_0231_example.mp3 deleted file mode 100644 index 717f8ce5d..000000000 Binary files a/files/12_0231_example.mp3 and /dev/null differ diff --git a/files/12_0231_meaning.mp3 b/files/12_0231_meaning.mp3 deleted file mode 100644 index b35a7b8cc..000000000 Binary files a/files/12_0231_meaning.mp3 and /dev/null differ diff --git a/files/12_0232.jpg b/files/12_0232.jpg deleted file mode 100644 index 851e29f94..000000000 Binary files a/files/12_0232.jpg and /dev/null differ diff --git a/files/12_0232.mp3 b/files/12_0232.mp3 deleted file mode 100644 index 9ceafdc30..000000000 Binary files a/files/12_0232.mp3 and /dev/null differ diff --git a/files/12_0232_example.mp3 b/files/12_0232_example.mp3 deleted file mode 100644 index 0f946dcd9..000000000 Binary files a/files/12_0232_example.mp3 and /dev/null differ diff --git a/files/12_0232_meaning.mp3 b/files/12_0232_meaning.mp3 deleted file mode 100644 index 1689c4760..000000000 Binary files a/files/12_0232_meaning.mp3 and /dev/null differ diff --git a/files/12_0233.jpg b/files/12_0233.jpg deleted file mode 100644 index 874dbea6a..000000000 Binary files a/files/12_0233.jpg and /dev/null differ diff --git a/files/12_0233.mp3 b/files/12_0233.mp3 deleted file mode 100644 index d743b59dc..000000000 Binary files a/files/12_0233.mp3 and /dev/null differ diff --git a/files/12_0233_example.mp3 b/files/12_0233_example.mp3 deleted file mode 100644 index 302c77909..000000000 Binary files a/files/12_0233_example.mp3 and /dev/null differ diff --git a/files/12_0233_meaning.mp3 b/files/12_0233_meaning.mp3 deleted file mode 100644 index 536fa1828..000000000 Binary files a/files/12_0233_meaning.mp3 and /dev/null differ diff --git a/files/12_0234.jpg b/files/12_0234.jpg deleted file mode 100644 index 0e1ed11e1..000000000 Binary files a/files/12_0234.jpg and /dev/null differ diff --git a/files/12_0234.mp3 b/files/12_0234.mp3 deleted file mode 100644 index 8805b943c..000000000 Binary files a/files/12_0234.mp3 and /dev/null differ diff --git a/files/12_0234_example.mp3 b/files/12_0234_example.mp3 deleted file mode 100644 index 947d3254f..000000000 Binary files a/files/12_0234_example.mp3 and /dev/null differ diff --git a/files/12_0234_meaning.mp3 b/files/12_0234_meaning.mp3 deleted file mode 100644 index 9afe6e67d..000000000 Binary files a/files/12_0234_meaning.mp3 and /dev/null differ diff --git a/files/12_0235.jpg b/files/12_0235.jpg deleted file mode 100644 index 9a94dd136..000000000 Binary files a/files/12_0235.jpg and /dev/null differ diff --git a/files/12_0235.mp3 b/files/12_0235.mp3 deleted file mode 100644 index 102d678fa..000000000 Binary files a/files/12_0235.mp3 and /dev/null differ diff --git a/files/12_0235_example.mp3 b/files/12_0235_example.mp3 deleted file mode 100644 index cd244bdeb..000000000 Binary files a/files/12_0235_example.mp3 and /dev/null differ diff --git a/files/12_0235_meaning.mp3 b/files/12_0235_meaning.mp3 deleted file mode 100644 index 3c6b00e2c..000000000 Binary files a/files/12_0235_meaning.mp3 and /dev/null differ diff --git a/files/12_0236.jpg b/files/12_0236.jpg deleted file mode 100644 index 8d97b549a..000000000 Binary files a/files/12_0236.jpg and /dev/null differ diff --git a/files/12_0236.mp3 b/files/12_0236.mp3 deleted file mode 100644 index 442d20727..000000000 Binary files a/files/12_0236.mp3 and /dev/null differ diff --git a/files/12_0236_example.mp3 b/files/12_0236_example.mp3 deleted file mode 100644 index 9e0c5b537..000000000 Binary files a/files/12_0236_example.mp3 and /dev/null differ diff --git a/files/12_0236_meaning.mp3 b/files/12_0236_meaning.mp3 deleted file mode 100644 index 6a23735bd..000000000 Binary files a/files/12_0236_meaning.mp3 and /dev/null differ diff --git a/files/12_0237.jpg b/files/12_0237.jpg deleted file mode 100644 index 68465f98e..000000000 Binary files a/files/12_0237.jpg and /dev/null differ diff --git a/files/12_0237.mp3 b/files/12_0237.mp3 deleted file mode 100644 index 5f22e710d..000000000 Binary files a/files/12_0237.mp3 and /dev/null differ diff --git a/files/12_0237_example.mp3 b/files/12_0237_example.mp3 deleted file mode 100644 index 76a0e6390..000000000 Binary files a/files/12_0237_example.mp3 and /dev/null differ diff --git a/files/12_0237_meaning.mp3 b/files/12_0237_meaning.mp3 deleted file mode 100644 index af5a4ed10..000000000 Binary files a/files/12_0237_meaning.mp3 and /dev/null differ diff --git a/files/12_0238.jpg b/files/12_0238.jpg deleted file mode 100644 index b3f6e50d0..000000000 Binary files a/files/12_0238.jpg and /dev/null differ diff --git a/files/12_0238.mp3 b/files/12_0238.mp3 deleted file mode 100644 index a70730442..000000000 Binary files a/files/12_0238.mp3 and /dev/null differ diff --git a/files/12_0238_example.mp3 b/files/12_0238_example.mp3 deleted file mode 100644 index 0975a14db..000000000 Binary files a/files/12_0238_example.mp3 and /dev/null differ diff --git a/files/12_0238_meaning.mp3 b/files/12_0238_meaning.mp3 deleted file mode 100644 index 0e6a30cf4..000000000 Binary files a/files/12_0238_meaning.mp3 and /dev/null differ diff --git a/files/12_0239.jpg b/files/12_0239.jpg deleted file mode 100644 index 7f33845d2..000000000 Binary files a/files/12_0239.jpg and /dev/null differ diff --git a/files/12_0239.mp3 b/files/12_0239.mp3 deleted file mode 100644 index 9437c487a..000000000 Binary files a/files/12_0239.mp3 and /dev/null differ diff --git a/files/12_0239_example.mp3 b/files/12_0239_example.mp3 deleted file mode 100644 index 9bfd207c6..000000000 Binary files a/files/12_0239_example.mp3 and /dev/null differ diff --git a/files/12_0239_meaning.mp3 b/files/12_0239_meaning.mp3 deleted file mode 100644 index 83a48cc00..000000000 Binary files a/files/12_0239_meaning.mp3 and /dev/null differ diff --git a/files/12_0240.jpg b/files/12_0240.jpg deleted file mode 100644 index 761866f51..000000000 Binary files a/files/12_0240.jpg and /dev/null differ diff --git a/files/12_0240.mp3 b/files/12_0240.mp3 deleted file mode 100644 index 4c7966174..000000000 Binary files a/files/12_0240.mp3 and /dev/null differ diff --git a/files/12_0240_example.mp3 b/files/12_0240_example.mp3 deleted file mode 100644 index aa9048443..000000000 Binary files a/files/12_0240_example.mp3 and /dev/null differ diff --git a/files/12_0240_meaning.mp3 b/files/12_0240_meaning.mp3 deleted file mode 100644 index 86fb72ce9..000000000 Binary files a/files/12_0240_meaning.mp3 and /dev/null differ diff --git a/files/12_0821.jpg b/files/12_0821.jpg deleted file mode 100644 index 003e78963..000000000 Binary files a/files/12_0821.jpg and /dev/null differ diff --git a/files/12_0821.mp3 b/files/12_0821.mp3 deleted file mode 100644 index d379bfc15..000000000 Binary files a/files/12_0821.mp3 and /dev/null differ diff --git a/files/12_0821_example.mp3 b/files/12_0821_example.mp3 deleted file mode 100644 index 39b685450..000000000 Binary files a/files/12_0821_example.mp3 and /dev/null differ diff --git a/files/12_0821_meaning.mp3 b/files/12_0821_meaning.mp3 deleted file mode 100644 index d6734bcb6..000000000 Binary files a/files/12_0821_meaning.mp3 and /dev/null differ diff --git a/files/12_0822.jpg b/files/12_0822.jpg deleted file mode 100644 index 62379fe4e..000000000 Binary files a/files/12_0822.jpg and /dev/null differ diff --git a/files/12_0822.mp3 b/files/12_0822.mp3 deleted file mode 100644 index 78f4cfc34..000000000 Binary files a/files/12_0822.mp3 and /dev/null differ diff --git a/files/12_0822_example.mp3 b/files/12_0822_example.mp3 deleted file mode 100644 index f0092a899..000000000 Binary files a/files/12_0822_example.mp3 and /dev/null differ diff --git a/files/12_0822_meaning.mp3 b/files/12_0822_meaning.mp3 deleted file mode 100644 index 4254e64df..000000000 Binary files a/files/12_0822_meaning.mp3 and /dev/null differ diff --git a/files/12_0823.jpg b/files/12_0823.jpg deleted file mode 100644 index 592b76694..000000000 Binary files a/files/12_0823.jpg and /dev/null differ diff --git a/files/12_0823.mp3 b/files/12_0823.mp3 deleted file mode 100644 index ac41b32c1..000000000 Binary files a/files/12_0823.mp3 and /dev/null differ diff --git a/files/12_0823_example.mp3 b/files/12_0823_example.mp3 deleted file mode 100644 index 095147891..000000000 Binary files a/files/12_0823_example.mp3 and /dev/null differ diff --git a/files/12_0823_meaning.mp3 b/files/12_0823_meaning.mp3 deleted file mode 100644 index 7aa732f4c..000000000 Binary files a/files/12_0823_meaning.mp3 and /dev/null differ diff --git a/files/12_0824.jpg b/files/12_0824.jpg deleted file mode 100644 index 68093978a..000000000 Binary files a/files/12_0824.jpg and /dev/null differ diff --git a/files/12_0824.mp3 b/files/12_0824.mp3 deleted file mode 100644 index dfb6c6293..000000000 Binary files a/files/12_0824.mp3 and /dev/null differ diff --git a/files/12_0824_example.mp3 b/files/12_0824_example.mp3 deleted file mode 100644 index 4a4f1ed03..000000000 Binary files a/files/12_0824_example.mp3 and /dev/null differ diff --git a/files/12_0824_meaning.mp3 b/files/12_0824_meaning.mp3 deleted file mode 100644 index 55bce0d54..000000000 Binary files a/files/12_0824_meaning.mp3 and /dev/null differ diff --git a/files/12_0825.jpg b/files/12_0825.jpg deleted file mode 100644 index 7a4bf0708..000000000 Binary files a/files/12_0825.jpg and /dev/null differ diff --git a/files/12_0825.mp3 b/files/12_0825.mp3 deleted file mode 100644 index 2003dd23b..000000000 Binary files a/files/12_0825.mp3 and /dev/null differ diff --git a/files/12_0825_example.mp3 b/files/12_0825_example.mp3 deleted file mode 100644 index cc4d8a282..000000000 Binary files a/files/12_0825_example.mp3 and /dev/null differ diff --git a/files/12_0825_meaning.mp3 b/files/12_0825_meaning.mp3 deleted file mode 100644 index 76e20b84f..000000000 Binary files a/files/12_0825_meaning.mp3 and /dev/null differ diff --git a/files/12_0826.jpg b/files/12_0826.jpg deleted file mode 100644 index 340377274..000000000 Binary files a/files/12_0826.jpg and /dev/null differ diff --git a/files/12_0826.mp3 b/files/12_0826.mp3 deleted file mode 100644 index 78baa8126..000000000 Binary files a/files/12_0826.mp3 and /dev/null differ diff --git a/files/12_0826_example.mp3 b/files/12_0826_example.mp3 deleted file mode 100644 index b3561970a..000000000 Binary files a/files/12_0826_example.mp3 and /dev/null differ diff --git a/files/12_0826_meaning.mp3 b/files/12_0826_meaning.mp3 deleted file mode 100644 index af07616cf..000000000 Binary files a/files/12_0826_meaning.mp3 and /dev/null differ diff --git a/files/12_0827.jpg b/files/12_0827.jpg deleted file mode 100644 index e5609d2af..000000000 Binary files a/files/12_0827.jpg and /dev/null differ diff --git a/files/12_0827.mp3 b/files/12_0827.mp3 deleted file mode 100644 index 44fb6bdcf..000000000 Binary files a/files/12_0827.mp3 and /dev/null differ diff --git a/files/12_0827_example.mp3 b/files/12_0827_example.mp3 deleted file mode 100644 index dfb89ea6b..000000000 Binary files a/files/12_0827_example.mp3 and /dev/null differ diff --git a/files/12_0827_meaning.mp3 b/files/12_0827_meaning.mp3 deleted file mode 100644 index 82817cbc5..000000000 Binary files a/files/12_0827_meaning.mp3 and /dev/null differ diff --git a/files/12_0828.jpg b/files/12_0828.jpg deleted file mode 100644 index aa786ba9f..000000000 Binary files a/files/12_0828.jpg and /dev/null differ diff --git a/files/12_0828.mp3 b/files/12_0828.mp3 deleted file mode 100644 index 73acab0a4..000000000 Binary files a/files/12_0828.mp3 and /dev/null differ diff --git a/files/12_0828_example.mp3 b/files/12_0828_example.mp3 deleted file mode 100644 index 1e12aca0c..000000000 Binary files a/files/12_0828_example.mp3 and /dev/null differ diff --git a/files/12_0828_meaning.mp3 b/files/12_0828_meaning.mp3 deleted file mode 100644 index c5822cd5b..000000000 Binary files a/files/12_0828_meaning.mp3 and /dev/null differ diff --git a/files/12_0829.jpg b/files/12_0829.jpg deleted file mode 100644 index 899338e90..000000000 Binary files a/files/12_0829.jpg and /dev/null differ diff --git a/files/12_0829.mp3 b/files/12_0829.mp3 deleted file mode 100644 index dbe9060a8..000000000 Binary files a/files/12_0829.mp3 and /dev/null differ diff --git a/files/12_0829_example.mp3 b/files/12_0829_example.mp3 deleted file mode 100644 index b2c3033fd..000000000 Binary files a/files/12_0829_example.mp3 and /dev/null differ diff --git a/files/12_0829_meaning.mp3 b/files/12_0829_meaning.mp3 deleted file mode 100644 index a6f05b893..000000000 Binary files a/files/12_0829_meaning.mp3 and /dev/null differ diff --git a/files/12_0830.jpg b/files/12_0830.jpg deleted file mode 100644 index 255c4aa06..000000000 Binary files a/files/12_0830.jpg and /dev/null differ diff --git a/files/12_0830.mp3 b/files/12_0830.mp3 deleted file mode 100644 index b6110990f..000000000 Binary files a/files/12_0830.mp3 and /dev/null differ diff --git a/files/12_0830_example.mp3 b/files/12_0830_example.mp3 deleted file mode 100644 index 438a929d3..000000000 Binary files a/files/12_0830_example.mp3 and /dev/null differ diff --git a/files/12_0830_meaning.mp3 b/files/12_0830_meaning.mp3 deleted file mode 100644 index ffb316a60..000000000 Binary files a/files/12_0830_meaning.mp3 and /dev/null differ diff --git a/files/12_0831.jpg b/files/12_0831.jpg deleted file mode 100644 index ae265caff..000000000 Binary files a/files/12_0831.jpg and /dev/null differ diff --git a/files/12_0831.mp3 b/files/12_0831.mp3 deleted file mode 100644 index f9a106d7a..000000000 Binary files a/files/12_0831.mp3 and /dev/null differ diff --git a/files/12_0831_example.mp3 b/files/12_0831_example.mp3 deleted file mode 100644 index 50e3c4c58..000000000 Binary files a/files/12_0831_example.mp3 and /dev/null differ diff --git a/files/12_0831_meaning.mp3 b/files/12_0831_meaning.mp3 deleted file mode 100644 index 396e151c1..000000000 Binary files a/files/12_0831_meaning.mp3 and /dev/null differ diff --git a/files/12_0832.jpg b/files/12_0832.jpg deleted file mode 100644 index 6c76b80f4..000000000 Binary files a/files/12_0832.jpg and /dev/null differ diff --git a/files/12_0832.mp3 b/files/12_0832.mp3 deleted file mode 100644 index 11a0135ec..000000000 Binary files a/files/12_0832.mp3 and /dev/null differ diff --git a/files/12_0832_example.mp3 b/files/12_0832_example.mp3 deleted file mode 100644 index d374181c8..000000000 Binary files a/files/12_0832_example.mp3 and /dev/null differ diff --git a/files/12_0832_meaning.mp3 b/files/12_0832_meaning.mp3 deleted file mode 100644 index 8a19d2b4f..000000000 Binary files a/files/12_0832_meaning.mp3 and /dev/null differ diff --git a/files/12_0833.jpg b/files/12_0833.jpg deleted file mode 100644 index 53558d668..000000000 Binary files a/files/12_0833.jpg and /dev/null differ diff --git a/files/12_0833.mp3 b/files/12_0833.mp3 deleted file mode 100644 index 6bc32e276..000000000 Binary files a/files/12_0833.mp3 and /dev/null differ diff --git a/files/12_0833_example.mp3 b/files/12_0833_example.mp3 deleted file mode 100644 index 68259fb5e..000000000 Binary files a/files/12_0833_example.mp3 and /dev/null differ diff --git a/files/12_0833_meaning.mp3 b/files/12_0833_meaning.mp3 deleted file mode 100644 index 5e0972aad..000000000 Binary files a/files/12_0833_meaning.mp3 and /dev/null differ diff --git a/files/12_0834.jpg b/files/12_0834.jpg deleted file mode 100644 index 3b63351f7..000000000 Binary files a/files/12_0834.jpg and /dev/null differ diff --git a/files/12_0834.mp3 b/files/12_0834.mp3 deleted file mode 100644 index 2a33ca1e3..000000000 Binary files a/files/12_0834.mp3 and /dev/null differ diff --git a/files/12_0834_example.mp3 b/files/12_0834_example.mp3 deleted file mode 100644 index bf656e82b..000000000 Binary files a/files/12_0834_example.mp3 and /dev/null differ diff --git a/files/12_0834_meaning.mp3 b/files/12_0834_meaning.mp3 deleted file mode 100644 index 9609bef11..000000000 Binary files a/files/12_0834_meaning.mp3 and /dev/null differ diff --git a/files/12_0835.jpg b/files/12_0835.jpg deleted file mode 100644 index f4a1fc46f..000000000 Binary files a/files/12_0835.jpg and /dev/null differ diff --git a/files/12_0835.mp3 b/files/12_0835.mp3 deleted file mode 100644 index d893ce460..000000000 Binary files a/files/12_0835.mp3 and /dev/null differ diff --git a/files/12_0835_example.mp3 b/files/12_0835_example.mp3 deleted file mode 100644 index 8fb0330ed..000000000 Binary files a/files/12_0835_example.mp3 and /dev/null differ diff --git a/files/12_0835_meaning.mp3 b/files/12_0835_meaning.mp3 deleted file mode 100644 index 96a7ece27..000000000 Binary files a/files/12_0835_meaning.mp3 and /dev/null differ diff --git a/files/12_0836.jpg b/files/12_0836.jpg deleted file mode 100644 index 48a6bdd3a..000000000 Binary files a/files/12_0836.jpg and /dev/null differ diff --git a/files/12_0836.mp3 b/files/12_0836.mp3 deleted file mode 100644 index 0cc8368df..000000000 Binary files a/files/12_0836.mp3 and /dev/null differ diff --git a/files/12_0836_example.mp3 b/files/12_0836_example.mp3 deleted file mode 100644 index 12ab4215f..000000000 Binary files a/files/12_0836_example.mp3 and /dev/null differ diff --git a/files/12_0836_meaning.mp3 b/files/12_0836_meaning.mp3 deleted file mode 100644 index f9a2fbc88..000000000 Binary files a/files/12_0836_meaning.mp3 and /dev/null differ diff --git a/files/12_0837.jpg b/files/12_0837.jpg deleted file mode 100644 index 7898f0ae5..000000000 Binary files a/files/12_0837.jpg and /dev/null differ diff --git a/files/12_0837.mp3 b/files/12_0837.mp3 deleted file mode 100644 index 4c7e0f0df..000000000 Binary files a/files/12_0837.mp3 and /dev/null differ diff --git a/files/12_0837_example.mp3 b/files/12_0837_example.mp3 deleted file mode 100644 index 2a22a4a1b..000000000 Binary files a/files/12_0837_example.mp3 and /dev/null differ diff --git a/files/12_0837_meaning.mp3 b/files/12_0837_meaning.mp3 deleted file mode 100644 index 4a174fbfd..000000000 Binary files a/files/12_0837_meaning.mp3 and /dev/null differ diff --git a/files/12_0838.jpg b/files/12_0838.jpg deleted file mode 100644 index 82605ba44..000000000 Binary files a/files/12_0838.jpg and /dev/null differ diff --git a/files/12_0838.mp3 b/files/12_0838.mp3 deleted file mode 100644 index 5050a9009..000000000 Binary files a/files/12_0838.mp3 and /dev/null differ diff --git a/files/12_0838_example.mp3 b/files/12_0838_example.mp3 deleted file mode 100644 index 081f2b3b6..000000000 Binary files a/files/12_0838_example.mp3 and /dev/null differ diff --git a/files/12_0838_meaning.mp3 b/files/12_0838_meaning.mp3 deleted file mode 100644 index 6ef83a705..000000000 Binary files a/files/12_0838_meaning.mp3 and /dev/null differ diff --git a/files/12_0839.jpg b/files/12_0839.jpg deleted file mode 100644 index 4628d6f5d..000000000 Binary files a/files/12_0839.jpg and /dev/null differ diff --git a/files/12_0839.mp3 b/files/12_0839.mp3 deleted file mode 100644 index a98444164..000000000 Binary files a/files/12_0839.mp3 and /dev/null differ diff --git a/files/12_0839_example.mp3 b/files/12_0839_example.mp3 deleted file mode 100644 index 5236e2ec5..000000000 Binary files a/files/12_0839_example.mp3 and /dev/null differ diff --git a/files/12_0839_meaning.mp3 b/files/12_0839_meaning.mp3 deleted file mode 100644 index 1728c6969..000000000 Binary files a/files/12_0839_meaning.mp3 and /dev/null differ diff --git a/files/12_0840.jpg b/files/12_0840.jpg deleted file mode 100644 index 57eaf361a..000000000 Binary files a/files/12_0840.jpg and /dev/null differ diff --git a/files/12_0840.mp3 b/files/12_0840.mp3 deleted file mode 100644 index b497f905e..000000000 Binary files a/files/12_0840.mp3 and /dev/null differ diff --git a/files/12_0840_example.mp3 b/files/12_0840_example.mp3 deleted file mode 100644 index c5b943710..000000000 Binary files a/files/12_0840_example.mp3 and /dev/null differ diff --git a/files/12_0840_meaning.mp3 b/files/12_0840_meaning.mp3 deleted file mode 100644 index d3c41f7f7..000000000 Binary files a/files/12_0840_meaning.mp3 and /dev/null differ diff --git a/files/12_1421.jpg b/files/12_1421.jpg deleted file mode 100644 index c43da5ee6..000000000 Binary files a/files/12_1421.jpg and /dev/null differ diff --git a/files/12_1421.mp3 b/files/12_1421.mp3 deleted file mode 100644 index 491b71f57..000000000 Binary files a/files/12_1421.mp3 and /dev/null differ diff --git a/files/12_1421_example.mp3 b/files/12_1421_example.mp3 deleted file mode 100644 index 4b03882fc..000000000 Binary files a/files/12_1421_example.mp3 and /dev/null differ diff --git a/files/12_1421_meaning.mp3 b/files/12_1421_meaning.mp3 deleted file mode 100644 index 514509d02..000000000 Binary files a/files/12_1421_meaning.mp3 and /dev/null differ diff --git a/files/12_1422.jpg b/files/12_1422.jpg deleted file mode 100644 index 0f4aeec5a..000000000 Binary files a/files/12_1422.jpg and /dev/null differ diff --git a/files/12_1422.mp3 b/files/12_1422.mp3 deleted file mode 100644 index 6ff9942c2..000000000 Binary files a/files/12_1422.mp3 and /dev/null differ diff --git a/files/12_1422_example.mp3 b/files/12_1422_example.mp3 deleted file mode 100644 index 94bd69641..000000000 Binary files a/files/12_1422_example.mp3 and /dev/null differ diff --git a/files/12_1422_meaning.mp3 b/files/12_1422_meaning.mp3 deleted file mode 100644 index dd38a8d79..000000000 Binary files a/files/12_1422_meaning.mp3 and /dev/null differ diff --git a/files/12_1423.jpg b/files/12_1423.jpg deleted file mode 100644 index 5d526dfe8..000000000 Binary files a/files/12_1423.jpg and /dev/null differ diff --git a/files/12_1423.mp3 b/files/12_1423.mp3 deleted file mode 100644 index 291324768..000000000 Binary files a/files/12_1423.mp3 and /dev/null differ diff --git a/files/12_1423_example.mp3 b/files/12_1423_example.mp3 deleted file mode 100644 index 193a30dea..000000000 Binary files a/files/12_1423_example.mp3 and /dev/null differ diff --git a/files/12_1423_meaning.mp3 b/files/12_1423_meaning.mp3 deleted file mode 100644 index e56ba48bc..000000000 Binary files a/files/12_1423_meaning.mp3 and /dev/null differ diff --git a/files/12_1424.jpg b/files/12_1424.jpg deleted file mode 100644 index 4a2b51ccf..000000000 Binary files a/files/12_1424.jpg and /dev/null differ diff --git a/files/12_1424.mp3 b/files/12_1424.mp3 deleted file mode 100644 index 0707a9246..000000000 Binary files a/files/12_1424.mp3 and /dev/null differ diff --git a/files/12_1424_example.mp3 b/files/12_1424_example.mp3 deleted file mode 100644 index e9e7d60a3..000000000 Binary files a/files/12_1424_example.mp3 and /dev/null differ diff --git a/files/12_1424_meaning.mp3 b/files/12_1424_meaning.mp3 deleted file mode 100644 index 7a09a1d0a..000000000 Binary files a/files/12_1424_meaning.mp3 and /dev/null differ diff --git a/files/12_1425.jpg b/files/12_1425.jpg deleted file mode 100644 index c9fbe76f4..000000000 Binary files a/files/12_1425.jpg and /dev/null differ diff --git a/files/12_1425.mp3 b/files/12_1425.mp3 deleted file mode 100644 index 0c31e1f2b..000000000 Binary files a/files/12_1425.mp3 and /dev/null differ diff --git a/files/12_1425_example.mp3 b/files/12_1425_example.mp3 deleted file mode 100644 index 44f9e491d..000000000 Binary files a/files/12_1425_example.mp3 and /dev/null differ diff --git a/files/12_1425_meaning.mp3 b/files/12_1425_meaning.mp3 deleted file mode 100644 index ff8d47291..000000000 Binary files a/files/12_1425_meaning.mp3 and /dev/null differ diff --git a/files/12_1426.jpg b/files/12_1426.jpg deleted file mode 100644 index 2652ff2a4..000000000 Binary files a/files/12_1426.jpg and /dev/null differ diff --git a/files/12_1426.mp3 b/files/12_1426.mp3 deleted file mode 100644 index ae43f1296..000000000 Binary files a/files/12_1426.mp3 and /dev/null differ diff --git a/files/12_1426_example.mp3 b/files/12_1426_example.mp3 deleted file mode 100644 index db6028073..000000000 Binary files a/files/12_1426_example.mp3 and /dev/null differ diff --git a/files/12_1426_meaning.mp3 b/files/12_1426_meaning.mp3 deleted file mode 100644 index e01a9c032..000000000 Binary files a/files/12_1426_meaning.mp3 and /dev/null differ diff --git a/files/12_1427.jpg b/files/12_1427.jpg deleted file mode 100644 index 6ac27651e..000000000 Binary files a/files/12_1427.jpg and /dev/null differ diff --git a/files/12_1427.mp3 b/files/12_1427.mp3 deleted file mode 100644 index 8bc722335..000000000 Binary files a/files/12_1427.mp3 and /dev/null differ diff --git a/files/12_1427_example.mp3 b/files/12_1427_example.mp3 deleted file mode 100644 index 8b289cd57..000000000 Binary files a/files/12_1427_example.mp3 and /dev/null differ diff --git a/files/12_1427_meaning.mp3 b/files/12_1427_meaning.mp3 deleted file mode 100644 index 507a4af44..000000000 Binary files a/files/12_1427_meaning.mp3 and /dev/null differ diff --git a/files/12_1428.jpg b/files/12_1428.jpg deleted file mode 100644 index aadfc09b5..000000000 Binary files a/files/12_1428.jpg and /dev/null differ diff --git a/files/12_1428.mp3 b/files/12_1428.mp3 deleted file mode 100644 index 538c71f5c..000000000 Binary files a/files/12_1428.mp3 and /dev/null differ diff --git a/files/12_1428_example.mp3 b/files/12_1428_example.mp3 deleted file mode 100644 index 45eff4e3f..000000000 Binary files a/files/12_1428_example.mp3 and /dev/null differ diff --git a/files/12_1428_meaning.mp3 b/files/12_1428_meaning.mp3 deleted file mode 100644 index 849f7312e..000000000 Binary files a/files/12_1428_meaning.mp3 and /dev/null differ diff --git a/files/12_1429.jpg b/files/12_1429.jpg deleted file mode 100644 index 68eb09571..000000000 Binary files a/files/12_1429.jpg and /dev/null differ diff --git a/files/12_1429.mp3 b/files/12_1429.mp3 deleted file mode 100644 index 592af108c..000000000 Binary files a/files/12_1429.mp3 and /dev/null differ diff --git a/files/12_1429_example.mp3 b/files/12_1429_example.mp3 deleted file mode 100644 index 24c994c6f..000000000 Binary files a/files/12_1429_example.mp3 and /dev/null differ diff --git a/files/12_1429_meaning.mp3 b/files/12_1429_meaning.mp3 deleted file mode 100644 index 6630d6999..000000000 Binary files a/files/12_1429_meaning.mp3 and /dev/null differ diff --git a/files/12_1430.jpg b/files/12_1430.jpg deleted file mode 100644 index 5acc770a1..000000000 Binary files a/files/12_1430.jpg and /dev/null differ diff --git a/files/12_1430.mp3 b/files/12_1430.mp3 deleted file mode 100644 index fe58ccc08..000000000 Binary files a/files/12_1430.mp3 and /dev/null differ diff --git a/files/12_1430_example.mp3 b/files/12_1430_example.mp3 deleted file mode 100644 index e50033d83..000000000 Binary files a/files/12_1430_example.mp3 and /dev/null differ diff --git a/files/12_1430_meaning.mp3 b/files/12_1430_meaning.mp3 deleted file mode 100644 index ccc555a53..000000000 Binary files a/files/12_1430_meaning.mp3 and /dev/null differ diff --git a/files/12_1431.jpg b/files/12_1431.jpg deleted file mode 100644 index c3cbe5797..000000000 Binary files a/files/12_1431.jpg and /dev/null differ diff --git a/files/12_1431.mp3 b/files/12_1431.mp3 deleted file mode 100644 index afdfa2a0a..000000000 Binary files a/files/12_1431.mp3 and /dev/null differ diff --git a/files/12_1431_example.mp3 b/files/12_1431_example.mp3 deleted file mode 100644 index 5d721b1ad..000000000 Binary files a/files/12_1431_example.mp3 and /dev/null differ diff --git a/files/12_1431_meaning.mp3 b/files/12_1431_meaning.mp3 deleted file mode 100644 index 561f3f892..000000000 Binary files a/files/12_1431_meaning.mp3 and /dev/null differ diff --git a/files/12_1432.jpg b/files/12_1432.jpg deleted file mode 100644 index 9e6d62c6b..000000000 Binary files a/files/12_1432.jpg and /dev/null differ diff --git a/files/12_1432.mp3 b/files/12_1432.mp3 deleted file mode 100644 index cb9f3e356..000000000 Binary files a/files/12_1432.mp3 and /dev/null differ diff --git a/files/12_1432_example.mp3 b/files/12_1432_example.mp3 deleted file mode 100644 index 9671063a2..000000000 Binary files a/files/12_1432_example.mp3 and /dev/null differ diff --git a/files/12_1432_meaning.mp3 b/files/12_1432_meaning.mp3 deleted file mode 100644 index 9e1c5ace3..000000000 Binary files a/files/12_1432_meaning.mp3 and /dev/null differ diff --git a/files/12_1433.jpg b/files/12_1433.jpg deleted file mode 100644 index e7278a3fe..000000000 Binary files a/files/12_1433.jpg and /dev/null differ diff --git a/files/12_1433.mp3 b/files/12_1433.mp3 deleted file mode 100644 index f68f329a1..000000000 Binary files a/files/12_1433.mp3 and /dev/null differ diff --git a/files/12_1433_example.mp3 b/files/12_1433_example.mp3 deleted file mode 100644 index 878173e8d..000000000 Binary files a/files/12_1433_example.mp3 and /dev/null differ diff --git a/files/12_1433_meaning.mp3 b/files/12_1433_meaning.mp3 deleted file mode 100644 index a1ced125c..000000000 Binary files a/files/12_1433_meaning.mp3 and /dev/null differ diff --git a/files/12_1434.jpg b/files/12_1434.jpg deleted file mode 100644 index 73d51d7e9..000000000 Binary files a/files/12_1434.jpg and /dev/null differ diff --git a/files/12_1434.mp3 b/files/12_1434.mp3 deleted file mode 100644 index 23b282452..000000000 Binary files a/files/12_1434.mp3 and /dev/null differ diff --git a/files/12_1434_example.mp3 b/files/12_1434_example.mp3 deleted file mode 100644 index 4ae2a2d2a..000000000 Binary files a/files/12_1434_example.mp3 and /dev/null differ diff --git a/files/12_1434_meaning.mp3 b/files/12_1434_meaning.mp3 deleted file mode 100644 index 0ab6f7136..000000000 Binary files a/files/12_1434_meaning.mp3 and /dev/null differ diff --git a/files/12_1435.jpg b/files/12_1435.jpg deleted file mode 100644 index 877b21069..000000000 Binary files a/files/12_1435.jpg and /dev/null differ diff --git a/files/12_1435.mp3 b/files/12_1435.mp3 deleted file mode 100644 index 6492a419a..000000000 Binary files a/files/12_1435.mp3 and /dev/null differ diff --git a/files/12_1435_example.mp3 b/files/12_1435_example.mp3 deleted file mode 100644 index 6ee68e28f..000000000 Binary files a/files/12_1435_example.mp3 and /dev/null differ diff --git a/files/12_1435_meaning.mp3 b/files/12_1435_meaning.mp3 deleted file mode 100644 index f6518b0ec..000000000 Binary files a/files/12_1435_meaning.mp3 and /dev/null differ diff --git a/files/12_1436.jpg b/files/12_1436.jpg deleted file mode 100644 index 68da140d2..000000000 Binary files a/files/12_1436.jpg and /dev/null differ diff --git a/files/12_1436.mp3 b/files/12_1436.mp3 deleted file mode 100644 index 11b5b24e2..000000000 Binary files a/files/12_1436.mp3 and /dev/null differ diff --git a/files/12_1436_example.mp3 b/files/12_1436_example.mp3 deleted file mode 100644 index 9619961f6..000000000 Binary files a/files/12_1436_example.mp3 and /dev/null differ diff --git a/files/12_1436_meaning.mp3 b/files/12_1436_meaning.mp3 deleted file mode 100644 index c840c15e9..000000000 Binary files a/files/12_1436_meaning.mp3 and /dev/null differ diff --git a/files/12_1437.jpg b/files/12_1437.jpg deleted file mode 100644 index 5505f7d8e..000000000 Binary files a/files/12_1437.jpg and /dev/null differ diff --git a/files/12_1437.mp3 b/files/12_1437.mp3 deleted file mode 100644 index 0a5960887..000000000 Binary files a/files/12_1437.mp3 and /dev/null differ diff --git a/files/12_1437_example.mp3 b/files/12_1437_example.mp3 deleted file mode 100644 index 99eabd193..000000000 Binary files a/files/12_1437_example.mp3 and /dev/null differ diff --git a/files/12_1437_meaning.mp3 b/files/12_1437_meaning.mp3 deleted file mode 100644 index ed10115e2..000000000 Binary files a/files/12_1437_meaning.mp3 and /dev/null differ diff --git a/files/12_1438.jpg b/files/12_1438.jpg deleted file mode 100644 index 41e4b9961..000000000 Binary files a/files/12_1438.jpg and /dev/null differ diff --git a/files/12_1438.mp3 b/files/12_1438.mp3 deleted file mode 100644 index fb61209f7..000000000 Binary files a/files/12_1438.mp3 and /dev/null differ diff --git a/files/12_1438_example.mp3 b/files/12_1438_example.mp3 deleted file mode 100644 index 29238eb1c..000000000 Binary files a/files/12_1438_example.mp3 and /dev/null differ diff --git a/files/12_1438_meaning.mp3 b/files/12_1438_meaning.mp3 deleted file mode 100644 index b02d23085..000000000 Binary files a/files/12_1438_meaning.mp3 and /dev/null differ diff --git a/files/12_1439.jpg b/files/12_1439.jpg deleted file mode 100644 index 5a394322e..000000000 Binary files a/files/12_1439.jpg and /dev/null differ diff --git a/files/12_1439.mp3 b/files/12_1439.mp3 deleted file mode 100644 index 3fac7beeb..000000000 Binary files a/files/12_1439.mp3 and /dev/null differ diff --git a/files/12_1439_example.mp3 b/files/12_1439_example.mp3 deleted file mode 100644 index a51c6b153..000000000 Binary files a/files/12_1439_example.mp3 and /dev/null differ diff --git a/files/12_1439_meaning.mp3 b/files/12_1439_meaning.mp3 deleted file mode 100644 index e684f28e2..000000000 Binary files a/files/12_1439_meaning.mp3 and /dev/null differ diff --git a/files/12_1440.jpg b/files/12_1440.jpg deleted file mode 100644 index 309c1bbf0..000000000 Binary files a/files/12_1440.jpg and /dev/null differ diff --git a/files/12_1440.mp3 b/files/12_1440.mp3 deleted file mode 100644 index 542f85b8a..000000000 Binary files a/files/12_1440.mp3 and /dev/null differ diff --git a/files/12_1440_example.mp3 b/files/12_1440_example.mp3 deleted file mode 100644 index 33d4ea536..000000000 Binary files a/files/12_1440_example.mp3 and /dev/null differ diff --git a/files/12_1440_meaning.mp3 b/files/12_1440_meaning.mp3 deleted file mode 100644 index 68b169a42..000000000 Binary files a/files/12_1440_meaning.mp3 and /dev/null differ diff --git a/files/12_2021.jpg b/files/12_2021.jpg deleted file mode 100644 index 8598fd874..000000000 Binary files a/files/12_2021.jpg and /dev/null differ diff --git a/files/12_2021.mp3 b/files/12_2021.mp3 deleted file mode 100644 index fba5b7a99..000000000 Binary files a/files/12_2021.mp3 and /dev/null differ diff --git a/files/12_2021_example.mp3 b/files/12_2021_example.mp3 deleted file mode 100644 index 88646f82c..000000000 Binary files a/files/12_2021_example.mp3 and /dev/null differ diff --git a/files/12_2021_meaning.mp3 b/files/12_2021_meaning.mp3 deleted file mode 100644 index 9977a4130..000000000 Binary files a/files/12_2021_meaning.mp3 and /dev/null differ diff --git a/files/12_2022.jpg b/files/12_2022.jpg deleted file mode 100644 index ab89fcc20..000000000 Binary files a/files/12_2022.jpg and /dev/null differ diff --git a/files/12_2022.mp3 b/files/12_2022.mp3 deleted file mode 100644 index 2cc01bae0..000000000 Binary files a/files/12_2022.mp3 and /dev/null differ diff --git a/files/12_2022_example.mp3 b/files/12_2022_example.mp3 deleted file mode 100644 index d1a66c18a..000000000 Binary files a/files/12_2022_example.mp3 and /dev/null differ diff --git a/files/12_2022_meaning.mp3 b/files/12_2022_meaning.mp3 deleted file mode 100644 index d759a0a88..000000000 Binary files a/files/12_2022_meaning.mp3 and /dev/null differ diff --git a/files/12_2023.jpg b/files/12_2023.jpg deleted file mode 100644 index 2ff1f5d46..000000000 Binary files a/files/12_2023.jpg and /dev/null differ diff --git a/files/12_2023.mp3 b/files/12_2023.mp3 deleted file mode 100644 index b6d2bc11c..000000000 Binary files a/files/12_2023.mp3 and /dev/null differ diff --git a/files/12_2023_example.mp3 b/files/12_2023_example.mp3 deleted file mode 100644 index 095e95081..000000000 Binary files a/files/12_2023_example.mp3 and /dev/null differ diff --git a/files/12_2023_meaning.mp3 b/files/12_2023_meaning.mp3 deleted file mode 100644 index 8e86b97dd..000000000 Binary files a/files/12_2023_meaning.mp3 and /dev/null differ diff --git a/files/12_2024.jpg b/files/12_2024.jpg deleted file mode 100644 index aa5566927..000000000 Binary files a/files/12_2024.jpg and /dev/null differ diff --git a/files/12_2024.mp3 b/files/12_2024.mp3 deleted file mode 100644 index 45cd552f3..000000000 Binary files a/files/12_2024.mp3 and /dev/null differ diff --git a/files/12_2024_example.mp3 b/files/12_2024_example.mp3 deleted file mode 100644 index 6ef8af25f..000000000 Binary files a/files/12_2024_example.mp3 and /dev/null differ diff --git a/files/12_2024_meaning.mp3 b/files/12_2024_meaning.mp3 deleted file mode 100644 index 307ad449c..000000000 Binary files a/files/12_2024_meaning.mp3 and /dev/null differ diff --git a/files/12_2025.jpg b/files/12_2025.jpg deleted file mode 100644 index 4bbb08a13..000000000 Binary files a/files/12_2025.jpg and /dev/null differ diff --git a/files/12_2025.mp3 b/files/12_2025.mp3 deleted file mode 100644 index 96814ebe0..000000000 Binary files a/files/12_2025.mp3 and /dev/null differ diff --git a/files/12_2025_example.mp3 b/files/12_2025_example.mp3 deleted file mode 100644 index 1d28d2d76..000000000 Binary files a/files/12_2025_example.mp3 and /dev/null differ diff --git a/files/12_2025_meaning.mp3 b/files/12_2025_meaning.mp3 deleted file mode 100644 index 73b65cc8c..000000000 Binary files a/files/12_2025_meaning.mp3 and /dev/null differ diff --git a/files/12_2026.jpg b/files/12_2026.jpg deleted file mode 100644 index 4d4abbcf0..000000000 Binary files a/files/12_2026.jpg and /dev/null differ diff --git a/files/12_2026.mp3 b/files/12_2026.mp3 deleted file mode 100644 index 754f4c71d..000000000 Binary files a/files/12_2026.mp3 and /dev/null differ diff --git a/files/12_2026_example.mp3 b/files/12_2026_example.mp3 deleted file mode 100644 index d61213a5e..000000000 Binary files a/files/12_2026_example.mp3 and /dev/null differ diff --git a/files/12_2026_meaning.mp3 b/files/12_2026_meaning.mp3 deleted file mode 100644 index 66c844f23..000000000 Binary files a/files/12_2026_meaning.mp3 and /dev/null differ diff --git a/files/12_2027.jpg b/files/12_2027.jpg deleted file mode 100644 index 4f5c3b433..000000000 Binary files a/files/12_2027.jpg and /dev/null differ diff --git a/files/12_2027.mp3 b/files/12_2027.mp3 deleted file mode 100644 index fa1cf102b..000000000 Binary files a/files/12_2027.mp3 and /dev/null differ diff --git a/files/12_2027_example.mp3 b/files/12_2027_example.mp3 deleted file mode 100644 index f4b475040..000000000 Binary files a/files/12_2027_example.mp3 and /dev/null differ diff --git a/files/12_2027_meaning.mp3 b/files/12_2027_meaning.mp3 deleted file mode 100644 index b45cfc9c2..000000000 Binary files a/files/12_2027_meaning.mp3 and /dev/null differ diff --git a/files/12_2028.jpg b/files/12_2028.jpg deleted file mode 100644 index 68c0e4409..000000000 Binary files a/files/12_2028.jpg and /dev/null differ diff --git a/files/12_2028.mp3 b/files/12_2028.mp3 deleted file mode 100644 index 7584737f3..000000000 Binary files a/files/12_2028.mp3 and /dev/null differ diff --git a/files/12_2028_example.mp3 b/files/12_2028_example.mp3 deleted file mode 100644 index b9c4589a7..000000000 Binary files a/files/12_2028_example.mp3 and /dev/null differ diff --git a/files/12_2028_meaning.mp3 b/files/12_2028_meaning.mp3 deleted file mode 100644 index 4d4cadf98..000000000 Binary files a/files/12_2028_meaning.mp3 and /dev/null differ diff --git a/files/12_2029.jpg b/files/12_2029.jpg deleted file mode 100644 index 19c2e1873..000000000 Binary files a/files/12_2029.jpg and /dev/null differ diff --git a/files/12_2029.mp3 b/files/12_2029.mp3 deleted file mode 100644 index 90b2fbec8..000000000 Binary files a/files/12_2029.mp3 and /dev/null differ diff --git a/files/12_2029_example.mp3 b/files/12_2029_example.mp3 deleted file mode 100644 index 5a4e236bb..000000000 Binary files a/files/12_2029_example.mp3 and /dev/null differ diff --git a/files/12_2029_meaning.mp3 b/files/12_2029_meaning.mp3 deleted file mode 100644 index 606961430..000000000 Binary files a/files/12_2029_meaning.mp3 and /dev/null differ diff --git a/files/12_2030.jpg b/files/12_2030.jpg deleted file mode 100644 index 2506a4bf2..000000000 Binary files a/files/12_2030.jpg and /dev/null differ diff --git a/files/12_2030.mp3 b/files/12_2030.mp3 deleted file mode 100644 index 0f95ad9bc..000000000 Binary files a/files/12_2030.mp3 and /dev/null differ diff --git a/files/12_2030_example.mp3 b/files/12_2030_example.mp3 deleted file mode 100644 index 365e081fe..000000000 Binary files a/files/12_2030_example.mp3 and /dev/null differ diff --git a/files/12_2030_meaning.mp3 b/files/12_2030_meaning.mp3 deleted file mode 100644 index a0d40577f..000000000 Binary files a/files/12_2030_meaning.mp3 and /dev/null differ diff --git a/files/12_2031.jpg b/files/12_2031.jpg deleted file mode 100644 index 68b6e3d8e..000000000 Binary files a/files/12_2031.jpg and /dev/null differ diff --git a/files/12_2031.mp3 b/files/12_2031.mp3 deleted file mode 100644 index 7b7189b0e..000000000 Binary files a/files/12_2031.mp3 and /dev/null differ diff --git a/files/12_2031_example.mp3 b/files/12_2031_example.mp3 deleted file mode 100644 index 04263f52a..000000000 Binary files a/files/12_2031_example.mp3 and /dev/null differ diff --git a/files/12_2031_meaning.mp3 b/files/12_2031_meaning.mp3 deleted file mode 100644 index f8e6fc541..000000000 Binary files a/files/12_2031_meaning.mp3 and /dev/null differ diff --git a/files/12_2032.jpg b/files/12_2032.jpg deleted file mode 100644 index 133c6eb29..000000000 Binary files a/files/12_2032.jpg and /dev/null differ diff --git a/files/12_2032.mp3 b/files/12_2032.mp3 deleted file mode 100644 index a6eff0fde..000000000 Binary files a/files/12_2032.mp3 and /dev/null differ diff --git a/files/12_2032_example.mp3 b/files/12_2032_example.mp3 deleted file mode 100644 index 376403001..000000000 Binary files a/files/12_2032_example.mp3 and /dev/null differ diff --git a/files/12_2032_meaning.mp3 b/files/12_2032_meaning.mp3 deleted file mode 100644 index d005c79e1..000000000 Binary files a/files/12_2032_meaning.mp3 and /dev/null differ diff --git a/files/12_2033.jpg b/files/12_2033.jpg deleted file mode 100644 index 77c670973..000000000 Binary files a/files/12_2033.jpg and /dev/null differ diff --git a/files/12_2033.mp3 b/files/12_2033.mp3 deleted file mode 100644 index 040de5469..000000000 Binary files a/files/12_2033.mp3 and /dev/null differ diff --git a/files/12_2033_example.mp3 b/files/12_2033_example.mp3 deleted file mode 100644 index 278a14c42..000000000 Binary files a/files/12_2033_example.mp3 and /dev/null differ diff --git a/files/12_2033_meaning.mp3 b/files/12_2033_meaning.mp3 deleted file mode 100644 index dea96266f..000000000 Binary files a/files/12_2033_meaning.mp3 and /dev/null differ diff --git a/files/12_2034.jpg b/files/12_2034.jpg deleted file mode 100644 index a1d2f4702..000000000 Binary files a/files/12_2034.jpg and /dev/null differ diff --git a/files/12_2034.mp3 b/files/12_2034.mp3 deleted file mode 100644 index b2794e9ac..000000000 Binary files a/files/12_2034.mp3 and /dev/null differ diff --git a/files/12_2034_example.mp3 b/files/12_2034_example.mp3 deleted file mode 100644 index 955a0a204..000000000 Binary files a/files/12_2034_example.mp3 and /dev/null differ diff --git a/files/12_2034_meaning.mp3 b/files/12_2034_meaning.mp3 deleted file mode 100644 index 30bb229fc..000000000 Binary files a/files/12_2034_meaning.mp3 and /dev/null differ diff --git a/files/12_2035.jpg b/files/12_2035.jpg deleted file mode 100644 index 0630de3eb..000000000 Binary files a/files/12_2035.jpg and /dev/null differ diff --git a/files/12_2035.mp3 b/files/12_2035.mp3 deleted file mode 100644 index d1b7e777d..000000000 Binary files a/files/12_2035.mp3 and /dev/null differ diff --git a/files/12_2035_example.mp3 b/files/12_2035_example.mp3 deleted file mode 100644 index 5a69e2fc4..000000000 Binary files a/files/12_2035_example.mp3 and /dev/null differ diff --git a/files/12_2035_meaning.mp3 b/files/12_2035_meaning.mp3 deleted file mode 100644 index 990a71a18..000000000 Binary files a/files/12_2035_meaning.mp3 and /dev/null differ diff --git a/files/12_2036.jpg b/files/12_2036.jpg deleted file mode 100644 index f8f54cbd6..000000000 Binary files a/files/12_2036.jpg and /dev/null differ diff --git a/files/12_2036.mp3 b/files/12_2036.mp3 deleted file mode 100644 index 99b19d07a..000000000 Binary files a/files/12_2036.mp3 and /dev/null differ diff --git a/files/12_2036_example.mp3 b/files/12_2036_example.mp3 deleted file mode 100644 index 08bf46cd7..000000000 Binary files a/files/12_2036_example.mp3 and /dev/null differ diff --git a/files/12_2036_meaning.mp3 b/files/12_2036_meaning.mp3 deleted file mode 100644 index d221f92e6..000000000 Binary files a/files/12_2036_meaning.mp3 and /dev/null differ diff --git a/files/12_2037.jpg b/files/12_2037.jpg deleted file mode 100644 index 4d518ef4e..000000000 Binary files a/files/12_2037.jpg and /dev/null differ diff --git a/files/12_2037.mp3 b/files/12_2037.mp3 deleted file mode 100644 index 0bf6ee546..000000000 Binary files a/files/12_2037.mp3 and /dev/null differ diff --git a/files/12_2037_example.mp3 b/files/12_2037_example.mp3 deleted file mode 100644 index faca855d8..000000000 Binary files a/files/12_2037_example.mp3 and /dev/null differ diff --git a/files/12_2037_meaning.mp3 b/files/12_2037_meaning.mp3 deleted file mode 100644 index 64c3fdc00..000000000 Binary files a/files/12_2037_meaning.mp3 and /dev/null differ diff --git a/files/12_2038.jpg b/files/12_2038.jpg deleted file mode 100644 index ad0c422f7..000000000 Binary files a/files/12_2038.jpg and /dev/null differ diff --git a/files/12_2038.mp3 b/files/12_2038.mp3 deleted file mode 100644 index 94aac855c..000000000 Binary files a/files/12_2038.mp3 and /dev/null differ diff --git a/files/12_2038_example.mp3 b/files/12_2038_example.mp3 deleted file mode 100644 index fdd5f09bf..000000000 Binary files a/files/12_2038_example.mp3 and /dev/null differ diff --git a/files/12_2038_meaning.mp3 b/files/12_2038_meaning.mp3 deleted file mode 100644 index e7563a75e..000000000 Binary files a/files/12_2038_meaning.mp3 and /dev/null differ diff --git a/files/12_2039.jpg b/files/12_2039.jpg deleted file mode 100644 index a7b5a0e96..000000000 Binary files a/files/12_2039.jpg and /dev/null differ diff --git a/files/12_2039.mp3 b/files/12_2039.mp3 deleted file mode 100644 index 359d7f557..000000000 Binary files a/files/12_2039.mp3 and /dev/null differ diff --git a/files/12_2039_example.mp3 b/files/12_2039_example.mp3 deleted file mode 100644 index 2140545e7..000000000 Binary files a/files/12_2039_example.mp3 and /dev/null differ diff --git a/files/12_2039_meaning.mp3 b/files/12_2039_meaning.mp3 deleted file mode 100644 index afd777fe0..000000000 Binary files a/files/12_2039_meaning.mp3 and /dev/null differ diff --git a/files/12_2040.jpg b/files/12_2040.jpg deleted file mode 100644 index 14b51e2ee..000000000 Binary files a/files/12_2040.jpg and /dev/null differ diff --git a/files/12_2040.mp3 b/files/12_2040.mp3 deleted file mode 100644 index e89dff69a..000000000 Binary files a/files/12_2040.mp3 and /dev/null differ diff --git a/files/12_2040_example.mp3 b/files/12_2040_example.mp3 deleted file mode 100644 index b0d5d6d80..000000000 Binary files a/files/12_2040_example.mp3 and /dev/null differ diff --git a/files/12_2040_meaning.mp3 b/files/12_2040_meaning.mp3 deleted file mode 100644 index f2913a368..000000000 Binary files a/files/12_2040_meaning.mp3 and /dev/null differ diff --git a/files/12_2621.jpg b/files/12_2621.jpg deleted file mode 100644 index abe0e9df4..000000000 Binary files a/files/12_2621.jpg and /dev/null differ diff --git a/files/12_2621.mp3 b/files/12_2621.mp3 deleted file mode 100644 index 5fe22ff2c..000000000 Binary files a/files/12_2621.mp3 and /dev/null differ diff --git a/files/12_2621_example.mp3 b/files/12_2621_example.mp3 deleted file mode 100644 index f02654d2a..000000000 Binary files a/files/12_2621_example.mp3 and /dev/null differ diff --git a/files/12_2621_meaning.mp3 b/files/12_2621_meaning.mp3 deleted file mode 100644 index fee64e48d..000000000 Binary files a/files/12_2621_meaning.mp3 and /dev/null differ diff --git a/files/12_2622.jpg b/files/12_2622.jpg deleted file mode 100644 index c55e925d7..000000000 Binary files a/files/12_2622.jpg and /dev/null differ diff --git a/files/12_2622.mp3 b/files/12_2622.mp3 deleted file mode 100644 index 6c4f3f56b..000000000 Binary files a/files/12_2622.mp3 and /dev/null differ diff --git a/files/12_2622_example.mp3 b/files/12_2622_example.mp3 deleted file mode 100644 index 9bd8e521e..000000000 Binary files a/files/12_2622_example.mp3 and /dev/null differ diff --git a/files/12_2622_meaning.mp3 b/files/12_2622_meaning.mp3 deleted file mode 100644 index 6766bd31a..000000000 Binary files a/files/12_2622_meaning.mp3 and /dev/null differ diff --git a/files/12_2623.jpg b/files/12_2623.jpg deleted file mode 100644 index 8e94b3591..000000000 Binary files a/files/12_2623.jpg and /dev/null differ diff --git a/files/12_2623.mp3 b/files/12_2623.mp3 deleted file mode 100644 index 4f983d252..000000000 Binary files a/files/12_2623.mp3 and /dev/null differ diff --git a/files/12_2623_example.mp3 b/files/12_2623_example.mp3 deleted file mode 100644 index 50c08c9af..000000000 Binary files a/files/12_2623_example.mp3 and /dev/null differ diff --git a/files/12_2623_meaning.mp3 b/files/12_2623_meaning.mp3 deleted file mode 100644 index 45fc00422..000000000 Binary files a/files/12_2623_meaning.mp3 and /dev/null differ diff --git a/files/12_2624.jpg b/files/12_2624.jpg deleted file mode 100644 index 2b1070d72..000000000 Binary files a/files/12_2624.jpg and /dev/null differ diff --git a/files/12_2624.mp3 b/files/12_2624.mp3 deleted file mode 100644 index 503bf20fb..000000000 Binary files a/files/12_2624.mp3 and /dev/null differ diff --git a/files/12_2624_example.mp3 b/files/12_2624_example.mp3 deleted file mode 100644 index 3122d6a99..000000000 Binary files a/files/12_2624_example.mp3 and /dev/null differ diff --git a/files/12_2624_meaning.mp3 b/files/12_2624_meaning.mp3 deleted file mode 100644 index 876d2d859..000000000 Binary files a/files/12_2624_meaning.mp3 and /dev/null differ diff --git a/files/12_2625.jpg b/files/12_2625.jpg deleted file mode 100644 index 91d8853ad..000000000 Binary files a/files/12_2625.jpg and /dev/null differ diff --git a/files/12_2625.mp3 b/files/12_2625.mp3 deleted file mode 100644 index 25e0b6ced..000000000 Binary files a/files/12_2625.mp3 and /dev/null differ diff --git a/files/12_2625_example.mp3 b/files/12_2625_example.mp3 deleted file mode 100644 index c585ebcda..000000000 Binary files a/files/12_2625_example.mp3 and /dev/null differ diff --git a/files/12_2625_meaning.mp3 b/files/12_2625_meaning.mp3 deleted file mode 100644 index cd975ae90..000000000 Binary files a/files/12_2625_meaning.mp3 and /dev/null differ diff --git a/files/12_2626.jpg b/files/12_2626.jpg deleted file mode 100644 index 16a0eb8ba..000000000 Binary files a/files/12_2626.jpg and /dev/null differ diff --git a/files/12_2626.mp3 b/files/12_2626.mp3 deleted file mode 100644 index a301dc417..000000000 Binary files a/files/12_2626.mp3 and /dev/null differ diff --git a/files/12_2626_example.mp3 b/files/12_2626_example.mp3 deleted file mode 100644 index 386eb87ff..000000000 Binary files a/files/12_2626_example.mp3 and /dev/null differ diff --git a/files/12_2626_meaning.mp3 b/files/12_2626_meaning.mp3 deleted file mode 100644 index 6f67e0ba0..000000000 Binary files a/files/12_2626_meaning.mp3 and /dev/null differ diff --git a/files/12_2627.jpg b/files/12_2627.jpg deleted file mode 100644 index 5cab362c0..000000000 Binary files a/files/12_2627.jpg and /dev/null differ diff --git a/files/12_2627.mp3 b/files/12_2627.mp3 deleted file mode 100644 index 4a1c19a20..000000000 Binary files a/files/12_2627.mp3 and /dev/null differ diff --git a/files/12_2627_example.mp3 b/files/12_2627_example.mp3 deleted file mode 100644 index 42f6881fe..000000000 Binary files a/files/12_2627_example.mp3 and /dev/null differ diff --git a/files/12_2627_meaning.mp3 b/files/12_2627_meaning.mp3 deleted file mode 100644 index 2e92cc86f..000000000 Binary files a/files/12_2627_meaning.mp3 and /dev/null differ diff --git a/files/12_2628.jpg b/files/12_2628.jpg deleted file mode 100644 index e0c596c1d..000000000 Binary files a/files/12_2628.jpg and /dev/null differ diff --git a/files/12_2628.mp3 b/files/12_2628.mp3 deleted file mode 100644 index c5ca3cedf..000000000 Binary files a/files/12_2628.mp3 and /dev/null differ diff --git a/files/12_2628_example.mp3 b/files/12_2628_example.mp3 deleted file mode 100644 index 58820692f..000000000 Binary files a/files/12_2628_example.mp3 and /dev/null differ diff --git a/files/12_2628_meaning.mp3 b/files/12_2628_meaning.mp3 deleted file mode 100644 index bd744dc09..000000000 Binary files a/files/12_2628_meaning.mp3 and /dev/null differ diff --git a/files/12_2629.jpg b/files/12_2629.jpg deleted file mode 100644 index b2f3d12ea..000000000 Binary files a/files/12_2629.jpg and /dev/null differ diff --git a/files/12_2629.mp3 b/files/12_2629.mp3 deleted file mode 100644 index 16d1ce8b6..000000000 Binary files a/files/12_2629.mp3 and /dev/null differ diff --git a/files/12_2629_example.mp3 b/files/12_2629_example.mp3 deleted file mode 100644 index 48a6f295c..000000000 Binary files a/files/12_2629_example.mp3 and /dev/null differ diff --git a/files/12_2629_meaning.mp3 b/files/12_2629_meaning.mp3 deleted file mode 100644 index ab64dc51f..000000000 Binary files a/files/12_2629_meaning.mp3 and /dev/null differ diff --git a/files/12_2630.jpg b/files/12_2630.jpg deleted file mode 100644 index 036810e00..000000000 Binary files a/files/12_2630.jpg and /dev/null differ diff --git a/files/12_2630.mp3 b/files/12_2630.mp3 deleted file mode 100644 index 967aaaf48..000000000 Binary files a/files/12_2630.mp3 and /dev/null differ diff --git a/files/12_2630_example.mp3 b/files/12_2630_example.mp3 deleted file mode 100644 index 5e1a0ce3d..000000000 Binary files a/files/12_2630_example.mp3 and /dev/null differ diff --git a/files/12_2630_meaning.mp3 b/files/12_2630_meaning.mp3 deleted file mode 100644 index 2093ff01e..000000000 Binary files a/files/12_2630_meaning.mp3 and /dev/null differ diff --git a/files/12_2631.jpg b/files/12_2631.jpg deleted file mode 100644 index d9ad313a9..000000000 Binary files a/files/12_2631.jpg and /dev/null differ diff --git a/files/12_2631.mp3 b/files/12_2631.mp3 deleted file mode 100644 index dc0710ec0..000000000 Binary files a/files/12_2631.mp3 and /dev/null differ diff --git a/files/12_2631_example.mp3 b/files/12_2631_example.mp3 deleted file mode 100644 index 5095df3f6..000000000 Binary files a/files/12_2631_example.mp3 and /dev/null differ diff --git a/files/12_2631_meaning.mp3 b/files/12_2631_meaning.mp3 deleted file mode 100644 index 3a9501397..000000000 Binary files a/files/12_2631_meaning.mp3 and /dev/null differ diff --git a/files/12_2632.jpg b/files/12_2632.jpg deleted file mode 100644 index c045f961b..000000000 Binary files a/files/12_2632.jpg and /dev/null differ diff --git a/files/12_2632.mp3 b/files/12_2632.mp3 deleted file mode 100644 index d4bc8d853..000000000 Binary files a/files/12_2632.mp3 and /dev/null differ diff --git a/files/12_2632_example.mp3 b/files/12_2632_example.mp3 deleted file mode 100644 index e2c4d9425..000000000 Binary files a/files/12_2632_example.mp3 and /dev/null differ diff --git a/files/12_2632_meaning.mp3 b/files/12_2632_meaning.mp3 deleted file mode 100644 index df5db7e95..000000000 Binary files a/files/12_2632_meaning.mp3 and /dev/null differ diff --git a/files/12_2633.jpg b/files/12_2633.jpg deleted file mode 100644 index 0bb4e5eab..000000000 Binary files a/files/12_2633.jpg and /dev/null differ diff --git a/files/12_2633.mp3 b/files/12_2633.mp3 deleted file mode 100644 index e3f9cc4f0..000000000 Binary files a/files/12_2633.mp3 and /dev/null differ diff --git a/files/12_2633_example.mp3 b/files/12_2633_example.mp3 deleted file mode 100644 index 83c00fcec..000000000 Binary files a/files/12_2633_example.mp3 and /dev/null differ diff --git a/files/12_2633_meaning.mp3 b/files/12_2633_meaning.mp3 deleted file mode 100644 index ff74658be..000000000 Binary files a/files/12_2633_meaning.mp3 and /dev/null differ diff --git a/files/12_2634.jpg b/files/12_2634.jpg deleted file mode 100644 index 4283808c6..000000000 Binary files a/files/12_2634.jpg and /dev/null differ diff --git a/files/12_2634.mp3 b/files/12_2634.mp3 deleted file mode 100644 index c0c74cc4b..000000000 Binary files a/files/12_2634.mp3 and /dev/null differ diff --git a/files/12_2634_example.mp3 b/files/12_2634_example.mp3 deleted file mode 100644 index 0cef5d38e..000000000 Binary files a/files/12_2634_example.mp3 and /dev/null differ diff --git a/files/12_2634_meaning.mp3 b/files/12_2634_meaning.mp3 deleted file mode 100644 index 59e75c4b0..000000000 Binary files a/files/12_2634_meaning.mp3 and /dev/null differ diff --git a/files/12_2635.jpg b/files/12_2635.jpg deleted file mode 100644 index 3f944ae44..000000000 Binary files a/files/12_2635.jpg and /dev/null differ diff --git a/files/12_2635.mp3 b/files/12_2635.mp3 deleted file mode 100644 index 4e25fb462..000000000 Binary files a/files/12_2635.mp3 and /dev/null differ diff --git a/files/12_2635_example.mp3 b/files/12_2635_example.mp3 deleted file mode 100644 index 0724b4fa3..000000000 Binary files a/files/12_2635_example.mp3 and /dev/null differ diff --git a/files/12_2635_meaning.mp3 b/files/12_2635_meaning.mp3 deleted file mode 100644 index 6f682aabd..000000000 Binary files a/files/12_2635_meaning.mp3 and /dev/null differ diff --git a/files/12_2636.jpg b/files/12_2636.jpg deleted file mode 100644 index bd21d4ca9..000000000 Binary files a/files/12_2636.jpg and /dev/null differ diff --git a/files/12_2636.mp3 b/files/12_2636.mp3 deleted file mode 100644 index 57483b1d4..000000000 Binary files a/files/12_2636.mp3 and /dev/null differ diff --git a/files/12_2636_example.mp3 b/files/12_2636_example.mp3 deleted file mode 100644 index 804fdac5f..000000000 Binary files a/files/12_2636_example.mp3 and /dev/null differ diff --git a/files/12_2636_meaning.mp3 b/files/12_2636_meaning.mp3 deleted file mode 100644 index 976477b1b..000000000 Binary files a/files/12_2636_meaning.mp3 and /dev/null differ diff --git a/files/12_2637.jpg b/files/12_2637.jpg deleted file mode 100644 index bacec0766..000000000 Binary files a/files/12_2637.jpg and /dev/null differ diff --git a/files/12_2637.mp3 b/files/12_2637.mp3 deleted file mode 100644 index f928d5a16..000000000 Binary files a/files/12_2637.mp3 and /dev/null differ diff --git a/files/12_2637_example.mp3 b/files/12_2637_example.mp3 deleted file mode 100644 index 4dd2eba02..000000000 Binary files a/files/12_2637_example.mp3 and /dev/null differ diff --git a/files/12_2637_meaning.mp3 b/files/12_2637_meaning.mp3 deleted file mode 100644 index bf89ec998..000000000 Binary files a/files/12_2637_meaning.mp3 and /dev/null differ diff --git a/files/12_2638.jpg b/files/12_2638.jpg deleted file mode 100644 index a9fd2a5ae..000000000 Binary files a/files/12_2638.jpg and /dev/null differ diff --git a/files/12_2638.mp3 b/files/12_2638.mp3 deleted file mode 100644 index 30bf063c6..000000000 Binary files a/files/12_2638.mp3 and /dev/null differ diff --git a/files/12_2638_example.mp3 b/files/12_2638_example.mp3 deleted file mode 100644 index b182894ef..000000000 Binary files a/files/12_2638_example.mp3 and /dev/null differ diff --git a/files/12_2638_meaning.mp3 b/files/12_2638_meaning.mp3 deleted file mode 100644 index ca91711ba..000000000 Binary files a/files/12_2638_meaning.mp3 and /dev/null differ diff --git a/files/12_2639.jpg b/files/12_2639.jpg deleted file mode 100644 index ada6918fa..000000000 Binary files a/files/12_2639.jpg and /dev/null differ diff --git a/files/12_2639.mp3 b/files/12_2639.mp3 deleted file mode 100644 index 17829773b..000000000 Binary files a/files/12_2639.mp3 and /dev/null differ diff --git a/files/12_2639_example.mp3 b/files/12_2639_example.mp3 deleted file mode 100644 index 858a1a1ae..000000000 Binary files a/files/12_2639_example.mp3 and /dev/null differ diff --git a/files/12_2639_meaning.mp3 b/files/12_2639_meaning.mp3 deleted file mode 100644 index ba8c7b550..000000000 Binary files a/files/12_2639_meaning.mp3 and /dev/null differ diff --git a/files/12_2640.jpg b/files/12_2640.jpg deleted file mode 100644 index e8b73f9f0..000000000 Binary files a/files/12_2640.jpg and /dev/null differ diff --git a/files/12_2640.mp3 b/files/12_2640.mp3 deleted file mode 100644 index a4315e434..000000000 Binary files a/files/12_2640.mp3 and /dev/null differ diff --git a/files/12_2640_example.mp3 b/files/12_2640_example.mp3 deleted file mode 100644 index 325b41d78..000000000 Binary files a/files/12_2640_example.mp3 and /dev/null differ diff --git a/files/12_2640_meaning.mp3 b/files/12_2640_meaning.mp3 deleted file mode 100644 index 378d41e85..000000000 Binary files a/files/12_2640_meaning.mp3 and /dev/null differ diff --git a/files/12_3221.jpg b/files/12_3221.jpg deleted file mode 100644 index 0b2fac5cf..000000000 Binary files a/files/12_3221.jpg and /dev/null differ diff --git a/files/12_3221.mp3 b/files/12_3221.mp3 deleted file mode 100644 index 71f8a19b8..000000000 Binary files a/files/12_3221.mp3 and /dev/null differ diff --git a/files/12_3221_example.mp3 b/files/12_3221_example.mp3 deleted file mode 100644 index 7f561232e..000000000 Binary files a/files/12_3221_example.mp3 and /dev/null differ diff --git a/files/12_3221_meaning.mp3 b/files/12_3221_meaning.mp3 deleted file mode 100644 index 834ccbd4c..000000000 Binary files a/files/12_3221_meaning.mp3 and /dev/null differ diff --git a/files/12_3222.jpg b/files/12_3222.jpg deleted file mode 100644 index d0b019241..000000000 Binary files a/files/12_3222.jpg and /dev/null differ diff --git a/files/12_3222.mp3 b/files/12_3222.mp3 deleted file mode 100644 index 63d42cf1e..000000000 Binary files a/files/12_3222.mp3 and /dev/null differ diff --git a/files/12_3222_example.mp3 b/files/12_3222_example.mp3 deleted file mode 100644 index a8a588cbb..000000000 Binary files a/files/12_3222_example.mp3 and /dev/null differ diff --git a/files/12_3222_meaning.mp3 b/files/12_3222_meaning.mp3 deleted file mode 100644 index d6e821341..000000000 Binary files a/files/12_3222_meaning.mp3 and /dev/null differ diff --git a/files/12_3223.jpg b/files/12_3223.jpg deleted file mode 100644 index eb4a13a83..000000000 Binary files a/files/12_3223.jpg and /dev/null differ diff --git a/files/12_3223.mp3 b/files/12_3223.mp3 deleted file mode 100644 index f2b6691eb..000000000 Binary files a/files/12_3223.mp3 and /dev/null differ diff --git a/files/12_3223_example.mp3 b/files/12_3223_example.mp3 deleted file mode 100644 index dac3db260..000000000 Binary files a/files/12_3223_example.mp3 and /dev/null differ diff --git a/files/12_3223_meaning.mp3 b/files/12_3223_meaning.mp3 deleted file mode 100644 index a828c6ba0..000000000 Binary files a/files/12_3223_meaning.mp3 and /dev/null differ diff --git a/files/12_3224.jpg b/files/12_3224.jpg deleted file mode 100644 index f13359806..000000000 Binary files a/files/12_3224.jpg and /dev/null differ diff --git a/files/12_3224.mp3 b/files/12_3224.mp3 deleted file mode 100644 index d611b1f63..000000000 Binary files a/files/12_3224.mp3 and /dev/null differ diff --git a/files/12_3224_example.mp3 b/files/12_3224_example.mp3 deleted file mode 100644 index a6766c3ee..000000000 Binary files a/files/12_3224_example.mp3 and /dev/null differ diff --git a/files/12_3224_meaning.mp3 b/files/12_3224_meaning.mp3 deleted file mode 100644 index 3cb46e55b..000000000 Binary files a/files/12_3224_meaning.mp3 and /dev/null differ diff --git a/files/12_3225.jpg b/files/12_3225.jpg deleted file mode 100644 index 661466e6e..000000000 Binary files a/files/12_3225.jpg and /dev/null differ diff --git a/files/12_3225.mp3 b/files/12_3225.mp3 deleted file mode 100644 index 1f109f29a..000000000 Binary files a/files/12_3225.mp3 and /dev/null differ diff --git a/files/12_3225_example.mp3 b/files/12_3225_example.mp3 deleted file mode 100644 index 457adede7..000000000 Binary files a/files/12_3225_example.mp3 and /dev/null differ diff --git a/files/12_3225_meaning.mp3 b/files/12_3225_meaning.mp3 deleted file mode 100644 index 0c9fc3d61..000000000 Binary files a/files/12_3225_meaning.mp3 and /dev/null differ diff --git a/files/12_3226.jpg b/files/12_3226.jpg deleted file mode 100644 index b9a9b7c93..000000000 Binary files a/files/12_3226.jpg and /dev/null differ diff --git a/files/12_3226.mp3 b/files/12_3226.mp3 deleted file mode 100644 index 031ee84a2..000000000 Binary files a/files/12_3226.mp3 and /dev/null differ diff --git a/files/12_3226_example.mp3 b/files/12_3226_example.mp3 deleted file mode 100644 index 6b0e9a3a4..000000000 Binary files a/files/12_3226_example.mp3 and /dev/null differ diff --git a/files/12_3226_meaning.mp3 b/files/12_3226_meaning.mp3 deleted file mode 100644 index b4052b9fa..000000000 Binary files a/files/12_3226_meaning.mp3 and /dev/null differ diff --git a/files/12_3227.jpg b/files/12_3227.jpg deleted file mode 100644 index 9f03a4f47..000000000 Binary files a/files/12_3227.jpg and /dev/null differ diff --git a/files/12_3227.mp3 b/files/12_3227.mp3 deleted file mode 100644 index e2c4d3813..000000000 Binary files a/files/12_3227.mp3 and /dev/null differ diff --git a/files/12_3227_example.mp3 b/files/12_3227_example.mp3 deleted file mode 100644 index b08618b30..000000000 Binary files a/files/12_3227_example.mp3 and /dev/null differ diff --git a/files/12_3227_meaning.mp3 b/files/12_3227_meaning.mp3 deleted file mode 100644 index 9418a1f12..000000000 Binary files a/files/12_3227_meaning.mp3 and /dev/null differ diff --git a/files/12_3228.jpg b/files/12_3228.jpg deleted file mode 100644 index 815961464..000000000 Binary files a/files/12_3228.jpg and /dev/null differ diff --git a/files/12_3228.mp3 b/files/12_3228.mp3 deleted file mode 100644 index 7e09d49f3..000000000 Binary files a/files/12_3228.mp3 and /dev/null differ diff --git a/files/12_3228_example.mp3 b/files/12_3228_example.mp3 deleted file mode 100644 index d5e4e3dbc..000000000 Binary files a/files/12_3228_example.mp3 and /dev/null differ diff --git a/files/12_3228_meaning.mp3 b/files/12_3228_meaning.mp3 deleted file mode 100644 index 2c317ba59..000000000 Binary files a/files/12_3228_meaning.mp3 and /dev/null differ diff --git a/files/12_3229.jpg b/files/12_3229.jpg deleted file mode 100644 index 792c488d1..000000000 Binary files a/files/12_3229.jpg and /dev/null differ diff --git a/files/12_3229.mp3 b/files/12_3229.mp3 deleted file mode 100644 index 0d2a190b1..000000000 Binary files a/files/12_3229.mp3 and /dev/null differ diff --git a/files/12_3229_example.mp3 b/files/12_3229_example.mp3 deleted file mode 100644 index 56f4ff872..000000000 Binary files a/files/12_3229_example.mp3 and /dev/null differ diff --git a/files/12_3229_meaning.mp3 b/files/12_3229_meaning.mp3 deleted file mode 100644 index f142527ed..000000000 Binary files a/files/12_3229_meaning.mp3 and /dev/null differ diff --git a/files/12_3230.jpg b/files/12_3230.jpg deleted file mode 100644 index 9ffb7e67f..000000000 Binary files a/files/12_3230.jpg and /dev/null differ diff --git a/files/12_3230.mp3 b/files/12_3230.mp3 deleted file mode 100644 index 6a7cd51d5..000000000 Binary files a/files/12_3230.mp3 and /dev/null differ diff --git a/files/12_3230_example.mp3 b/files/12_3230_example.mp3 deleted file mode 100644 index 316900286..000000000 Binary files a/files/12_3230_example.mp3 and /dev/null differ diff --git a/files/12_3230_meaning.mp3 b/files/12_3230_meaning.mp3 deleted file mode 100644 index 837b45cef..000000000 Binary files a/files/12_3230_meaning.mp3 and /dev/null differ diff --git a/files/12_3231.jpg b/files/12_3231.jpg deleted file mode 100644 index fb1a9f7f6..000000000 Binary files a/files/12_3231.jpg and /dev/null differ diff --git a/files/12_3231.mp3 b/files/12_3231.mp3 deleted file mode 100644 index d9b706aca..000000000 Binary files a/files/12_3231.mp3 and /dev/null differ diff --git a/files/12_3231_example.mp3 b/files/12_3231_example.mp3 deleted file mode 100644 index 02d31320c..000000000 Binary files a/files/12_3231_example.mp3 and /dev/null differ diff --git a/files/12_3231_meaning.mp3 b/files/12_3231_meaning.mp3 deleted file mode 100644 index 8ba40a5bf..000000000 Binary files a/files/12_3231_meaning.mp3 and /dev/null differ diff --git a/files/12_3232.jpg b/files/12_3232.jpg deleted file mode 100644 index 620292968..000000000 Binary files a/files/12_3232.jpg and /dev/null differ diff --git a/files/12_3232.mp3 b/files/12_3232.mp3 deleted file mode 100644 index d625d7255..000000000 Binary files a/files/12_3232.mp3 and /dev/null differ diff --git a/files/12_3232_example.mp3 b/files/12_3232_example.mp3 deleted file mode 100644 index d14bc71df..000000000 Binary files a/files/12_3232_example.mp3 and /dev/null differ diff --git a/files/12_3232_meaning.mp3 b/files/12_3232_meaning.mp3 deleted file mode 100644 index d9394d05c..000000000 Binary files a/files/12_3232_meaning.mp3 and /dev/null differ diff --git a/files/12_3233.jpg b/files/12_3233.jpg deleted file mode 100644 index ae32ee1c4..000000000 Binary files a/files/12_3233.jpg and /dev/null differ diff --git a/files/12_3233.mp3 b/files/12_3233.mp3 deleted file mode 100644 index 87d7760c4..000000000 Binary files a/files/12_3233.mp3 and /dev/null differ diff --git a/files/12_3233_example.mp3 b/files/12_3233_example.mp3 deleted file mode 100644 index 0664f804b..000000000 Binary files a/files/12_3233_example.mp3 and /dev/null differ diff --git a/files/12_3233_meaning.mp3 b/files/12_3233_meaning.mp3 deleted file mode 100644 index 0264a618b..000000000 Binary files a/files/12_3233_meaning.mp3 and /dev/null differ diff --git a/files/12_3234.jpg b/files/12_3234.jpg deleted file mode 100644 index 770c93133..000000000 Binary files a/files/12_3234.jpg and /dev/null differ diff --git a/files/12_3234.mp3 b/files/12_3234.mp3 deleted file mode 100644 index fc863901d..000000000 Binary files a/files/12_3234.mp3 and /dev/null differ diff --git a/files/12_3234_example.mp3 b/files/12_3234_example.mp3 deleted file mode 100644 index 83ea58037..000000000 Binary files a/files/12_3234_example.mp3 and /dev/null differ diff --git a/files/12_3234_meaning.mp3 b/files/12_3234_meaning.mp3 deleted file mode 100644 index ddb8ad003..000000000 Binary files a/files/12_3234_meaning.mp3 and /dev/null differ diff --git a/files/12_3235.jpg b/files/12_3235.jpg deleted file mode 100644 index 9270871a3..000000000 Binary files a/files/12_3235.jpg and /dev/null differ diff --git a/files/12_3235.mp3 b/files/12_3235.mp3 deleted file mode 100644 index 2f2578020..000000000 Binary files a/files/12_3235.mp3 and /dev/null differ diff --git a/files/12_3235_example.mp3 b/files/12_3235_example.mp3 deleted file mode 100644 index 50fe70c7b..000000000 Binary files a/files/12_3235_example.mp3 and /dev/null differ diff --git a/files/12_3235_meaning.mp3 b/files/12_3235_meaning.mp3 deleted file mode 100644 index a27feb140..000000000 Binary files a/files/12_3235_meaning.mp3 and /dev/null differ diff --git a/files/12_3236.jpg b/files/12_3236.jpg deleted file mode 100644 index 1e60764c6..000000000 Binary files a/files/12_3236.jpg and /dev/null differ diff --git a/files/12_3236.mp3 b/files/12_3236.mp3 deleted file mode 100644 index f1243906b..000000000 Binary files a/files/12_3236.mp3 and /dev/null differ diff --git a/files/12_3236_example.mp3 b/files/12_3236_example.mp3 deleted file mode 100644 index 9899d4515..000000000 Binary files a/files/12_3236_example.mp3 and /dev/null differ diff --git a/files/12_3236_meaning.mp3 b/files/12_3236_meaning.mp3 deleted file mode 100644 index 74b8c9e96..000000000 Binary files a/files/12_3236_meaning.mp3 and /dev/null differ diff --git a/files/12_3237.jpg b/files/12_3237.jpg deleted file mode 100644 index 8977bb8ef..000000000 Binary files a/files/12_3237.jpg and /dev/null differ diff --git a/files/12_3237.mp3 b/files/12_3237.mp3 deleted file mode 100644 index d94153f25..000000000 Binary files a/files/12_3237.mp3 and /dev/null differ diff --git a/files/12_3237_example.mp3 b/files/12_3237_example.mp3 deleted file mode 100644 index 713746b4b..000000000 Binary files a/files/12_3237_example.mp3 and /dev/null differ diff --git a/files/12_3237_meaning.mp3 b/files/12_3237_meaning.mp3 deleted file mode 100644 index 7a63934ba..000000000 Binary files a/files/12_3237_meaning.mp3 and /dev/null differ diff --git a/files/12_3238.jpg b/files/12_3238.jpg deleted file mode 100644 index 22616abd1..000000000 Binary files a/files/12_3238.jpg and /dev/null differ diff --git a/files/12_3238.mp3 b/files/12_3238.mp3 deleted file mode 100644 index 03a08d332..000000000 Binary files a/files/12_3238.mp3 and /dev/null differ diff --git a/files/12_3238_example.mp3 b/files/12_3238_example.mp3 deleted file mode 100644 index 70441c6ab..000000000 Binary files a/files/12_3238_example.mp3 and /dev/null differ diff --git a/files/12_3238_meaning.mp3 b/files/12_3238_meaning.mp3 deleted file mode 100644 index 9266f4fab..000000000 Binary files a/files/12_3238_meaning.mp3 and /dev/null differ diff --git a/files/12_3239.jpg b/files/12_3239.jpg deleted file mode 100644 index 821c86f3c..000000000 Binary files a/files/12_3239.jpg and /dev/null differ diff --git a/files/12_3239.mp3 b/files/12_3239.mp3 deleted file mode 100644 index 3ae8b6f99..000000000 Binary files a/files/12_3239.mp3 and /dev/null differ diff --git a/files/12_3239_example.mp3 b/files/12_3239_example.mp3 deleted file mode 100644 index 3fcac777d..000000000 Binary files a/files/12_3239_example.mp3 and /dev/null differ diff --git a/files/12_3239_meaning.mp3 b/files/12_3239_meaning.mp3 deleted file mode 100644 index e534f7021..000000000 Binary files a/files/12_3239_meaning.mp3 and /dev/null differ diff --git a/files/12_3240.jpg b/files/12_3240.jpg deleted file mode 100644 index 51db47c45..000000000 Binary files a/files/12_3240.jpg and /dev/null differ diff --git a/files/12_3240.mp3 b/files/12_3240.mp3 deleted file mode 100644 index d96a1bf8c..000000000 Binary files a/files/12_3240.mp3 and /dev/null differ diff --git a/files/12_3240_example.mp3 b/files/12_3240_example.mp3 deleted file mode 100644 index cfd9b33b5..000000000 Binary files a/files/12_3240_example.mp3 and /dev/null differ diff --git a/files/12_3240_meaning.mp3 b/files/12_3240_meaning.mp3 deleted file mode 100644 index f8653d1c5..000000000 Binary files a/files/12_3240_meaning.mp3 and /dev/null differ diff --git a/files/13_0241.jpg b/files/13_0241.jpg deleted file mode 100644 index 537f5e732..000000000 Binary files a/files/13_0241.jpg and /dev/null differ diff --git a/files/13_0241.mp3 b/files/13_0241.mp3 deleted file mode 100644 index 8520d1603..000000000 Binary files a/files/13_0241.mp3 and /dev/null differ diff --git a/files/13_0241_example.mp3 b/files/13_0241_example.mp3 deleted file mode 100644 index 39f0b6dd0..000000000 Binary files a/files/13_0241_example.mp3 and /dev/null differ diff --git a/files/13_0241_meaning.mp3 b/files/13_0241_meaning.mp3 deleted file mode 100644 index 2df10d82f..000000000 Binary files a/files/13_0241_meaning.mp3 and /dev/null differ diff --git a/files/13_0242.jpg b/files/13_0242.jpg deleted file mode 100644 index d0bb4bcf3..000000000 Binary files a/files/13_0242.jpg and /dev/null differ diff --git a/files/13_0242.mp3 b/files/13_0242.mp3 deleted file mode 100644 index 9019ab27b..000000000 Binary files a/files/13_0242.mp3 and /dev/null differ diff --git a/files/13_0242_example.mp3 b/files/13_0242_example.mp3 deleted file mode 100644 index 296eb3da4..000000000 Binary files a/files/13_0242_example.mp3 and /dev/null differ diff --git a/files/13_0242_meaning.mp3 b/files/13_0242_meaning.mp3 deleted file mode 100644 index d9174bfc0..000000000 Binary files a/files/13_0242_meaning.mp3 and /dev/null differ diff --git a/files/13_0243.jpg b/files/13_0243.jpg deleted file mode 100644 index 124762902..000000000 Binary files a/files/13_0243.jpg and /dev/null differ diff --git a/files/13_0243.mp3 b/files/13_0243.mp3 deleted file mode 100644 index d1714413a..000000000 Binary files a/files/13_0243.mp3 and /dev/null differ diff --git a/files/13_0243_example.mp3 b/files/13_0243_example.mp3 deleted file mode 100644 index 455b1b9f7..000000000 Binary files a/files/13_0243_example.mp3 and /dev/null differ diff --git a/files/13_0243_meaning.mp3 b/files/13_0243_meaning.mp3 deleted file mode 100644 index 8c8724d45..000000000 Binary files a/files/13_0243_meaning.mp3 and /dev/null differ diff --git a/files/13_0244.jpg b/files/13_0244.jpg deleted file mode 100644 index c5712ea8e..000000000 Binary files a/files/13_0244.jpg and /dev/null differ diff --git a/files/13_0244.mp3 b/files/13_0244.mp3 deleted file mode 100644 index 8d1dc0ea1..000000000 Binary files a/files/13_0244.mp3 and /dev/null differ diff --git a/files/13_0244_example.mp3 b/files/13_0244_example.mp3 deleted file mode 100644 index dc35901e7..000000000 Binary files a/files/13_0244_example.mp3 and /dev/null differ diff --git a/files/13_0244_meaning.mp3 b/files/13_0244_meaning.mp3 deleted file mode 100644 index b14031286..000000000 Binary files a/files/13_0244_meaning.mp3 and /dev/null differ diff --git a/files/13_0245.jpg b/files/13_0245.jpg deleted file mode 100644 index 28a7b2467..000000000 Binary files a/files/13_0245.jpg and /dev/null differ diff --git a/files/13_0245.mp3 b/files/13_0245.mp3 deleted file mode 100644 index 37e426c56..000000000 Binary files a/files/13_0245.mp3 and /dev/null differ diff --git a/files/13_0245_example.mp3 b/files/13_0245_example.mp3 deleted file mode 100644 index 03747c957..000000000 Binary files a/files/13_0245_example.mp3 and /dev/null differ diff --git a/files/13_0245_meaning.mp3 b/files/13_0245_meaning.mp3 deleted file mode 100644 index e52157591..000000000 Binary files a/files/13_0245_meaning.mp3 and /dev/null differ diff --git a/files/13_0246.jpg b/files/13_0246.jpg deleted file mode 100644 index 81474d85b..000000000 Binary files a/files/13_0246.jpg and /dev/null differ diff --git a/files/13_0246.mp3 b/files/13_0246.mp3 deleted file mode 100644 index 1ddf47972..000000000 Binary files a/files/13_0246.mp3 and /dev/null differ diff --git a/files/13_0246_example.mp3 b/files/13_0246_example.mp3 deleted file mode 100644 index 3ae19ca2c..000000000 Binary files a/files/13_0246_example.mp3 and /dev/null differ diff --git a/files/13_0246_meaning.mp3 b/files/13_0246_meaning.mp3 deleted file mode 100644 index 75e401163..000000000 Binary files a/files/13_0246_meaning.mp3 and /dev/null differ diff --git a/files/13_0247.jpg b/files/13_0247.jpg deleted file mode 100644 index cf8e047af..000000000 Binary files a/files/13_0247.jpg and /dev/null differ diff --git a/files/13_0247.mp3 b/files/13_0247.mp3 deleted file mode 100644 index 03ff7f1af..000000000 Binary files a/files/13_0247.mp3 and /dev/null differ diff --git a/files/13_0247_example.mp3 b/files/13_0247_example.mp3 deleted file mode 100644 index 85999f43d..000000000 Binary files a/files/13_0247_example.mp3 and /dev/null differ diff --git a/files/13_0247_meaning.mp3 b/files/13_0247_meaning.mp3 deleted file mode 100644 index 747189082..000000000 Binary files a/files/13_0247_meaning.mp3 and /dev/null differ diff --git a/files/13_0248.jpg b/files/13_0248.jpg deleted file mode 100644 index 9772d074c..000000000 Binary files a/files/13_0248.jpg and /dev/null differ diff --git a/files/13_0248.mp3 b/files/13_0248.mp3 deleted file mode 100644 index ee24a8967..000000000 Binary files a/files/13_0248.mp3 and /dev/null differ diff --git a/files/13_0248_example.mp3 b/files/13_0248_example.mp3 deleted file mode 100644 index b55c4bb9f..000000000 Binary files a/files/13_0248_example.mp3 and /dev/null differ diff --git a/files/13_0248_meaning.mp3 b/files/13_0248_meaning.mp3 deleted file mode 100644 index db8bc99e3..000000000 Binary files a/files/13_0248_meaning.mp3 and /dev/null differ diff --git a/files/13_0249.jpg b/files/13_0249.jpg deleted file mode 100644 index 213d3ea55..000000000 Binary files a/files/13_0249.jpg and /dev/null differ diff --git a/files/13_0249.mp3 b/files/13_0249.mp3 deleted file mode 100644 index 1efd29da6..000000000 Binary files a/files/13_0249.mp3 and /dev/null differ diff --git a/files/13_0249_example.mp3 b/files/13_0249_example.mp3 deleted file mode 100644 index 5468a6cfc..000000000 Binary files a/files/13_0249_example.mp3 and /dev/null differ diff --git a/files/13_0249_meaning.mp3 b/files/13_0249_meaning.mp3 deleted file mode 100644 index e429b7581..000000000 Binary files a/files/13_0249_meaning.mp3 and /dev/null differ diff --git a/files/13_0250.jpg b/files/13_0250.jpg deleted file mode 100644 index 5d398ee33..000000000 Binary files a/files/13_0250.jpg and /dev/null differ diff --git a/files/13_0250.mp3 b/files/13_0250.mp3 deleted file mode 100644 index 0a2cb583a..000000000 Binary files a/files/13_0250.mp3 and /dev/null differ diff --git a/files/13_0250_example.mp3 b/files/13_0250_example.mp3 deleted file mode 100644 index 9ca2f799a..000000000 Binary files a/files/13_0250_example.mp3 and /dev/null differ diff --git a/files/13_0250_meaning.mp3 b/files/13_0250_meaning.mp3 deleted file mode 100644 index e08e7f99c..000000000 Binary files a/files/13_0250_meaning.mp3 and /dev/null differ diff --git a/files/13_0251.jpg b/files/13_0251.jpg deleted file mode 100644 index 6d8c4828f..000000000 Binary files a/files/13_0251.jpg and /dev/null differ diff --git a/files/13_0251.mp3 b/files/13_0251.mp3 deleted file mode 100644 index 255ef1299..000000000 Binary files a/files/13_0251.mp3 and /dev/null differ diff --git a/files/13_0251_example.mp3 b/files/13_0251_example.mp3 deleted file mode 100644 index b08aaf867..000000000 Binary files a/files/13_0251_example.mp3 and /dev/null differ diff --git a/files/13_0251_meaning.mp3 b/files/13_0251_meaning.mp3 deleted file mode 100644 index def0eb632..000000000 Binary files a/files/13_0251_meaning.mp3 and /dev/null differ diff --git a/files/13_0252.jpg b/files/13_0252.jpg deleted file mode 100644 index 4b5c4202b..000000000 Binary files a/files/13_0252.jpg and /dev/null differ diff --git a/files/13_0252.mp3 b/files/13_0252.mp3 deleted file mode 100644 index d2b8c9e39..000000000 Binary files a/files/13_0252.mp3 and /dev/null differ diff --git a/files/13_0252_example.mp3 b/files/13_0252_example.mp3 deleted file mode 100644 index 54b56e5cc..000000000 Binary files a/files/13_0252_example.mp3 and /dev/null differ diff --git a/files/13_0252_meaning.mp3 b/files/13_0252_meaning.mp3 deleted file mode 100644 index d7c564be9..000000000 Binary files a/files/13_0252_meaning.mp3 and /dev/null differ diff --git a/files/13_0253.jpg b/files/13_0253.jpg deleted file mode 100644 index 79846ba55..000000000 Binary files a/files/13_0253.jpg and /dev/null differ diff --git a/files/13_0253.mp3 b/files/13_0253.mp3 deleted file mode 100644 index 8c4587514..000000000 Binary files a/files/13_0253.mp3 and /dev/null differ diff --git a/files/13_0253_example.mp3 b/files/13_0253_example.mp3 deleted file mode 100644 index 53f69f43b..000000000 Binary files a/files/13_0253_example.mp3 and /dev/null differ diff --git a/files/13_0253_meaning.mp3 b/files/13_0253_meaning.mp3 deleted file mode 100644 index 6629bda48..000000000 Binary files a/files/13_0253_meaning.mp3 and /dev/null differ diff --git a/files/13_0254.jpg b/files/13_0254.jpg deleted file mode 100644 index 5df27f79d..000000000 Binary files a/files/13_0254.jpg and /dev/null differ diff --git a/files/13_0254.mp3 b/files/13_0254.mp3 deleted file mode 100644 index 674ea30ee..000000000 Binary files a/files/13_0254.mp3 and /dev/null differ diff --git a/files/13_0254_example.mp3 b/files/13_0254_example.mp3 deleted file mode 100644 index 204036f8e..000000000 Binary files a/files/13_0254_example.mp3 and /dev/null differ diff --git a/files/13_0254_meaning.mp3 b/files/13_0254_meaning.mp3 deleted file mode 100644 index baafdcbc0..000000000 Binary files a/files/13_0254_meaning.mp3 and /dev/null differ diff --git a/files/13_0255.jpg b/files/13_0255.jpg deleted file mode 100644 index 05b1c32d6..000000000 Binary files a/files/13_0255.jpg and /dev/null differ diff --git a/files/13_0255.mp3 b/files/13_0255.mp3 deleted file mode 100644 index dfbf7fecb..000000000 Binary files a/files/13_0255.mp3 and /dev/null differ diff --git a/files/13_0255_example.mp3 b/files/13_0255_example.mp3 deleted file mode 100644 index 8d1103478..000000000 Binary files a/files/13_0255_example.mp3 and /dev/null differ diff --git a/files/13_0255_meaning.mp3 b/files/13_0255_meaning.mp3 deleted file mode 100644 index 42a040771..000000000 Binary files a/files/13_0255_meaning.mp3 and /dev/null differ diff --git a/files/13_0256.jpg b/files/13_0256.jpg deleted file mode 100644 index 99a03c753..000000000 Binary files a/files/13_0256.jpg and /dev/null differ diff --git a/files/13_0256.mp3 b/files/13_0256.mp3 deleted file mode 100644 index 22535bb1c..000000000 Binary files a/files/13_0256.mp3 and /dev/null differ diff --git a/files/13_0256_example.mp3 b/files/13_0256_example.mp3 deleted file mode 100644 index ca265ebb6..000000000 Binary files a/files/13_0256_example.mp3 and /dev/null differ diff --git a/files/13_0256_meaning.mp3 b/files/13_0256_meaning.mp3 deleted file mode 100644 index e8336c853..000000000 Binary files a/files/13_0256_meaning.mp3 and /dev/null differ diff --git a/files/13_0257.jpg b/files/13_0257.jpg deleted file mode 100644 index 90c60e125..000000000 Binary files a/files/13_0257.jpg and /dev/null differ diff --git a/files/13_0257.mp3 b/files/13_0257.mp3 deleted file mode 100644 index 7b78db4ba..000000000 Binary files a/files/13_0257.mp3 and /dev/null differ diff --git a/files/13_0257_example.mp3 b/files/13_0257_example.mp3 deleted file mode 100644 index 7bbf6dbc0..000000000 Binary files a/files/13_0257_example.mp3 and /dev/null differ diff --git a/files/13_0257_meaning.mp3 b/files/13_0257_meaning.mp3 deleted file mode 100644 index 75604e552..000000000 Binary files a/files/13_0257_meaning.mp3 and /dev/null differ diff --git a/files/13_0258.jpg b/files/13_0258.jpg deleted file mode 100644 index c9bcafaa7..000000000 Binary files a/files/13_0258.jpg and /dev/null differ diff --git a/files/13_0258.mp3 b/files/13_0258.mp3 deleted file mode 100644 index cfb6e8f78..000000000 Binary files a/files/13_0258.mp3 and /dev/null differ diff --git a/files/13_0258_example.mp3 b/files/13_0258_example.mp3 deleted file mode 100644 index e4667ec32..000000000 Binary files a/files/13_0258_example.mp3 and /dev/null differ diff --git a/files/13_0258_meaning.mp3 b/files/13_0258_meaning.mp3 deleted file mode 100644 index 75efcf1d9..000000000 Binary files a/files/13_0258_meaning.mp3 and /dev/null differ diff --git a/files/13_0259.jpg b/files/13_0259.jpg deleted file mode 100644 index a43257390..000000000 Binary files a/files/13_0259.jpg and /dev/null differ diff --git a/files/13_0259.mp3 b/files/13_0259.mp3 deleted file mode 100644 index db2847e62..000000000 Binary files a/files/13_0259.mp3 and /dev/null differ diff --git a/files/13_0259_example.mp3 b/files/13_0259_example.mp3 deleted file mode 100644 index dd4d56ae2..000000000 Binary files a/files/13_0259_example.mp3 and /dev/null differ diff --git a/files/13_0259_meaning.mp3 b/files/13_0259_meaning.mp3 deleted file mode 100644 index 7e2bbbee6..000000000 Binary files a/files/13_0259_meaning.mp3 and /dev/null differ diff --git a/files/13_0260.jpg b/files/13_0260.jpg deleted file mode 100644 index f38b3b2d5..000000000 Binary files a/files/13_0260.jpg and /dev/null differ diff --git a/files/13_0260.mp3 b/files/13_0260.mp3 deleted file mode 100644 index 689480849..000000000 Binary files a/files/13_0260.mp3 and /dev/null differ diff --git a/files/13_0260_example.mp3 b/files/13_0260_example.mp3 deleted file mode 100644 index 88d1860c6..000000000 Binary files a/files/13_0260_example.mp3 and /dev/null differ diff --git a/files/13_0260_meaning.mp3 b/files/13_0260_meaning.mp3 deleted file mode 100644 index 17619b8c2..000000000 Binary files a/files/13_0260_meaning.mp3 and /dev/null differ diff --git a/files/13_0841.jpg b/files/13_0841.jpg deleted file mode 100644 index 2a3b4189a..000000000 Binary files a/files/13_0841.jpg and /dev/null differ diff --git a/files/13_0841.mp3 b/files/13_0841.mp3 deleted file mode 100644 index 064cada17..000000000 Binary files a/files/13_0841.mp3 and /dev/null differ diff --git a/files/13_0841_example.mp3 b/files/13_0841_example.mp3 deleted file mode 100644 index a692571d4..000000000 Binary files a/files/13_0841_example.mp3 and /dev/null differ diff --git a/files/13_0841_meaning.mp3 b/files/13_0841_meaning.mp3 deleted file mode 100644 index 34f5820f4..000000000 Binary files a/files/13_0841_meaning.mp3 and /dev/null differ diff --git a/files/13_0842.jpg b/files/13_0842.jpg deleted file mode 100644 index 521d1839c..000000000 Binary files a/files/13_0842.jpg and /dev/null differ diff --git a/files/13_0842.mp3 b/files/13_0842.mp3 deleted file mode 100644 index c132fa67c..000000000 Binary files a/files/13_0842.mp3 and /dev/null differ diff --git a/files/13_0842_example.mp3 b/files/13_0842_example.mp3 deleted file mode 100644 index 888b1a92f..000000000 Binary files a/files/13_0842_example.mp3 and /dev/null differ diff --git a/files/13_0842_meaning.mp3 b/files/13_0842_meaning.mp3 deleted file mode 100644 index 4bf82b521..000000000 Binary files a/files/13_0842_meaning.mp3 and /dev/null differ diff --git a/files/13_0843.jpg b/files/13_0843.jpg deleted file mode 100644 index 9c07a02de..000000000 Binary files a/files/13_0843.jpg and /dev/null differ diff --git a/files/13_0843.mp3 b/files/13_0843.mp3 deleted file mode 100644 index a57ed2722..000000000 Binary files a/files/13_0843.mp3 and /dev/null differ diff --git a/files/13_0843_example.mp3 b/files/13_0843_example.mp3 deleted file mode 100644 index 8b4aaaaea..000000000 Binary files a/files/13_0843_example.mp3 and /dev/null differ diff --git a/files/13_0843_meaning.mp3 b/files/13_0843_meaning.mp3 deleted file mode 100644 index b6e04c53f..000000000 Binary files a/files/13_0843_meaning.mp3 and /dev/null differ diff --git a/files/13_0844.jpg b/files/13_0844.jpg deleted file mode 100644 index 979abd775..000000000 Binary files a/files/13_0844.jpg and /dev/null differ diff --git a/files/13_0844.mp3 b/files/13_0844.mp3 deleted file mode 100644 index 283035294..000000000 Binary files a/files/13_0844.mp3 and /dev/null differ diff --git a/files/13_0844_example.mp3 b/files/13_0844_example.mp3 deleted file mode 100644 index 4eff22f70..000000000 Binary files a/files/13_0844_example.mp3 and /dev/null differ diff --git a/files/13_0844_meaning.mp3 b/files/13_0844_meaning.mp3 deleted file mode 100644 index 87bb140d0..000000000 Binary files a/files/13_0844_meaning.mp3 and /dev/null differ diff --git a/files/13_0845.jpg b/files/13_0845.jpg deleted file mode 100644 index 03081264c..000000000 Binary files a/files/13_0845.jpg and /dev/null differ diff --git a/files/13_0845.mp3 b/files/13_0845.mp3 deleted file mode 100644 index b06b52506..000000000 Binary files a/files/13_0845.mp3 and /dev/null differ diff --git a/files/13_0845_example.mp3 b/files/13_0845_example.mp3 deleted file mode 100644 index 82a2d93d8..000000000 Binary files a/files/13_0845_example.mp3 and /dev/null differ diff --git a/files/13_0845_meaning.mp3 b/files/13_0845_meaning.mp3 deleted file mode 100644 index 8a8d8144d..000000000 Binary files a/files/13_0845_meaning.mp3 and /dev/null differ diff --git a/files/13_0846.jpg b/files/13_0846.jpg deleted file mode 100644 index 2f2c44111..000000000 Binary files a/files/13_0846.jpg and /dev/null differ diff --git a/files/13_0846.mp3 b/files/13_0846.mp3 deleted file mode 100644 index b0ae6859e..000000000 Binary files a/files/13_0846.mp3 and /dev/null differ diff --git a/files/13_0846_example.mp3 b/files/13_0846_example.mp3 deleted file mode 100644 index d0a03a694..000000000 Binary files a/files/13_0846_example.mp3 and /dev/null differ diff --git a/files/13_0846_meaning.mp3 b/files/13_0846_meaning.mp3 deleted file mode 100644 index 49c9e6f41..000000000 Binary files a/files/13_0846_meaning.mp3 and /dev/null differ diff --git a/files/13_0847.jpg b/files/13_0847.jpg deleted file mode 100644 index b713758c2..000000000 Binary files a/files/13_0847.jpg and /dev/null differ diff --git a/files/13_0847.mp3 b/files/13_0847.mp3 deleted file mode 100644 index 01f7373b7..000000000 Binary files a/files/13_0847.mp3 and /dev/null differ diff --git a/files/13_0847_example.mp3 b/files/13_0847_example.mp3 deleted file mode 100644 index e31d34a10..000000000 Binary files a/files/13_0847_example.mp3 and /dev/null differ diff --git a/files/13_0847_meaning.mp3 b/files/13_0847_meaning.mp3 deleted file mode 100644 index fa5ccfc7d..000000000 Binary files a/files/13_0847_meaning.mp3 and /dev/null differ diff --git a/files/13_0848.jpg b/files/13_0848.jpg deleted file mode 100644 index 6056393e3..000000000 Binary files a/files/13_0848.jpg and /dev/null differ diff --git a/files/13_0848.mp3 b/files/13_0848.mp3 deleted file mode 100644 index fcdc6761e..000000000 Binary files a/files/13_0848.mp3 and /dev/null differ diff --git a/files/13_0848_example.mp3 b/files/13_0848_example.mp3 deleted file mode 100644 index 23e03174d..000000000 Binary files a/files/13_0848_example.mp3 and /dev/null differ diff --git a/files/13_0848_meaning.mp3 b/files/13_0848_meaning.mp3 deleted file mode 100644 index 1b2532a73..000000000 Binary files a/files/13_0848_meaning.mp3 and /dev/null differ diff --git a/files/13_0849.jpg b/files/13_0849.jpg deleted file mode 100644 index 87c067482..000000000 Binary files a/files/13_0849.jpg and /dev/null differ diff --git a/files/13_0849.mp3 b/files/13_0849.mp3 deleted file mode 100644 index a98380ea5..000000000 Binary files a/files/13_0849.mp3 and /dev/null differ diff --git a/files/13_0849_example.mp3 b/files/13_0849_example.mp3 deleted file mode 100644 index 039951362..000000000 Binary files a/files/13_0849_example.mp3 and /dev/null differ diff --git a/files/13_0849_meaning.mp3 b/files/13_0849_meaning.mp3 deleted file mode 100644 index 9034b2d83..000000000 Binary files a/files/13_0849_meaning.mp3 and /dev/null differ diff --git a/files/13_0850.jpg b/files/13_0850.jpg deleted file mode 100644 index 3c42e2f6a..000000000 Binary files a/files/13_0850.jpg and /dev/null differ diff --git a/files/13_0850.mp3 b/files/13_0850.mp3 deleted file mode 100644 index abcbb2a05..000000000 Binary files a/files/13_0850.mp3 and /dev/null differ diff --git a/files/13_0850_example.mp3 b/files/13_0850_example.mp3 deleted file mode 100644 index bba302816..000000000 Binary files a/files/13_0850_example.mp3 and /dev/null differ diff --git a/files/13_0850_meaning.mp3 b/files/13_0850_meaning.mp3 deleted file mode 100644 index 09df0729c..000000000 Binary files a/files/13_0850_meaning.mp3 and /dev/null differ diff --git a/files/13_0851.jpg b/files/13_0851.jpg deleted file mode 100644 index 699a67c1f..000000000 Binary files a/files/13_0851.jpg and /dev/null differ diff --git a/files/13_0851.mp3 b/files/13_0851.mp3 deleted file mode 100644 index 007c100ca..000000000 Binary files a/files/13_0851.mp3 and /dev/null differ diff --git a/files/13_0851_example.mp3 b/files/13_0851_example.mp3 deleted file mode 100644 index e162eecc4..000000000 Binary files a/files/13_0851_example.mp3 and /dev/null differ diff --git a/files/13_0851_meaning.mp3 b/files/13_0851_meaning.mp3 deleted file mode 100644 index 089df5acf..000000000 Binary files a/files/13_0851_meaning.mp3 and /dev/null differ diff --git a/files/13_0852.jpg b/files/13_0852.jpg deleted file mode 100644 index 35c382d4f..000000000 Binary files a/files/13_0852.jpg and /dev/null differ diff --git a/files/13_0852.mp3 b/files/13_0852.mp3 deleted file mode 100644 index a78e67ad0..000000000 Binary files a/files/13_0852.mp3 and /dev/null differ diff --git a/files/13_0852_example.mp3 b/files/13_0852_example.mp3 deleted file mode 100644 index b085e1ea2..000000000 Binary files a/files/13_0852_example.mp3 and /dev/null differ diff --git a/files/13_0852_meaning.mp3 b/files/13_0852_meaning.mp3 deleted file mode 100644 index 72621dd0e..000000000 Binary files a/files/13_0852_meaning.mp3 and /dev/null differ diff --git a/files/13_0853.jpg b/files/13_0853.jpg deleted file mode 100644 index de00cdee1..000000000 Binary files a/files/13_0853.jpg and /dev/null differ diff --git a/files/13_0853.mp3 b/files/13_0853.mp3 deleted file mode 100644 index 2492564fe..000000000 Binary files a/files/13_0853.mp3 and /dev/null differ diff --git a/files/13_0853_example.mp3 b/files/13_0853_example.mp3 deleted file mode 100644 index d89e8140a..000000000 Binary files a/files/13_0853_example.mp3 and /dev/null differ diff --git a/files/13_0853_meaning.mp3 b/files/13_0853_meaning.mp3 deleted file mode 100644 index d8868e8d2..000000000 Binary files a/files/13_0853_meaning.mp3 and /dev/null differ diff --git a/files/13_0854.jpg b/files/13_0854.jpg deleted file mode 100644 index fe856a76c..000000000 Binary files a/files/13_0854.jpg and /dev/null differ diff --git a/files/13_0854.mp3 b/files/13_0854.mp3 deleted file mode 100644 index 9a44a1c0e..000000000 Binary files a/files/13_0854.mp3 and /dev/null differ diff --git a/files/13_0854_example.mp3 b/files/13_0854_example.mp3 deleted file mode 100644 index 7c09255b2..000000000 Binary files a/files/13_0854_example.mp3 and /dev/null differ diff --git a/files/13_0854_meaning.mp3 b/files/13_0854_meaning.mp3 deleted file mode 100644 index b6d20aa6d..000000000 Binary files a/files/13_0854_meaning.mp3 and /dev/null differ diff --git a/files/13_0855.jpg b/files/13_0855.jpg deleted file mode 100644 index 918e19d09..000000000 Binary files a/files/13_0855.jpg and /dev/null differ diff --git a/files/13_0855.mp3 b/files/13_0855.mp3 deleted file mode 100644 index 15247de0c..000000000 Binary files a/files/13_0855.mp3 and /dev/null differ diff --git a/files/13_0855_example.mp3 b/files/13_0855_example.mp3 deleted file mode 100644 index 58da3e31c..000000000 Binary files a/files/13_0855_example.mp3 and /dev/null differ diff --git a/files/13_0855_meaning.mp3 b/files/13_0855_meaning.mp3 deleted file mode 100644 index 465a003f3..000000000 Binary files a/files/13_0855_meaning.mp3 and /dev/null differ diff --git a/files/13_0856.jpg b/files/13_0856.jpg deleted file mode 100644 index 15dba24be..000000000 Binary files a/files/13_0856.jpg and /dev/null differ diff --git a/files/13_0856.mp3 b/files/13_0856.mp3 deleted file mode 100644 index 4d2a105eb..000000000 Binary files a/files/13_0856.mp3 and /dev/null differ diff --git a/files/13_0856_example.mp3 b/files/13_0856_example.mp3 deleted file mode 100644 index 382883957..000000000 Binary files a/files/13_0856_example.mp3 and /dev/null differ diff --git a/files/13_0856_meaning.mp3 b/files/13_0856_meaning.mp3 deleted file mode 100644 index 5cf436d41..000000000 Binary files a/files/13_0856_meaning.mp3 and /dev/null differ diff --git a/files/13_0857.jpg b/files/13_0857.jpg deleted file mode 100644 index 9e3981479..000000000 Binary files a/files/13_0857.jpg and /dev/null differ diff --git a/files/13_0857.mp3 b/files/13_0857.mp3 deleted file mode 100644 index 789dbdc8d..000000000 Binary files a/files/13_0857.mp3 and /dev/null differ diff --git a/files/13_0857_example.mp3 b/files/13_0857_example.mp3 deleted file mode 100644 index 0694064a4..000000000 Binary files a/files/13_0857_example.mp3 and /dev/null differ diff --git a/files/13_0857_meaning.mp3 b/files/13_0857_meaning.mp3 deleted file mode 100644 index 321e97cfe..000000000 Binary files a/files/13_0857_meaning.mp3 and /dev/null differ diff --git a/files/13_0858.jpg b/files/13_0858.jpg deleted file mode 100644 index f5da03a29..000000000 Binary files a/files/13_0858.jpg and /dev/null differ diff --git a/files/13_0858.mp3 b/files/13_0858.mp3 deleted file mode 100644 index f37913f6e..000000000 Binary files a/files/13_0858.mp3 and /dev/null differ diff --git a/files/13_0858_example.mp3 b/files/13_0858_example.mp3 deleted file mode 100644 index ecd41fb3b..000000000 Binary files a/files/13_0858_example.mp3 and /dev/null differ diff --git a/files/13_0858_meaning.mp3 b/files/13_0858_meaning.mp3 deleted file mode 100644 index 3892bc7da..000000000 Binary files a/files/13_0858_meaning.mp3 and /dev/null differ diff --git a/files/13_0859.jpg b/files/13_0859.jpg deleted file mode 100644 index 119519b58..000000000 Binary files a/files/13_0859.jpg and /dev/null differ diff --git a/files/13_0859.mp3 b/files/13_0859.mp3 deleted file mode 100644 index 8ca61aa78..000000000 Binary files a/files/13_0859.mp3 and /dev/null differ diff --git a/files/13_0859_example.mp3 b/files/13_0859_example.mp3 deleted file mode 100644 index 3b09e0662..000000000 Binary files a/files/13_0859_example.mp3 and /dev/null differ diff --git a/files/13_0859_meaning.mp3 b/files/13_0859_meaning.mp3 deleted file mode 100644 index c76856c7a..000000000 Binary files a/files/13_0859_meaning.mp3 and /dev/null differ diff --git a/files/13_0860.jpg b/files/13_0860.jpg deleted file mode 100644 index 952b37fa4..000000000 Binary files a/files/13_0860.jpg and /dev/null differ diff --git a/files/13_0860.mp3 b/files/13_0860.mp3 deleted file mode 100644 index 0e2077196..000000000 Binary files a/files/13_0860.mp3 and /dev/null differ diff --git a/files/13_0860_example.mp3 b/files/13_0860_example.mp3 deleted file mode 100644 index 9da54e29c..000000000 Binary files a/files/13_0860_example.mp3 and /dev/null differ diff --git a/files/13_0860_meaning.mp3 b/files/13_0860_meaning.mp3 deleted file mode 100644 index f474b6f1a..000000000 Binary files a/files/13_0860_meaning.mp3 and /dev/null differ diff --git a/files/13_1441.jpg b/files/13_1441.jpg deleted file mode 100644 index 6542e8c02..000000000 Binary files a/files/13_1441.jpg and /dev/null differ diff --git a/files/13_1441.mp3 b/files/13_1441.mp3 deleted file mode 100644 index 31dae5577..000000000 Binary files a/files/13_1441.mp3 and /dev/null differ diff --git a/files/13_1441_example.mp3 b/files/13_1441_example.mp3 deleted file mode 100644 index f4415f343..000000000 Binary files a/files/13_1441_example.mp3 and /dev/null differ diff --git a/files/13_1441_meaning.mp3 b/files/13_1441_meaning.mp3 deleted file mode 100644 index 7771fcc29..000000000 Binary files a/files/13_1441_meaning.mp3 and /dev/null differ diff --git a/files/13_1442.jpg b/files/13_1442.jpg deleted file mode 100644 index b7da265f9..000000000 Binary files a/files/13_1442.jpg and /dev/null differ diff --git a/files/13_1442.mp3 b/files/13_1442.mp3 deleted file mode 100644 index 8dded4075..000000000 Binary files a/files/13_1442.mp3 and /dev/null differ diff --git a/files/13_1442_example.mp3 b/files/13_1442_example.mp3 deleted file mode 100644 index 8bcd43400..000000000 Binary files a/files/13_1442_example.mp3 and /dev/null differ diff --git a/files/13_1442_meaning.mp3 b/files/13_1442_meaning.mp3 deleted file mode 100644 index a3cf001b9..000000000 Binary files a/files/13_1442_meaning.mp3 and /dev/null differ diff --git a/files/13_1443.jpg b/files/13_1443.jpg deleted file mode 100644 index 1e68fef94..000000000 Binary files a/files/13_1443.jpg and /dev/null differ diff --git a/files/13_1443.mp3 b/files/13_1443.mp3 deleted file mode 100644 index bfed8d22e..000000000 Binary files a/files/13_1443.mp3 and /dev/null differ diff --git a/files/13_1443_example.mp3 b/files/13_1443_example.mp3 deleted file mode 100644 index 50aec7594..000000000 Binary files a/files/13_1443_example.mp3 and /dev/null differ diff --git a/files/13_1443_meaning.mp3 b/files/13_1443_meaning.mp3 deleted file mode 100644 index ab4945676..000000000 Binary files a/files/13_1443_meaning.mp3 and /dev/null differ diff --git a/files/13_1444.jpg b/files/13_1444.jpg deleted file mode 100644 index ac280bd32..000000000 Binary files a/files/13_1444.jpg and /dev/null differ diff --git a/files/13_1444.mp3 b/files/13_1444.mp3 deleted file mode 100644 index c994bf746..000000000 Binary files a/files/13_1444.mp3 and /dev/null differ diff --git a/files/13_1444_example.mp3 b/files/13_1444_example.mp3 deleted file mode 100644 index e6e3b6197..000000000 Binary files a/files/13_1444_example.mp3 and /dev/null differ diff --git a/files/13_1444_meaning.mp3 b/files/13_1444_meaning.mp3 deleted file mode 100644 index 459202298..000000000 Binary files a/files/13_1444_meaning.mp3 and /dev/null differ diff --git a/files/13_1445.jpg b/files/13_1445.jpg deleted file mode 100644 index eae2b6445..000000000 Binary files a/files/13_1445.jpg and /dev/null differ diff --git a/files/13_1445.mp3 b/files/13_1445.mp3 deleted file mode 100644 index 7428056eb..000000000 Binary files a/files/13_1445.mp3 and /dev/null differ diff --git a/files/13_1445_example.mp3 b/files/13_1445_example.mp3 deleted file mode 100644 index 190936e0c..000000000 Binary files a/files/13_1445_example.mp3 and /dev/null differ diff --git a/files/13_1445_meaning.mp3 b/files/13_1445_meaning.mp3 deleted file mode 100644 index 3a94a0fb5..000000000 Binary files a/files/13_1445_meaning.mp3 and /dev/null differ diff --git a/files/13_1446.jpg b/files/13_1446.jpg deleted file mode 100644 index f96df82ad..000000000 Binary files a/files/13_1446.jpg and /dev/null differ diff --git a/files/13_1446.mp3 b/files/13_1446.mp3 deleted file mode 100644 index 34d5e8a0e..000000000 Binary files a/files/13_1446.mp3 and /dev/null differ diff --git a/files/13_1446_example.mp3 b/files/13_1446_example.mp3 deleted file mode 100644 index 0257730d5..000000000 Binary files a/files/13_1446_example.mp3 and /dev/null differ diff --git a/files/13_1446_meaning.mp3 b/files/13_1446_meaning.mp3 deleted file mode 100644 index 5d5bb3828..000000000 Binary files a/files/13_1446_meaning.mp3 and /dev/null differ diff --git a/files/13_1447.jpg b/files/13_1447.jpg deleted file mode 100644 index c20d456da..000000000 Binary files a/files/13_1447.jpg and /dev/null differ diff --git a/files/13_1447.mp3 b/files/13_1447.mp3 deleted file mode 100644 index 39380302b..000000000 Binary files a/files/13_1447.mp3 and /dev/null differ diff --git a/files/13_1447_example.mp3 b/files/13_1447_example.mp3 deleted file mode 100644 index 3f2334fc1..000000000 Binary files a/files/13_1447_example.mp3 and /dev/null differ diff --git a/files/13_1447_meaning.mp3 b/files/13_1447_meaning.mp3 deleted file mode 100644 index 69cc857ad..000000000 Binary files a/files/13_1447_meaning.mp3 and /dev/null differ diff --git a/files/13_1448.jpg b/files/13_1448.jpg deleted file mode 100644 index e660d3252..000000000 Binary files a/files/13_1448.jpg and /dev/null differ diff --git a/files/13_1448.mp3 b/files/13_1448.mp3 deleted file mode 100644 index 9667b7c73..000000000 Binary files a/files/13_1448.mp3 and /dev/null differ diff --git a/files/13_1448_example.mp3 b/files/13_1448_example.mp3 deleted file mode 100644 index 1a25760a9..000000000 Binary files a/files/13_1448_example.mp3 and /dev/null differ diff --git a/files/13_1448_meaning.mp3 b/files/13_1448_meaning.mp3 deleted file mode 100644 index d4539ae33..000000000 Binary files a/files/13_1448_meaning.mp3 and /dev/null differ diff --git a/files/13_1449.jpg b/files/13_1449.jpg deleted file mode 100644 index 21219bbe2..000000000 Binary files a/files/13_1449.jpg and /dev/null differ diff --git a/files/13_1449.mp3 b/files/13_1449.mp3 deleted file mode 100644 index d18b81e0f..000000000 Binary files a/files/13_1449.mp3 and /dev/null differ diff --git a/files/13_1449_example.mp3 b/files/13_1449_example.mp3 deleted file mode 100644 index 51dca766c..000000000 Binary files a/files/13_1449_example.mp3 and /dev/null differ diff --git a/files/13_1449_meaning.mp3 b/files/13_1449_meaning.mp3 deleted file mode 100644 index 732594f00..000000000 Binary files a/files/13_1449_meaning.mp3 and /dev/null differ diff --git a/files/13_1450.jpg b/files/13_1450.jpg deleted file mode 100644 index 782a57f9f..000000000 Binary files a/files/13_1450.jpg and /dev/null differ diff --git a/files/13_1450.mp3 b/files/13_1450.mp3 deleted file mode 100644 index e83895698..000000000 Binary files a/files/13_1450.mp3 and /dev/null differ diff --git a/files/13_1450_example.mp3 b/files/13_1450_example.mp3 deleted file mode 100644 index e4394f488..000000000 Binary files a/files/13_1450_example.mp3 and /dev/null differ diff --git a/files/13_1450_meaning.mp3 b/files/13_1450_meaning.mp3 deleted file mode 100644 index 9c32eaf42..000000000 Binary files a/files/13_1450_meaning.mp3 and /dev/null differ diff --git a/files/13_1451.jpg b/files/13_1451.jpg deleted file mode 100644 index dc8c3e5a4..000000000 Binary files a/files/13_1451.jpg and /dev/null differ diff --git a/files/13_1451.mp3 b/files/13_1451.mp3 deleted file mode 100644 index 58065c3ee..000000000 Binary files a/files/13_1451.mp3 and /dev/null differ diff --git a/files/13_1451_example.mp3 b/files/13_1451_example.mp3 deleted file mode 100644 index 2de664f18..000000000 Binary files a/files/13_1451_example.mp3 and /dev/null differ diff --git a/files/13_1451_meaning.mp3 b/files/13_1451_meaning.mp3 deleted file mode 100644 index 2427634b1..000000000 Binary files a/files/13_1451_meaning.mp3 and /dev/null differ diff --git a/files/13_1452.jpg b/files/13_1452.jpg deleted file mode 100644 index 8f9b8dcc1..000000000 Binary files a/files/13_1452.jpg and /dev/null differ diff --git a/files/13_1452.mp3 b/files/13_1452.mp3 deleted file mode 100644 index f9a47f66b..000000000 Binary files a/files/13_1452.mp3 and /dev/null differ diff --git a/files/13_1452_example.mp3 b/files/13_1452_example.mp3 deleted file mode 100644 index 2f6460c8e..000000000 Binary files a/files/13_1452_example.mp3 and /dev/null differ diff --git a/files/13_1452_meaning.mp3 b/files/13_1452_meaning.mp3 deleted file mode 100644 index ea5e1d148..000000000 Binary files a/files/13_1452_meaning.mp3 and /dev/null differ diff --git a/files/13_1453.jpg b/files/13_1453.jpg deleted file mode 100644 index 067d4759a..000000000 Binary files a/files/13_1453.jpg and /dev/null differ diff --git a/files/13_1453.mp3 b/files/13_1453.mp3 deleted file mode 100644 index 7b1a431d2..000000000 Binary files a/files/13_1453.mp3 and /dev/null differ diff --git a/files/13_1453_example.mp3 b/files/13_1453_example.mp3 deleted file mode 100644 index c94a2b2d3..000000000 Binary files a/files/13_1453_example.mp3 and /dev/null differ diff --git a/files/13_1453_meaning.mp3 b/files/13_1453_meaning.mp3 deleted file mode 100644 index eb90cc1b8..000000000 Binary files a/files/13_1453_meaning.mp3 and /dev/null differ diff --git a/files/13_1454.jpg b/files/13_1454.jpg deleted file mode 100644 index 31d702001..000000000 Binary files a/files/13_1454.jpg and /dev/null differ diff --git a/files/13_1454.mp3 b/files/13_1454.mp3 deleted file mode 100644 index bce12474a..000000000 Binary files a/files/13_1454.mp3 and /dev/null differ diff --git a/files/13_1454_example.mp3 b/files/13_1454_example.mp3 deleted file mode 100644 index cadf62c19..000000000 Binary files a/files/13_1454_example.mp3 and /dev/null differ diff --git a/files/13_1454_meaning.mp3 b/files/13_1454_meaning.mp3 deleted file mode 100644 index 3efb53d84..000000000 Binary files a/files/13_1454_meaning.mp3 and /dev/null differ diff --git a/files/13_1455.jpg b/files/13_1455.jpg deleted file mode 100644 index fbdf2a5ed..000000000 Binary files a/files/13_1455.jpg and /dev/null differ diff --git a/files/13_1455.mp3 b/files/13_1455.mp3 deleted file mode 100644 index 935e6b9a8..000000000 Binary files a/files/13_1455.mp3 and /dev/null differ diff --git a/files/13_1455_example.mp3 b/files/13_1455_example.mp3 deleted file mode 100644 index dfb4788f9..000000000 Binary files a/files/13_1455_example.mp3 and /dev/null differ diff --git a/files/13_1455_meaning.mp3 b/files/13_1455_meaning.mp3 deleted file mode 100644 index 96b6ec889..000000000 Binary files a/files/13_1455_meaning.mp3 and /dev/null differ diff --git a/files/13_1456.jpg b/files/13_1456.jpg deleted file mode 100644 index d7f3b49a5..000000000 Binary files a/files/13_1456.jpg and /dev/null differ diff --git a/files/13_1456.mp3 b/files/13_1456.mp3 deleted file mode 100644 index 8fd076b8f..000000000 Binary files a/files/13_1456.mp3 and /dev/null differ diff --git a/files/13_1456_example.mp3 b/files/13_1456_example.mp3 deleted file mode 100644 index 1f9aea222..000000000 Binary files a/files/13_1456_example.mp3 and /dev/null differ diff --git a/files/13_1456_meaning.mp3 b/files/13_1456_meaning.mp3 deleted file mode 100644 index 797c3875f..000000000 Binary files a/files/13_1456_meaning.mp3 and /dev/null differ diff --git a/files/13_1457.jpg b/files/13_1457.jpg deleted file mode 100644 index 535cf87fe..000000000 Binary files a/files/13_1457.jpg and /dev/null differ diff --git a/files/13_1457.mp3 b/files/13_1457.mp3 deleted file mode 100644 index 999a6b497..000000000 Binary files a/files/13_1457.mp3 and /dev/null differ diff --git a/files/13_1457_example.mp3 b/files/13_1457_example.mp3 deleted file mode 100644 index 79754b57c..000000000 Binary files a/files/13_1457_example.mp3 and /dev/null differ diff --git a/files/13_1457_meaning.mp3 b/files/13_1457_meaning.mp3 deleted file mode 100644 index 476a968af..000000000 Binary files a/files/13_1457_meaning.mp3 and /dev/null differ diff --git a/files/13_1458.jpg b/files/13_1458.jpg deleted file mode 100644 index 0aca03aba..000000000 Binary files a/files/13_1458.jpg and /dev/null differ diff --git a/files/13_1458.mp3 b/files/13_1458.mp3 deleted file mode 100644 index 593e79d3f..000000000 Binary files a/files/13_1458.mp3 and /dev/null differ diff --git a/files/13_1458_example.mp3 b/files/13_1458_example.mp3 deleted file mode 100644 index c5d48c401..000000000 Binary files a/files/13_1458_example.mp3 and /dev/null differ diff --git a/files/13_1458_meaning.mp3 b/files/13_1458_meaning.mp3 deleted file mode 100644 index 347078e49..000000000 Binary files a/files/13_1458_meaning.mp3 and /dev/null differ diff --git a/files/13_1459.jpg b/files/13_1459.jpg deleted file mode 100644 index f7a313427..000000000 Binary files a/files/13_1459.jpg and /dev/null differ diff --git a/files/13_1459.mp3 b/files/13_1459.mp3 deleted file mode 100644 index 21ef4c731..000000000 Binary files a/files/13_1459.mp3 and /dev/null differ diff --git a/files/13_1459_example.mp3 b/files/13_1459_example.mp3 deleted file mode 100644 index 319372a5c..000000000 Binary files a/files/13_1459_example.mp3 and /dev/null differ diff --git a/files/13_1459_meaning.mp3 b/files/13_1459_meaning.mp3 deleted file mode 100644 index 149422256..000000000 Binary files a/files/13_1459_meaning.mp3 and /dev/null differ diff --git a/files/13_1460.jpg b/files/13_1460.jpg deleted file mode 100644 index aa313ee89..000000000 Binary files a/files/13_1460.jpg and /dev/null differ diff --git a/files/13_1460.mp3 b/files/13_1460.mp3 deleted file mode 100644 index 4d1f407c4..000000000 Binary files a/files/13_1460.mp3 and /dev/null differ diff --git a/files/13_1460_example.mp3 b/files/13_1460_example.mp3 deleted file mode 100644 index 161b004dd..000000000 Binary files a/files/13_1460_example.mp3 and /dev/null differ diff --git a/files/13_1460_meaning.mp3 b/files/13_1460_meaning.mp3 deleted file mode 100644 index e20de26e7..000000000 Binary files a/files/13_1460_meaning.mp3 and /dev/null differ diff --git a/files/13_2041.jpg b/files/13_2041.jpg deleted file mode 100644 index d39d124f4..000000000 Binary files a/files/13_2041.jpg and /dev/null differ diff --git a/files/13_2041.mp3 b/files/13_2041.mp3 deleted file mode 100644 index 81eb015db..000000000 Binary files a/files/13_2041.mp3 and /dev/null differ diff --git a/files/13_2041_example.mp3 b/files/13_2041_example.mp3 deleted file mode 100644 index a79091d66..000000000 Binary files a/files/13_2041_example.mp3 and /dev/null differ diff --git a/files/13_2041_meaning.mp3 b/files/13_2041_meaning.mp3 deleted file mode 100644 index a12017be7..000000000 Binary files a/files/13_2041_meaning.mp3 and /dev/null differ diff --git a/files/13_2042.jpg b/files/13_2042.jpg deleted file mode 100644 index 0dc91993a..000000000 Binary files a/files/13_2042.jpg and /dev/null differ diff --git a/files/13_2042.mp3 b/files/13_2042.mp3 deleted file mode 100644 index 03e102d77..000000000 Binary files a/files/13_2042.mp3 and /dev/null differ diff --git a/files/13_2042_example.mp3 b/files/13_2042_example.mp3 deleted file mode 100644 index a8348893f..000000000 Binary files a/files/13_2042_example.mp3 and /dev/null differ diff --git a/files/13_2042_meaning.mp3 b/files/13_2042_meaning.mp3 deleted file mode 100644 index d2a803e69..000000000 Binary files a/files/13_2042_meaning.mp3 and /dev/null differ diff --git a/files/13_2043.jpg b/files/13_2043.jpg deleted file mode 100644 index e2afa1941..000000000 Binary files a/files/13_2043.jpg and /dev/null differ diff --git a/files/13_2043.mp3 b/files/13_2043.mp3 deleted file mode 100644 index 7a542200d..000000000 Binary files a/files/13_2043.mp3 and /dev/null differ diff --git a/files/13_2043_example.mp3 b/files/13_2043_example.mp3 deleted file mode 100644 index 51a342863..000000000 Binary files a/files/13_2043_example.mp3 and /dev/null differ diff --git a/files/13_2043_meaning.mp3 b/files/13_2043_meaning.mp3 deleted file mode 100644 index 68ba2d487..000000000 Binary files a/files/13_2043_meaning.mp3 and /dev/null differ diff --git a/files/13_2044.jpg b/files/13_2044.jpg deleted file mode 100644 index 1b5d3bdba..000000000 Binary files a/files/13_2044.jpg and /dev/null differ diff --git a/files/13_2044.mp3 b/files/13_2044.mp3 deleted file mode 100644 index 2339b61bf..000000000 Binary files a/files/13_2044.mp3 and /dev/null differ diff --git a/files/13_2044_example.mp3 b/files/13_2044_example.mp3 deleted file mode 100644 index 78ec7deb4..000000000 Binary files a/files/13_2044_example.mp3 and /dev/null differ diff --git a/files/13_2044_meaning.mp3 b/files/13_2044_meaning.mp3 deleted file mode 100644 index 0f034a2f1..000000000 Binary files a/files/13_2044_meaning.mp3 and /dev/null differ diff --git a/files/13_2045.jpg b/files/13_2045.jpg deleted file mode 100644 index ad0088bb6..000000000 Binary files a/files/13_2045.jpg and /dev/null differ diff --git a/files/13_2045.mp3 b/files/13_2045.mp3 deleted file mode 100644 index c761fca4c..000000000 Binary files a/files/13_2045.mp3 and /dev/null differ diff --git a/files/13_2045_example.mp3 b/files/13_2045_example.mp3 deleted file mode 100644 index b10474fb6..000000000 Binary files a/files/13_2045_example.mp3 and /dev/null differ diff --git a/files/13_2045_meaning.mp3 b/files/13_2045_meaning.mp3 deleted file mode 100644 index 138d98969..000000000 Binary files a/files/13_2045_meaning.mp3 and /dev/null differ diff --git a/files/13_2046.jpg b/files/13_2046.jpg deleted file mode 100644 index 277d48f63..000000000 Binary files a/files/13_2046.jpg and /dev/null differ diff --git a/files/13_2046.mp3 b/files/13_2046.mp3 deleted file mode 100644 index e2cb27281..000000000 Binary files a/files/13_2046.mp3 and /dev/null differ diff --git a/files/13_2046_example.mp3 b/files/13_2046_example.mp3 deleted file mode 100644 index ede05b9b0..000000000 Binary files a/files/13_2046_example.mp3 and /dev/null differ diff --git a/files/13_2046_meaning.mp3 b/files/13_2046_meaning.mp3 deleted file mode 100644 index 5a67fdac1..000000000 Binary files a/files/13_2046_meaning.mp3 and /dev/null differ diff --git a/files/13_2047.jpg b/files/13_2047.jpg deleted file mode 100644 index 91a77a3d8..000000000 Binary files a/files/13_2047.jpg and /dev/null differ diff --git a/files/13_2047.mp3 b/files/13_2047.mp3 deleted file mode 100644 index ad1a23ba8..000000000 Binary files a/files/13_2047.mp3 and /dev/null differ diff --git a/files/13_2047_example.mp3 b/files/13_2047_example.mp3 deleted file mode 100644 index ead976d67..000000000 Binary files a/files/13_2047_example.mp3 and /dev/null differ diff --git a/files/13_2047_meaning.mp3 b/files/13_2047_meaning.mp3 deleted file mode 100644 index a7f11f471..000000000 Binary files a/files/13_2047_meaning.mp3 and /dev/null differ diff --git a/files/13_2048.jpg b/files/13_2048.jpg deleted file mode 100644 index 72396cd48..000000000 Binary files a/files/13_2048.jpg and /dev/null differ diff --git a/files/13_2048.mp3 b/files/13_2048.mp3 deleted file mode 100644 index e8df9bc08..000000000 Binary files a/files/13_2048.mp3 and /dev/null differ diff --git a/files/13_2048_example.mp3 b/files/13_2048_example.mp3 deleted file mode 100644 index d62d59829..000000000 Binary files a/files/13_2048_example.mp3 and /dev/null differ diff --git a/files/13_2048_meaning.mp3 b/files/13_2048_meaning.mp3 deleted file mode 100644 index f58efb84f..000000000 Binary files a/files/13_2048_meaning.mp3 and /dev/null differ diff --git a/files/13_2049.jpg b/files/13_2049.jpg deleted file mode 100644 index e281217ff..000000000 Binary files a/files/13_2049.jpg and /dev/null differ diff --git a/files/13_2049.mp3 b/files/13_2049.mp3 deleted file mode 100644 index 71548813d..000000000 Binary files a/files/13_2049.mp3 and /dev/null differ diff --git a/files/13_2049_example.mp3 b/files/13_2049_example.mp3 deleted file mode 100644 index 35bdd99e2..000000000 Binary files a/files/13_2049_example.mp3 and /dev/null differ diff --git a/files/13_2049_meaning.mp3 b/files/13_2049_meaning.mp3 deleted file mode 100644 index ff25ffd54..000000000 Binary files a/files/13_2049_meaning.mp3 and /dev/null differ diff --git a/files/13_2050.jpg b/files/13_2050.jpg deleted file mode 100644 index fbe794bd6..000000000 Binary files a/files/13_2050.jpg and /dev/null differ diff --git a/files/13_2050.mp3 b/files/13_2050.mp3 deleted file mode 100644 index 8fac96c04..000000000 Binary files a/files/13_2050.mp3 and /dev/null differ diff --git a/files/13_2050_example.mp3 b/files/13_2050_example.mp3 deleted file mode 100644 index 4ca8c2d65..000000000 Binary files a/files/13_2050_example.mp3 and /dev/null differ diff --git a/files/13_2050_meaning.mp3 b/files/13_2050_meaning.mp3 deleted file mode 100644 index 04ce52ee4..000000000 Binary files a/files/13_2050_meaning.mp3 and /dev/null differ diff --git a/files/13_2051.jpg b/files/13_2051.jpg deleted file mode 100644 index c8c6e92fb..000000000 Binary files a/files/13_2051.jpg and /dev/null differ diff --git a/files/13_2051.mp3 b/files/13_2051.mp3 deleted file mode 100644 index 96f4150d1..000000000 Binary files a/files/13_2051.mp3 and /dev/null differ diff --git a/files/13_2051_example.mp3 b/files/13_2051_example.mp3 deleted file mode 100644 index d84a12cd4..000000000 Binary files a/files/13_2051_example.mp3 and /dev/null differ diff --git a/files/13_2051_meaning.mp3 b/files/13_2051_meaning.mp3 deleted file mode 100644 index 1a519eac9..000000000 Binary files a/files/13_2051_meaning.mp3 and /dev/null differ diff --git a/files/13_2052.jpg b/files/13_2052.jpg deleted file mode 100644 index c79a1cc7f..000000000 Binary files a/files/13_2052.jpg and /dev/null differ diff --git a/files/13_2052.mp3 b/files/13_2052.mp3 deleted file mode 100644 index 6727e0129..000000000 Binary files a/files/13_2052.mp3 and /dev/null differ diff --git a/files/13_2052_example.mp3 b/files/13_2052_example.mp3 deleted file mode 100644 index c49435853..000000000 Binary files a/files/13_2052_example.mp3 and /dev/null differ diff --git a/files/13_2052_meaning.mp3 b/files/13_2052_meaning.mp3 deleted file mode 100644 index f984cf735..000000000 Binary files a/files/13_2052_meaning.mp3 and /dev/null differ diff --git a/files/13_2053.jpg b/files/13_2053.jpg deleted file mode 100644 index f512cd5eb..000000000 Binary files a/files/13_2053.jpg and /dev/null differ diff --git a/files/13_2053.mp3 b/files/13_2053.mp3 deleted file mode 100644 index 3190f46eb..000000000 Binary files a/files/13_2053.mp3 and /dev/null differ diff --git a/files/13_2053_example.mp3 b/files/13_2053_example.mp3 deleted file mode 100644 index c60d22805..000000000 Binary files a/files/13_2053_example.mp3 and /dev/null differ diff --git a/files/13_2053_meaning.mp3 b/files/13_2053_meaning.mp3 deleted file mode 100644 index dfd2e0ac6..000000000 Binary files a/files/13_2053_meaning.mp3 and /dev/null differ diff --git a/files/13_2054.jpg b/files/13_2054.jpg deleted file mode 100644 index b1745a4c2..000000000 Binary files a/files/13_2054.jpg and /dev/null differ diff --git a/files/13_2054.mp3 b/files/13_2054.mp3 deleted file mode 100644 index c98c809ad..000000000 Binary files a/files/13_2054.mp3 and /dev/null differ diff --git a/files/13_2054_example.mp3 b/files/13_2054_example.mp3 deleted file mode 100644 index aae83b1b0..000000000 Binary files a/files/13_2054_example.mp3 and /dev/null differ diff --git a/files/13_2054_meaning.mp3 b/files/13_2054_meaning.mp3 deleted file mode 100644 index aacb2faad..000000000 Binary files a/files/13_2054_meaning.mp3 and /dev/null differ diff --git a/files/13_2055.jpg b/files/13_2055.jpg deleted file mode 100644 index 2f94fd508..000000000 Binary files a/files/13_2055.jpg and /dev/null differ diff --git a/files/13_2055.mp3 b/files/13_2055.mp3 deleted file mode 100644 index dbc7aeb09..000000000 Binary files a/files/13_2055.mp3 and /dev/null differ diff --git a/files/13_2055_example.mp3 b/files/13_2055_example.mp3 deleted file mode 100644 index 4eac6fc27..000000000 Binary files a/files/13_2055_example.mp3 and /dev/null differ diff --git a/files/13_2055_meaning.mp3 b/files/13_2055_meaning.mp3 deleted file mode 100644 index dd4c49023..000000000 Binary files a/files/13_2055_meaning.mp3 and /dev/null differ diff --git a/files/13_2056.jpg b/files/13_2056.jpg deleted file mode 100644 index bfeb4531b..000000000 Binary files a/files/13_2056.jpg and /dev/null differ diff --git a/files/13_2056.mp3 b/files/13_2056.mp3 deleted file mode 100644 index f4007d3b6..000000000 Binary files a/files/13_2056.mp3 and /dev/null differ diff --git a/files/13_2056_example.mp3 b/files/13_2056_example.mp3 deleted file mode 100644 index 206624e71..000000000 Binary files a/files/13_2056_example.mp3 and /dev/null differ diff --git a/files/13_2056_meaning.mp3 b/files/13_2056_meaning.mp3 deleted file mode 100644 index 1d38eee64..000000000 Binary files a/files/13_2056_meaning.mp3 and /dev/null differ diff --git a/files/13_2057.jpg b/files/13_2057.jpg deleted file mode 100644 index 6bfdfaea7..000000000 Binary files a/files/13_2057.jpg and /dev/null differ diff --git a/files/13_2057.mp3 b/files/13_2057.mp3 deleted file mode 100644 index 170dc997c..000000000 Binary files a/files/13_2057.mp3 and /dev/null differ diff --git a/files/13_2057_example.mp3 b/files/13_2057_example.mp3 deleted file mode 100644 index 01b1eee44..000000000 Binary files a/files/13_2057_example.mp3 and /dev/null differ diff --git a/files/13_2057_meaning.mp3 b/files/13_2057_meaning.mp3 deleted file mode 100644 index c9c6535e4..000000000 Binary files a/files/13_2057_meaning.mp3 and /dev/null differ diff --git a/files/13_2058.jpg b/files/13_2058.jpg deleted file mode 100644 index 45c504e6a..000000000 Binary files a/files/13_2058.jpg and /dev/null differ diff --git a/files/13_2058.mp3 b/files/13_2058.mp3 deleted file mode 100644 index 68f74d102..000000000 Binary files a/files/13_2058.mp3 and /dev/null differ diff --git a/files/13_2058_example.mp3 b/files/13_2058_example.mp3 deleted file mode 100644 index 21397b413..000000000 Binary files a/files/13_2058_example.mp3 and /dev/null differ diff --git a/files/13_2058_meaning.mp3 b/files/13_2058_meaning.mp3 deleted file mode 100644 index 592b5e7fe..000000000 Binary files a/files/13_2058_meaning.mp3 and /dev/null differ diff --git a/files/13_2059.jpg b/files/13_2059.jpg deleted file mode 100644 index d52eb56b0..000000000 Binary files a/files/13_2059.jpg and /dev/null differ diff --git a/files/13_2059.mp3 b/files/13_2059.mp3 deleted file mode 100644 index 534d8d3c4..000000000 Binary files a/files/13_2059.mp3 and /dev/null differ diff --git a/files/13_2059_example.mp3 b/files/13_2059_example.mp3 deleted file mode 100644 index 1bdae1f05..000000000 Binary files a/files/13_2059_example.mp3 and /dev/null differ diff --git a/files/13_2059_meaning.mp3 b/files/13_2059_meaning.mp3 deleted file mode 100644 index 3045ea53a..000000000 Binary files a/files/13_2059_meaning.mp3 and /dev/null differ diff --git a/files/13_2060.jpg b/files/13_2060.jpg deleted file mode 100644 index 8d06fcfa6..000000000 Binary files a/files/13_2060.jpg and /dev/null differ diff --git a/files/13_2060.mp3 b/files/13_2060.mp3 deleted file mode 100644 index 4fdc34938..000000000 Binary files a/files/13_2060.mp3 and /dev/null differ diff --git a/files/13_2060_example.mp3 b/files/13_2060_example.mp3 deleted file mode 100644 index bc49d9d52..000000000 Binary files a/files/13_2060_example.mp3 and /dev/null differ diff --git a/files/13_2060_meaning.mp3 b/files/13_2060_meaning.mp3 deleted file mode 100644 index 61dd2e0a2..000000000 Binary files a/files/13_2060_meaning.mp3 and /dev/null differ diff --git a/files/13_2641.jpg b/files/13_2641.jpg deleted file mode 100644 index 5d293fea4..000000000 Binary files a/files/13_2641.jpg and /dev/null differ diff --git a/files/13_2641.mp3 b/files/13_2641.mp3 deleted file mode 100644 index 05dc42cb8..000000000 Binary files a/files/13_2641.mp3 and /dev/null differ diff --git a/files/13_2641_example.mp3 b/files/13_2641_example.mp3 deleted file mode 100644 index 99c714eb8..000000000 Binary files a/files/13_2641_example.mp3 and /dev/null differ diff --git a/files/13_2641_meaning.mp3 b/files/13_2641_meaning.mp3 deleted file mode 100644 index b45bedfa0..000000000 Binary files a/files/13_2641_meaning.mp3 and /dev/null differ diff --git a/files/13_2642.jpg b/files/13_2642.jpg deleted file mode 100644 index b7f505ab0..000000000 Binary files a/files/13_2642.jpg and /dev/null differ diff --git a/files/13_2642.mp3 b/files/13_2642.mp3 deleted file mode 100644 index 6289e2a7c..000000000 Binary files a/files/13_2642.mp3 and /dev/null differ diff --git a/files/13_2642_example.mp3 b/files/13_2642_example.mp3 deleted file mode 100644 index 9359054f8..000000000 Binary files a/files/13_2642_example.mp3 and /dev/null differ diff --git a/files/13_2642_meaning.mp3 b/files/13_2642_meaning.mp3 deleted file mode 100644 index c2aa2ae62..000000000 Binary files a/files/13_2642_meaning.mp3 and /dev/null differ diff --git a/files/13_2643.jpg b/files/13_2643.jpg deleted file mode 100644 index c45f3fcac..000000000 Binary files a/files/13_2643.jpg and /dev/null differ diff --git a/files/13_2643.mp3 b/files/13_2643.mp3 deleted file mode 100644 index 67dfc0963..000000000 Binary files a/files/13_2643.mp3 and /dev/null differ diff --git a/files/13_2643_example.mp3 b/files/13_2643_example.mp3 deleted file mode 100644 index b24bdcbed..000000000 Binary files a/files/13_2643_example.mp3 and /dev/null differ diff --git a/files/13_2643_meaning.mp3 b/files/13_2643_meaning.mp3 deleted file mode 100644 index ea5729fa8..000000000 Binary files a/files/13_2643_meaning.mp3 and /dev/null differ diff --git a/files/13_2644.jpg b/files/13_2644.jpg deleted file mode 100644 index 115c6554b..000000000 Binary files a/files/13_2644.jpg and /dev/null differ diff --git a/files/13_2644.mp3 b/files/13_2644.mp3 deleted file mode 100644 index f0e212c83..000000000 Binary files a/files/13_2644.mp3 and /dev/null differ diff --git a/files/13_2644_example.mp3 b/files/13_2644_example.mp3 deleted file mode 100644 index 14435f3af..000000000 Binary files a/files/13_2644_example.mp3 and /dev/null differ diff --git a/files/13_2644_meaning.mp3 b/files/13_2644_meaning.mp3 deleted file mode 100644 index 6e6cab511..000000000 Binary files a/files/13_2644_meaning.mp3 and /dev/null differ diff --git a/files/13_2645.jpg b/files/13_2645.jpg deleted file mode 100644 index 0a6413937..000000000 Binary files a/files/13_2645.jpg and /dev/null differ diff --git a/files/13_2645.mp3 b/files/13_2645.mp3 deleted file mode 100644 index 2b8e7efa0..000000000 Binary files a/files/13_2645.mp3 and /dev/null differ diff --git a/files/13_2645_example.mp3 b/files/13_2645_example.mp3 deleted file mode 100644 index 70cd0cddb..000000000 Binary files a/files/13_2645_example.mp3 and /dev/null differ diff --git a/files/13_2645_meaning.mp3 b/files/13_2645_meaning.mp3 deleted file mode 100644 index bea00912b..000000000 Binary files a/files/13_2645_meaning.mp3 and /dev/null differ diff --git a/files/13_2646.jpg b/files/13_2646.jpg deleted file mode 100644 index e45888923..000000000 Binary files a/files/13_2646.jpg and /dev/null differ diff --git a/files/13_2646.mp3 b/files/13_2646.mp3 deleted file mode 100644 index 0c5a55918..000000000 Binary files a/files/13_2646.mp3 and /dev/null differ diff --git a/files/13_2646_example.mp3 b/files/13_2646_example.mp3 deleted file mode 100644 index 38e8dd7d5..000000000 Binary files a/files/13_2646_example.mp3 and /dev/null differ diff --git a/files/13_2646_meaning.mp3 b/files/13_2646_meaning.mp3 deleted file mode 100644 index bfaddb9be..000000000 Binary files a/files/13_2646_meaning.mp3 and /dev/null differ diff --git a/files/13_2647.jpg b/files/13_2647.jpg deleted file mode 100644 index 5e41729c0..000000000 Binary files a/files/13_2647.jpg and /dev/null differ diff --git a/files/13_2647.mp3 b/files/13_2647.mp3 deleted file mode 100644 index 08b4d527a..000000000 Binary files a/files/13_2647.mp3 and /dev/null differ diff --git a/files/13_2647_example.mp3 b/files/13_2647_example.mp3 deleted file mode 100644 index 0d4067fa0..000000000 Binary files a/files/13_2647_example.mp3 and /dev/null differ diff --git a/files/13_2647_meaning.mp3 b/files/13_2647_meaning.mp3 deleted file mode 100644 index 7a4e9a52b..000000000 Binary files a/files/13_2647_meaning.mp3 and /dev/null differ diff --git a/files/13_2648.jpg b/files/13_2648.jpg deleted file mode 100644 index fb7a43326..000000000 Binary files a/files/13_2648.jpg and /dev/null differ diff --git a/files/13_2648.mp3 b/files/13_2648.mp3 deleted file mode 100644 index a5c946c3f..000000000 Binary files a/files/13_2648.mp3 and /dev/null differ diff --git a/files/13_2648_example.mp3 b/files/13_2648_example.mp3 deleted file mode 100644 index 3a956cc59..000000000 Binary files a/files/13_2648_example.mp3 and /dev/null differ diff --git a/files/13_2648_meaning.mp3 b/files/13_2648_meaning.mp3 deleted file mode 100644 index 452e67b6d..000000000 Binary files a/files/13_2648_meaning.mp3 and /dev/null differ diff --git a/files/13_2649.jpg b/files/13_2649.jpg deleted file mode 100644 index 8ab6cec78..000000000 Binary files a/files/13_2649.jpg and /dev/null differ diff --git a/files/13_2649.mp3 b/files/13_2649.mp3 deleted file mode 100644 index 013fd6159..000000000 Binary files a/files/13_2649.mp3 and /dev/null differ diff --git a/files/13_2649_example.mp3 b/files/13_2649_example.mp3 deleted file mode 100644 index 4fb82db4b..000000000 Binary files a/files/13_2649_example.mp3 and /dev/null differ diff --git a/files/13_2649_meaning.mp3 b/files/13_2649_meaning.mp3 deleted file mode 100644 index aa41760b8..000000000 Binary files a/files/13_2649_meaning.mp3 and /dev/null differ diff --git a/files/13_2650.jpg b/files/13_2650.jpg deleted file mode 100644 index b5660ce05..000000000 Binary files a/files/13_2650.jpg and /dev/null differ diff --git a/files/13_2650.mp3 b/files/13_2650.mp3 deleted file mode 100644 index ad36f8dba..000000000 Binary files a/files/13_2650.mp3 and /dev/null differ diff --git a/files/13_2650_example.mp3 b/files/13_2650_example.mp3 deleted file mode 100644 index 0eb513728..000000000 Binary files a/files/13_2650_example.mp3 and /dev/null differ diff --git a/files/13_2650_meaning.mp3 b/files/13_2650_meaning.mp3 deleted file mode 100644 index 0b1c9ebdf..000000000 Binary files a/files/13_2650_meaning.mp3 and /dev/null differ diff --git a/files/13_2651.jpg b/files/13_2651.jpg deleted file mode 100644 index 916339eba..000000000 Binary files a/files/13_2651.jpg and /dev/null differ diff --git a/files/13_2651.mp3 b/files/13_2651.mp3 deleted file mode 100644 index d0c4228f0..000000000 Binary files a/files/13_2651.mp3 and /dev/null differ diff --git a/files/13_2651_example.mp3 b/files/13_2651_example.mp3 deleted file mode 100644 index 5ae157540..000000000 Binary files a/files/13_2651_example.mp3 and /dev/null differ diff --git a/files/13_2651_meaning.mp3 b/files/13_2651_meaning.mp3 deleted file mode 100644 index fd14e2303..000000000 Binary files a/files/13_2651_meaning.mp3 and /dev/null differ diff --git a/files/13_2652.jpg b/files/13_2652.jpg deleted file mode 100644 index 45f58183d..000000000 Binary files a/files/13_2652.jpg and /dev/null differ diff --git a/files/13_2652.mp3 b/files/13_2652.mp3 deleted file mode 100644 index 54f0dea17..000000000 Binary files a/files/13_2652.mp3 and /dev/null differ diff --git a/files/13_2652_example.mp3 b/files/13_2652_example.mp3 deleted file mode 100644 index 92569a428..000000000 Binary files a/files/13_2652_example.mp3 and /dev/null differ diff --git a/files/13_2652_meaning.mp3 b/files/13_2652_meaning.mp3 deleted file mode 100644 index 57435bea2..000000000 Binary files a/files/13_2652_meaning.mp3 and /dev/null differ diff --git a/files/13_2653.jpg b/files/13_2653.jpg deleted file mode 100644 index 6ecf41a77..000000000 Binary files a/files/13_2653.jpg and /dev/null differ diff --git a/files/13_2653.mp3 b/files/13_2653.mp3 deleted file mode 100644 index 641624ad3..000000000 Binary files a/files/13_2653.mp3 and /dev/null differ diff --git a/files/13_2653_example.mp3 b/files/13_2653_example.mp3 deleted file mode 100644 index ed60407ae..000000000 Binary files a/files/13_2653_example.mp3 and /dev/null differ diff --git a/files/13_2653_meaning.mp3 b/files/13_2653_meaning.mp3 deleted file mode 100644 index fb18eeaaa..000000000 Binary files a/files/13_2653_meaning.mp3 and /dev/null differ diff --git a/files/13_2654.jpg b/files/13_2654.jpg deleted file mode 100644 index e0f2a64f9..000000000 Binary files a/files/13_2654.jpg and /dev/null differ diff --git a/files/13_2654.mp3 b/files/13_2654.mp3 deleted file mode 100644 index 4e047d666..000000000 Binary files a/files/13_2654.mp3 and /dev/null differ diff --git a/files/13_2654_example.mp3 b/files/13_2654_example.mp3 deleted file mode 100644 index 6c4103dcf..000000000 Binary files a/files/13_2654_example.mp3 and /dev/null differ diff --git a/files/13_2654_meaning.mp3 b/files/13_2654_meaning.mp3 deleted file mode 100644 index 0f69253d2..000000000 Binary files a/files/13_2654_meaning.mp3 and /dev/null differ diff --git a/files/13_2655.jpg b/files/13_2655.jpg deleted file mode 100644 index a7ea46c1c..000000000 Binary files a/files/13_2655.jpg and /dev/null differ diff --git a/files/13_2655.mp3 b/files/13_2655.mp3 deleted file mode 100644 index a8ac1390f..000000000 Binary files a/files/13_2655.mp3 and /dev/null differ diff --git a/files/13_2655_example.mp3 b/files/13_2655_example.mp3 deleted file mode 100644 index 2c4e0f32c..000000000 Binary files a/files/13_2655_example.mp3 and /dev/null differ diff --git a/files/13_2655_meaning.mp3 b/files/13_2655_meaning.mp3 deleted file mode 100644 index c6b27fc05..000000000 Binary files a/files/13_2655_meaning.mp3 and /dev/null differ diff --git a/files/13_2656.jpg b/files/13_2656.jpg deleted file mode 100644 index 456e14b93..000000000 Binary files a/files/13_2656.jpg and /dev/null differ diff --git a/files/13_2656.mp3 b/files/13_2656.mp3 deleted file mode 100644 index de11c6cc8..000000000 Binary files a/files/13_2656.mp3 and /dev/null differ diff --git a/files/13_2656_example.mp3 b/files/13_2656_example.mp3 deleted file mode 100644 index 04b73828e..000000000 Binary files a/files/13_2656_example.mp3 and /dev/null differ diff --git a/files/13_2656_meaning.mp3 b/files/13_2656_meaning.mp3 deleted file mode 100644 index a02d2d333..000000000 Binary files a/files/13_2656_meaning.mp3 and /dev/null differ diff --git a/files/13_2657.jpg b/files/13_2657.jpg deleted file mode 100644 index bd06a0fa2..000000000 Binary files a/files/13_2657.jpg and /dev/null differ diff --git a/files/13_2657.mp3 b/files/13_2657.mp3 deleted file mode 100644 index 675c02654..000000000 Binary files a/files/13_2657.mp3 and /dev/null differ diff --git a/files/13_2657_example.mp3 b/files/13_2657_example.mp3 deleted file mode 100644 index e647feb54..000000000 Binary files a/files/13_2657_example.mp3 and /dev/null differ diff --git a/files/13_2657_meaning.mp3 b/files/13_2657_meaning.mp3 deleted file mode 100644 index 5862ea0d8..000000000 Binary files a/files/13_2657_meaning.mp3 and /dev/null differ diff --git a/files/13_2658.jpg b/files/13_2658.jpg deleted file mode 100644 index b55168ff6..000000000 Binary files a/files/13_2658.jpg and /dev/null differ diff --git a/files/13_2658.mp3 b/files/13_2658.mp3 deleted file mode 100644 index de8e04a44..000000000 Binary files a/files/13_2658.mp3 and /dev/null differ diff --git a/files/13_2658_example.mp3 b/files/13_2658_example.mp3 deleted file mode 100644 index 78924f15b..000000000 Binary files a/files/13_2658_example.mp3 and /dev/null differ diff --git a/files/13_2658_meaning.mp3 b/files/13_2658_meaning.mp3 deleted file mode 100644 index ccec27706..000000000 Binary files a/files/13_2658_meaning.mp3 and /dev/null differ diff --git a/files/13_2659.jpg b/files/13_2659.jpg deleted file mode 100644 index 2f5a99756..000000000 Binary files a/files/13_2659.jpg and /dev/null differ diff --git a/files/13_2659.mp3 b/files/13_2659.mp3 deleted file mode 100644 index b50321604..000000000 Binary files a/files/13_2659.mp3 and /dev/null differ diff --git a/files/13_2659_example.mp3 b/files/13_2659_example.mp3 deleted file mode 100644 index 3060e81b4..000000000 Binary files a/files/13_2659_example.mp3 and /dev/null differ diff --git a/files/13_2659_meaning.mp3 b/files/13_2659_meaning.mp3 deleted file mode 100644 index 02c008838..000000000 Binary files a/files/13_2659_meaning.mp3 and /dev/null differ diff --git a/files/13_2660.jpg b/files/13_2660.jpg deleted file mode 100644 index c379352bf..000000000 Binary files a/files/13_2660.jpg and /dev/null differ diff --git a/files/13_2660.mp3 b/files/13_2660.mp3 deleted file mode 100644 index 2c15ebd01..000000000 Binary files a/files/13_2660.mp3 and /dev/null differ diff --git a/files/13_2660_example.mp3 b/files/13_2660_example.mp3 deleted file mode 100644 index 3672078bb..000000000 Binary files a/files/13_2660_example.mp3 and /dev/null differ diff --git a/files/13_2660_meaning.mp3 b/files/13_2660_meaning.mp3 deleted file mode 100644 index 4bfaa259b..000000000 Binary files a/files/13_2660_meaning.mp3 and /dev/null differ diff --git a/files/13_3241.jpg b/files/13_3241.jpg deleted file mode 100644 index 0bfefbc88..000000000 Binary files a/files/13_3241.jpg and /dev/null differ diff --git a/files/13_3241.mp3 b/files/13_3241.mp3 deleted file mode 100644 index 3dfe21531..000000000 Binary files a/files/13_3241.mp3 and /dev/null differ diff --git a/files/13_3241_example.mp3 b/files/13_3241_example.mp3 deleted file mode 100644 index 533d5b95e..000000000 Binary files a/files/13_3241_example.mp3 and /dev/null differ diff --git a/files/13_3241_meaning.mp3 b/files/13_3241_meaning.mp3 deleted file mode 100644 index fd0c2e5f1..000000000 Binary files a/files/13_3241_meaning.mp3 and /dev/null differ diff --git a/files/13_3242.jpg b/files/13_3242.jpg deleted file mode 100644 index 614e646cd..000000000 Binary files a/files/13_3242.jpg and /dev/null differ diff --git a/files/13_3242.mp3 b/files/13_3242.mp3 deleted file mode 100644 index 7f05bca59..000000000 Binary files a/files/13_3242.mp3 and /dev/null differ diff --git a/files/13_3242_example.mp3 b/files/13_3242_example.mp3 deleted file mode 100644 index 4282074d8..000000000 Binary files a/files/13_3242_example.mp3 and /dev/null differ diff --git a/files/13_3242_meaning.mp3 b/files/13_3242_meaning.mp3 deleted file mode 100644 index 99bef90db..000000000 Binary files a/files/13_3242_meaning.mp3 and /dev/null differ diff --git a/files/13_3243.jpg b/files/13_3243.jpg deleted file mode 100644 index 0a0055edf..000000000 Binary files a/files/13_3243.jpg and /dev/null differ diff --git a/files/13_3243.mp3 b/files/13_3243.mp3 deleted file mode 100644 index c9085d884..000000000 Binary files a/files/13_3243.mp3 and /dev/null differ diff --git a/files/13_3243_example.mp3 b/files/13_3243_example.mp3 deleted file mode 100644 index 31e89a427..000000000 Binary files a/files/13_3243_example.mp3 and /dev/null differ diff --git a/files/13_3243_meaning.mp3 b/files/13_3243_meaning.mp3 deleted file mode 100644 index 9e4caae05..000000000 Binary files a/files/13_3243_meaning.mp3 and /dev/null differ diff --git a/files/13_3244.jpg b/files/13_3244.jpg deleted file mode 100644 index 5340c2ff8..000000000 Binary files a/files/13_3244.jpg and /dev/null differ diff --git a/files/13_3244.mp3 b/files/13_3244.mp3 deleted file mode 100644 index fe0226a66..000000000 Binary files a/files/13_3244.mp3 and /dev/null differ diff --git a/files/13_3244_example.mp3 b/files/13_3244_example.mp3 deleted file mode 100644 index 8c25662b1..000000000 Binary files a/files/13_3244_example.mp3 and /dev/null differ diff --git a/files/13_3244_meaning.mp3 b/files/13_3244_meaning.mp3 deleted file mode 100644 index d566edaeb..000000000 Binary files a/files/13_3244_meaning.mp3 and /dev/null differ diff --git a/files/13_3245.jpg b/files/13_3245.jpg deleted file mode 100644 index abe4eb08c..000000000 Binary files a/files/13_3245.jpg and /dev/null differ diff --git a/files/13_3245.mp3 b/files/13_3245.mp3 deleted file mode 100644 index 37b9ed36c..000000000 Binary files a/files/13_3245.mp3 and /dev/null differ diff --git a/files/13_3245_example.mp3 b/files/13_3245_example.mp3 deleted file mode 100644 index ccf4e6cfb..000000000 Binary files a/files/13_3245_example.mp3 and /dev/null differ diff --git a/files/13_3245_meaning.mp3 b/files/13_3245_meaning.mp3 deleted file mode 100644 index 93786bc67..000000000 Binary files a/files/13_3245_meaning.mp3 and /dev/null differ diff --git a/files/13_3246.jpg b/files/13_3246.jpg deleted file mode 100644 index ca2ee50bd..000000000 Binary files a/files/13_3246.jpg and /dev/null differ diff --git a/files/13_3246.mp3 b/files/13_3246.mp3 deleted file mode 100644 index 53e3767c8..000000000 Binary files a/files/13_3246.mp3 and /dev/null differ diff --git a/files/13_3246_example.mp3 b/files/13_3246_example.mp3 deleted file mode 100644 index 10958c0db..000000000 Binary files a/files/13_3246_example.mp3 and /dev/null differ diff --git a/files/13_3246_meaning.mp3 b/files/13_3246_meaning.mp3 deleted file mode 100644 index 595702345..000000000 Binary files a/files/13_3246_meaning.mp3 and /dev/null differ diff --git a/files/13_3247.jpg b/files/13_3247.jpg deleted file mode 100644 index b3ed8359c..000000000 Binary files a/files/13_3247.jpg and /dev/null differ diff --git a/files/13_3247.mp3 b/files/13_3247.mp3 deleted file mode 100644 index df37e7e9c..000000000 Binary files a/files/13_3247.mp3 and /dev/null differ diff --git a/files/13_3247_example.mp3 b/files/13_3247_example.mp3 deleted file mode 100644 index 0e7b82bce..000000000 Binary files a/files/13_3247_example.mp3 and /dev/null differ diff --git a/files/13_3247_meaning.mp3 b/files/13_3247_meaning.mp3 deleted file mode 100644 index 8571bef2a..000000000 Binary files a/files/13_3247_meaning.mp3 and /dev/null differ diff --git a/files/13_3248.jpg b/files/13_3248.jpg deleted file mode 100644 index c5bb31a1d..000000000 Binary files a/files/13_3248.jpg and /dev/null differ diff --git a/files/13_3248.mp3 b/files/13_3248.mp3 deleted file mode 100644 index c441b31d7..000000000 Binary files a/files/13_3248.mp3 and /dev/null differ diff --git a/files/13_3248_example.mp3 b/files/13_3248_example.mp3 deleted file mode 100644 index 0f8667c25..000000000 Binary files a/files/13_3248_example.mp3 and /dev/null differ diff --git a/files/13_3248_meaning.mp3 b/files/13_3248_meaning.mp3 deleted file mode 100644 index 6ed6349a0..000000000 Binary files a/files/13_3248_meaning.mp3 and /dev/null differ diff --git a/files/13_3249.jpg b/files/13_3249.jpg deleted file mode 100644 index c0b8f5651..000000000 Binary files a/files/13_3249.jpg and /dev/null differ diff --git a/files/13_3249.mp3 b/files/13_3249.mp3 deleted file mode 100644 index 26612ed5c..000000000 Binary files a/files/13_3249.mp3 and /dev/null differ diff --git a/files/13_3249_example.mp3 b/files/13_3249_example.mp3 deleted file mode 100644 index aca9e1754..000000000 Binary files a/files/13_3249_example.mp3 and /dev/null differ diff --git a/files/13_3249_meaning.mp3 b/files/13_3249_meaning.mp3 deleted file mode 100644 index 46a00c1d3..000000000 Binary files a/files/13_3249_meaning.mp3 and /dev/null differ diff --git a/files/13_3250.jpg b/files/13_3250.jpg deleted file mode 100644 index d5c708ea1..000000000 Binary files a/files/13_3250.jpg and /dev/null differ diff --git a/files/13_3250.mp3 b/files/13_3250.mp3 deleted file mode 100644 index deac24a9e..000000000 Binary files a/files/13_3250.mp3 and /dev/null differ diff --git a/files/13_3250_example.mp3 b/files/13_3250_example.mp3 deleted file mode 100644 index 8970ad1a5..000000000 Binary files a/files/13_3250_example.mp3 and /dev/null differ diff --git a/files/13_3250_meaning.mp3 b/files/13_3250_meaning.mp3 deleted file mode 100644 index 83cce8c55..000000000 Binary files a/files/13_3250_meaning.mp3 and /dev/null differ diff --git a/files/13_3251.jpg b/files/13_3251.jpg deleted file mode 100644 index 1d3790231..000000000 Binary files a/files/13_3251.jpg and /dev/null differ diff --git a/files/13_3251.mp3 b/files/13_3251.mp3 deleted file mode 100644 index cb203ce7a..000000000 Binary files a/files/13_3251.mp3 and /dev/null differ diff --git a/files/13_3251_example.mp3 b/files/13_3251_example.mp3 deleted file mode 100644 index 9b16c82d2..000000000 Binary files a/files/13_3251_example.mp3 and /dev/null differ diff --git a/files/13_3251_meaning.mp3 b/files/13_3251_meaning.mp3 deleted file mode 100644 index f08bd52fe..000000000 Binary files a/files/13_3251_meaning.mp3 and /dev/null differ diff --git a/files/13_3252.jpg b/files/13_3252.jpg deleted file mode 100644 index a1ab72847..000000000 Binary files a/files/13_3252.jpg and /dev/null differ diff --git a/files/13_3252.mp3 b/files/13_3252.mp3 deleted file mode 100644 index 50c88888a..000000000 Binary files a/files/13_3252.mp3 and /dev/null differ diff --git a/files/13_3252_example.mp3 b/files/13_3252_example.mp3 deleted file mode 100644 index c33304e30..000000000 Binary files a/files/13_3252_example.mp3 and /dev/null differ diff --git a/files/13_3252_meaning.mp3 b/files/13_3252_meaning.mp3 deleted file mode 100644 index ebf37a717..000000000 Binary files a/files/13_3252_meaning.mp3 and /dev/null differ diff --git a/files/13_3253.jpg b/files/13_3253.jpg deleted file mode 100644 index 10d63cf88..000000000 Binary files a/files/13_3253.jpg and /dev/null differ diff --git a/files/13_3253.mp3 b/files/13_3253.mp3 deleted file mode 100644 index 094012709..000000000 Binary files a/files/13_3253.mp3 and /dev/null differ diff --git a/files/13_3253_example.mp3 b/files/13_3253_example.mp3 deleted file mode 100644 index 0ff09c8e6..000000000 Binary files a/files/13_3253_example.mp3 and /dev/null differ diff --git a/files/13_3253_meaning.mp3 b/files/13_3253_meaning.mp3 deleted file mode 100644 index 1b4999998..000000000 Binary files a/files/13_3253_meaning.mp3 and /dev/null differ diff --git a/files/13_3254.jpg b/files/13_3254.jpg deleted file mode 100644 index a48e3156c..000000000 Binary files a/files/13_3254.jpg and /dev/null differ diff --git a/files/13_3254.mp3 b/files/13_3254.mp3 deleted file mode 100644 index ca06a902b..000000000 Binary files a/files/13_3254.mp3 and /dev/null differ diff --git a/files/13_3254_example.mp3 b/files/13_3254_example.mp3 deleted file mode 100644 index c627f530d..000000000 Binary files a/files/13_3254_example.mp3 and /dev/null differ diff --git a/files/13_3254_meaning.mp3 b/files/13_3254_meaning.mp3 deleted file mode 100644 index 366175217..000000000 Binary files a/files/13_3254_meaning.mp3 and /dev/null differ diff --git a/files/13_3255.jpg b/files/13_3255.jpg deleted file mode 100644 index 8d277a0db..000000000 Binary files a/files/13_3255.jpg and /dev/null differ diff --git a/files/13_3255.mp3 b/files/13_3255.mp3 deleted file mode 100644 index cf4fbdfd6..000000000 Binary files a/files/13_3255.mp3 and /dev/null differ diff --git a/files/13_3255_example.mp3 b/files/13_3255_example.mp3 deleted file mode 100644 index d97cc89c5..000000000 Binary files a/files/13_3255_example.mp3 and /dev/null differ diff --git a/files/13_3255_meaning.mp3 b/files/13_3255_meaning.mp3 deleted file mode 100644 index cb0914ebb..000000000 Binary files a/files/13_3255_meaning.mp3 and /dev/null differ diff --git a/files/13_3256.jpg b/files/13_3256.jpg deleted file mode 100644 index aa055bd5a..000000000 Binary files a/files/13_3256.jpg and /dev/null differ diff --git a/files/13_3256.mp3 b/files/13_3256.mp3 deleted file mode 100644 index ff65d7e90..000000000 Binary files a/files/13_3256.mp3 and /dev/null differ diff --git a/files/13_3256_example.mp3 b/files/13_3256_example.mp3 deleted file mode 100644 index 0250bd4d5..000000000 Binary files a/files/13_3256_example.mp3 and /dev/null differ diff --git a/files/13_3256_meaning.mp3 b/files/13_3256_meaning.mp3 deleted file mode 100644 index ba0a7a6ff..000000000 Binary files a/files/13_3256_meaning.mp3 and /dev/null differ diff --git a/files/13_3257.jpg b/files/13_3257.jpg deleted file mode 100644 index a8907ba74..000000000 Binary files a/files/13_3257.jpg and /dev/null differ diff --git a/files/13_3257.mp3 b/files/13_3257.mp3 deleted file mode 100644 index ccc589f40..000000000 Binary files a/files/13_3257.mp3 and /dev/null differ diff --git a/files/13_3257_example.mp3 b/files/13_3257_example.mp3 deleted file mode 100644 index 623590ea2..000000000 Binary files a/files/13_3257_example.mp3 and /dev/null differ diff --git a/files/13_3257_meaning.mp3 b/files/13_3257_meaning.mp3 deleted file mode 100644 index 6a41e4e1a..000000000 Binary files a/files/13_3257_meaning.mp3 and /dev/null differ diff --git a/files/13_3258.jpg b/files/13_3258.jpg deleted file mode 100644 index 0a9cda56d..000000000 Binary files a/files/13_3258.jpg and /dev/null differ diff --git a/files/13_3258.mp3 b/files/13_3258.mp3 deleted file mode 100644 index 6b3c52d9c..000000000 Binary files a/files/13_3258.mp3 and /dev/null differ diff --git a/files/13_3258_example.mp3 b/files/13_3258_example.mp3 deleted file mode 100644 index 2505d36f1..000000000 Binary files a/files/13_3258_example.mp3 and /dev/null differ diff --git a/files/13_3258_meaning.mp3 b/files/13_3258_meaning.mp3 deleted file mode 100644 index e6388165b..000000000 Binary files a/files/13_3258_meaning.mp3 and /dev/null differ diff --git a/files/13_3259.jpg b/files/13_3259.jpg deleted file mode 100644 index bfe3ec90b..000000000 Binary files a/files/13_3259.jpg and /dev/null differ diff --git a/files/13_3259.mp3 b/files/13_3259.mp3 deleted file mode 100644 index 592eff2d4..000000000 Binary files a/files/13_3259.mp3 and /dev/null differ diff --git a/files/13_3259_example.mp3 b/files/13_3259_example.mp3 deleted file mode 100644 index 5e8b6e35d..000000000 Binary files a/files/13_3259_example.mp3 and /dev/null differ diff --git a/files/13_3259_meaning.mp3 b/files/13_3259_meaning.mp3 deleted file mode 100644 index f19eb128f..000000000 Binary files a/files/13_3259_meaning.mp3 and /dev/null differ diff --git a/files/13_3260.jpg b/files/13_3260.jpg deleted file mode 100644 index 4c3e3e679..000000000 Binary files a/files/13_3260.jpg and /dev/null differ diff --git a/files/13_3260.mp3 b/files/13_3260.mp3 deleted file mode 100644 index dc431e6f5..000000000 Binary files a/files/13_3260.mp3 and /dev/null differ diff --git a/files/13_3260_example.mp3 b/files/13_3260_example.mp3 deleted file mode 100644 index bc8644f65..000000000 Binary files a/files/13_3260_example.mp3 and /dev/null differ diff --git a/files/13_3260_meaning.mp3 b/files/13_3260_meaning.mp3 deleted file mode 100644 index 673aefe71..000000000 Binary files a/files/13_3260_meaning.mp3 and /dev/null differ diff --git a/files/14_0261.jpg b/files/14_0261.jpg deleted file mode 100644 index 25a1912cf..000000000 Binary files a/files/14_0261.jpg and /dev/null differ diff --git a/files/14_0261.mp3 b/files/14_0261.mp3 deleted file mode 100644 index afbbfe617..000000000 Binary files a/files/14_0261.mp3 and /dev/null differ diff --git a/files/14_0261_example.mp3 b/files/14_0261_example.mp3 deleted file mode 100644 index 3389396fe..000000000 Binary files a/files/14_0261_example.mp3 and /dev/null differ diff --git a/files/14_0261_meaning.mp3 b/files/14_0261_meaning.mp3 deleted file mode 100644 index 193dd6ea4..000000000 Binary files a/files/14_0261_meaning.mp3 and /dev/null differ diff --git a/files/14_0262.jpg b/files/14_0262.jpg deleted file mode 100644 index b50e43703..000000000 Binary files a/files/14_0262.jpg and /dev/null differ diff --git a/files/14_0262.mp3 b/files/14_0262.mp3 deleted file mode 100644 index 5d0a95cfa..000000000 Binary files a/files/14_0262.mp3 and /dev/null differ diff --git a/files/14_0262_example.mp3 b/files/14_0262_example.mp3 deleted file mode 100644 index 57712d664..000000000 Binary files a/files/14_0262_example.mp3 and /dev/null differ diff --git a/files/14_0262_meaning.mp3 b/files/14_0262_meaning.mp3 deleted file mode 100644 index 694a3c596..000000000 Binary files a/files/14_0262_meaning.mp3 and /dev/null differ diff --git a/files/14_0263.jpg b/files/14_0263.jpg deleted file mode 100644 index 560eb1ff1..000000000 Binary files a/files/14_0263.jpg and /dev/null differ diff --git a/files/14_0263.mp3 b/files/14_0263.mp3 deleted file mode 100644 index f2867f36e..000000000 Binary files a/files/14_0263.mp3 and /dev/null differ diff --git a/files/14_0263_example.mp3 b/files/14_0263_example.mp3 deleted file mode 100644 index 81ec22529..000000000 Binary files a/files/14_0263_example.mp3 and /dev/null differ diff --git a/files/14_0263_meaning.mp3 b/files/14_0263_meaning.mp3 deleted file mode 100644 index e4e145a6b..000000000 Binary files a/files/14_0263_meaning.mp3 and /dev/null differ diff --git a/files/14_0264.jpg b/files/14_0264.jpg deleted file mode 100644 index 334512589..000000000 Binary files a/files/14_0264.jpg and /dev/null differ diff --git a/files/14_0264.mp3 b/files/14_0264.mp3 deleted file mode 100644 index 14f412914..000000000 Binary files a/files/14_0264.mp3 and /dev/null differ diff --git a/files/14_0264_example.mp3 b/files/14_0264_example.mp3 deleted file mode 100644 index fec6c8fcc..000000000 Binary files a/files/14_0264_example.mp3 and /dev/null differ diff --git a/files/14_0264_meaning.mp3 b/files/14_0264_meaning.mp3 deleted file mode 100644 index dd73d6fed..000000000 Binary files a/files/14_0264_meaning.mp3 and /dev/null differ diff --git a/files/14_0265.jpg b/files/14_0265.jpg deleted file mode 100644 index e4ca45512..000000000 Binary files a/files/14_0265.jpg and /dev/null differ diff --git a/files/14_0265.mp3 b/files/14_0265.mp3 deleted file mode 100644 index ffa675d95..000000000 Binary files a/files/14_0265.mp3 and /dev/null differ diff --git a/files/14_0265_example.mp3 b/files/14_0265_example.mp3 deleted file mode 100644 index 89c3f17d3..000000000 Binary files a/files/14_0265_example.mp3 and /dev/null differ diff --git a/files/14_0265_meaning.mp3 b/files/14_0265_meaning.mp3 deleted file mode 100644 index 3f85e44bf..000000000 Binary files a/files/14_0265_meaning.mp3 and /dev/null differ diff --git a/files/14_0266.jpg b/files/14_0266.jpg deleted file mode 100644 index 308d23bae..000000000 Binary files a/files/14_0266.jpg and /dev/null differ diff --git a/files/14_0266.mp3 b/files/14_0266.mp3 deleted file mode 100644 index d3437130a..000000000 Binary files a/files/14_0266.mp3 and /dev/null differ diff --git a/files/14_0266_example.mp3 b/files/14_0266_example.mp3 deleted file mode 100644 index 8b5fbbd54..000000000 Binary files a/files/14_0266_example.mp3 and /dev/null differ diff --git a/files/14_0266_meaning.mp3 b/files/14_0266_meaning.mp3 deleted file mode 100644 index d09469218..000000000 Binary files a/files/14_0266_meaning.mp3 and /dev/null differ diff --git a/files/14_0267.jpg b/files/14_0267.jpg deleted file mode 100644 index b5bd73daf..000000000 Binary files a/files/14_0267.jpg and /dev/null differ diff --git a/files/14_0267.mp3 b/files/14_0267.mp3 deleted file mode 100644 index 7fffb4ce8..000000000 Binary files a/files/14_0267.mp3 and /dev/null differ diff --git a/files/14_0267_example.mp3 b/files/14_0267_example.mp3 deleted file mode 100644 index bc0f570f8..000000000 Binary files a/files/14_0267_example.mp3 and /dev/null differ diff --git a/files/14_0267_meaning.mp3 b/files/14_0267_meaning.mp3 deleted file mode 100644 index b6ca52da3..000000000 Binary files a/files/14_0267_meaning.mp3 and /dev/null differ diff --git a/files/14_0268.jpg b/files/14_0268.jpg deleted file mode 100644 index 979cbb517..000000000 Binary files a/files/14_0268.jpg and /dev/null differ diff --git a/files/14_0268.mp3 b/files/14_0268.mp3 deleted file mode 100644 index 436f25fd5..000000000 Binary files a/files/14_0268.mp3 and /dev/null differ diff --git a/files/14_0268_example.mp3 b/files/14_0268_example.mp3 deleted file mode 100644 index 24ee095dc..000000000 Binary files a/files/14_0268_example.mp3 and /dev/null differ diff --git a/files/14_0268_meaning.mp3 b/files/14_0268_meaning.mp3 deleted file mode 100644 index 5626ef056..000000000 Binary files a/files/14_0268_meaning.mp3 and /dev/null differ diff --git a/files/14_0269.jpg b/files/14_0269.jpg deleted file mode 100644 index 28e80c8ed..000000000 Binary files a/files/14_0269.jpg and /dev/null differ diff --git a/files/14_0269.mp3 b/files/14_0269.mp3 deleted file mode 100644 index 1686790d4..000000000 Binary files a/files/14_0269.mp3 and /dev/null differ diff --git a/files/14_0269_example.mp3 b/files/14_0269_example.mp3 deleted file mode 100644 index 83bcbcaaa..000000000 Binary files a/files/14_0269_example.mp3 and /dev/null differ diff --git a/files/14_0269_meaning.mp3 b/files/14_0269_meaning.mp3 deleted file mode 100644 index 7464a54f4..000000000 Binary files a/files/14_0269_meaning.mp3 and /dev/null differ diff --git a/files/14_0270.jpg b/files/14_0270.jpg deleted file mode 100644 index b5fa62326..000000000 Binary files a/files/14_0270.jpg and /dev/null differ diff --git a/files/14_0270.mp3 b/files/14_0270.mp3 deleted file mode 100644 index 240ec2eec..000000000 Binary files a/files/14_0270.mp3 and /dev/null differ diff --git a/files/14_0270_example.mp3 b/files/14_0270_example.mp3 deleted file mode 100644 index f09a592d7..000000000 Binary files a/files/14_0270_example.mp3 and /dev/null differ diff --git a/files/14_0270_meaning.mp3 b/files/14_0270_meaning.mp3 deleted file mode 100644 index fd657818f..000000000 Binary files a/files/14_0270_meaning.mp3 and /dev/null differ diff --git a/files/14_0271.jpg b/files/14_0271.jpg deleted file mode 100644 index aa238b431..000000000 Binary files a/files/14_0271.jpg and /dev/null differ diff --git a/files/14_0271.mp3 b/files/14_0271.mp3 deleted file mode 100644 index 6a9fd5814..000000000 Binary files a/files/14_0271.mp3 and /dev/null differ diff --git a/files/14_0271_example.mp3 b/files/14_0271_example.mp3 deleted file mode 100644 index dcbc1a35a..000000000 Binary files a/files/14_0271_example.mp3 and /dev/null differ diff --git a/files/14_0271_meaning.mp3 b/files/14_0271_meaning.mp3 deleted file mode 100644 index ab798f2a8..000000000 Binary files a/files/14_0271_meaning.mp3 and /dev/null differ diff --git a/files/14_0272.jpg b/files/14_0272.jpg deleted file mode 100644 index b657b2464..000000000 Binary files a/files/14_0272.jpg and /dev/null differ diff --git a/files/14_0272.mp3 b/files/14_0272.mp3 deleted file mode 100644 index 76b6dfa8e..000000000 Binary files a/files/14_0272.mp3 and /dev/null differ diff --git a/files/14_0272_example.mp3 b/files/14_0272_example.mp3 deleted file mode 100644 index 1c86d5153..000000000 Binary files a/files/14_0272_example.mp3 and /dev/null differ diff --git a/files/14_0272_meaning.mp3 b/files/14_0272_meaning.mp3 deleted file mode 100644 index 6f8c0843c..000000000 Binary files a/files/14_0272_meaning.mp3 and /dev/null differ diff --git a/files/14_0273.jpg b/files/14_0273.jpg deleted file mode 100644 index e4583e2b0..000000000 Binary files a/files/14_0273.jpg and /dev/null differ diff --git a/files/14_0273.mp3 b/files/14_0273.mp3 deleted file mode 100644 index 6a58429a4..000000000 Binary files a/files/14_0273.mp3 and /dev/null differ diff --git a/files/14_0273_example.mp3 b/files/14_0273_example.mp3 deleted file mode 100644 index 7c5fe9283..000000000 Binary files a/files/14_0273_example.mp3 and /dev/null differ diff --git a/files/14_0273_meaning.mp3 b/files/14_0273_meaning.mp3 deleted file mode 100644 index 2c0fd57bd..000000000 Binary files a/files/14_0273_meaning.mp3 and /dev/null differ diff --git a/files/14_0274.jpg b/files/14_0274.jpg deleted file mode 100644 index c8aa49c85..000000000 Binary files a/files/14_0274.jpg and /dev/null differ diff --git a/files/14_0274.mp3 b/files/14_0274.mp3 deleted file mode 100644 index b807a029a..000000000 Binary files a/files/14_0274.mp3 and /dev/null differ diff --git a/files/14_0274_example.mp3 b/files/14_0274_example.mp3 deleted file mode 100644 index cf1367cca..000000000 Binary files a/files/14_0274_example.mp3 and /dev/null differ diff --git a/files/14_0274_meaning.mp3 b/files/14_0274_meaning.mp3 deleted file mode 100644 index adfbecd96..000000000 Binary files a/files/14_0274_meaning.mp3 and /dev/null differ diff --git a/files/14_0275.jpg b/files/14_0275.jpg deleted file mode 100644 index 23227ec24..000000000 Binary files a/files/14_0275.jpg and /dev/null differ diff --git a/files/14_0275.mp3 b/files/14_0275.mp3 deleted file mode 100644 index 0053c0fc1..000000000 Binary files a/files/14_0275.mp3 and /dev/null differ diff --git a/files/14_0275_example.mp3 b/files/14_0275_example.mp3 deleted file mode 100644 index dc1c270f7..000000000 Binary files a/files/14_0275_example.mp3 and /dev/null differ diff --git a/files/14_0275_meaning.mp3 b/files/14_0275_meaning.mp3 deleted file mode 100644 index 5abda7ca0..000000000 Binary files a/files/14_0275_meaning.mp3 and /dev/null differ diff --git a/files/14_0276.jpg b/files/14_0276.jpg deleted file mode 100644 index 13189da97..000000000 Binary files a/files/14_0276.jpg and /dev/null differ diff --git a/files/14_0276.mp3 b/files/14_0276.mp3 deleted file mode 100644 index 2e7435b01..000000000 Binary files a/files/14_0276.mp3 and /dev/null differ diff --git a/files/14_0276_example.mp3 b/files/14_0276_example.mp3 deleted file mode 100644 index 9d622e711..000000000 Binary files a/files/14_0276_example.mp3 and /dev/null differ diff --git a/files/14_0276_meaning.mp3 b/files/14_0276_meaning.mp3 deleted file mode 100644 index 4c2ce5c3c..000000000 Binary files a/files/14_0276_meaning.mp3 and /dev/null differ diff --git a/files/14_0277.jpg b/files/14_0277.jpg deleted file mode 100644 index 3e07c4c67..000000000 Binary files a/files/14_0277.jpg and /dev/null differ diff --git a/files/14_0277.mp3 b/files/14_0277.mp3 deleted file mode 100644 index 9f6fd0f6b..000000000 Binary files a/files/14_0277.mp3 and /dev/null differ diff --git a/files/14_0277_example.mp3 b/files/14_0277_example.mp3 deleted file mode 100644 index 2c17b76cc..000000000 Binary files a/files/14_0277_example.mp3 and /dev/null differ diff --git a/files/14_0277_meaning.mp3 b/files/14_0277_meaning.mp3 deleted file mode 100644 index a8b4a6ee3..000000000 Binary files a/files/14_0277_meaning.mp3 and /dev/null differ diff --git a/files/14_0278.jpg b/files/14_0278.jpg deleted file mode 100644 index 2e40831ca..000000000 Binary files a/files/14_0278.jpg and /dev/null differ diff --git a/files/14_0278.mp3 b/files/14_0278.mp3 deleted file mode 100644 index 6b54b8288..000000000 Binary files a/files/14_0278.mp3 and /dev/null differ diff --git a/files/14_0278_example.mp3 b/files/14_0278_example.mp3 deleted file mode 100644 index f1df2d9d4..000000000 Binary files a/files/14_0278_example.mp3 and /dev/null differ diff --git a/files/14_0278_meaning.mp3 b/files/14_0278_meaning.mp3 deleted file mode 100644 index 84d3ce184..000000000 Binary files a/files/14_0278_meaning.mp3 and /dev/null differ diff --git a/files/14_0279.jpg b/files/14_0279.jpg deleted file mode 100644 index 75f87d25f..000000000 Binary files a/files/14_0279.jpg and /dev/null differ diff --git a/files/14_0279.mp3 b/files/14_0279.mp3 deleted file mode 100644 index 4dbfba156..000000000 Binary files a/files/14_0279.mp3 and /dev/null differ diff --git a/files/14_0279_example.mp3 b/files/14_0279_example.mp3 deleted file mode 100644 index 555cd152b..000000000 Binary files a/files/14_0279_example.mp3 and /dev/null differ diff --git a/files/14_0279_meaning.mp3 b/files/14_0279_meaning.mp3 deleted file mode 100644 index 8076cae46..000000000 Binary files a/files/14_0279_meaning.mp3 and /dev/null differ diff --git a/files/14_0280.jpg b/files/14_0280.jpg deleted file mode 100644 index 0ecafbcff..000000000 Binary files a/files/14_0280.jpg and /dev/null differ diff --git a/files/14_0280.mp3 b/files/14_0280.mp3 deleted file mode 100644 index 38b02d4b1..000000000 Binary files a/files/14_0280.mp3 and /dev/null differ diff --git a/files/14_0280_example.mp3 b/files/14_0280_example.mp3 deleted file mode 100644 index bbf12edda..000000000 Binary files a/files/14_0280_example.mp3 and /dev/null differ diff --git a/files/14_0280_meaning.mp3 b/files/14_0280_meaning.mp3 deleted file mode 100644 index 8695c9c28..000000000 Binary files a/files/14_0280_meaning.mp3 and /dev/null differ diff --git a/files/14_0861.jpg b/files/14_0861.jpg deleted file mode 100644 index 7583ab855..000000000 Binary files a/files/14_0861.jpg and /dev/null differ diff --git a/files/14_0861.mp3 b/files/14_0861.mp3 deleted file mode 100644 index f38f09189..000000000 Binary files a/files/14_0861.mp3 and /dev/null differ diff --git a/files/14_0861_example.mp3 b/files/14_0861_example.mp3 deleted file mode 100644 index abbb49cc4..000000000 Binary files a/files/14_0861_example.mp3 and /dev/null differ diff --git a/files/14_0861_meaning.mp3 b/files/14_0861_meaning.mp3 deleted file mode 100644 index 40fd7fd02..000000000 Binary files a/files/14_0861_meaning.mp3 and /dev/null differ diff --git a/files/14_0862.jpg b/files/14_0862.jpg deleted file mode 100644 index c9e116d27..000000000 Binary files a/files/14_0862.jpg and /dev/null differ diff --git a/files/14_0862.mp3 b/files/14_0862.mp3 deleted file mode 100644 index 0bccf2407..000000000 Binary files a/files/14_0862.mp3 and /dev/null differ diff --git a/files/14_0862_example.mp3 b/files/14_0862_example.mp3 deleted file mode 100644 index c9b882e0b..000000000 Binary files a/files/14_0862_example.mp3 and /dev/null differ diff --git a/files/14_0862_meaning.mp3 b/files/14_0862_meaning.mp3 deleted file mode 100644 index 83ff5ed74..000000000 Binary files a/files/14_0862_meaning.mp3 and /dev/null differ diff --git a/files/14_0863.jpg b/files/14_0863.jpg deleted file mode 100644 index 1e0579bbb..000000000 Binary files a/files/14_0863.jpg and /dev/null differ diff --git a/files/14_0863.mp3 b/files/14_0863.mp3 deleted file mode 100644 index 603e09cdd..000000000 Binary files a/files/14_0863.mp3 and /dev/null differ diff --git a/files/14_0863_example.mp3 b/files/14_0863_example.mp3 deleted file mode 100644 index 45077069f..000000000 Binary files a/files/14_0863_example.mp3 and /dev/null differ diff --git a/files/14_0863_meaning.mp3 b/files/14_0863_meaning.mp3 deleted file mode 100644 index 870b76806..000000000 Binary files a/files/14_0863_meaning.mp3 and /dev/null differ diff --git a/files/14_0864.jpg b/files/14_0864.jpg deleted file mode 100644 index 2d3b6b561..000000000 Binary files a/files/14_0864.jpg and /dev/null differ diff --git a/files/14_0864.mp3 b/files/14_0864.mp3 deleted file mode 100644 index bb90a1e21..000000000 Binary files a/files/14_0864.mp3 and /dev/null differ diff --git a/files/14_0864_example.mp3 b/files/14_0864_example.mp3 deleted file mode 100644 index d0d33bcc8..000000000 Binary files a/files/14_0864_example.mp3 and /dev/null differ diff --git a/files/14_0864_meaning.mp3 b/files/14_0864_meaning.mp3 deleted file mode 100644 index 5852d94bd..000000000 Binary files a/files/14_0864_meaning.mp3 and /dev/null differ diff --git a/files/14_0865.jpg b/files/14_0865.jpg deleted file mode 100644 index cf1bea01f..000000000 Binary files a/files/14_0865.jpg and /dev/null differ diff --git a/files/14_0865.mp3 b/files/14_0865.mp3 deleted file mode 100644 index 41d65a80d..000000000 Binary files a/files/14_0865.mp3 and /dev/null differ diff --git a/files/14_0865_example.mp3 b/files/14_0865_example.mp3 deleted file mode 100644 index fe339377b..000000000 Binary files a/files/14_0865_example.mp3 and /dev/null differ diff --git a/files/14_0865_meaning.mp3 b/files/14_0865_meaning.mp3 deleted file mode 100644 index b7e9a49ac..000000000 Binary files a/files/14_0865_meaning.mp3 and /dev/null differ diff --git a/files/14_0866.jpg b/files/14_0866.jpg deleted file mode 100644 index 742eb5f85..000000000 Binary files a/files/14_0866.jpg and /dev/null differ diff --git a/files/14_0866.mp3 b/files/14_0866.mp3 deleted file mode 100644 index d3dabe079..000000000 Binary files a/files/14_0866.mp3 and /dev/null differ diff --git a/files/14_0866_example.mp3 b/files/14_0866_example.mp3 deleted file mode 100644 index 311c58fc5..000000000 Binary files a/files/14_0866_example.mp3 and /dev/null differ diff --git a/files/14_0866_meaning.mp3 b/files/14_0866_meaning.mp3 deleted file mode 100644 index a63f7ae1a..000000000 Binary files a/files/14_0866_meaning.mp3 and /dev/null differ diff --git a/files/14_0867.jpg b/files/14_0867.jpg deleted file mode 100644 index db16b8e60..000000000 Binary files a/files/14_0867.jpg and /dev/null differ diff --git a/files/14_0867.mp3 b/files/14_0867.mp3 deleted file mode 100644 index 8e7292da4..000000000 Binary files a/files/14_0867.mp3 and /dev/null differ diff --git a/files/14_0867_example.mp3 b/files/14_0867_example.mp3 deleted file mode 100644 index 26f28c13d..000000000 Binary files a/files/14_0867_example.mp3 and /dev/null differ diff --git a/files/14_0867_meaning.mp3 b/files/14_0867_meaning.mp3 deleted file mode 100644 index 45f1624f1..000000000 Binary files a/files/14_0867_meaning.mp3 and /dev/null differ diff --git a/files/14_0868.jpg b/files/14_0868.jpg deleted file mode 100644 index bcd2be416..000000000 Binary files a/files/14_0868.jpg and /dev/null differ diff --git a/files/14_0868.mp3 b/files/14_0868.mp3 deleted file mode 100644 index 39f8140bf..000000000 Binary files a/files/14_0868.mp3 and /dev/null differ diff --git a/files/14_0868_example.mp3 b/files/14_0868_example.mp3 deleted file mode 100644 index 366da7851..000000000 Binary files a/files/14_0868_example.mp3 and /dev/null differ diff --git a/files/14_0868_meaning.mp3 b/files/14_0868_meaning.mp3 deleted file mode 100644 index db5cf0a05..000000000 Binary files a/files/14_0868_meaning.mp3 and /dev/null differ diff --git a/files/14_0869.jpg b/files/14_0869.jpg deleted file mode 100644 index 8d6d925c9..000000000 Binary files a/files/14_0869.jpg and /dev/null differ diff --git a/files/14_0869.mp3 b/files/14_0869.mp3 deleted file mode 100644 index 9b44370e1..000000000 Binary files a/files/14_0869.mp3 and /dev/null differ diff --git a/files/14_0869_example.mp3 b/files/14_0869_example.mp3 deleted file mode 100644 index 8bf85dd2b..000000000 Binary files a/files/14_0869_example.mp3 and /dev/null differ diff --git a/files/14_0869_meaning.mp3 b/files/14_0869_meaning.mp3 deleted file mode 100644 index 8b49015fe..000000000 Binary files a/files/14_0869_meaning.mp3 and /dev/null differ diff --git a/files/14_0870.jpg b/files/14_0870.jpg deleted file mode 100644 index d0353e96b..000000000 Binary files a/files/14_0870.jpg and /dev/null differ diff --git a/files/14_0870.mp3 b/files/14_0870.mp3 deleted file mode 100644 index 2532e083b..000000000 Binary files a/files/14_0870.mp3 and /dev/null differ diff --git a/files/14_0870_example.mp3 b/files/14_0870_example.mp3 deleted file mode 100644 index bb9f7eb58..000000000 Binary files a/files/14_0870_example.mp3 and /dev/null differ diff --git a/files/14_0870_meaning.mp3 b/files/14_0870_meaning.mp3 deleted file mode 100644 index e9c3868f0..000000000 Binary files a/files/14_0870_meaning.mp3 and /dev/null differ diff --git a/files/14_0871.jpg b/files/14_0871.jpg deleted file mode 100644 index 74f949382..000000000 Binary files a/files/14_0871.jpg and /dev/null differ diff --git a/files/14_0871.mp3 b/files/14_0871.mp3 deleted file mode 100644 index 211caa0d9..000000000 Binary files a/files/14_0871.mp3 and /dev/null differ diff --git a/files/14_0871_example.mp3 b/files/14_0871_example.mp3 deleted file mode 100644 index bed5423e0..000000000 Binary files a/files/14_0871_example.mp3 and /dev/null differ diff --git a/files/14_0871_meaning.mp3 b/files/14_0871_meaning.mp3 deleted file mode 100644 index bfac3bcd0..000000000 Binary files a/files/14_0871_meaning.mp3 and /dev/null differ diff --git a/files/14_0872.jpg b/files/14_0872.jpg deleted file mode 100644 index 4d96c9974..000000000 Binary files a/files/14_0872.jpg and /dev/null differ diff --git a/files/14_0872.mp3 b/files/14_0872.mp3 deleted file mode 100644 index d9d0307d7..000000000 Binary files a/files/14_0872.mp3 and /dev/null differ diff --git a/files/14_0872_example.mp3 b/files/14_0872_example.mp3 deleted file mode 100644 index 06f49ee94..000000000 Binary files a/files/14_0872_example.mp3 and /dev/null differ diff --git a/files/14_0872_meaning.mp3 b/files/14_0872_meaning.mp3 deleted file mode 100644 index 30da21dac..000000000 Binary files a/files/14_0872_meaning.mp3 and /dev/null differ diff --git a/files/14_0873.jpg b/files/14_0873.jpg deleted file mode 100644 index fb6093cb7..000000000 Binary files a/files/14_0873.jpg and /dev/null differ diff --git a/files/14_0873.mp3 b/files/14_0873.mp3 deleted file mode 100644 index b282eded1..000000000 Binary files a/files/14_0873.mp3 and /dev/null differ diff --git a/files/14_0873_example.mp3 b/files/14_0873_example.mp3 deleted file mode 100644 index a599bfb6c..000000000 Binary files a/files/14_0873_example.mp3 and /dev/null differ diff --git a/files/14_0873_meaning.mp3 b/files/14_0873_meaning.mp3 deleted file mode 100644 index 1025a767d..000000000 Binary files a/files/14_0873_meaning.mp3 and /dev/null differ diff --git a/files/14_0874.jpg b/files/14_0874.jpg deleted file mode 100644 index 033deb4e6..000000000 Binary files a/files/14_0874.jpg and /dev/null differ diff --git a/files/14_0874.mp3 b/files/14_0874.mp3 deleted file mode 100644 index 7dbfb7eef..000000000 Binary files a/files/14_0874.mp3 and /dev/null differ diff --git a/files/14_0874_example.mp3 b/files/14_0874_example.mp3 deleted file mode 100644 index 4522aeab7..000000000 Binary files a/files/14_0874_example.mp3 and /dev/null differ diff --git a/files/14_0874_meaning.mp3 b/files/14_0874_meaning.mp3 deleted file mode 100644 index 6264c0f65..000000000 Binary files a/files/14_0874_meaning.mp3 and /dev/null differ diff --git a/files/14_0875.jpg b/files/14_0875.jpg deleted file mode 100644 index b38e7f382..000000000 Binary files a/files/14_0875.jpg and /dev/null differ diff --git a/files/14_0875.mp3 b/files/14_0875.mp3 deleted file mode 100644 index a5d7165cd..000000000 Binary files a/files/14_0875.mp3 and /dev/null differ diff --git a/files/14_0875_example.mp3 b/files/14_0875_example.mp3 deleted file mode 100644 index 9001154c4..000000000 Binary files a/files/14_0875_example.mp3 and /dev/null differ diff --git a/files/14_0875_meaning.mp3 b/files/14_0875_meaning.mp3 deleted file mode 100644 index 88cb37352..000000000 Binary files a/files/14_0875_meaning.mp3 and /dev/null differ diff --git a/files/14_0876.jpg b/files/14_0876.jpg deleted file mode 100644 index 8842e935e..000000000 Binary files a/files/14_0876.jpg and /dev/null differ diff --git a/files/14_0876.mp3 b/files/14_0876.mp3 deleted file mode 100644 index 3e2fba2d7..000000000 Binary files a/files/14_0876.mp3 and /dev/null differ diff --git a/files/14_0876_example.mp3 b/files/14_0876_example.mp3 deleted file mode 100644 index e1202e24e..000000000 Binary files a/files/14_0876_example.mp3 and /dev/null differ diff --git a/files/14_0876_meaning.mp3 b/files/14_0876_meaning.mp3 deleted file mode 100644 index 97480c991..000000000 Binary files a/files/14_0876_meaning.mp3 and /dev/null differ diff --git a/files/14_0877.jpg b/files/14_0877.jpg deleted file mode 100644 index 7a873e018..000000000 Binary files a/files/14_0877.jpg and /dev/null differ diff --git a/files/14_0877.mp3 b/files/14_0877.mp3 deleted file mode 100644 index 5bcdc7fef..000000000 Binary files a/files/14_0877.mp3 and /dev/null differ diff --git a/files/14_0877_example.mp3 b/files/14_0877_example.mp3 deleted file mode 100644 index 2941046d3..000000000 Binary files a/files/14_0877_example.mp3 and /dev/null differ diff --git a/files/14_0877_meaning.mp3 b/files/14_0877_meaning.mp3 deleted file mode 100644 index a1b5ef002..000000000 Binary files a/files/14_0877_meaning.mp3 and /dev/null differ diff --git a/files/14_0878.jpg b/files/14_0878.jpg deleted file mode 100644 index d29760f50..000000000 Binary files a/files/14_0878.jpg and /dev/null differ diff --git a/files/14_0878.mp3 b/files/14_0878.mp3 deleted file mode 100644 index 7a9f6c0b3..000000000 Binary files a/files/14_0878.mp3 and /dev/null differ diff --git a/files/14_0878_example.mp3 b/files/14_0878_example.mp3 deleted file mode 100644 index cc88cf6b2..000000000 Binary files a/files/14_0878_example.mp3 and /dev/null differ diff --git a/files/14_0878_meaning.mp3 b/files/14_0878_meaning.mp3 deleted file mode 100644 index 06094fd29..000000000 Binary files a/files/14_0878_meaning.mp3 and /dev/null differ diff --git a/files/14_0879.jpg b/files/14_0879.jpg deleted file mode 100644 index 3c2bb8272..000000000 Binary files a/files/14_0879.jpg and /dev/null differ diff --git a/files/14_0879.mp3 b/files/14_0879.mp3 deleted file mode 100644 index db48ac873..000000000 Binary files a/files/14_0879.mp3 and /dev/null differ diff --git a/files/14_0879_example.mp3 b/files/14_0879_example.mp3 deleted file mode 100644 index cefd3783b..000000000 Binary files a/files/14_0879_example.mp3 and /dev/null differ diff --git a/files/14_0879_meaning.mp3 b/files/14_0879_meaning.mp3 deleted file mode 100644 index 2c5d48727..000000000 Binary files a/files/14_0879_meaning.mp3 and /dev/null differ diff --git a/files/14_0880.jpg b/files/14_0880.jpg deleted file mode 100644 index 5c50aa324..000000000 Binary files a/files/14_0880.jpg and /dev/null differ diff --git a/files/14_0880.mp3 b/files/14_0880.mp3 deleted file mode 100644 index a7c9f89e0..000000000 Binary files a/files/14_0880.mp3 and /dev/null differ diff --git a/files/14_0880_example.mp3 b/files/14_0880_example.mp3 deleted file mode 100644 index 4f9fa4d74..000000000 Binary files a/files/14_0880_example.mp3 and /dev/null differ diff --git a/files/14_0880_meaning.mp3 b/files/14_0880_meaning.mp3 deleted file mode 100644 index 4266c848b..000000000 Binary files a/files/14_0880_meaning.mp3 and /dev/null differ diff --git a/files/14_1461.jpg b/files/14_1461.jpg deleted file mode 100644 index 1f0d82cef..000000000 Binary files a/files/14_1461.jpg and /dev/null differ diff --git a/files/14_1461.mp3 b/files/14_1461.mp3 deleted file mode 100644 index 7338e2c07..000000000 Binary files a/files/14_1461.mp3 and /dev/null differ diff --git a/files/14_1461_example.mp3 b/files/14_1461_example.mp3 deleted file mode 100644 index 3b83f6374..000000000 Binary files a/files/14_1461_example.mp3 and /dev/null differ diff --git a/files/14_1461_meaning.mp3 b/files/14_1461_meaning.mp3 deleted file mode 100644 index 353b6307f..000000000 Binary files a/files/14_1461_meaning.mp3 and /dev/null differ diff --git a/files/14_1462.jpg b/files/14_1462.jpg deleted file mode 100644 index 7bf3eb8b5..000000000 Binary files a/files/14_1462.jpg and /dev/null differ diff --git a/files/14_1462.mp3 b/files/14_1462.mp3 deleted file mode 100644 index 56c3bd9cc..000000000 Binary files a/files/14_1462.mp3 and /dev/null differ diff --git a/files/14_1462_example.mp3 b/files/14_1462_example.mp3 deleted file mode 100644 index 69ba22b53..000000000 Binary files a/files/14_1462_example.mp3 and /dev/null differ diff --git a/files/14_1462_meaning.mp3 b/files/14_1462_meaning.mp3 deleted file mode 100644 index d2a249168..000000000 Binary files a/files/14_1462_meaning.mp3 and /dev/null differ diff --git a/files/14_1463.jpg b/files/14_1463.jpg deleted file mode 100644 index 3e50b47ed..000000000 Binary files a/files/14_1463.jpg and /dev/null differ diff --git a/files/14_1463.mp3 b/files/14_1463.mp3 deleted file mode 100644 index 87d3c5743..000000000 Binary files a/files/14_1463.mp3 and /dev/null differ diff --git a/files/14_1463_example.mp3 b/files/14_1463_example.mp3 deleted file mode 100644 index d068e389d..000000000 Binary files a/files/14_1463_example.mp3 and /dev/null differ diff --git a/files/14_1463_meaning.mp3 b/files/14_1463_meaning.mp3 deleted file mode 100644 index d2523c12e..000000000 Binary files a/files/14_1463_meaning.mp3 and /dev/null differ diff --git a/files/14_1464.jpg b/files/14_1464.jpg deleted file mode 100644 index 3eed17f6e..000000000 Binary files a/files/14_1464.jpg and /dev/null differ diff --git a/files/14_1464.mp3 b/files/14_1464.mp3 deleted file mode 100644 index ed176bc03..000000000 Binary files a/files/14_1464.mp3 and /dev/null differ diff --git a/files/14_1464_example.mp3 b/files/14_1464_example.mp3 deleted file mode 100644 index 7eb5922e2..000000000 Binary files a/files/14_1464_example.mp3 and /dev/null differ diff --git a/files/14_1464_meaning.mp3 b/files/14_1464_meaning.mp3 deleted file mode 100644 index 8272246b9..000000000 Binary files a/files/14_1464_meaning.mp3 and /dev/null differ diff --git a/files/14_1465.jpg b/files/14_1465.jpg deleted file mode 100644 index e7fc56ca6..000000000 Binary files a/files/14_1465.jpg and /dev/null differ diff --git a/files/14_1465.mp3 b/files/14_1465.mp3 deleted file mode 100644 index 1c046d02a..000000000 Binary files a/files/14_1465.mp3 and /dev/null differ diff --git a/files/14_1465_example.mp3 b/files/14_1465_example.mp3 deleted file mode 100644 index 6be76b1d9..000000000 Binary files a/files/14_1465_example.mp3 and /dev/null differ diff --git a/files/14_1465_meaning.mp3 b/files/14_1465_meaning.mp3 deleted file mode 100644 index b2d9ee8a1..000000000 Binary files a/files/14_1465_meaning.mp3 and /dev/null differ diff --git a/files/14_1466.jpg b/files/14_1466.jpg deleted file mode 100644 index cb85d3674..000000000 Binary files a/files/14_1466.jpg and /dev/null differ diff --git a/files/14_1466.mp3 b/files/14_1466.mp3 deleted file mode 100644 index 20c585210..000000000 Binary files a/files/14_1466.mp3 and /dev/null differ diff --git a/files/14_1466_example.mp3 b/files/14_1466_example.mp3 deleted file mode 100644 index e7642ec07..000000000 Binary files a/files/14_1466_example.mp3 and /dev/null differ diff --git a/files/14_1466_meaning.mp3 b/files/14_1466_meaning.mp3 deleted file mode 100644 index 25f40e457..000000000 Binary files a/files/14_1466_meaning.mp3 and /dev/null differ diff --git a/files/14_1467.jpg b/files/14_1467.jpg deleted file mode 100644 index 28ccd595c..000000000 Binary files a/files/14_1467.jpg and /dev/null differ diff --git a/files/14_1467.mp3 b/files/14_1467.mp3 deleted file mode 100644 index 8b26b3956..000000000 Binary files a/files/14_1467.mp3 and /dev/null differ diff --git a/files/14_1467_example.mp3 b/files/14_1467_example.mp3 deleted file mode 100644 index f638fa89b..000000000 Binary files a/files/14_1467_example.mp3 and /dev/null differ diff --git a/files/14_1467_meaning.mp3 b/files/14_1467_meaning.mp3 deleted file mode 100644 index 5858ade05..000000000 Binary files a/files/14_1467_meaning.mp3 and /dev/null differ diff --git a/files/14_1468.jpg b/files/14_1468.jpg deleted file mode 100644 index 833a97ebd..000000000 Binary files a/files/14_1468.jpg and /dev/null differ diff --git a/files/14_1468.mp3 b/files/14_1468.mp3 deleted file mode 100644 index 1715ca88f..000000000 Binary files a/files/14_1468.mp3 and /dev/null differ diff --git a/files/14_1468_example.mp3 b/files/14_1468_example.mp3 deleted file mode 100644 index 477d29ce0..000000000 Binary files a/files/14_1468_example.mp3 and /dev/null differ diff --git a/files/14_1468_meaning.mp3 b/files/14_1468_meaning.mp3 deleted file mode 100644 index 0f15007f6..000000000 Binary files a/files/14_1468_meaning.mp3 and /dev/null differ diff --git a/files/14_1469.jpg b/files/14_1469.jpg deleted file mode 100644 index 7dd05537c..000000000 Binary files a/files/14_1469.jpg and /dev/null differ diff --git a/files/14_1469.mp3 b/files/14_1469.mp3 deleted file mode 100644 index 9291e0189..000000000 Binary files a/files/14_1469.mp3 and /dev/null differ diff --git a/files/14_1469_example.mp3 b/files/14_1469_example.mp3 deleted file mode 100644 index c18f92163..000000000 Binary files a/files/14_1469_example.mp3 and /dev/null differ diff --git a/files/14_1469_meaning.mp3 b/files/14_1469_meaning.mp3 deleted file mode 100644 index cf4fcadeb..000000000 Binary files a/files/14_1469_meaning.mp3 and /dev/null differ diff --git a/files/14_1470.jpg b/files/14_1470.jpg deleted file mode 100644 index e5b2ef25e..000000000 Binary files a/files/14_1470.jpg and /dev/null differ diff --git a/files/14_1470.mp3 b/files/14_1470.mp3 deleted file mode 100644 index 2eb97355d..000000000 Binary files a/files/14_1470.mp3 and /dev/null differ diff --git a/files/14_1470_example.mp3 b/files/14_1470_example.mp3 deleted file mode 100644 index 789feae4c..000000000 Binary files a/files/14_1470_example.mp3 and /dev/null differ diff --git a/files/14_1470_meaning.mp3 b/files/14_1470_meaning.mp3 deleted file mode 100644 index 1b7398843..000000000 Binary files a/files/14_1470_meaning.mp3 and /dev/null differ diff --git a/files/14_1471.jpg b/files/14_1471.jpg deleted file mode 100644 index 36eea9413..000000000 Binary files a/files/14_1471.jpg and /dev/null differ diff --git a/files/14_1471.mp3 b/files/14_1471.mp3 deleted file mode 100644 index 71bfd34c1..000000000 Binary files a/files/14_1471.mp3 and /dev/null differ diff --git a/files/14_1471_example.mp3 b/files/14_1471_example.mp3 deleted file mode 100644 index 988f9d1d5..000000000 Binary files a/files/14_1471_example.mp3 and /dev/null differ diff --git a/files/14_1471_meaning.mp3 b/files/14_1471_meaning.mp3 deleted file mode 100644 index 69c20cf0f..000000000 Binary files a/files/14_1471_meaning.mp3 and /dev/null differ diff --git a/files/14_1472.jpg b/files/14_1472.jpg deleted file mode 100644 index ed7daa856..000000000 Binary files a/files/14_1472.jpg and /dev/null differ diff --git a/files/14_1472.mp3 b/files/14_1472.mp3 deleted file mode 100644 index dc6e05e18..000000000 Binary files a/files/14_1472.mp3 and /dev/null differ diff --git a/files/14_1472_example.mp3 b/files/14_1472_example.mp3 deleted file mode 100644 index 20e1f1de5..000000000 Binary files a/files/14_1472_example.mp3 and /dev/null differ diff --git a/files/14_1472_meaning.mp3 b/files/14_1472_meaning.mp3 deleted file mode 100644 index 4146ec3f0..000000000 Binary files a/files/14_1472_meaning.mp3 and /dev/null differ diff --git a/files/14_1473.jpg b/files/14_1473.jpg deleted file mode 100644 index 631d8e1bc..000000000 Binary files a/files/14_1473.jpg and /dev/null differ diff --git a/files/14_1473.mp3 b/files/14_1473.mp3 deleted file mode 100644 index 21ec3ed44..000000000 Binary files a/files/14_1473.mp3 and /dev/null differ diff --git a/files/14_1473_example.mp3 b/files/14_1473_example.mp3 deleted file mode 100644 index eabe7a3dd..000000000 Binary files a/files/14_1473_example.mp3 and /dev/null differ diff --git a/files/14_1473_meaning.mp3 b/files/14_1473_meaning.mp3 deleted file mode 100644 index 80708703f..000000000 Binary files a/files/14_1473_meaning.mp3 and /dev/null differ diff --git a/files/14_1474.jpg b/files/14_1474.jpg deleted file mode 100644 index e428429d2..000000000 Binary files a/files/14_1474.jpg and /dev/null differ diff --git a/files/14_1474.mp3 b/files/14_1474.mp3 deleted file mode 100644 index 1badaa428..000000000 Binary files a/files/14_1474.mp3 and /dev/null differ diff --git a/files/14_1474_example.mp3 b/files/14_1474_example.mp3 deleted file mode 100644 index 1e17df686..000000000 Binary files a/files/14_1474_example.mp3 and /dev/null differ diff --git a/files/14_1474_meaning.mp3 b/files/14_1474_meaning.mp3 deleted file mode 100644 index 859247b1b..000000000 Binary files a/files/14_1474_meaning.mp3 and /dev/null differ diff --git a/files/14_1475.jpg b/files/14_1475.jpg deleted file mode 100644 index 75e132096..000000000 Binary files a/files/14_1475.jpg and /dev/null differ diff --git a/files/14_1475.mp3 b/files/14_1475.mp3 deleted file mode 100644 index 16a014558..000000000 Binary files a/files/14_1475.mp3 and /dev/null differ diff --git a/files/14_1475_example.mp3 b/files/14_1475_example.mp3 deleted file mode 100644 index 99f3dd9a4..000000000 Binary files a/files/14_1475_example.mp3 and /dev/null differ diff --git a/files/14_1475_meaning.mp3 b/files/14_1475_meaning.mp3 deleted file mode 100644 index 98af5237a..000000000 Binary files a/files/14_1475_meaning.mp3 and /dev/null differ diff --git a/files/14_1476.jpg b/files/14_1476.jpg deleted file mode 100644 index 91fa0ee09..000000000 Binary files a/files/14_1476.jpg and /dev/null differ diff --git a/files/14_1476.mp3 b/files/14_1476.mp3 deleted file mode 100644 index 5179a270e..000000000 Binary files a/files/14_1476.mp3 and /dev/null differ diff --git a/files/14_1476_example.mp3 b/files/14_1476_example.mp3 deleted file mode 100644 index a901e6394..000000000 Binary files a/files/14_1476_example.mp3 and /dev/null differ diff --git a/files/14_1476_meaning.mp3 b/files/14_1476_meaning.mp3 deleted file mode 100644 index f61982f58..000000000 Binary files a/files/14_1476_meaning.mp3 and /dev/null differ diff --git a/files/14_1477.jpg b/files/14_1477.jpg deleted file mode 100644 index 96606e76b..000000000 Binary files a/files/14_1477.jpg and /dev/null differ diff --git a/files/14_1477.mp3 b/files/14_1477.mp3 deleted file mode 100644 index ff6655ce0..000000000 Binary files a/files/14_1477.mp3 and /dev/null differ diff --git a/files/14_1477_example.mp3 b/files/14_1477_example.mp3 deleted file mode 100644 index ca688885f..000000000 Binary files a/files/14_1477_example.mp3 and /dev/null differ diff --git a/files/14_1477_meaning.mp3 b/files/14_1477_meaning.mp3 deleted file mode 100644 index c3617a5af..000000000 Binary files a/files/14_1477_meaning.mp3 and /dev/null differ diff --git a/files/14_1478.jpg b/files/14_1478.jpg deleted file mode 100644 index 08c85d650..000000000 Binary files a/files/14_1478.jpg and /dev/null differ diff --git a/files/14_1478.mp3 b/files/14_1478.mp3 deleted file mode 100644 index a1ee0a63b..000000000 Binary files a/files/14_1478.mp3 and /dev/null differ diff --git a/files/14_1478_example.mp3 b/files/14_1478_example.mp3 deleted file mode 100644 index a9cda0b5f..000000000 Binary files a/files/14_1478_example.mp3 and /dev/null differ diff --git a/files/14_1478_meaning.mp3 b/files/14_1478_meaning.mp3 deleted file mode 100644 index f3494c9cf..000000000 Binary files a/files/14_1478_meaning.mp3 and /dev/null differ diff --git a/files/14_1479.jpg b/files/14_1479.jpg deleted file mode 100644 index d4ceaa1c0..000000000 Binary files a/files/14_1479.jpg and /dev/null differ diff --git a/files/14_1479.mp3 b/files/14_1479.mp3 deleted file mode 100644 index 1c01437d1..000000000 Binary files a/files/14_1479.mp3 and /dev/null differ diff --git a/files/14_1479_example.mp3 b/files/14_1479_example.mp3 deleted file mode 100644 index 40124f6f3..000000000 Binary files a/files/14_1479_example.mp3 and /dev/null differ diff --git a/files/14_1479_meaning.mp3 b/files/14_1479_meaning.mp3 deleted file mode 100644 index a938d8490..000000000 Binary files a/files/14_1479_meaning.mp3 and /dev/null differ diff --git a/files/14_1480.jpg b/files/14_1480.jpg deleted file mode 100644 index 3b9cf3d8b..000000000 Binary files a/files/14_1480.jpg and /dev/null differ diff --git a/files/14_1480.mp3 b/files/14_1480.mp3 deleted file mode 100644 index 4865d4a9a..000000000 Binary files a/files/14_1480.mp3 and /dev/null differ diff --git a/files/14_1480_example.mp3 b/files/14_1480_example.mp3 deleted file mode 100644 index 205d60c53..000000000 Binary files a/files/14_1480_example.mp3 and /dev/null differ diff --git a/files/14_1480_meaning.mp3 b/files/14_1480_meaning.mp3 deleted file mode 100644 index 49aa797ee..000000000 Binary files a/files/14_1480_meaning.mp3 and /dev/null differ diff --git a/files/14_2061.jpg b/files/14_2061.jpg deleted file mode 100644 index 108eef2c6..000000000 Binary files a/files/14_2061.jpg and /dev/null differ diff --git a/files/14_2061.mp3 b/files/14_2061.mp3 deleted file mode 100644 index 4742fcfa9..000000000 Binary files a/files/14_2061.mp3 and /dev/null differ diff --git a/files/14_2061_example.mp3 b/files/14_2061_example.mp3 deleted file mode 100644 index e88f8424a..000000000 Binary files a/files/14_2061_example.mp3 and /dev/null differ diff --git a/files/14_2061_meaning.mp3 b/files/14_2061_meaning.mp3 deleted file mode 100644 index e7489e6cc..000000000 Binary files a/files/14_2061_meaning.mp3 and /dev/null differ diff --git a/files/14_2062.jpg b/files/14_2062.jpg deleted file mode 100644 index 8b27b3f09..000000000 Binary files a/files/14_2062.jpg and /dev/null differ diff --git a/files/14_2062.mp3 b/files/14_2062.mp3 deleted file mode 100644 index 4962e5574..000000000 Binary files a/files/14_2062.mp3 and /dev/null differ diff --git a/files/14_2062_example.mp3 b/files/14_2062_example.mp3 deleted file mode 100644 index a3486baa0..000000000 Binary files a/files/14_2062_example.mp3 and /dev/null differ diff --git a/files/14_2062_meaning.mp3 b/files/14_2062_meaning.mp3 deleted file mode 100644 index 67072ec8e..000000000 Binary files a/files/14_2062_meaning.mp3 and /dev/null differ diff --git a/files/14_2063.jpg b/files/14_2063.jpg deleted file mode 100644 index a0e580fd6..000000000 Binary files a/files/14_2063.jpg and /dev/null differ diff --git a/files/14_2063.mp3 b/files/14_2063.mp3 deleted file mode 100644 index bc960e603..000000000 Binary files a/files/14_2063.mp3 and /dev/null differ diff --git a/files/14_2063_example.mp3 b/files/14_2063_example.mp3 deleted file mode 100644 index a92bd5e34..000000000 Binary files a/files/14_2063_example.mp3 and /dev/null differ diff --git a/files/14_2063_meaning.mp3 b/files/14_2063_meaning.mp3 deleted file mode 100644 index 7d574a1e2..000000000 Binary files a/files/14_2063_meaning.mp3 and /dev/null differ diff --git a/files/14_2064.jpg b/files/14_2064.jpg deleted file mode 100644 index 9338b87c8..000000000 Binary files a/files/14_2064.jpg and /dev/null differ diff --git a/files/14_2064.mp3 b/files/14_2064.mp3 deleted file mode 100644 index a897b1b4a..000000000 Binary files a/files/14_2064.mp3 and /dev/null differ diff --git a/files/14_2064_example.mp3 b/files/14_2064_example.mp3 deleted file mode 100644 index 77cb1250a..000000000 Binary files a/files/14_2064_example.mp3 and /dev/null differ diff --git a/files/14_2064_meaning.mp3 b/files/14_2064_meaning.mp3 deleted file mode 100644 index 4384875ae..000000000 Binary files a/files/14_2064_meaning.mp3 and /dev/null differ diff --git a/files/14_2065.jpg b/files/14_2065.jpg deleted file mode 100644 index 4fedbc303..000000000 Binary files a/files/14_2065.jpg and /dev/null differ diff --git a/files/14_2065.mp3 b/files/14_2065.mp3 deleted file mode 100644 index afeb5ef2a..000000000 Binary files a/files/14_2065.mp3 and /dev/null differ diff --git a/files/14_2065_example.mp3 b/files/14_2065_example.mp3 deleted file mode 100644 index bd888a9db..000000000 Binary files a/files/14_2065_example.mp3 and /dev/null differ diff --git a/files/14_2065_meaning.mp3 b/files/14_2065_meaning.mp3 deleted file mode 100644 index b61b288c4..000000000 Binary files a/files/14_2065_meaning.mp3 and /dev/null differ diff --git a/files/14_2066.jpg b/files/14_2066.jpg deleted file mode 100644 index d3e80d552..000000000 Binary files a/files/14_2066.jpg and /dev/null differ diff --git a/files/14_2066.mp3 b/files/14_2066.mp3 deleted file mode 100644 index 6360e5f42..000000000 Binary files a/files/14_2066.mp3 and /dev/null differ diff --git a/files/14_2066_example.mp3 b/files/14_2066_example.mp3 deleted file mode 100644 index 2f6206387..000000000 Binary files a/files/14_2066_example.mp3 and /dev/null differ diff --git a/files/14_2066_meaning.mp3 b/files/14_2066_meaning.mp3 deleted file mode 100644 index 8bc33094b..000000000 Binary files a/files/14_2066_meaning.mp3 and /dev/null differ diff --git a/files/14_2067.jpg b/files/14_2067.jpg deleted file mode 100644 index 88459b570..000000000 Binary files a/files/14_2067.jpg and /dev/null differ diff --git a/files/14_2067.mp3 b/files/14_2067.mp3 deleted file mode 100644 index d5c30b54d..000000000 Binary files a/files/14_2067.mp3 and /dev/null differ diff --git a/files/14_2067_example.mp3 b/files/14_2067_example.mp3 deleted file mode 100644 index 55fc61d4a..000000000 Binary files a/files/14_2067_example.mp3 and /dev/null differ diff --git a/files/14_2067_meaning.mp3 b/files/14_2067_meaning.mp3 deleted file mode 100644 index 6c46d9b04..000000000 Binary files a/files/14_2067_meaning.mp3 and /dev/null differ diff --git a/files/14_2068.jpg b/files/14_2068.jpg deleted file mode 100644 index 3f6c0fe15..000000000 Binary files a/files/14_2068.jpg and /dev/null differ diff --git a/files/14_2068.mp3 b/files/14_2068.mp3 deleted file mode 100644 index 3044e3808..000000000 Binary files a/files/14_2068.mp3 and /dev/null differ diff --git a/files/14_2068_example.mp3 b/files/14_2068_example.mp3 deleted file mode 100644 index 311b3826e..000000000 Binary files a/files/14_2068_example.mp3 and /dev/null differ diff --git a/files/14_2068_meaning.mp3 b/files/14_2068_meaning.mp3 deleted file mode 100644 index 774ceb88c..000000000 Binary files a/files/14_2068_meaning.mp3 and /dev/null differ diff --git a/files/14_2069.jpg b/files/14_2069.jpg deleted file mode 100644 index 7b6fccd02..000000000 Binary files a/files/14_2069.jpg and /dev/null differ diff --git a/files/14_2069.mp3 b/files/14_2069.mp3 deleted file mode 100644 index e4c1bcde3..000000000 Binary files a/files/14_2069.mp3 and /dev/null differ diff --git a/files/14_2069_example.mp3 b/files/14_2069_example.mp3 deleted file mode 100644 index d9886eefc..000000000 Binary files a/files/14_2069_example.mp3 and /dev/null differ diff --git a/files/14_2069_meaning.mp3 b/files/14_2069_meaning.mp3 deleted file mode 100644 index ff42da399..000000000 Binary files a/files/14_2069_meaning.mp3 and /dev/null differ diff --git a/files/14_2070.jpg b/files/14_2070.jpg deleted file mode 100644 index b20df2785..000000000 Binary files a/files/14_2070.jpg and /dev/null differ diff --git a/files/14_2070.mp3 b/files/14_2070.mp3 deleted file mode 100644 index 4701246dc..000000000 Binary files a/files/14_2070.mp3 and /dev/null differ diff --git a/files/14_2070_example.mp3 b/files/14_2070_example.mp3 deleted file mode 100644 index 2f63ab35a..000000000 Binary files a/files/14_2070_example.mp3 and /dev/null differ diff --git a/files/14_2070_meaning.mp3 b/files/14_2070_meaning.mp3 deleted file mode 100644 index 45432f022..000000000 Binary files a/files/14_2070_meaning.mp3 and /dev/null differ diff --git a/files/14_2071.jpg b/files/14_2071.jpg deleted file mode 100644 index d087a31af..000000000 Binary files a/files/14_2071.jpg and /dev/null differ diff --git a/files/14_2071.mp3 b/files/14_2071.mp3 deleted file mode 100644 index f5e0e723c..000000000 Binary files a/files/14_2071.mp3 and /dev/null differ diff --git a/files/14_2071_example.mp3 b/files/14_2071_example.mp3 deleted file mode 100644 index bf7a4054a..000000000 Binary files a/files/14_2071_example.mp3 and /dev/null differ diff --git a/files/14_2071_meaning.mp3 b/files/14_2071_meaning.mp3 deleted file mode 100644 index d26ff663c..000000000 Binary files a/files/14_2071_meaning.mp3 and /dev/null differ diff --git a/files/14_2072.jpg b/files/14_2072.jpg deleted file mode 100644 index d427138b1..000000000 Binary files a/files/14_2072.jpg and /dev/null differ diff --git a/files/14_2072.mp3 b/files/14_2072.mp3 deleted file mode 100644 index 580389ff2..000000000 Binary files a/files/14_2072.mp3 and /dev/null differ diff --git a/files/14_2072_example.mp3 b/files/14_2072_example.mp3 deleted file mode 100644 index 2628a00b7..000000000 Binary files a/files/14_2072_example.mp3 and /dev/null differ diff --git a/files/14_2072_meaning.mp3 b/files/14_2072_meaning.mp3 deleted file mode 100644 index 930f2ff4f..000000000 Binary files a/files/14_2072_meaning.mp3 and /dev/null differ diff --git a/files/14_2073.jpg b/files/14_2073.jpg deleted file mode 100644 index d7b419ee2..000000000 Binary files a/files/14_2073.jpg and /dev/null differ diff --git a/files/14_2073.mp3 b/files/14_2073.mp3 deleted file mode 100644 index 0421b0e6f..000000000 Binary files a/files/14_2073.mp3 and /dev/null differ diff --git a/files/14_2073_example.mp3 b/files/14_2073_example.mp3 deleted file mode 100644 index 7e758428f..000000000 Binary files a/files/14_2073_example.mp3 and /dev/null differ diff --git a/files/14_2073_meaning.mp3 b/files/14_2073_meaning.mp3 deleted file mode 100644 index 2eb40a9dc..000000000 Binary files a/files/14_2073_meaning.mp3 and /dev/null differ diff --git a/files/14_2074.jpg b/files/14_2074.jpg deleted file mode 100644 index aa3640bec..000000000 Binary files a/files/14_2074.jpg and /dev/null differ diff --git a/files/14_2074.mp3 b/files/14_2074.mp3 deleted file mode 100644 index 5b5af1ceb..000000000 Binary files a/files/14_2074.mp3 and /dev/null differ diff --git a/files/14_2074_example.mp3 b/files/14_2074_example.mp3 deleted file mode 100644 index 201e7e323..000000000 Binary files a/files/14_2074_example.mp3 and /dev/null differ diff --git a/files/14_2074_meaning.mp3 b/files/14_2074_meaning.mp3 deleted file mode 100644 index e2c8e5238..000000000 Binary files a/files/14_2074_meaning.mp3 and /dev/null differ diff --git a/files/14_2075.jpg b/files/14_2075.jpg deleted file mode 100644 index 9813df5c5..000000000 Binary files a/files/14_2075.jpg and /dev/null differ diff --git a/files/14_2075.mp3 b/files/14_2075.mp3 deleted file mode 100644 index 27a3421e7..000000000 Binary files a/files/14_2075.mp3 and /dev/null differ diff --git a/files/14_2075_example.mp3 b/files/14_2075_example.mp3 deleted file mode 100644 index 9e40114a1..000000000 Binary files a/files/14_2075_example.mp3 and /dev/null differ diff --git a/files/14_2075_meaning.mp3 b/files/14_2075_meaning.mp3 deleted file mode 100644 index f9326cd24..000000000 Binary files a/files/14_2075_meaning.mp3 and /dev/null differ diff --git a/files/14_2076.jpg b/files/14_2076.jpg deleted file mode 100644 index cd17a7987..000000000 Binary files a/files/14_2076.jpg and /dev/null differ diff --git a/files/14_2076.mp3 b/files/14_2076.mp3 deleted file mode 100644 index 5cf29aa68..000000000 Binary files a/files/14_2076.mp3 and /dev/null differ diff --git a/files/14_2076_example.mp3 b/files/14_2076_example.mp3 deleted file mode 100644 index 1fa3d4202..000000000 Binary files a/files/14_2076_example.mp3 and /dev/null differ diff --git a/files/14_2076_meaning.mp3 b/files/14_2076_meaning.mp3 deleted file mode 100644 index 398b209d7..000000000 Binary files a/files/14_2076_meaning.mp3 and /dev/null differ diff --git a/files/14_2077.jpg b/files/14_2077.jpg deleted file mode 100644 index a625d1bb7..000000000 Binary files a/files/14_2077.jpg and /dev/null differ diff --git a/files/14_2077.mp3 b/files/14_2077.mp3 deleted file mode 100644 index dbf611fa7..000000000 Binary files a/files/14_2077.mp3 and /dev/null differ diff --git a/files/14_2077_example.mp3 b/files/14_2077_example.mp3 deleted file mode 100644 index 319892b2d..000000000 Binary files a/files/14_2077_example.mp3 and /dev/null differ diff --git a/files/14_2077_meaning.mp3 b/files/14_2077_meaning.mp3 deleted file mode 100644 index 4b553b988..000000000 Binary files a/files/14_2077_meaning.mp3 and /dev/null differ diff --git a/files/14_2078.jpg b/files/14_2078.jpg deleted file mode 100644 index f7008f63f..000000000 Binary files a/files/14_2078.jpg and /dev/null differ diff --git a/files/14_2078.mp3 b/files/14_2078.mp3 deleted file mode 100644 index 48a48a586..000000000 Binary files a/files/14_2078.mp3 and /dev/null differ diff --git a/files/14_2078_example.mp3 b/files/14_2078_example.mp3 deleted file mode 100644 index 5c46481e7..000000000 Binary files a/files/14_2078_example.mp3 and /dev/null differ diff --git a/files/14_2078_meaning.mp3 b/files/14_2078_meaning.mp3 deleted file mode 100644 index 8f0554c0f..000000000 Binary files a/files/14_2078_meaning.mp3 and /dev/null differ diff --git a/files/14_2079.jpg b/files/14_2079.jpg deleted file mode 100644 index 1c65df527..000000000 Binary files a/files/14_2079.jpg and /dev/null differ diff --git a/files/14_2079.mp3 b/files/14_2079.mp3 deleted file mode 100644 index 663891bad..000000000 Binary files a/files/14_2079.mp3 and /dev/null differ diff --git a/files/14_2079_example.mp3 b/files/14_2079_example.mp3 deleted file mode 100644 index 9986ca09b..000000000 Binary files a/files/14_2079_example.mp3 and /dev/null differ diff --git a/files/14_2079_meaning.mp3 b/files/14_2079_meaning.mp3 deleted file mode 100644 index 7a772f2fa..000000000 Binary files a/files/14_2079_meaning.mp3 and /dev/null differ diff --git a/files/14_2080.jpg b/files/14_2080.jpg deleted file mode 100644 index 07991d226..000000000 Binary files a/files/14_2080.jpg and /dev/null differ diff --git a/files/14_2080.mp3 b/files/14_2080.mp3 deleted file mode 100644 index b0a0d32c1..000000000 Binary files a/files/14_2080.mp3 and /dev/null differ diff --git a/files/14_2080_example.mp3 b/files/14_2080_example.mp3 deleted file mode 100644 index 86a656c3d..000000000 Binary files a/files/14_2080_example.mp3 and /dev/null differ diff --git a/files/14_2080_meaning.mp3 b/files/14_2080_meaning.mp3 deleted file mode 100644 index 04b2a712f..000000000 Binary files a/files/14_2080_meaning.mp3 and /dev/null differ diff --git a/files/14_2661.jpg b/files/14_2661.jpg deleted file mode 100644 index 1a89c9a62..000000000 Binary files a/files/14_2661.jpg and /dev/null differ diff --git a/files/14_2661.mp3 b/files/14_2661.mp3 deleted file mode 100644 index 3779a540b..000000000 Binary files a/files/14_2661.mp3 and /dev/null differ diff --git a/files/14_2661_example.mp3 b/files/14_2661_example.mp3 deleted file mode 100644 index b03e0f6f6..000000000 Binary files a/files/14_2661_example.mp3 and /dev/null differ diff --git a/files/14_2661_meaning.mp3 b/files/14_2661_meaning.mp3 deleted file mode 100644 index 12984b776..000000000 Binary files a/files/14_2661_meaning.mp3 and /dev/null differ diff --git a/files/14_2662.jpg b/files/14_2662.jpg deleted file mode 100644 index 21eb05966..000000000 Binary files a/files/14_2662.jpg and /dev/null differ diff --git a/files/14_2662.mp3 b/files/14_2662.mp3 deleted file mode 100644 index 0889434b2..000000000 Binary files a/files/14_2662.mp3 and /dev/null differ diff --git a/files/14_2662_example.mp3 b/files/14_2662_example.mp3 deleted file mode 100644 index 2db872d08..000000000 Binary files a/files/14_2662_example.mp3 and /dev/null differ diff --git a/files/14_2662_meaning.mp3 b/files/14_2662_meaning.mp3 deleted file mode 100644 index 7a5fcebb0..000000000 Binary files a/files/14_2662_meaning.mp3 and /dev/null differ diff --git a/files/14_2663.jpg b/files/14_2663.jpg deleted file mode 100644 index e45b6a63c..000000000 Binary files a/files/14_2663.jpg and /dev/null differ diff --git a/files/14_2663.mp3 b/files/14_2663.mp3 deleted file mode 100644 index ba5ccaffa..000000000 Binary files a/files/14_2663.mp3 and /dev/null differ diff --git a/files/14_2663_example.mp3 b/files/14_2663_example.mp3 deleted file mode 100644 index 608f9d503..000000000 Binary files a/files/14_2663_example.mp3 and /dev/null differ diff --git a/files/14_2663_meaning.mp3 b/files/14_2663_meaning.mp3 deleted file mode 100644 index 59a037a64..000000000 Binary files a/files/14_2663_meaning.mp3 and /dev/null differ diff --git a/files/14_2664.jpg b/files/14_2664.jpg deleted file mode 100644 index f31fbb343..000000000 Binary files a/files/14_2664.jpg and /dev/null differ diff --git a/files/14_2664.mp3 b/files/14_2664.mp3 deleted file mode 100644 index 6775464c4..000000000 Binary files a/files/14_2664.mp3 and /dev/null differ diff --git a/files/14_2664_example.mp3 b/files/14_2664_example.mp3 deleted file mode 100644 index 9f915bdbe..000000000 Binary files a/files/14_2664_example.mp3 and /dev/null differ diff --git a/files/14_2664_meaning.mp3 b/files/14_2664_meaning.mp3 deleted file mode 100644 index a1ea563b8..000000000 Binary files a/files/14_2664_meaning.mp3 and /dev/null differ diff --git a/files/14_2665.jpg b/files/14_2665.jpg deleted file mode 100644 index 09b2b2992..000000000 Binary files a/files/14_2665.jpg and /dev/null differ diff --git a/files/14_2665.mp3 b/files/14_2665.mp3 deleted file mode 100644 index 5918f74fb..000000000 Binary files a/files/14_2665.mp3 and /dev/null differ diff --git a/files/14_2665_example.mp3 b/files/14_2665_example.mp3 deleted file mode 100644 index e5806b02e..000000000 Binary files a/files/14_2665_example.mp3 and /dev/null differ diff --git a/files/14_2665_meaning.mp3 b/files/14_2665_meaning.mp3 deleted file mode 100644 index f6d56f767..000000000 Binary files a/files/14_2665_meaning.mp3 and /dev/null differ diff --git a/files/14_2666.jpg b/files/14_2666.jpg deleted file mode 100644 index 92acf0950..000000000 Binary files a/files/14_2666.jpg and /dev/null differ diff --git a/files/14_2666.mp3 b/files/14_2666.mp3 deleted file mode 100644 index ec7a20d6d..000000000 Binary files a/files/14_2666.mp3 and /dev/null differ diff --git a/files/14_2666_example.mp3 b/files/14_2666_example.mp3 deleted file mode 100644 index 2c8312e1c..000000000 Binary files a/files/14_2666_example.mp3 and /dev/null differ diff --git a/files/14_2666_meaning.mp3 b/files/14_2666_meaning.mp3 deleted file mode 100644 index acb67d494..000000000 Binary files a/files/14_2666_meaning.mp3 and /dev/null differ diff --git a/files/14_2667.jpg b/files/14_2667.jpg deleted file mode 100644 index 1303e4f0a..000000000 Binary files a/files/14_2667.jpg and /dev/null differ diff --git a/files/14_2667.mp3 b/files/14_2667.mp3 deleted file mode 100644 index fc554192d..000000000 Binary files a/files/14_2667.mp3 and /dev/null differ diff --git a/files/14_2667_example.mp3 b/files/14_2667_example.mp3 deleted file mode 100644 index d2bb71be5..000000000 Binary files a/files/14_2667_example.mp3 and /dev/null differ diff --git a/files/14_2667_meaning.mp3 b/files/14_2667_meaning.mp3 deleted file mode 100644 index f78d9793a..000000000 Binary files a/files/14_2667_meaning.mp3 and /dev/null differ diff --git a/files/14_2668.jpg b/files/14_2668.jpg deleted file mode 100644 index eaac08f46..000000000 Binary files a/files/14_2668.jpg and /dev/null differ diff --git a/files/14_2668.mp3 b/files/14_2668.mp3 deleted file mode 100644 index 72991a919..000000000 Binary files a/files/14_2668.mp3 and /dev/null differ diff --git a/files/14_2668_example.mp3 b/files/14_2668_example.mp3 deleted file mode 100644 index 008fa61ef..000000000 Binary files a/files/14_2668_example.mp3 and /dev/null differ diff --git a/files/14_2668_meaning.mp3 b/files/14_2668_meaning.mp3 deleted file mode 100644 index 24666d8d1..000000000 Binary files a/files/14_2668_meaning.mp3 and /dev/null differ diff --git a/files/14_2669.jpg b/files/14_2669.jpg deleted file mode 100644 index f729f2158..000000000 Binary files a/files/14_2669.jpg and /dev/null differ diff --git a/files/14_2669.mp3 b/files/14_2669.mp3 deleted file mode 100644 index f7ad86d9c..000000000 Binary files a/files/14_2669.mp3 and /dev/null differ diff --git a/files/14_2669_example.mp3 b/files/14_2669_example.mp3 deleted file mode 100644 index 2bd4943fb..000000000 Binary files a/files/14_2669_example.mp3 and /dev/null differ diff --git a/files/14_2669_meaning.mp3 b/files/14_2669_meaning.mp3 deleted file mode 100644 index e51129db3..000000000 Binary files a/files/14_2669_meaning.mp3 and /dev/null differ diff --git a/files/14_2670.jpg b/files/14_2670.jpg deleted file mode 100644 index d744bb1f7..000000000 Binary files a/files/14_2670.jpg and /dev/null differ diff --git a/files/14_2670.mp3 b/files/14_2670.mp3 deleted file mode 100644 index d1fad5e00..000000000 Binary files a/files/14_2670.mp3 and /dev/null differ diff --git a/files/14_2670_example.mp3 b/files/14_2670_example.mp3 deleted file mode 100644 index 415d0b2aa..000000000 Binary files a/files/14_2670_example.mp3 and /dev/null differ diff --git a/files/14_2670_meaning.mp3 b/files/14_2670_meaning.mp3 deleted file mode 100644 index 531eeb940..000000000 Binary files a/files/14_2670_meaning.mp3 and /dev/null differ diff --git a/files/14_2671.jpg b/files/14_2671.jpg deleted file mode 100644 index 8546d0288..000000000 Binary files a/files/14_2671.jpg and /dev/null differ diff --git a/files/14_2671.mp3 b/files/14_2671.mp3 deleted file mode 100644 index 743b4ff51..000000000 Binary files a/files/14_2671.mp3 and /dev/null differ diff --git a/files/14_2671_example.mp3 b/files/14_2671_example.mp3 deleted file mode 100644 index 8b3d43508..000000000 Binary files a/files/14_2671_example.mp3 and /dev/null differ diff --git a/files/14_2671_meaning.mp3 b/files/14_2671_meaning.mp3 deleted file mode 100644 index 1ca3e8273..000000000 Binary files a/files/14_2671_meaning.mp3 and /dev/null differ diff --git a/files/14_2672.jpg b/files/14_2672.jpg deleted file mode 100644 index 949d47f57..000000000 Binary files a/files/14_2672.jpg and /dev/null differ diff --git a/files/14_2672.mp3 b/files/14_2672.mp3 deleted file mode 100644 index 7130296c8..000000000 Binary files a/files/14_2672.mp3 and /dev/null differ diff --git a/files/14_2672_example.mp3 b/files/14_2672_example.mp3 deleted file mode 100644 index ec75c5c2e..000000000 Binary files a/files/14_2672_example.mp3 and /dev/null differ diff --git a/files/14_2672_meaning.mp3 b/files/14_2672_meaning.mp3 deleted file mode 100644 index 098ffb00f..000000000 Binary files a/files/14_2672_meaning.mp3 and /dev/null differ diff --git a/files/14_2673.jpg b/files/14_2673.jpg deleted file mode 100644 index 011368d0a..000000000 Binary files a/files/14_2673.jpg and /dev/null differ diff --git a/files/14_2673.mp3 b/files/14_2673.mp3 deleted file mode 100644 index af4f5f406..000000000 Binary files a/files/14_2673.mp3 and /dev/null differ diff --git a/files/14_2673_example.mp3 b/files/14_2673_example.mp3 deleted file mode 100644 index 39549f59a..000000000 Binary files a/files/14_2673_example.mp3 and /dev/null differ diff --git a/files/14_2673_meaning.mp3 b/files/14_2673_meaning.mp3 deleted file mode 100644 index 3cf652793..000000000 Binary files a/files/14_2673_meaning.mp3 and /dev/null differ diff --git a/files/14_2674.jpg b/files/14_2674.jpg deleted file mode 100644 index c6cd71f0f..000000000 Binary files a/files/14_2674.jpg and /dev/null differ diff --git a/files/14_2674.mp3 b/files/14_2674.mp3 deleted file mode 100644 index 7ad666654..000000000 Binary files a/files/14_2674.mp3 and /dev/null differ diff --git a/files/14_2674_example.mp3 b/files/14_2674_example.mp3 deleted file mode 100644 index b2d4a421b..000000000 Binary files a/files/14_2674_example.mp3 and /dev/null differ diff --git a/files/14_2674_meaning.mp3 b/files/14_2674_meaning.mp3 deleted file mode 100644 index 67fbad0bf..000000000 Binary files a/files/14_2674_meaning.mp3 and /dev/null differ diff --git a/files/14_2675.jpg b/files/14_2675.jpg deleted file mode 100644 index 1790ff3b9..000000000 Binary files a/files/14_2675.jpg and /dev/null differ diff --git a/files/14_2675.mp3 b/files/14_2675.mp3 deleted file mode 100644 index 5905cb7eb..000000000 Binary files a/files/14_2675.mp3 and /dev/null differ diff --git a/files/14_2675_example.mp3 b/files/14_2675_example.mp3 deleted file mode 100644 index 6b105d23e..000000000 Binary files a/files/14_2675_example.mp3 and /dev/null differ diff --git a/files/14_2675_meaning.mp3 b/files/14_2675_meaning.mp3 deleted file mode 100644 index f8f1a336a..000000000 Binary files a/files/14_2675_meaning.mp3 and /dev/null differ diff --git a/files/14_2676.jpg b/files/14_2676.jpg deleted file mode 100644 index 803e407f4..000000000 Binary files a/files/14_2676.jpg and /dev/null differ diff --git a/files/14_2676.mp3 b/files/14_2676.mp3 deleted file mode 100644 index a56671691..000000000 Binary files a/files/14_2676.mp3 and /dev/null differ diff --git a/files/14_2676_example.mp3 b/files/14_2676_example.mp3 deleted file mode 100644 index ed3091773..000000000 Binary files a/files/14_2676_example.mp3 and /dev/null differ diff --git a/files/14_2676_meaning.mp3 b/files/14_2676_meaning.mp3 deleted file mode 100644 index f3f8f3d5e..000000000 Binary files a/files/14_2676_meaning.mp3 and /dev/null differ diff --git a/files/14_2677.jpg b/files/14_2677.jpg deleted file mode 100644 index a051e1432..000000000 Binary files a/files/14_2677.jpg and /dev/null differ diff --git a/files/14_2677.mp3 b/files/14_2677.mp3 deleted file mode 100644 index e08b99a60..000000000 Binary files a/files/14_2677.mp3 and /dev/null differ diff --git a/files/14_2677_example.mp3 b/files/14_2677_example.mp3 deleted file mode 100644 index e631d5887..000000000 Binary files a/files/14_2677_example.mp3 and /dev/null differ diff --git a/files/14_2677_meaning.mp3 b/files/14_2677_meaning.mp3 deleted file mode 100644 index 7122403a3..000000000 Binary files a/files/14_2677_meaning.mp3 and /dev/null differ diff --git a/files/14_2678.jpg b/files/14_2678.jpg deleted file mode 100644 index c76596021..000000000 Binary files a/files/14_2678.jpg and /dev/null differ diff --git a/files/14_2678.mp3 b/files/14_2678.mp3 deleted file mode 100644 index f376c1271..000000000 Binary files a/files/14_2678.mp3 and /dev/null differ diff --git a/files/14_2678_example.mp3 b/files/14_2678_example.mp3 deleted file mode 100644 index 6a236f723..000000000 Binary files a/files/14_2678_example.mp3 and /dev/null differ diff --git a/files/14_2678_meaning.mp3 b/files/14_2678_meaning.mp3 deleted file mode 100644 index 957cce570..000000000 Binary files a/files/14_2678_meaning.mp3 and /dev/null differ diff --git a/files/14_2679.jpg b/files/14_2679.jpg deleted file mode 100644 index 6b436cfae..000000000 Binary files a/files/14_2679.jpg and /dev/null differ diff --git a/files/14_2679.mp3 b/files/14_2679.mp3 deleted file mode 100644 index 491ec2f05..000000000 Binary files a/files/14_2679.mp3 and /dev/null differ diff --git a/files/14_2679_example.mp3 b/files/14_2679_example.mp3 deleted file mode 100644 index dd5576a44..000000000 Binary files a/files/14_2679_example.mp3 and /dev/null differ diff --git a/files/14_2679_meaning.mp3 b/files/14_2679_meaning.mp3 deleted file mode 100644 index 9a9a7a247..000000000 Binary files a/files/14_2679_meaning.mp3 and /dev/null differ diff --git a/files/14_2680.jpg b/files/14_2680.jpg deleted file mode 100644 index b9d706864..000000000 Binary files a/files/14_2680.jpg and /dev/null differ diff --git a/files/14_2680.mp3 b/files/14_2680.mp3 deleted file mode 100644 index a0683d480..000000000 Binary files a/files/14_2680.mp3 and /dev/null differ diff --git a/files/14_2680_example.mp3 b/files/14_2680_example.mp3 deleted file mode 100644 index 334aa12ae..000000000 Binary files a/files/14_2680_example.mp3 and /dev/null differ diff --git a/files/14_2680_meaning.mp3 b/files/14_2680_meaning.mp3 deleted file mode 100644 index 5828a73f6..000000000 Binary files a/files/14_2680_meaning.mp3 and /dev/null differ diff --git a/files/14_3261.jpg b/files/14_3261.jpg deleted file mode 100644 index e9748667f..000000000 Binary files a/files/14_3261.jpg and /dev/null differ diff --git a/files/14_3261.mp3 b/files/14_3261.mp3 deleted file mode 100644 index 476914898..000000000 Binary files a/files/14_3261.mp3 and /dev/null differ diff --git a/files/14_3261_example.mp3 b/files/14_3261_example.mp3 deleted file mode 100644 index 16511ff43..000000000 Binary files a/files/14_3261_example.mp3 and /dev/null differ diff --git a/files/14_3261_meaning.mp3 b/files/14_3261_meaning.mp3 deleted file mode 100644 index bebd8cca4..000000000 Binary files a/files/14_3261_meaning.mp3 and /dev/null differ diff --git a/files/14_3262.jpg b/files/14_3262.jpg deleted file mode 100644 index f84c51ae2..000000000 Binary files a/files/14_3262.jpg and /dev/null differ diff --git a/files/14_3262.mp3 b/files/14_3262.mp3 deleted file mode 100644 index 598655c26..000000000 Binary files a/files/14_3262.mp3 and /dev/null differ diff --git a/files/14_3262_example.mp3 b/files/14_3262_example.mp3 deleted file mode 100644 index 53666fc53..000000000 Binary files a/files/14_3262_example.mp3 and /dev/null differ diff --git a/files/14_3262_meaning.mp3 b/files/14_3262_meaning.mp3 deleted file mode 100644 index e89c49fef..000000000 Binary files a/files/14_3262_meaning.mp3 and /dev/null differ diff --git a/files/14_3263.jpg b/files/14_3263.jpg deleted file mode 100644 index fb74373b4..000000000 Binary files a/files/14_3263.jpg and /dev/null differ diff --git a/files/14_3263.mp3 b/files/14_3263.mp3 deleted file mode 100644 index 88b01669b..000000000 Binary files a/files/14_3263.mp3 and /dev/null differ diff --git a/files/14_3263_example.mp3 b/files/14_3263_example.mp3 deleted file mode 100644 index 0a2adca00..000000000 Binary files a/files/14_3263_example.mp3 and /dev/null differ diff --git a/files/14_3263_meaning.mp3 b/files/14_3263_meaning.mp3 deleted file mode 100644 index 0e9f68c00..000000000 Binary files a/files/14_3263_meaning.mp3 and /dev/null differ diff --git a/files/14_3264.jpg b/files/14_3264.jpg deleted file mode 100644 index 5124a123f..000000000 Binary files a/files/14_3264.jpg and /dev/null differ diff --git a/files/14_3264.mp3 b/files/14_3264.mp3 deleted file mode 100644 index c718937ef..000000000 Binary files a/files/14_3264.mp3 and /dev/null differ diff --git a/files/14_3264_example.mp3 b/files/14_3264_example.mp3 deleted file mode 100644 index 630e08774..000000000 Binary files a/files/14_3264_example.mp3 and /dev/null differ diff --git a/files/14_3264_meaning.mp3 b/files/14_3264_meaning.mp3 deleted file mode 100644 index 43c665d98..000000000 Binary files a/files/14_3264_meaning.mp3 and /dev/null differ diff --git a/files/14_3265.jpg b/files/14_3265.jpg deleted file mode 100644 index 04a765fff..000000000 Binary files a/files/14_3265.jpg and /dev/null differ diff --git a/files/14_3265.mp3 b/files/14_3265.mp3 deleted file mode 100644 index f958ab0cd..000000000 Binary files a/files/14_3265.mp3 and /dev/null differ diff --git a/files/14_3265_example.mp3 b/files/14_3265_example.mp3 deleted file mode 100644 index 5fe2a6232..000000000 Binary files a/files/14_3265_example.mp3 and /dev/null differ diff --git a/files/14_3265_meaning.mp3 b/files/14_3265_meaning.mp3 deleted file mode 100644 index 32019008a..000000000 Binary files a/files/14_3265_meaning.mp3 and /dev/null differ diff --git a/files/14_3266.jpg b/files/14_3266.jpg deleted file mode 100644 index 01fa759d9..000000000 Binary files a/files/14_3266.jpg and /dev/null differ diff --git a/files/14_3266.mp3 b/files/14_3266.mp3 deleted file mode 100644 index e4aec7f87..000000000 Binary files a/files/14_3266.mp3 and /dev/null differ diff --git a/files/14_3266_example.mp3 b/files/14_3266_example.mp3 deleted file mode 100644 index 4f0461abb..000000000 Binary files a/files/14_3266_example.mp3 and /dev/null differ diff --git a/files/14_3266_meaning.mp3 b/files/14_3266_meaning.mp3 deleted file mode 100644 index 2c3485098..000000000 Binary files a/files/14_3266_meaning.mp3 and /dev/null differ diff --git a/files/14_3267.jpg b/files/14_3267.jpg deleted file mode 100644 index c9cc661d5..000000000 Binary files a/files/14_3267.jpg and /dev/null differ diff --git a/files/14_3267.mp3 b/files/14_3267.mp3 deleted file mode 100644 index 052080cb7..000000000 Binary files a/files/14_3267.mp3 and /dev/null differ diff --git a/files/14_3267_example.mp3 b/files/14_3267_example.mp3 deleted file mode 100644 index 749b6fbff..000000000 Binary files a/files/14_3267_example.mp3 and /dev/null differ diff --git a/files/14_3267_meaning.mp3 b/files/14_3267_meaning.mp3 deleted file mode 100644 index f763fa1f4..000000000 Binary files a/files/14_3267_meaning.mp3 and /dev/null differ diff --git a/files/14_3268.jpg b/files/14_3268.jpg deleted file mode 100644 index 5cc7c643d..000000000 Binary files a/files/14_3268.jpg and /dev/null differ diff --git a/files/14_3268.mp3 b/files/14_3268.mp3 deleted file mode 100644 index 5571fc86e..000000000 Binary files a/files/14_3268.mp3 and /dev/null differ diff --git a/files/14_3268_example.mp3 b/files/14_3268_example.mp3 deleted file mode 100644 index 8dff83d8c..000000000 Binary files a/files/14_3268_example.mp3 and /dev/null differ diff --git a/files/14_3268_meaning.mp3 b/files/14_3268_meaning.mp3 deleted file mode 100644 index 561321335..000000000 Binary files a/files/14_3268_meaning.mp3 and /dev/null differ diff --git a/files/14_3269.jpg b/files/14_3269.jpg deleted file mode 100644 index bddb14c7a..000000000 Binary files a/files/14_3269.jpg and /dev/null differ diff --git a/files/14_3269.mp3 b/files/14_3269.mp3 deleted file mode 100644 index 5218bf6c7..000000000 Binary files a/files/14_3269.mp3 and /dev/null differ diff --git a/files/14_3269_example.mp3 b/files/14_3269_example.mp3 deleted file mode 100644 index f8c60facb..000000000 Binary files a/files/14_3269_example.mp3 and /dev/null differ diff --git a/files/14_3269_meaning.mp3 b/files/14_3269_meaning.mp3 deleted file mode 100644 index e4c4b4ea9..000000000 Binary files a/files/14_3269_meaning.mp3 and /dev/null differ diff --git a/files/14_3270.jpg b/files/14_3270.jpg deleted file mode 100644 index aea0663be..000000000 Binary files a/files/14_3270.jpg and /dev/null differ diff --git a/files/14_3270.mp3 b/files/14_3270.mp3 deleted file mode 100644 index 46dd91e55..000000000 Binary files a/files/14_3270.mp3 and /dev/null differ diff --git a/files/14_3270_example.mp3 b/files/14_3270_example.mp3 deleted file mode 100644 index b9e250b12..000000000 Binary files a/files/14_3270_example.mp3 and /dev/null differ diff --git a/files/14_3270_meaning.mp3 b/files/14_3270_meaning.mp3 deleted file mode 100644 index ac5cab6cc..000000000 Binary files a/files/14_3270_meaning.mp3 and /dev/null differ diff --git a/files/14_3271.jpg b/files/14_3271.jpg deleted file mode 100644 index 2fba81211..000000000 Binary files a/files/14_3271.jpg and /dev/null differ diff --git a/files/14_3271.mp3 b/files/14_3271.mp3 deleted file mode 100644 index 34b2ac348..000000000 Binary files a/files/14_3271.mp3 and /dev/null differ diff --git a/files/14_3271_example.mp3 b/files/14_3271_example.mp3 deleted file mode 100644 index 0c4354135..000000000 Binary files a/files/14_3271_example.mp3 and /dev/null differ diff --git a/files/14_3271_meaning.mp3 b/files/14_3271_meaning.mp3 deleted file mode 100644 index c878dc6f7..000000000 Binary files a/files/14_3271_meaning.mp3 and /dev/null differ diff --git a/files/14_3272.jpg b/files/14_3272.jpg deleted file mode 100644 index 44338d69c..000000000 Binary files a/files/14_3272.jpg and /dev/null differ diff --git a/files/14_3272.mp3 b/files/14_3272.mp3 deleted file mode 100644 index 830d5d13f..000000000 Binary files a/files/14_3272.mp3 and /dev/null differ diff --git a/files/14_3272_example.mp3 b/files/14_3272_example.mp3 deleted file mode 100644 index 191199a21..000000000 Binary files a/files/14_3272_example.mp3 and /dev/null differ diff --git a/files/14_3272_meaning.mp3 b/files/14_3272_meaning.mp3 deleted file mode 100644 index b85064f4e..000000000 Binary files a/files/14_3272_meaning.mp3 and /dev/null differ diff --git a/files/14_3273.jpg b/files/14_3273.jpg deleted file mode 100644 index 4ec5a8b83..000000000 Binary files a/files/14_3273.jpg and /dev/null differ diff --git a/files/14_3273.mp3 b/files/14_3273.mp3 deleted file mode 100644 index 2e9dd6525..000000000 Binary files a/files/14_3273.mp3 and /dev/null differ diff --git a/files/14_3273_example.mp3 b/files/14_3273_example.mp3 deleted file mode 100644 index d9f5f6046..000000000 Binary files a/files/14_3273_example.mp3 and /dev/null differ diff --git a/files/14_3273_meaning.mp3 b/files/14_3273_meaning.mp3 deleted file mode 100644 index 4efabcab5..000000000 Binary files a/files/14_3273_meaning.mp3 and /dev/null differ diff --git a/files/14_3274.jpg b/files/14_3274.jpg deleted file mode 100644 index 951c95149..000000000 Binary files a/files/14_3274.jpg and /dev/null differ diff --git a/files/14_3274.mp3 b/files/14_3274.mp3 deleted file mode 100644 index 6a97a424f..000000000 Binary files a/files/14_3274.mp3 and /dev/null differ diff --git a/files/14_3274_example.mp3 b/files/14_3274_example.mp3 deleted file mode 100644 index ed2c18d30..000000000 Binary files a/files/14_3274_example.mp3 and /dev/null differ diff --git a/files/14_3274_meaning.mp3 b/files/14_3274_meaning.mp3 deleted file mode 100644 index ab691950d..000000000 Binary files a/files/14_3274_meaning.mp3 and /dev/null differ diff --git a/files/14_3275.jpg b/files/14_3275.jpg deleted file mode 100644 index e7e59292c..000000000 Binary files a/files/14_3275.jpg and /dev/null differ diff --git a/files/14_3275.mp3 b/files/14_3275.mp3 deleted file mode 100644 index 4ddbde16d..000000000 Binary files a/files/14_3275.mp3 and /dev/null differ diff --git a/files/14_3275_example.mp3 b/files/14_3275_example.mp3 deleted file mode 100644 index 5a7f30687..000000000 Binary files a/files/14_3275_example.mp3 and /dev/null differ diff --git a/files/14_3275_meaning.mp3 b/files/14_3275_meaning.mp3 deleted file mode 100644 index 4c935a2c7..000000000 Binary files a/files/14_3275_meaning.mp3 and /dev/null differ diff --git a/files/14_3276.jpg b/files/14_3276.jpg deleted file mode 100644 index 18c396883..000000000 Binary files a/files/14_3276.jpg and /dev/null differ diff --git a/files/14_3276.mp3 b/files/14_3276.mp3 deleted file mode 100644 index 4da8a92a7..000000000 Binary files a/files/14_3276.mp3 and /dev/null differ diff --git a/files/14_3276_example.mp3 b/files/14_3276_example.mp3 deleted file mode 100644 index e8168d1a0..000000000 Binary files a/files/14_3276_example.mp3 and /dev/null differ diff --git a/files/14_3276_meaning.mp3 b/files/14_3276_meaning.mp3 deleted file mode 100644 index 788ed57df..000000000 Binary files a/files/14_3276_meaning.mp3 and /dev/null differ diff --git a/files/14_3277.jpg b/files/14_3277.jpg deleted file mode 100644 index 74abe3925..000000000 Binary files a/files/14_3277.jpg and /dev/null differ diff --git a/files/14_3277.mp3 b/files/14_3277.mp3 deleted file mode 100644 index 1a5bc24c0..000000000 Binary files a/files/14_3277.mp3 and /dev/null differ diff --git a/files/14_3277_example.mp3 b/files/14_3277_example.mp3 deleted file mode 100644 index c0a91a959..000000000 Binary files a/files/14_3277_example.mp3 and /dev/null differ diff --git a/files/14_3277_meaning.mp3 b/files/14_3277_meaning.mp3 deleted file mode 100644 index d6f21f3d7..000000000 Binary files a/files/14_3277_meaning.mp3 and /dev/null differ diff --git a/files/14_3278.jpg b/files/14_3278.jpg deleted file mode 100644 index ffdeb7038..000000000 Binary files a/files/14_3278.jpg and /dev/null differ diff --git a/files/14_3278.mp3 b/files/14_3278.mp3 deleted file mode 100644 index 843c50d7d..000000000 Binary files a/files/14_3278.mp3 and /dev/null differ diff --git a/files/14_3278_example.mp3 b/files/14_3278_example.mp3 deleted file mode 100644 index 681beefdc..000000000 Binary files a/files/14_3278_example.mp3 and /dev/null differ diff --git a/files/14_3278_meaning.mp3 b/files/14_3278_meaning.mp3 deleted file mode 100644 index 49b4024c9..000000000 Binary files a/files/14_3278_meaning.mp3 and /dev/null differ diff --git a/files/14_3279.jpg b/files/14_3279.jpg deleted file mode 100644 index 7ac18f191..000000000 Binary files a/files/14_3279.jpg and /dev/null differ diff --git a/files/14_3279.mp3 b/files/14_3279.mp3 deleted file mode 100644 index 614d6042a..000000000 Binary files a/files/14_3279.mp3 and /dev/null differ diff --git a/files/14_3279_example.mp3 b/files/14_3279_example.mp3 deleted file mode 100644 index 909911815..000000000 Binary files a/files/14_3279_example.mp3 and /dev/null differ diff --git a/files/14_3279_meaning.mp3 b/files/14_3279_meaning.mp3 deleted file mode 100644 index 5db2e3f56..000000000 Binary files a/files/14_3279_meaning.mp3 and /dev/null differ diff --git a/files/14_3280.jpg b/files/14_3280.jpg deleted file mode 100644 index 202b23cd0..000000000 Binary files a/files/14_3280.jpg and /dev/null differ diff --git a/files/14_3280.mp3 b/files/14_3280.mp3 deleted file mode 100644 index 9d76f8249..000000000 Binary files a/files/14_3280.mp3 and /dev/null differ diff --git a/files/14_3280_example.mp3 b/files/14_3280_example.mp3 deleted file mode 100644 index 6173fd82e..000000000 Binary files a/files/14_3280_example.mp3 and /dev/null differ diff --git a/files/14_3280_meaning.mp3 b/files/14_3280_meaning.mp3 deleted file mode 100644 index d33083efc..000000000 Binary files a/files/14_3280_meaning.mp3 and /dev/null differ diff --git a/files/15_0281.jpg b/files/15_0281.jpg deleted file mode 100644 index 4d802eb51..000000000 Binary files a/files/15_0281.jpg and /dev/null differ diff --git a/files/15_0281.mp3 b/files/15_0281.mp3 deleted file mode 100644 index a2c741f15..000000000 Binary files a/files/15_0281.mp3 and /dev/null differ diff --git a/files/15_0281_example.mp3 b/files/15_0281_example.mp3 deleted file mode 100644 index 0494b7cb1..000000000 Binary files a/files/15_0281_example.mp3 and /dev/null differ diff --git a/files/15_0281_meaning.mp3 b/files/15_0281_meaning.mp3 deleted file mode 100644 index 2bc67bef4..000000000 Binary files a/files/15_0281_meaning.mp3 and /dev/null differ diff --git a/files/15_0282.jpg b/files/15_0282.jpg deleted file mode 100644 index 421bdba97..000000000 Binary files a/files/15_0282.jpg and /dev/null differ diff --git a/files/15_0282.mp3 b/files/15_0282.mp3 deleted file mode 100644 index 0ce052d13..000000000 Binary files a/files/15_0282.mp3 and /dev/null differ diff --git a/files/15_0282_example.mp3 b/files/15_0282_example.mp3 deleted file mode 100644 index 206177297..000000000 Binary files a/files/15_0282_example.mp3 and /dev/null differ diff --git a/files/15_0282_meaning.mp3 b/files/15_0282_meaning.mp3 deleted file mode 100644 index a2710e405..000000000 Binary files a/files/15_0282_meaning.mp3 and /dev/null differ diff --git a/files/15_0283.jpg b/files/15_0283.jpg deleted file mode 100644 index 1eb36db09..000000000 Binary files a/files/15_0283.jpg and /dev/null differ diff --git a/files/15_0283.mp3 b/files/15_0283.mp3 deleted file mode 100644 index 1bc6197d7..000000000 Binary files a/files/15_0283.mp3 and /dev/null differ diff --git a/files/15_0283_example.mp3 b/files/15_0283_example.mp3 deleted file mode 100644 index 619e1cbb3..000000000 Binary files a/files/15_0283_example.mp3 and /dev/null differ diff --git a/files/15_0283_meaning.mp3 b/files/15_0283_meaning.mp3 deleted file mode 100644 index 1078f8160..000000000 Binary files a/files/15_0283_meaning.mp3 and /dev/null differ diff --git a/files/15_0284.jpg b/files/15_0284.jpg deleted file mode 100644 index d3e2feb18..000000000 Binary files a/files/15_0284.jpg and /dev/null differ diff --git a/files/15_0284.mp3 b/files/15_0284.mp3 deleted file mode 100644 index 345404efb..000000000 Binary files a/files/15_0284.mp3 and /dev/null differ diff --git a/files/15_0284_example.mp3 b/files/15_0284_example.mp3 deleted file mode 100644 index dcf70e4c4..000000000 Binary files a/files/15_0284_example.mp3 and /dev/null differ diff --git a/files/15_0284_meaning.mp3 b/files/15_0284_meaning.mp3 deleted file mode 100644 index 2c50e5cd1..000000000 Binary files a/files/15_0284_meaning.mp3 and /dev/null differ diff --git a/files/15_0285.jpg b/files/15_0285.jpg deleted file mode 100644 index da4dc7fe7..000000000 Binary files a/files/15_0285.jpg and /dev/null differ diff --git a/files/15_0285.mp3 b/files/15_0285.mp3 deleted file mode 100644 index 568f925a8..000000000 Binary files a/files/15_0285.mp3 and /dev/null differ diff --git a/files/15_0285_example.mp3 b/files/15_0285_example.mp3 deleted file mode 100644 index 64e7903d4..000000000 Binary files a/files/15_0285_example.mp3 and /dev/null differ diff --git a/files/15_0285_meaning.mp3 b/files/15_0285_meaning.mp3 deleted file mode 100644 index cce32e556..000000000 Binary files a/files/15_0285_meaning.mp3 and /dev/null differ diff --git a/files/15_0286.jpg b/files/15_0286.jpg deleted file mode 100644 index d8bb96287..000000000 Binary files a/files/15_0286.jpg and /dev/null differ diff --git a/files/15_0286.mp3 b/files/15_0286.mp3 deleted file mode 100644 index 8c7b2517b..000000000 Binary files a/files/15_0286.mp3 and /dev/null differ diff --git a/files/15_0286_example.mp3 b/files/15_0286_example.mp3 deleted file mode 100644 index c92cfe0b2..000000000 Binary files a/files/15_0286_example.mp3 and /dev/null differ diff --git a/files/15_0286_meaning.mp3 b/files/15_0286_meaning.mp3 deleted file mode 100644 index d6c7f043a..000000000 Binary files a/files/15_0286_meaning.mp3 and /dev/null differ diff --git a/files/15_0287.jpg b/files/15_0287.jpg deleted file mode 100644 index 2fc0636cb..000000000 Binary files a/files/15_0287.jpg and /dev/null differ diff --git a/files/15_0287.mp3 b/files/15_0287.mp3 deleted file mode 100644 index c1a4b6f28..000000000 Binary files a/files/15_0287.mp3 and /dev/null differ diff --git a/files/15_0287_example.mp3 b/files/15_0287_example.mp3 deleted file mode 100644 index ca57f8838..000000000 Binary files a/files/15_0287_example.mp3 and /dev/null differ diff --git a/files/15_0287_meaning.mp3 b/files/15_0287_meaning.mp3 deleted file mode 100644 index 718b83522..000000000 Binary files a/files/15_0287_meaning.mp3 and /dev/null differ diff --git a/files/15_0288.jpg b/files/15_0288.jpg deleted file mode 100644 index fa13dfe46..000000000 Binary files a/files/15_0288.jpg and /dev/null differ diff --git a/files/15_0288.mp3 b/files/15_0288.mp3 deleted file mode 100644 index 4683ef3fd..000000000 Binary files a/files/15_0288.mp3 and /dev/null differ diff --git a/files/15_0288_example.mp3 b/files/15_0288_example.mp3 deleted file mode 100644 index 9de3650bc..000000000 Binary files a/files/15_0288_example.mp3 and /dev/null differ diff --git a/files/15_0288_meaning.mp3 b/files/15_0288_meaning.mp3 deleted file mode 100644 index 6150a5022..000000000 Binary files a/files/15_0288_meaning.mp3 and /dev/null differ diff --git a/files/15_0289.jpg b/files/15_0289.jpg deleted file mode 100644 index 5d51f765a..000000000 Binary files a/files/15_0289.jpg and /dev/null differ diff --git a/files/15_0289.mp3 b/files/15_0289.mp3 deleted file mode 100644 index 2f200f2e1..000000000 Binary files a/files/15_0289.mp3 and /dev/null differ diff --git a/files/15_0289_example.mp3 b/files/15_0289_example.mp3 deleted file mode 100644 index 37f070d61..000000000 Binary files a/files/15_0289_example.mp3 and /dev/null differ diff --git a/files/15_0289_meaning.mp3 b/files/15_0289_meaning.mp3 deleted file mode 100644 index 257c98238..000000000 Binary files a/files/15_0289_meaning.mp3 and /dev/null differ diff --git a/files/15_0290.jpg b/files/15_0290.jpg deleted file mode 100644 index 22fa4eb4c..000000000 Binary files a/files/15_0290.jpg and /dev/null differ diff --git a/files/15_0290.mp3 b/files/15_0290.mp3 deleted file mode 100644 index e2573313c..000000000 Binary files a/files/15_0290.mp3 and /dev/null differ diff --git a/files/15_0290_example.mp3 b/files/15_0290_example.mp3 deleted file mode 100644 index b14ec5f7c..000000000 Binary files a/files/15_0290_example.mp3 and /dev/null differ diff --git a/files/15_0290_meaning.mp3 b/files/15_0290_meaning.mp3 deleted file mode 100644 index 70d7f9b64..000000000 Binary files a/files/15_0290_meaning.mp3 and /dev/null differ diff --git a/files/15_0291.jpg b/files/15_0291.jpg deleted file mode 100644 index ed8cfe928..000000000 Binary files a/files/15_0291.jpg and /dev/null differ diff --git a/files/15_0291.mp3 b/files/15_0291.mp3 deleted file mode 100644 index e02c5d4f8..000000000 Binary files a/files/15_0291.mp3 and /dev/null differ diff --git a/files/15_0291_example.mp3 b/files/15_0291_example.mp3 deleted file mode 100644 index b90880e79..000000000 Binary files a/files/15_0291_example.mp3 and /dev/null differ diff --git a/files/15_0291_meaning.mp3 b/files/15_0291_meaning.mp3 deleted file mode 100644 index 70afd0f83..000000000 Binary files a/files/15_0291_meaning.mp3 and /dev/null differ diff --git a/files/15_0292.jpg b/files/15_0292.jpg deleted file mode 100644 index f2d9bb239..000000000 Binary files a/files/15_0292.jpg and /dev/null differ diff --git a/files/15_0292.mp3 b/files/15_0292.mp3 deleted file mode 100644 index 9fabaf47d..000000000 Binary files a/files/15_0292.mp3 and /dev/null differ diff --git a/files/15_0292_example.mp3 b/files/15_0292_example.mp3 deleted file mode 100644 index aa9535714..000000000 Binary files a/files/15_0292_example.mp3 and /dev/null differ diff --git a/files/15_0292_meaning.mp3 b/files/15_0292_meaning.mp3 deleted file mode 100644 index d3beee7e2..000000000 Binary files a/files/15_0292_meaning.mp3 and /dev/null differ diff --git a/files/15_0293.jpg b/files/15_0293.jpg deleted file mode 100644 index 0e34f602d..000000000 Binary files a/files/15_0293.jpg and /dev/null differ diff --git a/files/15_0293.mp3 b/files/15_0293.mp3 deleted file mode 100644 index a3cb16c98..000000000 Binary files a/files/15_0293.mp3 and /dev/null differ diff --git a/files/15_0293_example.mp3 b/files/15_0293_example.mp3 deleted file mode 100644 index 5b16c6fe9..000000000 Binary files a/files/15_0293_example.mp3 and /dev/null differ diff --git a/files/15_0293_meaning.mp3 b/files/15_0293_meaning.mp3 deleted file mode 100644 index 57d471f41..000000000 Binary files a/files/15_0293_meaning.mp3 and /dev/null differ diff --git a/files/15_0294.jpg b/files/15_0294.jpg deleted file mode 100644 index 5b9d9cdbc..000000000 Binary files a/files/15_0294.jpg and /dev/null differ diff --git a/files/15_0294.mp3 b/files/15_0294.mp3 deleted file mode 100644 index ff9307ab3..000000000 Binary files a/files/15_0294.mp3 and /dev/null differ diff --git a/files/15_0294_example.mp3 b/files/15_0294_example.mp3 deleted file mode 100644 index 66c3eda84..000000000 Binary files a/files/15_0294_example.mp3 and /dev/null differ diff --git a/files/15_0294_meaning.mp3 b/files/15_0294_meaning.mp3 deleted file mode 100644 index 1454f1194..000000000 Binary files a/files/15_0294_meaning.mp3 and /dev/null differ diff --git a/files/15_0295.jpg b/files/15_0295.jpg deleted file mode 100644 index 696729ecd..000000000 Binary files a/files/15_0295.jpg and /dev/null differ diff --git a/files/15_0295.mp3 b/files/15_0295.mp3 deleted file mode 100644 index b3ab5283d..000000000 Binary files a/files/15_0295.mp3 and /dev/null differ diff --git a/files/15_0295_example.mp3 b/files/15_0295_example.mp3 deleted file mode 100644 index aab502d7b..000000000 Binary files a/files/15_0295_example.mp3 and /dev/null differ diff --git a/files/15_0295_meaning.mp3 b/files/15_0295_meaning.mp3 deleted file mode 100644 index 56a8a9323..000000000 Binary files a/files/15_0295_meaning.mp3 and /dev/null differ diff --git a/files/15_0296.jpg b/files/15_0296.jpg deleted file mode 100644 index b9c1150b0..000000000 Binary files a/files/15_0296.jpg and /dev/null differ diff --git a/files/15_0296.mp3 b/files/15_0296.mp3 deleted file mode 100644 index 96f15b324..000000000 Binary files a/files/15_0296.mp3 and /dev/null differ diff --git a/files/15_0296_example.mp3 b/files/15_0296_example.mp3 deleted file mode 100644 index ab43ca2d8..000000000 Binary files a/files/15_0296_example.mp3 and /dev/null differ diff --git a/files/15_0296_meaning.mp3 b/files/15_0296_meaning.mp3 deleted file mode 100644 index 773627da4..000000000 Binary files a/files/15_0296_meaning.mp3 and /dev/null differ diff --git a/files/15_0297.jpg b/files/15_0297.jpg deleted file mode 100644 index 91bac46eb..000000000 Binary files a/files/15_0297.jpg and /dev/null differ diff --git a/files/15_0297.mp3 b/files/15_0297.mp3 deleted file mode 100644 index 6464a2ab0..000000000 Binary files a/files/15_0297.mp3 and /dev/null differ diff --git a/files/15_0297_example.mp3 b/files/15_0297_example.mp3 deleted file mode 100644 index 755d78c59..000000000 Binary files a/files/15_0297_example.mp3 and /dev/null differ diff --git a/files/15_0297_meaning.mp3 b/files/15_0297_meaning.mp3 deleted file mode 100644 index 1b59255f5..000000000 Binary files a/files/15_0297_meaning.mp3 and /dev/null differ diff --git a/files/15_0298.jpg b/files/15_0298.jpg deleted file mode 100644 index 9c4caffd0..000000000 Binary files a/files/15_0298.jpg and /dev/null differ diff --git a/files/15_0298.mp3 b/files/15_0298.mp3 deleted file mode 100644 index 2a3dabfd4..000000000 Binary files a/files/15_0298.mp3 and /dev/null differ diff --git a/files/15_0298_example.mp3 b/files/15_0298_example.mp3 deleted file mode 100644 index 040f929e8..000000000 Binary files a/files/15_0298_example.mp3 and /dev/null differ diff --git a/files/15_0298_meaning.mp3 b/files/15_0298_meaning.mp3 deleted file mode 100644 index dc77c9a5f..000000000 Binary files a/files/15_0298_meaning.mp3 and /dev/null differ diff --git a/files/15_0299.jpg b/files/15_0299.jpg deleted file mode 100644 index ee55d736f..000000000 Binary files a/files/15_0299.jpg and /dev/null differ diff --git a/files/15_0299.mp3 b/files/15_0299.mp3 deleted file mode 100644 index 8a0abfb2b..000000000 Binary files a/files/15_0299.mp3 and /dev/null differ diff --git a/files/15_0299_example.mp3 b/files/15_0299_example.mp3 deleted file mode 100644 index e688c8f1c..000000000 Binary files a/files/15_0299_example.mp3 and /dev/null differ diff --git a/files/15_0299_meaning.mp3 b/files/15_0299_meaning.mp3 deleted file mode 100644 index d6bc81835..000000000 Binary files a/files/15_0299_meaning.mp3 and /dev/null differ diff --git a/files/15_0300.jpg b/files/15_0300.jpg deleted file mode 100644 index ae8221f52..000000000 Binary files a/files/15_0300.jpg and /dev/null differ diff --git a/files/15_0300.mp3 b/files/15_0300.mp3 deleted file mode 100644 index 1a6804fd2..000000000 Binary files a/files/15_0300.mp3 and /dev/null differ diff --git a/files/15_0300_example.mp3 b/files/15_0300_example.mp3 deleted file mode 100644 index 102b3a0fc..000000000 Binary files a/files/15_0300_example.mp3 and /dev/null differ diff --git a/files/15_0300_meaning.mp3 b/files/15_0300_meaning.mp3 deleted file mode 100644 index a669b9f56..000000000 Binary files a/files/15_0300_meaning.mp3 and /dev/null differ diff --git a/files/15_0881.jpg b/files/15_0881.jpg deleted file mode 100644 index 1b205acc8..000000000 Binary files a/files/15_0881.jpg and /dev/null differ diff --git a/files/15_0881.mp3 b/files/15_0881.mp3 deleted file mode 100644 index c5e5eb775..000000000 Binary files a/files/15_0881.mp3 and /dev/null differ diff --git a/files/15_0881_example.mp3 b/files/15_0881_example.mp3 deleted file mode 100644 index cd9cd5657..000000000 Binary files a/files/15_0881_example.mp3 and /dev/null differ diff --git a/files/15_0881_meaning.mp3 b/files/15_0881_meaning.mp3 deleted file mode 100644 index 314722a8d..000000000 Binary files a/files/15_0881_meaning.mp3 and /dev/null differ diff --git a/files/15_0882.jpg b/files/15_0882.jpg deleted file mode 100644 index 354634f18..000000000 Binary files a/files/15_0882.jpg and /dev/null differ diff --git a/files/15_0882.mp3 b/files/15_0882.mp3 deleted file mode 100644 index 0b98f1cf7..000000000 Binary files a/files/15_0882.mp3 and /dev/null differ diff --git a/files/15_0882_example.mp3 b/files/15_0882_example.mp3 deleted file mode 100644 index 8b33da64a..000000000 Binary files a/files/15_0882_example.mp3 and /dev/null differ diff --git a/files/15_0882_meaning.mp3 b/files/15_0882_meaning.mp3 deleted file mode 100644 index 2bdc1a02c..000000000 Binary files a/files/15_0882_meaning.mp3 and /dev/null differ diff --git a/files/15_0883.jpg b/files/15_0883.jpg deleted file mode 100644 index fbc8b44e8..000000000 Binary files a/files/15_0883.jpg and /dev/null differ diff --git a/files/15_0883.mp3 b/files/15_0883.mp3 deleted file mode 100644 index 7e71200ee..000000000 Binary files a/files/15_0883.mp3 and /dev/null differ diff --git a/files/15_0883_example.mp3 b/files/15_0883_example.mp3 deleted file mode 100644 index 067fac96c..000000000 Binary files a/files/15_0883_example.mp3 and /dev/null differ diff --git a/files/15_0883_meaning.mp3 b/files/15_0883_meaning.mp3 deleted file mode 100644 index 64ce03c67..000000000 Binary files a/files/15_0883_meaning.mp3 and /dev/null differ diff --git a/files/15_0884.jpg b/files/15_0884.jpg deleted file mode 100644 index 662052f8f..000000000 Binary files a/files/15_0884.jpg and /dev/null differ diff --git a/files/15_0884.mp3 b/files/15_0884.mp3 deleted file mode 100644 index 2f648e24d..000000000 Binary files a/files/15_0884.mp3 and /dev/null differ diff --git a/files/15_0884_example.mp3 b/files/15_0884_example.mp3 deleted file mode 100644 index e38c90e52..000000000 Binary files a/files/15_0884_example.mp3 and /dev/null differ diff --git a/files/15_0884_meaning.mp3 b/files/15_0884_meaning.mp3 deleted file mode 100644 index a463e2d00..000000000 Binary files a/files/15_0884_meaning.mp3 and /dev/null differ diff --git a/files/15_0885.jpg b/files/15_0885.jpg deleted file mode 100644 index 535880fdb..000000000 Binary files a/files/15_0885.jpg and /dev/null differ diff --git a/files/15_0885.mp3 b/files/15_0885.mp3 deleted file mode 100644 index 8eda59159..000000000 Binary files a/files/15_0885.mp3 and /dev/null differ diff --git a/files/15_0885_example.mp3 b/files/15_0885_example.mp3 deleted file mode 100644 index 93cdc1f87..000000000 Binary files a/files/15_0885_example.mp3 and /dev/null differ diff --git a/files/15_0885_meaning.mp3 b/files/15_0885_meaning.mp3 deleted file mode 100644 index c8ca2e5ec..000000000 Binary files a/files/15_0885_meaning.mp3 and /dev/null differ diff --git a/files/15_0886.jpg b/files/15_0886.jpg deleted file mode 100644 index 916291ced..000000000 Binary files a/files/15_0886.jpg and /dev/null differ diff --git a/files/15_0886.mp3 b/files/15_0886.mp3 deleted file mode 100644 index 9e0688ce8..000000000 Binary files a/files/15_0886.mp3 and /dev/null differ diff --git a/files/15_0886_example.mp3 b/files/15_0886_example.mp3 deleted file mode 100644 index 4e45d7d2b..000000000 Binary files a/files/15_0886_example.mp3 and /dev/null differ diff --git a/files/15_0886_meaning.mp3 b/files/15_0886_meaning.mp3 deleted file mode 100644 index 4c6dcfbb9..000000000 Binary files a/files/15_0886_meaning.mp3 and /dev/null differ diff --git a/files/15_0887.jpg b/files/15_0887.jpg deleted file mode 100644 index 3cbf8e1b6..000000000 Binary files a/files/15_0887.jpg and /dev/null differ diff --git a/files/15_0887.mp3 b/files/15_0887.mp3 deleted file mode 100644 index 7a214f7db..000000000 Binary files a/files/15_0887.mp3 and /dev/null differ diff --git a/files/15_0887_example.mp3 b/files/15_0887_example.mp3 deleted file mode 100644 index 5080c65a0..000000000 Binary files a/files/15_0887_example.mp3 and /dev/null differ diff --git a/files/15_0887_meaning.mp3 b/files/15_0887_meaning.mp3 deleted file mode 100644 index 45f7d308e..000000000 Binary files a/files/15_0887_meaning.mp3 and /dev/null differ diff --git a/files/15_0888.jpg b/files/15_0888.jpg deleted file mode 100644 index d6a9d70c1..000000000 Binary files a/files/15_0888.jpg and /dev/null differ diff --git a/files/15_0888.mp3 b/files/15_0888.mp3 deleted file mode 100644 index 33c8c80f3..000000000 Binary files a/files/15_0888.mp3 and /dev/null differ diff --git a/files/15_0888_example.mp3 b/files/15_0888_example.mp3 deleted file mode 100644 index 9054d0725..000000000 Binary files a/files/15_0888_example.mp3 and /dev/null differ diff --git a/files/15_0888_meaning.mp3 b/files/15_0888_meaning.mp3 deleted file mode 100644 index 56277fa5a..000000000 Binary files a/files/15_0888_meaning.mp3 and /dev/null differ diff --git a/files/15_0889.jpg b/files/15_0889.jpg deleted file mode 100644 index 10e30d00f..000000000 Binary files a/files/15_0889.jpg and /dev/null differ diff --git a/files/15_0889.mp3 b/files/15_0889.mp3 deleted file mode 100644 index d531f9c1c..000000000 Binary files a/files/15_0889.mp3 and /dev/null differ diff --git a/files/15_0889_example.mp3 b/files/15_0889_example.mp3 deleted file mode 100644 index bfee6266b..000000000 Binary files a/files/15_0889_example.mp3 and /dev/null differ diff --git a/files/15_0889_meaning.mp3 b/files/15_0889_meaning.mp3 deleted file mode 100644 index 95c393092..000000000 Binary files a/files/15_0889_meaning.mp3 and /dev/null differ diff --git a/files/15_0890.jpg b/files/15_0890.jpg deleted file mode 100644 index cbdd60eaa..000000000 Binary files a/files/15_0890.jpg and /dev/null differ diff --git a/files/15_0890.mp3 b/files/15_0890.mp3 deleted file mode 100644 index 9c44cdf1b..000000000 Binary files a/files/15_0890.mp3 and /dev/null differ diff --git a/files/15_0890_example.mp3 b/files/15_0890_example.mp3 deleted file mode 100644 index c6f051889..000000000 Binary files a/files/15_0890_example.mp3 and /dev/null differ diff --git a/files/15_0890_meaning.mp3 b/files/15_0890_meaning.mp3 deleted file mode 100644 index 208f1e8b0..000000000 Binary files a/files/15_0890_meaning.mp3 and /dev/null differ diff --git a/files/15_0891.jpg b/files/15_0891.jpg deleted file mode 100644 index d685d0d29..000000000 Binary files a/files/15_0891.jpg and /dev/null differ diff --git a/files/15_0891.mp3 b/files/15_0891.mp3 deleted file mode 100644 index d9559766e..000000000 Binary files a/files/15_0891.mp3 and /dev/null differ diff --git a/files/15_0891_example.mp3 b/files/15_0891_example.mp3 deleted file mode 100644 index b2a75cccc..000000000 Binary files a/files/15_0891_example.mp3 and /dev/null differ diff --git a/files/15_0891_meaning.mp3 b/files/15_0891_meaning.mp3 deleted file mode 100644 index f52c7a212..000000000 Binary files a/files/15_0891_meaning.mp3 and /dev/null differ diff --git a/files/15_0892.jpg b/files/15_0892.jpg deleted file mode 100644 index e6c2ab441..000000000 Binary files a/files/15_0892.jpg and /dev/null differ diff --git a/files/15_0892.mp3 b/files/15_0892.mp3 deleted file mode 100644 index ce56b195e..000000000 Binary files a/files/15_0892.mp3 and /dev/null differ diff --git a/files/15_0892_example.mp3 b/files/15_0892_example.mp3 deleted file mode 100644 index 4d1e0f52f..000000000 Binary files a/files/15_0892_example.mp3 and /dev/null differ diff --git a/files/15_0892_meaning.mp3 b/files/15_0892_meaning.mp3 deleted file mode 100644 index 8b90fcd32..000000000 Binary files a/files/15_0892_meaning.mp3 and /dev/null differ diff --git a/files/15_0893.jpg b/files/15_0893.jpg deleted file mode 100644 index 87a2184f7..000000000 Binary files a/files/15_0893.jpg and /dev/null differ diff --git a/files/15_0893.mp3 b/files/15_0893.mp3 deleted file mode 100644 index a0473295e..000000000 Binary files a/files/15_0893.mp3 and /dev/null differ diff --git a/files/15_0893_example.mp3 b/files/15_0893_example.mp3 deleted file mode 100644 index 9477669f5..000000000 Binary files a/files/15_0893_example.mp3 and /dev/null differ diff --git a/files/15_0893_meaning.mp3 b/files/15_0893_meaning.mp3 deleted file mode 100644 index 3f07544ea..000000000 Binary files a/files/15_0893_meaning.mp3 and /dev/null differ diff --git a/files/15_0894.jpg b/files/15_0894.jpg deleted file mode 100644 index 98fc596e2..000000000 Binary files a/files/15_0894.jpg and /dev/null differ diff --git a/files/15_0894.mp3 b/files/15_0894.mp3 deleted file mode 100644 index 07edb1384..000000000 Binary files a/files/15_0894.mp3 and /dev/null differ diff --git a/files/15_0894_example.mp3 b/files/15_0894_example.mp3 deleted file mode 100644 index 88fdd5f72..000000000 Binary files a/files/15_0894_example.mp3 and /dev/null differ diff --git a/files/15_0894_meaning.mp3 b/files/15_0894_meaning.mp3 deleted file mode 100644 index 818ed02ce..000000000 Binary files a/files/15_0894_meaning.mp3 and /dev/null differ diff --git a/files/15_0895.jpg b/files/15_0895.jpg deleted file mode 100644 index da3214528..000000000 Binary files a/files/15_0895.jpg and /dev/null differ diff --git a/files/15_0895.mp3 b/files/15_0895.mp3 deleted file mode 100644 index 7f8dcb517..000000000 Binary files a/files/15_0895.mp3 and /dev/null differ diff --git a/files/15_0895_example.mp3 b/files/15_0895_example.mp3 deleted file mode 100644 index bd898a49c..000000000 Binary files a/files/15_0895_example.mp3 and /dev/null differ diff --git a/files/15_0895_meaning.mp3 b/files/15_0895_meaning.mp3 deleted file mode 100644 index 9ce23a2e1..000000000 Binary files a/files/15_0895_meaning.mp3 and /dev/null differ diff --git a/files/15_0896.jpg b/files/15_0896.jpg deleted file mode 100644 index 02dc7ae03..000000000 Binary files a/files/15_0896.jpg and /dev/null differ diff --git a/files/15_0896.mp3 b/files/15_0896.mp3 deleted file mode 100644 index 0522ddbf6..000000000 Binary files a/files/15_0896.mp3 and /dev/null differ diff --git a/files/15_0896_example.mp3 b/files/15_0896_example.mp3 deleted file mode 100644 index 5fcf99007..000000000 Binary files a/files/15_0896_example.mp3 and /dev/null differ diff --git a/files/15_0896_meaning.mp3 b/files/15_0896_meaning.mp3 deleted file mode 100644 index b4743c3a2..000000000 Binary files a/files/15_0896_meaning.mp3 and /dev/null differ diff --git a/files/15_0897.jpg b/files/15_0897.jpg deleted file mode 100644 index d040e66a2..000000000 Binary files a/files/15_0897.jpg and /dev/null differ diff --git a/files/15_0897.mp3 b/files/15_0897.mp3 deleted file mode 100644 index 99cd13e50..000000000 Binary files a/files/15_0897.mp3 and /dev/null differ diff --git a/files/15_0897_example.mp3 b/files/15_0897_example.mp3 deleted file mode 100644 index 0a3fb863e..000000000 Binary files a/files/15_0897_example.mp3 and /dev/null differ diff --git a/files/15_0897_meaning.mp3 b/files/15_0897_meaning.mp3 deleted file mode 100644 index 9789d7f07..000000000 Binary files a/files/15_0897_meaning.mp3 and /dev/null differ diff --git a/files/15_0898.jpg b/files/15_0898.jpg deleted file mode 100644 index 699f047b0..000000000 Binary files a/files/15_0898.jpg and /dev/null differ diff --git a/files/15_0898.mp3 b/files/15_0898.mp3 deleted file mode 100644 index ae5929a95..000000000 Binary files a/files/15_0898.mp3 and /dev/null differ diff --git a/files/15_0898_example.mp3 b/files/15_0898_example.mp3 deleted file mode 100644 index 4038536f4..000000000 Binary files a/files/15_0898_example.mp3 and /dev/null differ diff --git a/files/15_0898_meaning.mp3 b/files/15_0898_meaning.mp3 deleted file mode 100644 index 556749c2c..000000000 Binary files a/files/15_0898_meaning.mp3 and /dev/null differ diff --git a/files/15_0899.jpg b/files/15_0899.jpg deleted file mode 100644 index ec9d81335..000000000 Binary files a/files/15_0899.jpg and /dev/null differ diff --git a/files/15_0899.mp3 b/files/15_0899.mp3 deleted file mode 100644 index 44d788291..000000000 Binary files a/files/15_0899.mp3 and /dev/null differ diff --git a/files/15_0899_example.mp3 b/files/15_0899_example.mp3 deleted file mode 100644 index 36250ceab..000000000 Binary files a/files/15_0899_example.mp3 and /dev/null differ diff --git a/files/15_0899_meaning.mp3 b/files/15_0899_meaning.mp3 deleted file mode 100644 index 6e038e7b2..000000000 Binary files a/files/15_0899_meaning.mp3 and /dev/null differ diff --git a/files/15_0900.jpg b/files/15_0900.jpg deleted file mode 100644 index 6f7cd735c..000000000 Binary files a/files/15_0900.jpg and /dev/null differ diff --git a/files/15_0900.mp3 b/files/15_0900.mp3 deleted file mode 100644 index ad3106267..000000000 Binary files a/files/15_0900.mp3 and /dev/null differ diff --git a/files/15_0900_example.mp3 b/files/15_0900_example.mp3 deleted file mode 100644 index a73a7e14d..000000000 Binary files a/files/15_0900_example.mp3 and /dev/null differ diff --git a/files/15_0900_meaning.mp3 b/files/15_0900_meaning.mp3 deleted file mode 100644 index 964ea1f76..000000000 Binary files a/files/15_0900_meaning.mp3 and /dev/null differ diff --git a/files/15_1481.jpg b/files/15_1481.jpg deleted file mode 100644 index 9df5f5969..000000000 Binary files a/files/15_1481.jpg and /dev/null differ diff --git a/files/15_1481.mp3 b/files/15_1481.mp3 deleted file mode 100644 index 69f50b15e..000000000 Binary files a/files/15_1481.mp3 and /dev/null differ diff --git a/files/15_1481_example.mp3 b/files/15_1481_example.mp3 deleted file mode 100644 index 5559bbe5b..000000000 Binary files a/files/15_1481_example.mp3 and /dev/null differ diff --git a/files/15_1481_meaning.mp3 b/files/15_1481_meaning.mp3 deleted file mode 100644 index b24790ac9..000000000 Binary files a/files/15_1481_meaning.mp3 and /dev/null differ diff --git a/files/15_1482.jpg b/files/15_1482.jpg deleted file mode 100644 index ae15d7720..000000000 Binary files a/files/15_1482.jpg and /dev/null differ diff --git a/files/15_1482.mp3 b/files/15_1482.mp3 deleted file mode 100644 index 9151a735b..000000000 Binary files a/files/15_1482.mp3 and /dev/null differ diff --git a/files/15_1482_example.mp3 b/files/15_1482_example.mp3 deleted file mode 100644 index 0b7fb9fe1..000000000 Binary files a/files/15_1482_example.mp3 and /dev/null differ diff --git a/files/15_1482_meaning.mp3 b/files/15_1482_meaning.mp3 deleted file mode 100644 index 7e0f0f64e..000000000 Binary files a/files/15_1482_meaning.mp3 and /dev/null differ diff --git a/files/15_1483.jpg b/files/15_1483.jpg deleted file mode 100644 index 3d6185e79..000000000 Binary files a/files/15_1483.jpg and /dev/null differ diff --git a/files/15_1483.mp3 b/files/15_1483.mp3 deleted file mode 100644 index b4ff09b82..000000000 Binary files a/files/15_1483.mp3 and /dev/null differ diff --git a/files/15_1483_example.mp3 b/files/15_1483_example.mp3 deleted file mode 100644 index 06e8e0741..000000000 Binary files a/files/15_1483_example.mp3 and /dev/null differ diff --git a/files/15_1483_meaning.mp3 b/files/15_1483_meaning.mp3 deleted file mode 100644 index bde8e7cb9..000000000 Binary files a/files/15_1483_meaning.mp3 and /dev/null differ diff --git a/files/15_1484.jpg b/files/15_1484.jpg deleted file mode 100644 index a949a3f4b..000000000 Binary files a/files/15_1484.jpg and /dev/null differ diff --git a/files/15_1484.mp3 b/files/15_1484.mp3 deleted file mode 100644 index 3d9f1365e..000000000 Binary files a/files/15_1484.mp3 and /dev/null differ diff --git a/files/15_1484_example.mp3 b/files/15_1484_example.mp3 deleted file mode 100644 index 0fa83080e..000000000 Binary files a/files/15_1484_example.mp3 and /dev/null differ diff --git a/files/15_1484_meaning.mp3 b/files/15_1484_meaning.mp3 deleted file mode 100644 index c0c5c0ba3..000000000 Binary files a/files/15_1484_meaning.mp3 and /dev/null differ diff --git a/files/15_1485.jpg b/files/15_1485.jpg deleted file mode 100644 index 6651267c8..000000000 Binary files a/files/15_1485.jpg and /dev/null differ diff --git a/files/15_1485.mp3 b/files/15_1485.mp3 deleted file mode 100644 index 36de3c3bb..000000000 Binary files a/files/15_1485.mp3 and /dev/null differ diff --git a/files/15_1485_example.mp3 b/files/15_1485_example.mp3 deleted file mode 100644 index 4ef85e075..000000000 Binary files a/files/15_1485_example.mp3 and /dev/null differ diff --git a/files/15_1485_meaning.mp3 b/files/15_1485_meaning.mp3 deleted file mode 100644 index 980c7b159..000000000 Binary files a/files/15_1485_meaning.mp3 and /dev/null differ diff --git a/files/15_1486.jpg b/files/15_1486.jpg deleted file mode 100644 index ee0c5e206..000000000 Binary files a/files/15_1486.jpg and /dev/null differ diff --git a/files/15_1486.mp3 b/files/15_1486.mp3 deleted file mode 100644 index edb03991d..000000000 Binary files a/files/15_1486.mp3 and /dev/null differ diff --git a/files/15_1486_example.mp3 b/files/15_1486_example.mp3 deleted file mode 100644 index 8742d7ec4..000000000 Binary files a/files/15_1486_example.mp3 and /dev/null differ diff --git a/files/15_1486_meaning.mp3 b/files/15_1486_meaning.mp3 deleted file mode 100644 index cce5e74d5..000000000 Binary files a/files/15_1486_meaning.mp3 and /dev/null differ diff --git a/files/15_1487.jpg b/files/15_1487.jpg deleted file mode 100644 index 95a0d6e6d..000000000 Binary files a/files/15_1487.jpg and /dev/null differ diff --git a/files/15_1487.mp3 b/files/15_1487.mp3 deleted file mode 100644 index 716911bf8..000000000 Binary files a/files/15_1487.mp3 and /dev/null differ diff --git a/files/15_1487_example.mp3 b/files/15_1487_example.mp3 deleted file mode 100644 index d75f29dee..000000000 Binary files a/files/15_1487_example.mp3 and /dev/null differ diff --git a/files/15_1487_meaning.mp3 b/files/15_1487_meaning.mp3 deleted file mode 100644 index d3753827f..000000000 Binary files a/files/15_1487_meaning.mp3 and /dev/null differ diff --git a/files/15_1488.jpg b/files/15_1488.jpg deleted file mode 100644 index 76c02fb0f..000000000 Binary files a/files/15_1488.jpg and /dev/null differ diff --git a/files/15_1488.mp3 b/files/15_1488.mp3 deleted file mode 100644 index 72b7a3f6c..000000000 Binary files a/files/15_1488.mp3 and /dev/null differ diff --git a/files/15_1488_example.mp3 b/files/15_1488_example.mp3 deleted file mode 100644 index c22f0fd87..000000000 Binary files a/files/15_1488_example.mp3 and /dev/null differ diff --git a/files/15_1488_meaning.mp3 b/files/15_1488_meaning.mp3 deleted file mode 100644 index 95d98214e..000000000 Binary files a/files/15_1488_meaning.mp3 and /dev/null differ diff --git a/files/15_1489.jpg b/files/15_1489.jpg deleted file mode 100644 index 97bb833a0..000000000 Binary files a/files/15_1489.jpg and /dev/null differ diff --git a/files/15_1489.mp3 b/files/15_1489.mp3 deleted file mode 100644 index eb8e73df4..000000000 Binary files a/files/15_1489.mp3 and /dev/null differ diff --git a/files/15_1489_example.mp3 b/files/15_1489_example.mp3 deleted file mode 100644 index bdccf5b42..000000000 Binary files a/files/15_1489_example.mp3 and /dev/null differ diff --git a/files/15_1489_meaning.mp3 b/files/15_1489_meaning.mp3 deleted file mode 100644 index 17d012706..000000000 Binary files a/files/15_1489_meaning.mp3 and /dev/null differ diff --git a/files/15_1490.jpg b/files/15_1490.jpg deleted file mode 100644 index bd5812c52..000000000 Binary files a/files/15_1490.jpg and /dev/null differ diff --git a/files/15_1490.mp3 b/files/15_1490.mp3 deleted file mode 100644 index 52e3ba239..000000000 Binary files a/files/15_1490.mp3 and /dev/null differ diff --git a/files/15_1490_example.mp3 b/files/15_1490_example.mp3 deleted file mode 100644 index ef32f8bb8..000000000 Binary files a/files/15_1490_example.mp3 and /dev/null differ diff --git a/files/15_1490_meaning.mp3 b/files/15_1490_meaning.mp3 deleted file mode 100644 index 467040868..000000000 Binary files a/files/15_1490_meaning.mp3 and /dev/null differ diff --git a/files/15_1491.jpg b/files/15_1491.jpg deleted file mode 100644 index 00d80f71e..000000000 Binary files a/files/15_1491.jpg and /dev/null differ diff --git a/files/15_1491.mp3 b/files/15_1491.mp3 deleted file mode 100644 index 83610824f..000000000 Binary files a/files/15_1491.mp3 and /dev/null differ diff --git a/files/15_1491_example.mp3 b/files/15_1491_example.mp3 deleted file mode 100644 index 45133b079..000000000 Binary files a/files/15_1491_example.mp3 and /dev/null differ diff --git a/files/15_1491_meaning.mp3 b/files/15_1491_meaning.mp3 deleted file mode 100644 index e3d870953..000000000 Binary files a/files/15_1491_meaning.mp3 and /dev/null differ diff --git a/files/15_1492.jpg b/files/15_1492.jpg deleted file mode 100644 index 685a1203a..000000000 Binary files a/files/15_1492.jpg and /dev/null differ diff --git a/files/15_1492.mp3 b/files/15_1492.mp3 deleted file mode 100644 index f17983766..000000000 Binary files a/files/15_1492.mp3 and /dev/null differ diff --git a/files/15_1492_example.mp3 b/files/15_1492_example.mp3 deleted file mode 100644 index 583f5a403..000000000 Binary files a/files/15_1492_example.mp3 and /dev/null differ diff --git a/files/15_1492_meaning.mp3 b/files/15_1492_meaning.mp3 deleted file mode 100644 index 42e308bfd..000000000 Binary files a/files/15_1492_meaning.mp3 and /dev/null differ diff --git a/files/15_1493.jpg b/files/15_1493.jpg deleted file mode 100644 index a08f0b132..000000000 Binary files a/files/15_1493.jpg and /dev/null differ diff --git a/files/15_1493.mp3 b/files/15_1493.mp3 deleted file mode 100644 index 81b012112..000000000 Binary files a/files/15_1493.mp3 and /dev/null differ diff --git a/files/15_1493_example.mp3 b/files/15_1493_example.mp3 deleted file mode 100644 index 441c330e0..000000000 Binary files a/files/15_1493_example.mp3 and /dev/null differ diff --git a/files/15_1493_meaning.mp3 b/files/15_1493_meaning.mp3 deleted file mode 100644 index c687a65b7..000000000 Binary files a/files/15_1493_meaning.mp3 and /dev/null differ diff --git a/files/15_1494.jpg b/files/15_1494.jpg deleted file mode 100644 index 90cda37a4..000000000 Binary files a/files/15_1494.jpg and /dev/null differ diff --git a/files/15_1494.mp3 b/files/15_1494.mp3 deleted file mode 100644 index 47b60731b..000000000 Binary files a/files/15_1494.mp3 and /dev/null differ diff --git a/files/15_1494_example.mp3 b/files/15_1494_example.mp3 deleted file mode 100644 index 113355b4b..000000000 Binary files a/files/15_1494_example.mp3 and /dev/null differ diff --git a/files/15_1494_meaning.mp3 b/files/15_1494_meaning.mp3 deleted file mode 100644 index f55dce53a..000000000 Binary files a/files/15_1494_meaning.mp3 and /dev/null differ diff --git a/files/15_1495.jpg b/files/15_1495.jpg deleted file mode 100644 index 01a8496d8..000000000 Binary files a/files/15_1495.jpg and /dev/null differ diff --git a/files/15_1495.mp3 b/files/15_1495.mp3 deleted file mode 100644 index c7a10b753..000000000 Binary files a/files/15_1495.mp3 and /dev/null differ diff --git a/files/15_1495_example.mp3 b/files/15_1495_example.mp3 deleted file mode 100644 index 4d9e3c7ae..000000000 Binary files a/files/15_1495_example.mp3 and /dev/null differ diff --git a/files/15_1495_meaning.mp3 b/files/15_1495_meaning.mp3 deleted file mode 100644 index a60d790ac..000000000 Binary files a/files/15_1495_meaning.mp3 and /dev/null differ diff --git a/files/15_1496.jpg b/files/15_1496.jpg deleted file mode 100644 index 1cde7a842..000000000 Binary files a/files/15_1496.jpg and /dev/null differ diff --git a/files/15_1496.mp3 b/files/15_1496.mp3 deleted file mode 100644 index 1386f0959..000000000 Binary files a/files/15_1496.mp3 and /dev/null differ diff --git a/files/15_1496_example.mp3 b/files/15_1496_example.mp3 deleted file mode 100644 index 2e0f198a4..000000000 Binary files a/files/15_1496_example.mp3 and /dev/null differ diff --git a/files/15_1496_meaning.mp3 b/files/15_1496_meaning.mp3 deleted file mode 100644 index b659f37ef..000000000 Binary files a/files/15_1496_meaning.mp3 and /dev/null differ diff --git a/files/15_1497.jpg b/files/15_1497.jpg deleted file mode 100644 index b081bcffd..000000000 Binary files a/files/15_1497.jpg and /dev/null differ diff --git a/files/15_1497.mp3 b/files/15_1497.mp3 deleted file mode 100644 index 9939b2f8f..000000000 Binary files a/files/15_1497.mp3 and /dev/null differ diff --git a/files/15_1497_example.mp3 b/files/15_1497_example.mp3 deleted file mode 100644 index 9ab7dbdd5..000000000 Binary files a/files/15_1497_example.mp3 and /dev/null differ diff --git a/files/15_1497_meaning.mp3 b/files/15_1497_meaning.mp3 deleted file mode 100644 index 6d53e2622..000000000 Binary files a/files/15_1497_meaning.mp3 and /dev/null differ diff --git a/files/15_1498.jpg b/files/15_1498.jpg deleted file mode 100644 index c726bdafb..000000000 Binary files a/files/15_1498.jpg and /dev/null differ diff --git a/files/15_1498.mp3 b/files/15_1498.mp3 deleted file mode 100644 index b1a684d69..000000000 Binary files a/files/15_1498.mp3 and /dev/null differ diff --git a/files/15_1498_example.mp3 b/files/15_1498_example.mp3 deleted file mode 100644 index 2aa3ba49a..000000000 Binary files a/files/15_1498_example.mp3 and /dev/null differ diff --git a/files/15_1498_meaning.mp3 b/files/15_1498_meaning.mp3 deleted file mode 100644 index 7fd74001e..000000000 Binary files a/files/15_1498_meaning.mp3 and /dev/null differ diff --git a/files/15_1499.jpg b/files/15_1499.jpg deleted file mode 100644 index 17c19201e..000000000 Binary files a/files/15_1499.jpg and /dev/null differ diff --git a/files/15_1499.mp3 b/files/15_1499.mp3 deleted file mode 100644 index ae85d357b..000000000 Binary files a/files/15_1499.mp3 and /dev/null differ diff --git a/files/15_1499_example.mp3 b/files/15_1499_example.mp3 deleted file mode 100644 index d160fa487..000000000 Binary files a/files/15_1499_example.mp3 and /dev/null differ diff --git a/files/15_1499_meaning.mp3 b/files/15_1499_meaning.mp3 deleted file mode 100644 index 42680bd40..000000000 Binary files a/files/15_1499_meaning.mp3 and /dev/null differ diff --git a/files/15_1500.jpg b/files/15_1500.jpg deleted file mode 100644 index eff609eaa..000000000 Binary files a/files/15_1500.jpg and /dev/null differ diff --git a/files/15_1500.mp3 b/files/15_1500.mp3 deleted file mode 100644 index c9d5fa7a0..000000000 Binary files a/files/15_1500.mp3 and /dev/null differ diff --git a/files/15_1500_example.mp3 b/files/15_1500_example.mp3 deleted file mode 100644 index 3fe51851a..000000000 Binary files a/files/15_1500_example.mp3 and /dev/null differ diff --git a/files/15_1500_meaning.mp3 b/files/15_1500_meaning.mp3 deleted file mode 100644 index d5af9fe37..000000000 Binary files a/files/15_1500_meaning.mp3 and /dev/null differ diff --git a/files/15_2081.jpg b/files/15_2081.jpg deleted file mode 100644 index 1851d524b..000000000 Binary files a/files/15_2081.jpg and /dev/null differ diff --git a/files/15_2081.mp3 b/files/15_2081.mp3 deleted file mode 100644 index ed8d506ab..000000000 Binary files a/files/15_2081.mp3 and /dev/null differ diff --git a/files/15_2081_example.mp3 b/files/15_2081_example.mp3 deleted file mode 100644 index a8b5a38a5..000000000 Binary files a/files/15_2081_example.mp3 and /dev/null differ diff --git a/files/15_2081_meaning.mp3 b/files/15_2081_meaning.mp3 deleted file mode 100644 index affba820b..000000000 Binary files a/files/15_2081_meaning.mp3 and /dev/null differ diff --git a/files/15_2082.jpg b/files/15_2082.jpg deleted file mode 100644 index c6a6d5da6..000000000 Binary files a/files/15_2082.jpg and /dev/null differ diff --git a/files/15_2082.mp3 b/files/15_2082.mp3 deleted file mode 100644 index 1436494ef..000000000 Binary files a/files/15_2082.mp3 and /dev/null differ diff --git a/files/15_2082_example.mp3 b/files/15_2082_example.mp3 deleted file mode 100644 index c50f7650d..000000000 Binary files a/files/15_2082_example.mp3 and /dev/null differ diff --git a/files/15_2082_meaning.mp3 b/files/15_2082_meaning.mp3 deleted file mode 100644 index f62fc04c6..000000000 Binary files a/files/15_2082_meaning.mp3 and /dev/null differ diff --git a/files/15_2083.jpg b/files/15_2083.jpg deleted file mode 100644 index eb2d996bc..000000000 Binary files a/files/15_2083.jpg and /dev/null differ diff --git a/files/15_2083.mp3 b/files/15_2083.mp3 deleted file mode 100644 index afc7e3585..000000000 Binary files a/files/15_2083.mp3 and /dev/null differ diff --git a/files/15_2083_example.mp3 b/files/15_2083_example.mp3 deleted file mode 100644 index 4e9a92d7e..000000000 Binary files a/files/15_2083_example.mp3 and /dev/null differ diff --git a/files/15_2083_meaning.mp3 b/files/15_2083_meaning.mp3 deleted file mode 100644 index 0b01140a5..000000000 Binary files a/files/15_2083_meaning.mp3 and /dev/null differ diff --git a/files/15_2084.jpg b/files/15_2084.jpg deleted file mode 100644 index 83544806d..000000000 Binary files a/files/15_2084.jpg and /dev/null differ diff --git a/files/15_2084.mp3 b/files/15_2084.mp3 deleted file mode 100644 index 180e90fb0..000000000 Binary files a/files/15_2084.mp3 and /dev/null differ diff --git a/files/15_2084_example.mp3 b/files/15_2084_example.mp3 deleted file mode 100644 index edce1ab76..000000000 Binary files a/files/15_2084_example.mp3 and /dev/null differ diff --git a/files/15_2084_meaning.mp3 b/files/15_2084_meaning.mp3 deleted file mode 100644 index 7c8184e10..000000000 Binary files a/files/15_2084_meaning.mp3 and /dev/null differ diff --git a/files/15_2085.jpg b/files/15_2085.jpg deleted file mode 100644 index 635d51edb..000000000 Binary files a/files/15_2085.jpg and /dev/null differ diff --git a/files/15_2085.mp3 b/files/15_2085.mp3 deleted file mode 100644 index d04824793..000000000 Binary files a/files/15_2085.mp3 and /dev/null differ diff --git a/files/15_2085_example.mp3 b/files/15_2085_example.mp3 deleted file mode 100644 index dfd889e13..000000000 Binary files a/files/15_2085_example.mp3 and /dev/null differ diff --git a/files/15_2085_meaning.mp3 b/files/15_2085_meaning.mp3 deleted file mode 100644 index 68a2d9dd6..000000000 Binary files a/files/15_2085_meaning.mp3 and /dev/null differ diff --git a/files/15_2086.jpg b/files/15_2086.jpg deleted file mode 100644 index 7bcbdef61..000000000 Binary files a/files/15_2086.jpg and /dev/null differ diff --git a/files/15_2086.mp3 b/files/15_2086.mp3 deleted file mode 100644 index ffda1892e..000000000 Binary files a/files/15_2086.mp3 and /dev/null differ diff --git a/files/15_2086_example.mp3 b/files/15_2086_example.mp3 deleted file mode 100644 index 91e9364fa..000000000 Binary files a/files/15_2086_example.mp3 and /dev/null differ diff --git a/files/15_2086_meaning.mp3 b/files/15_2086_meaning.mp3 deleted file mode 100644 index 720a0cb77..000000000 Binary files a/files/15_2086_meaning.mp3 and /dev/null differ diff --git a/files/15_2087.jpg b/files/15_2087.jpg deleted file mode 100644 index be19c8afb..000000000 Binary files a/files/15_2087.jpg and /dev/null differ diff --git a/files/15_2087.mp3 b/files/15_2087.mp3 deleted file mode 100644 index 2158fd54e..000000000 Binary files a/files/15_2087.mp3 and /dev/null differ diff --git a/files/15_2087_example.mp3 b/files/15_2087_example.mp3 deleted file mode 100644 index 37a4f77ec..000000000 Binary files a/files/15_2087_example.mp3 and /dev/null differ diff --git a/files/15_2087_meaning.mp3 b/files/15_2087_meaning.mp3 deleted file mode 100644 index 9eb87a5c9..000000000 Binary files a/files/15_2087_meaning.mp3 and /dev/null differ diff --git a/files/15_2088.jpg b/files/15_2088.jpg deleted file mode 100644 index 0600caa22..000000000 Binary files a/files/15_2088.jpg and /dev/null differ diff --git a/files/15_2088.mp3 b/files/15_2088.mp3 deleted file mode 100644 index c0a5b0bcc..000000000 Binary files a/files/15_2088.mp3 and /dev/null differ diff --git a/files/15_2088_example.mp3 b/files/15_2088_example.mp3 deleted file mode 100644 index f40c26d7a..000000000 Binary files a/files/15_2088_example.mp3 and /dev/null differ diff --git a/files/15_2088_meaning.mp3 b/files/15_2088_meaning.mp3 deleted file mode 100644 index 729e6ae92..000000000 Binary files a/files/15_2088_meaning.mp3 and /dev/null differ diff --git a/files/15_2089.jpg b/files/15_2089.jpg deleted file mode 100644 index 77bc6efd8..000000000 Binary files a/files/15_2089.jpg and /dev/null differ diff --git a/files/15_2089.mp3 b/files/15_2089.mp3 deleted file mode 100644 index c195e6c5a..000000000 Binary files a/files/15_2089.mp3 and /dev/null differ diff --git a/files/15_2089_example.mp3 b/files/15_2089_example.mp3 deleted file mode 100644 index 1a3488d48..000000000 Binary files a/files/15_2089_example.mp3 and /dev/null differ diff --git a/files/15_2089_meaning.mp3 b/files/15_2089_meaning.mp3 deleted file mode 100644 index 0b1ac6ce2..000000000 Binary files a/files/15_2089_meaning.mp3 and /dev/null differ diff --git a/files/15_2090.jpg b/files/15_2090.jpg deleted file mode 100644 index 5b18183d2..000000000 Binary files a/files/15_2090.jpg and /dev/null differ diff --git a/files/15_2090.mp3 b/files/15_2090.mp3 deleted file mode 100644 index 91009a483..000000000 Binary files a/files/15_2090.mp3 and /dev/null differ diff --git a/files/15_2090_example.mp3 b/files/15_2090_example.mp3 deleted file mode 100644 index 185e39ac7..000000000 Binary files a/files/15_2090_example.mp3 and /dev/null differ diff --git a/files/15_2090_meaning.mp3 b/files/15_2090_meaning.mp3 deleted file mode 100644 index f14093c6d..000000000 Binary files a/files/15_2090_meaning.mp3 and /dev/null differ diff --git a/files/15_2091.jpg b/files/15_2091.jpg deleted file mode 100644 index 1c036fdfb..000000000 Binary files a/files/15_2091.jpg and /dev/null differ diff --git a/files/15_2091.mp3 b/files/15_2091.mp3 deleted file mode 100644 index 37757b0b7..000000000 Binary files a/files/15_2091.mp3 and /dev/null differ diff --git a/files/15_2091_example.mp3 b/files/15_2091_example.mp3 deleted file mode 100644 index 8ff960fcd..000000000 Binary files a/files/15_2091_example.mp3 and /dev/null differ diff --git a/files/15_2091_meaning.mp3 b/files/15_2091_meaning.mp3 deleted file mode 100644 index 1aca68fc2..000000000 Binary files a/files/15_2091_meaning.mp3 and /dev/null differ diff --git a/files/15_2092.jpg b/files/15_2092.jpg deleted file mode 100644 index eedb11943..000000000 Binary files a/files/15_2092.jpg and /dev/null differ diff --git a/files/15_2092.mp3 b/files/15_2092.mp3 deleted file mode 100644 index 73210f0da..000000000 Binary files a/files/15_2092.mp3 and /dev/null differ diff --git a/files/15_2092_example.mp3 b/files/15_2092_example.mp3 deleted file mode 100644 index b1bd1814e..000000000 Binary files a/files/15_2092_example.mp3 and /dev/null differ diff --git a/files/15_2092_meaning.mp3 b/files/15_2092_meaning.mp3 deleted file mode 100644 index 53d1c31f0..000000000 Binary files a/files/15_2092_meaning.mp3 and /dev/null differ diff --git a/files/15_2093.jpg b/files/15_2093.jpg deleted file mode 100644 index 1e25f0e85..000000000 Binary files a/files/15_2093.jpg and /dev/null differ diff --git a/files/15_2093.mp3 b/files/15_2093.mp3 deleted file mode 100644 index 12ef3360d..000000000 Binary files a/files/15_2093.mp3 and /dev/null differ diff --git a/files/15_2093_example.mp3 b/files/15_2093_example.mp3 deleted file mode 100644 index b9477c44a..000000000 Binary files a/files/15_2093_example.mp3 and /dev/null differ diff --git a/files/15_2093_meaning.mp3 b/files/15_2093_meaning.mp3 deleted file mode 100644 index 84afd235e..000000000 Binary files a/files/15_2093_meaning.mp3 and /dev/null differ diff --git a/files/15_2094.jpg b/files/15_2094.jpg deleted file mode 100644 index d8b75837d..000000000 Binary files a/files/15_2094.jpg and /dev/null differ diff --git a/files/15_2094.mp3 b/files/15_2094.mp3 deleted file mode 100644 index 67fb0f5e0..000000000 Binary files a/files/15_2094.mp3 and /dev/null differ diff --git a/files/15_2094_example.mp3 b/files/15_2094_example.mp3 deleted file mode 100644 index 6ba2ad2d9..000000000 Binary files a/files/15_2094_example.mp3 and /dev/null differ diff --git a/files/15_2094_meaning.mp3 b/files/15_2094_meaning.mp3 deleted file mode 100644 index 10d8fae7c..000000000 Binary files a/files/15_2094_meaning.mp3 and /dev/null differ diff --git a/files/15_2095.jpg b/files/15_2095.jpg deleted file mode 100644 index 52f4a49f2..000000000 Binary files a/files/15_2095.jpg and /dev/null differ diff --git a/files/15_2095.mp3 b/files/15_2095.mp3 deleted file mode 100644 index 7af4f0c39..000000000 Binary files a/files/15_2095.mp3 and /dev/null differ diff --git a/files/15_2095_example.mp3 b/files/15_2095_example.mp3 deleted file mode 100644 index 1f3b816a2..000000000 Binary files a/files/15_2095_example.mp3 and /dev/null differ diff --git a/files/15_2095_meaning.mp3 b/files/15_2095_meaning.mp3 deleted file mode 100644 index 42278822b..000000000 Binary files a/files/15_2095_meaning.mp3 and /dev/null differ diff --git a/files/15_2096.jpg b/files/15_2096.jpg deleted file mode 100644 index 11de5e9b9..000000000 Binary files a/files/15_2096.jpg and /dev/null differ diff --git a/files/15_2096.mp3 b/files/15_2096.mp3 deleted file mode 100644 index fa3c5f7e4..000000000 Binary files a/files/15_2096.mp3 and /dev/null differ diff --git a/files/15_2096_example.mp3 b/files/15_2096_example.mp3 deleted file mode 100644 index 805d5a301..000000000 Binary files a/files/15_2096_example.mp3 and /dev/null differ diff --git a/files/15_2096_meaning.mp3 b/files/15_2096_meaning.mp3 deleted file mode 100644 index 8fb1c6eef..000000000 Binary files a/files/15_2096_meaning.mp3 and /dev/null differ diff --git a/files/15_2097.jpg b/files/15_2097.jpg deleted file mode 100644 index 198ec93f9..000000000 Binary files a/files/15_2097.jpg and /dev/null differ diff --git a/files/15_2097.mp3 b/files/15_2097.mp3 deleted file mode 100644 index aefc9a99f..000000000 Binary files a/files/15_2097.mp3 and /dev/null differ diff --git a/files/15_2097_example.mp3 b/files/15_2097_example.mp3 deleted file mode 100644 index 229f9a9ed..000000000 Binary files a/files/15_2097_example.mp3 and /dev/null differ diff --git a/files/15_2097_meaning.mp3 b/files/15_2097_meaning.mp3 deleted file mode 100644 index 926d71139..000000000 Binary files a/files/15_2097_meaning.mp3 and /dev/null differ diff --git a/files/15_2098.jpg b/files/15_2098.jpg deleted file mode 100644 index efd1d5dc5..000000000 Binary files a/files/15_2098.jpg and /dev/null differ diff --git a/files/15_2098.mp3 b/files/15_2098.mp3 deleted file mode 100644 index 54a23ad15..000000000 Binary files a/files/15_2098.mp3 and /dev/null differ diff --git a/files/15_2098_example.mp3 b/files/15_2098_example.mp3 deleted file mode 100644 index a7b741be8..000000000 Binary files a/files/15_2098_example.mp3 and /dev/null differ diff --git a/files/15_2098_meaning.mp3 b/files/15_2098_meaning.mp3 deleted file mode 100644 index 15091cff1..000000000 Binary files a/files/15_2098_meaning.mp3 and /dev/null differ diff --git a/files/15_2099.jpg b/files/15_2099.jpg deleted file mode 100644 index fa90aff19..000000000 Binary files a/files/15_2099.jpg and /dev/null differ diff --git a/files/15_2099.mp3 b/files/15_2099.mp3 deleted file mode 100644 index 862edd44f..000000000 Binary files a/files/15_2099.mp3 and /dev/null differ diff --git a/files/15_2099_example.mp3 b/files/15_2099_example.mp3 deleted file mode 100644 index 56b6b9dee..000000000 Binary files a/files/15_2099_example.mp3 and /dev/null differ diff --git a/files/15_2099_meaning.mp3 b/files/15_2099_meaning.mp3 deleted file mode 100644 index 63c3bf22a..000000000 Binary files a/files/15_2099_meaning.mp3 and /dev/null differ diff --git a/files/15_2100.jpg b/files/15_2100.jpg deleted file mode 100644 index 69dac4e41..000000000 Binary files a/files/15_2100.jpg and /dev/null differ diff --git a/files/15_2100.mp3 b/files/15_2100.mp3 deleted file mode 100644 index 4963dfec6..000000000 Binary files a/files/15_2100.mp3 and /dev/null differ diff --git a/files/15_2100_example.mp3 b/files/15_2100_example.mp3 deleted file mode 100644 index 997b12be9..000000000 Binary files a/files/15_2100_example.mp3 and /dev/null differ diff --git a/files/15_2100_meaning.mp3 b/files/15_2100_meaning.mp3 deleted file mode 100644 index d52bf34f2..000000000 Binary files a/files/15_2100_meaning.mp3 and /dev/null differ diff --git a/files/15_2681.jpg b/files/15_2681.jpg deleted file mode 100644 index 1fa19d86c..000000000 Binary files a/files/15_2681.jpg and /dev/null differ diff --git a/files/15_2681.mp3 b/files/15_2681.mp3 deleted file mode 100644 index 7250e25af..000000000 Binary files a/files/15_2681.mp3 and /dev/null differ diff --git a/files/15_2681_example.mp3 b/files/15_2681_example.mp3 deleted file mode 100644 index 3a3d77b18..000000000 Binary files a/files/15_2681_example.mp3 and /dev/null differ diff --git a/files/15_2681_meaning.mp3 b/files/15_2681_meaning.mp3 deleted file mode 100644 index 23512dd81..000000000 Binary files a/files/15_2681_meaning.mp3 and /dev/null differ diff --git a/files/15_2682.jpg b/files/15_2682.jpg deleted file mode 100644 index 62877e69c..000000000 Binary files a/files/15_2682.jpg and /dev/null differ diff --git a/files/15_2682.mp3 b/files/15_2682.mp3 deleted file mode 100644 index 69310ae0e..000000000 Binary files a/files/15_2682.mp3 and /dev/null differ diff --git a/files/15_2682_example.mp3 b/files/15_2682_example.mp3 deleted file mode 100644 index 64006d2ac..000000000 Binary files a/files/15_2682_example.mp3 and /dev/null differ diff --git a/files/15_2682_meaning.mp3 b/files/15_2682_meaning.mp3 deleted file mode 100644 index b2d31bd9d..000000000 Binary files a/files/15_2682_meaning.mp3 and /dev/null differ diff --git a/files/15_2683.jpg b/files/15_2683.jpg deleted file mode 100644 index 35180a8d8..000000000 Binary files a/files/15_2683.jpg and /dev/null differ diff --git a/files/15_2683.mp3 b/files/15_2683.mp3 deleted file mode 100644 index de3a958b8..000000000 Binary files a/files/15_2683.mp3 and /dev/null differ diff --git a/files/15_2683_example.mp3 b/files/15_2683_example.mp3 deleted file mode 100644 index c98673ccd..000000000 Binary files a/files/15_2683_example.mp3 and /dev/null differ diff --git a/files/15_2683_meaning.mp3 b/files/15_2683_meaning.mp3 deleted file mode 100644 index a667abf1a..000000000 Binary files a/files/15_2683_meaning.mp3 and /dev/null differ diff --git a/files/15_2684.jpg b/files/15_2684.jpg deleted file mode 100644 index f6450a9bb..000000000 Binary files a/files/15_2684.jpg and /dev/null differ diff --git a/files/15_2684.mp3 b/files/15_2684.mp3 deleted file mode 100644 index f4502b74a..000000000 Binary files a/files/15_2684.mp3 and /dev/null differ diff --git a/files/15_2684_example.mp3 b/files/15_2684_example.mp3 deleted file mode 100644 index c56a340af..000000000 Binary files a/files/15_2684_example.mp3 and /dev/null differ diff --git a/files/15_2684_meaning.mp3 b/files/15_2684_meaning.mp3 deleted file mode 100644 index fadd0640f..000000000 Binary files a/files/15_2684_meaning.mp3 and /dev/null differ diff --git a/files/15_2685.jpg b/files/15_2685.jpg deleted file mode 100644 index 43ef03823..000000000 Binary files a/files/15_2685.jpg and /dev/null differ diff --git a/files/15_2685.mp3 b/files/15_2685.mp3 deleted file mode 100644 index 5d998afd5..000000000 Binary files a/files/15_2685.mp3 and /dev/null differ diff --git a/files/15_2685_example.mp3 b/files/15_2685_example.mp3 deleted file mode 100644 index 97673e9e5..000000000 Binary files a/files/15_2685_example.mp3 and /dev/null differ diff --git a/files/15_2685_meaning.mp3 b/files/15_2685_meaning.mp3 deleted file mode 100644 index 43c2abb57..000000000 Binary files a/files/15_2685_meaning.mp3 and /dev/null differ diff --git a/files/15_2686.jpg b/files/15_2686.jpg deleted file mode 100644 index 2d60343e1..000000000 Binary files a/files/15_2686.jpg and /dev/null differ diff --git a/files/15_2686.mp3 b/files/15_2686.mp3 deleted file mode 100644 index 3464eb8ff..000000000 Binary files a/files/15_2686.mp3 and /dev/null differ diff --git a/files/15_2686_example.mp3 b/files/15_2686_example.mp3 deleted file mode 100644 index edb723d32..000000000 Binary files a/files/15_2686_example.mp3 and /dev/null differ diff --git a/files/15_2686_meaning.mp3 b/files/15_2686_meaning.mp3 deleted file mode 100644 index b26fb2a11..000000000 Binary files a/files/15_2686_meaning.mp3 and /dev/null differ diff --git a/files/15_2687.jpg b/files/15_2687.jpg deleted file mode 100644 index 2d3283ce9..000000000 Binary files a/files/15_2687.jpg and /dev/null differ diff --git a/files/15_2687.mp3 b/files/15_2687.mp3 deleted file mode 100644 index 56061bb85..000000000 Binary files a/files/15_2687.mp3 and /dev/null differ diff --git a/files/15_2687_example.mp3 b/files/15_2687_example.mp3 deleted file mode 100644 index 9f4157a79..000000000 Binary files a/files/15_2687_example.mp3 and /dev/null differ diff --git a/files/15_2687_meaning.mp3 b/files/15_2687_meaning.mp3 deleted file mode 100644 index 15df1722b..000000000 Binary files a/files/15_2687_meaning.mp3 and /dev/null differ diff --git a/files/15_2688.jpg b/files/15_2688.jpg deleted file mode 100644 index 7979c8030..000000000 Binary files a/files/15_2688.jpg and /dev/null differ diff --git a/files/15_2688.mp3 b/files/15_2688.mp3 deleted file mode 100644 index 7f49c7896..000000000 Binary files a/files/15_2688.mp3 and /dev/null differ diff --git a/files/15_2688_example.mp3 b/files/15_2688_example.mp3 deleted file mode 100644 index bc940b9cb..000000000 Binary files a/files/15_2688_example.mp3 and /dev/null differ diff --git a/files/15_2688_meaning.mp3 b/files/15_2688_meaning.mp3 deleted file mode 100644 index 4b65acc75..000000000 Binary files a/files/15_2688_meaning.mp3 and /dev/null differ diff --git a/files/15_2689.jpg b/files/15_2689.jpg deleted file mode 100644 index c6da25322..000000000 Binary files a/files/15_2689.jpg and /dev/null differ diff --git a/files/15_2689.mp3 b/files/15_2689.mp3 deleted file mode 100644 index b4da3292b..000000000 Binary files a/files/15_2689.mp3 and /dev/null differ diff --git a/files/15_2689_example.mp3 b/files/15_2689_example.mp3 deleted file mode 100644 index d1f57ff46..000000000 Binary files a/files/15_2689_example.mp3 and /dev/null differ diff --git a/files/15_2689_meaning.mp3 b/files/15_2689_meaning.mp3 deleted file mode 100644 index 920c2092f..000000000 Binary files a/files/15_2689_meaning.mp3 and /dev/null differ diff --git a/files/15_2690.jpg b/files/15_2690.jpg deleted file mode 100644 index 30e384053..000000000 Binary files a/files/15_2690.jpg and /dev/null differ diff --git a/files/15_2690.mp3 b/files/15_2690.mp3 deleted file mode 100644 index 28d4a466c..000000000 Binary files a/files/15_2690.mp3 and /dev/null differ diff --git a/files/15_2690_example.mp3 b/files/15_2690_example.mp3 deleted file mode 100644 index 2aa3b872e..000000000 Binary files a/files/15_2690_example.mp3 and /dev/null differ diff --git a/files/15_2690_meaning.mp3 b/files/15_2690_meaning.mp3 deleted file mode 100644 index bef3ff185..000000000 Binary files a/files/15_2690_meaning.mp3 and /dev/null differ diff --git a/files/15_2691.jpg b/files/15_2691.jpg deleted file mode 100644 index 51b8ac7b4..000000000 Binary files a/files/15_2691.jpg and /dev/null differ diff --git a/files/15_2691.mp3 b/files/15_2691.mp3 deleted file mode 100644 index c17ac0a78..000000000 Binary files a/files/15_2691.mp3 and /dev/null differ diff --git a/files/15_2691_example.mp3 b/files/15_2691_example.mp3 deleted file mode 100644 index 6fea98e2a..000000000 Binary files a/files/15_2691_example.mp3 and /dev/null differ diff --git a/files/15_2691_meaning.mp3 b/files/15_2691_meaning.mp3 deleted file mode 100644 index 75aa3c18e..000000000 Binary files a/files/15_2691_meaning.mp3 and /dev/null differ diff --git a/files/15_2692.jpg b/files/15_2692.jpg deleted file mode 100644 index c9393643e..000000000 Binary files a/files/15_2692.jpg and /dev/null differ diff --git a/files/15_2692.mp3 b/files/15_2692.mp3 deleted file mode 100644 index b29d8a915..000000000 Binary files a/files/15_2692.mp3 and /dev/null differ diff --git a/files/15_2692_example.mp3 b/files/15_2692_example.mp3 deleted file mode 100644 index 4ee02c3a1..000000000 Binary files a/files/15_2692_example.mp3 and /dev/null differ diff --git a/files/15_2692_meaning.mp3 b/files/15_2692_meaning.mp3 deleted file mode 100644 index a8df41f23..000000000 Binary files a/files/15_2692_meaning.mp3 and /dev/null differ diff --git a/files/15_2693.jpg b/files/15_2693.jpg deleted file mode 100644 index 1280b9e87..000000000 Binary files a/files/15_2693.jpg and /dev/null differ diff --git a/files/15_2693.mp3 b/files/15_2693.mp3 deleted file mode 100644 index 0d9aa9c19..000000000 Binary files a/files/15_2693.mp3 and /dev/null differ diff --git a/files/15_2693_example.mp3 b/files/15_2693_example.mp3 deleted file mode 100644 index c14ef9ed5..000000000 Binary files a/files/15_2693_example.mp3 and /dev/null differ diff --git a/files/15_2693_meaning.mp3 b/files/15_2693_meaning.mp3 deleted file mode 100644 index eba5dc6da..000000000 Binary files a/files/15_2693_meaning.mp3 and /dev/null differ diff --git a/files/15_2694.jpg b/files/15_2694.jpg deleted file mode 100644 index 82e84844d..000000000 Binary files a/files/15_2694.jpg and /dev/null differ diff --git a/files/15_2694.mp3 b/files/15_2694.mp3 deleted file mode 100644 index 96ddb13c3..000000000 Binary files a/files/15_2694.mp3 and /dev/null differ diff --git a/files/15_2694_example.mp3 b/files/15_2694_example.mp3 deleted file mode 100644 index 873763ba6..000000000 Binary files a/files/15_2694_example.mp3 and /dev/null differ diff --git a/files/15_2694_meaning.mp3 b/files/15_2694_meaning.mp3 deleted file mode 100644 index 9026996d0..000000000 Binary files a/files/15_2694_meaning.mp3 and /dev/null differ diff --git a/files/15_2695.jpg b/files/15_2695.jpg deleted file mode 100644 index 945f324dd..000000000 Binary files a/files/15_2695.jpg and /dev/null differ diff --git a/files/15_2695.mp3 b/files/15_2695.mp3 deleted file mode 100644 index c8abcea0c..000000000 Binary files a/files/15_2695.mp3 and /dev/null differ diff --git a/files/15_2695_example.mp3 b/files/15_2695_example.mp3 deleted file mode 100644 index 27556afbd..000000000 Binary files a/files/15_2695_example.mp3 and /dev/null differ diff --git a/files/15_2695_meaning.mp3 b/files/15_2695_meaning.mp3 deleted file mode 100644 index 0e17d0dba..000000000 Binary files a/files/15_2695_meaning.mp3 and /dev/null differ diff --git a/files/15_2696.jpg b/files/15_2696.jpg deleted file mode 100644 index 1dd1f9bfe..000000000 Binary files a/files/15_2696.jpg and /dev/null differ diff --git a/files/15_2696.mp3 b/files/15_2696.mp3 deleted file mode 100644 index 1702f3ad9..000000000 Binary files a/files/15_2696.mp3 and /dev/null differ diff --git a/files/15_2696_example.mp3 b/files/15_2696_example.mp3 deleted file mode 100644 index 03b3aa930..000000000 Binary files a/files/15_2696_example.mp3 and /dev/null differ diff --git a/files/15_2696_meaning.mp3 b/files/15_2696_meaning.mp3 deleted file mode 100644 index b0821c9cd..000000000 Binary files a/files/15_2696_meaning.mp3 and /dev/null differ diff --git a/files/15_2697.jpg b/files/15_2697.jpg deleted file mode 100644 index e7a02ebd8..000000000 Binary files a/files/15_2697.jpg and /dev/null differ diff --git a/files/15_2697.mp3 b/files/15_2697.mp3 deleted file mode 100644 index 2fd839492..000000000 Binary files a/files/15_2697.mp3 and /dev/null differ diff --git a/files/15_2697_example.mp3 b/files/15_2697_example.mp3 deleted file mode 100644 index e4bfbd991..000000000 Binary files a/files/15_2697_example.mp3 and /dev/null differ diff --git a/files/15_2697_meaning.mp3 b/files/15_2697_meaning.mp3 deleted file mode 100644 index b44c48949..000000000 Binary files a/files/15_2697_meaning.mp3 and /dev/null differ diff --git a/files/15_2698.jpg b/files/15_2698.jpg deleted file mode 100644 index 035a30129..000000000 Binary files a/files/15_2698.jpg and /dev/null differ diff --git a/files/15_2698.mp3 b/files/15_2698.mp3 deleted file mode 100644 index 8db92111b..000000000 Binary files a/files/15_2698.mp3 and /dev/null differ diff --git a/files/15_2698_example.mp3 b/files/15_2698_example.mp3 deleted file mode 100644 index c824654ff..000000000 Binary files a/files/15_2698_example.mp3 and /dev/null differ diff --git a/files/15_2698_meaning.mp3 b/files/15_2698_meaning.mp3 deleted file mode 100644 index fe170d9d2..000000000 Binary files a/files/15_2698_meaning.mp3 and /dev/null differ diff --git a/files/15_2699.jpg b/files/15_2699.jpg deleted file mode 100644 index 9fcd9a78a..000000000 Binary files a/files/15_2699.jpg and /dev/null differ diff --git a/files/15_2699.mp3 b/files/15_2699.mp3 deleted file mode 100644 index 133a4541d..000000000 Binary files a/files/15_2699.mp3 and /dev/null differ diff --git a/files/15_2699_example.mp3 b/files/15_2699_example.mp3 deleted file mode 100644 index 80e5c7113..000000000 Binary files a/files/15_2699_example.mp3 and /dev/null differ diff --git a/files/15_2699_meaning.mp3 b/files/15_2699_meaning.mp3 deleted file mode 100644 index dc1d2c8c8..000000000 Binary files a/files/15_2699_meaning.mp3 and /dev/null differ diff --git a/files/15_2700.jpg b/files/15_2700.jpg deleted file mode 100644 index df5c5939a..000000000 Binary files a/files/15_2700.jpg and /dev/null differ diff --git a/files/15_2700.mp3 b/files/15_2700.mp3 deleted file mode 100644 index 97b5a0c94..000000000 Binary files a/files/15_2700.mp3 and /dev/null differ diff --git a/files/15_2700_example.mp3 b/files/15_2700_example.mp3 deleted file mode 100644 index ad89fb790..000000000 Binary files a/files/15_2700_example.mp3 and /dev/null differ diff --git a/files/15_2700_meaning.mp3 b/files/15_2700_meaning.mp3 deleted file mode 100644 index 3b0cf6657..000000000 Binary files a/files/15_2700_meaning.mp3 and /dev/null differ diff --git a/files/15_3281.jpg b/files/15_3281.jpg deleted file mode 100644 index cea416e59..000000000 Binary files a/files/15_3281.jpg and /dev/null differ diff --git a/files/15_3281.mp3 b/files/15_3281.mp3 deleted file mode 100644 index 6bc4002aa..000000000 Binary files a/files/15_3281.mp3 and /dev/null differ diff --git a/files/15_3281_example.mp3 b/files/15_3281_example.mp3 deleted file mode 100644 index c2d42f53b..000000000 Binary files a/files/15_3281_example.mp3 and /dev/null differ diff --git a/files/15_3281_meaning.mp3 b/files/15_3281_meaning.mp3 deleted file mode 100644 index 58d268950..000000000 Binary files a/files/15_3281_meaning.mp3 and /dev/null differ diff --git a/files/15_3282.jpg b/files/15_3282.jpg deleted file mode 100644 index ab3a0d6c2..000000000 Binary files a/files/15_3282.jpg and /dev/null differ diff --git a/files/15_3282.mp3 b/files/15_3282.mp3 deleted file mode 100644 index 560d23129..000000000 Binary files a/files/15_3282.mp3 and /dev/null differ diff --git a/files/15_3282_example.mp3 b/files/15_3282_example.mp3 deleted file mode 100644 index ec4553506..000000000 Binary files a/files/15_3282_example.mp3 and /dev/null differ diff --git a/files/15_3282_meaning.mp3 b/files/15_3282_meaning.mp3 deleted file mode 100644 index f5758fb70..000000000 Binary files a/files/15_3282_meaning.mp3 and /dev/null differ diff --git a/files/15_3283.jpg b/files/15_3283.jpg deleted file mode 100644 index 129d88f6a..000000000 Binary files a/files/15_3283.jpg and /dev/null differ diff --git a/files/15_3283.mp3 b/files/15_3283.mp3 deleted file mode 100644 index 6cb4c08f2..000000000 Binary files a/files/15_3283.mp3 and /dev/null differ diff --git a/files/15_3283_example.mp3 b/files/15_3283_example.mp3 deleted file mode 100644 index e6a44011b..000000000 Binary files a/files/15_3283_example.mp3 and /dev/null differ diff --git a/files/15_3283_meaning.mp3 b/files/15_3283_meaning.mp3 deleted file mode 100644 index da1ab1873..000000000 Binary files a/files/15_3283_meaning.mp3 and /dev/null differ diff --git a/files/15_3284.jpg b/files/15_3284.jpg deleted file mode 100644 index 0f2e2ef43..000000000 Binary files a/files/15_3284.jpg and /dev/null differ diff --git a/files/15_3284.mp3 b/files/15_3284.mp3 deleted file mode 100644 index eaf0955cd..000000000 Binary files a/files/15_3284.mp3 and /dev/null differ diff --git a/files/15_3284_example.mp3 b/files/15_3284_example.mp3 deleted file mode 100644 index 30f44812e..000000000 Binary files a/files/15_3284_example.mp3 and /dev/null differ diff --git a/files/15_3284_meaning.mp3 b/files/15_3284_meaning.mp3 deleted file mode 100644 index 811fc6590..000000000 Binary files a/files/15_3284_meaning.mp3 and /dev/null differ diff --git a/files/15_3285.jpg b/files/15_3285.jpg deleted file mode 100644 index ffb95988d..000000000 Binary files a/files/15_3285.jpg and /dev/null differ diff --git a/files/15_3285.mp3 b/files/15_3285.mp3 deleted file mode 100644 index 88c55f45f..000000000 Binary files a/files/15_3285.mp3 and /dev/null differ diff --git a/files/15_3285_example.mp3 b/files/15_3285_example.mp3 deleted file mode 100644 index db507eba1..000000000 Binary files a/files/15_3285_example.mp3 and /dev/null differ diff --git a/files/15_3285_meaning.mp3 b/files/15_3285_meaning.mp3 deleted file mode 100644 index a8d19c474..000000000 Binary files a/files/15_3285_meaning.mp3 and /dev/null differ diff --git a/files/15_3286.jpg b/files/15_3286.jpg deleted file mode 100644 index d6e9b0136..000000000 Binary files a/files/15_3286.jpg and /dev/null differ diff --git a/files/15_3286.mp3 b/files/15_3286.mp3 deleted file mode 100644 index 436e8fee3..000000000 Binary files a/files/15_3286.mp3 and /dev/null differ diff --git a/files/15_3286_example.mp3 b/files/15_3286_example.mp3 deleted file mode 100644 index 0979a948a..000000000 Binary files a/files/15_3286_example.mp3 and /dev/null differ diff --git a/files/15_3286_meaning.mp3 b/files/15_3286_meaning.mp3 deleted file mode 100644 index 0bb29606f..000000000 Binary files a/files/15_3286_meaning.mp3 and /dev/null differ diff --git a/files/15_3287.jpg b/files/15_3287.jpg deleted file mode 100644 index 335f005fc..000000000 Binary files a/files/15_3287.jpg and /dev/null differ diff --git a/files/15_3287.mp3 b/files/15_3287.mp3 deleted file mode 100644 index a404700b5..000000000 Binary files a/files/15_3287.mp3 and /dev/null differ diff --git a/files/15_3287_example.mp3 b/files/15_3287_example.mp3 deleted file mode 100644 index 58f87f87c..000000000 Binary files a/files/15_3287_example.mp3 and /dev/null differ diff --git a/files/15_3287_meaning.mp3 b/files/15_3287_meaning.mp3 deleted file mode 100644 index 2decce971..000000000 Binary files a/files/15_3287_meaning.mp3 and /dev/null differ diff --git a/files/15_3288.jpg b/files/15_3288.jpg deleted file mode 100644 index 3f5943e38..000000000 Binary files a/files/15_3288.jpg and /dev/null differ diff --git a/files/15_3288.mp3 b/files/15_3288.mp3 deleted file mode 100644 index 512d51407..000000000 Binary files a/files/15_3288.mp3 and /dev/null differ diff --git a/files/15_3288_example.mp3 b/files/15_3288_example.mp3 deleted file mode 100644 index d9436e5bb..000000000 Binary files a/files/15_3288_example.mp3 and /dev/null differ diff --git a/files/15_3288_meaning.mp3 b/files/15_3288_meaning.mp3 deleted file mode 100644 index 1b49d8099..000000000 Binary files a/files/15_3288_meaning.mp3 and /dev/null differ diff --git a/files/15_3289.jpg b/files/15_3289.jpg deleted file mode 100644 index 89bf8062c..000000000 Binary files a/files/15_3289.jpg and /dev/null differ diff --git a/files/15_3289.mp3 b/files/15_3289.mp3 deleted file mode 100644 index 8ff3a43ac..000000000 Binary files a/files/15_3289.mp3 and /dev/null differ diff --git a/files/15_3289_example.mp3 b/files/15_3289_example.mp3 deleted file mode 100644 index 39e8c480e..000000000 Binary files a/files/15_3289_example.mp3 and /dev/null differ diff --git a/files/15_3289_meaning.mp3 b/files/15_3289_meaning.mp3 deleted file mode 100644 index 8b8b59ae8..000000000 Binary files a/files/15_3289_meaning.mp3 and /dev/null differ diff --git a/files/15_3290.jpg b/files/15_3290.jpg deleted file mode 100644 index 0f227c43d..000000000 Binary files a/files/15_3290.jpg and /dev/null differ diff --git a/files/15_3290.mp3 b/files/15_3290.mp3 deleted file mode 100644 index 0c78472c3..000000000 Binary files a/files/15_3290.mp3 and /dev/null differ diff --git a/files/15_3290_example.mp3 b/files/15_3290_example.mp3 deleted file mode 100644 index 4b21953de..000000000 Binary files a/files/15_3290_example.mp3 and /dev/null differ diff --git a/files/15_3290_meaning.mp3 b/files/15_3290_meaning.mp3 deleted file mode 100644 index 7ee75fbaf..000000000 Binary files a/files/15_3290_meaning.mp3 and /dev/null differ diff --git a/files/15_3291.jpg b/files/15_3291.jpg deleted file mode 100644 index 9bb06fef4..000000000 Binary files a/files/15_3291.jpg and /dev/null differ diff --git a/files/15_3291.mp3 b/files/15_3291.mp3 deleted file mode 100644 index 19345fe3d..000000000 Binary files a/files/15_3291.mp3 and /dev/null differ diff --git a/files/15_3291_example.mp3 b/files/15_3291_example.mp3 deleted file mode 100644 index 938148c44..000000000 Binary files a/files/15_3291_example.mp3 and /dev/null differ diff --git a/files/15_3291_meaning.mp3 b/files/15_3291_meaning.mp3 deleted file mode 100644 index 083da1855..000000000 Binary files a/files/15_3291_meaning.mp3 and /dev/null differ diff --git a/files/15_3292.jpg b/files/15_3292.jpg deleted file mode 100644 index 78065ea11..000000000 Binary files a/files/15_3292.jpg and /dev/null differ diff --git a/files/15_3292.mp3 b/files/15_3292.mp3 deleted file mode 100644 index 5d340f909..000000000 Binary files a/files/15_3292.mp3 and /dev/null differ diff --git a/files/15_3292_example.mp3 b/files/15_3292_example.mp3 deleted file mode 100644 index 19fd32d95..000000000 Binary files a/files/15_3292_example.mp3 and /dev/null differ diff --git a/files/15_3292_meaning.mp3 b/files/15_3292_meaning.mp3 deleted file mode 100644 index ba274aa39..000000000 Binary files a/files/15_3292_meaning.mp3 and /dev/null differ diff --git a/files/15_3293.jpg b/files/15_3293.jpg deleted file mode 100644 index 4de0ab9b9..000000000 Binary files a/files/15_3293.jpg and /dev/null differ diff --git a/files/15_3293.mp3 b/files/15_3293.mp3 deleted file mode 100644 index b0567da5f..000000000 Binary files a/files/15_3293.mp3 and /dev/null differ diff --git a/files/15_3293_example.mp3 b/files/15_3293_example.mp3 deleted file mode 100644 index 52bf9de2a..000000000 Binary files a/files/15_3293_example.mp3 and /dev/null differ diff --git a/files/15_3293_meaning.mp3 b/files/15_3293_meaning.mp3 deleted file mode 100644 index 9ea1e1a95..000000000 Binary files a/files/15_3293_meaning.mp3 and /dev/null differ diff --git a/files/15_3294.jpg b/files/15_3294.jpg deleted file mode 100644 index f648ef5ab..000000000 Binary files a/files/15_3294.jpg and /dev/null differ diff --git a/files/15_3294.mp3 b/files/15_3294.mp3 deleted file mode 100644 index 0bce261c8..000000000 Binary files a/files/15_3294.mp3 and /dev/null differ diff --git a/files/15_3294_example.mp3 b/files/15_3294_example.mp3 deleted file mode 100644 index 620ea4d7a..000000000 Binary files a/files/15_3294_example.mp3 and /dev/null differ diff --git a/files/15_3294_meaning.mp3 b/files/15_3294_meaning.mp3 deleted file mode 100644 index 7f3c9a2d8..000000000 Binary files a/files/15_3294_meaning.mp3 and /dev/null differ diff --git a/files/15_3295.jpg b/files/15_3295.jpg deleted file mode 100644 index 0dd9daba7..000000000 Binary files a/files/15_3295.jpg and /dev/null differ diff --git a/files/15_3295.mp3 b/files/15_3295.mp3 deleted file mode 100644 index 225c6ed28..000000000 Binary files a/files/15_3295.mp3 and /dev/null differ diff --git a/files/15_3295_example.mp3 b/files/15_3295_example.mp3 deleted file mode 100644 index acc749d27..000000000 Binary files a/files/15_3295_example.mp3 and /dev/null differ diff --git a/files/15_3295_meaning.mp3 b/files/15_3295_meaning.mp3 deleted file mode 100644 index 8a17fc77e..000000000 Binary files a/files/15_3295_meaning.mp3 and /dev/null differ diff --git a/files/15_3296.jpg b/files/15_3296.jpg deleted file mode 100644 index 7faa7fd46..000000000 Binary files a/files/15_3296.jpg and /dev/null differ diff --git a/files/15_3296.mp3 b/files/15_3296.mp3 deleted file mode 100644 index 72b7b3f5e..000000000 Binary files a/files/15_3296.mp3 and /dev/null differ diff --git a/files/15_3296_example.mp3 b/files/15_3296_example.mp3 deleted file mode 100644 index b95629d07..000000000 Binary files a/files/15_3296_example.mp3 and /dev/null differ diff --git a/files/15_3296_meaning.mp3 b/files/15_3296_meaning.mp3 deleted file mode 100644 index 3a0105887..000000000 Binary files a/files/15_3296_meaning.mp3 and /dev/null differ diff --git a/files/15_3297.jpg b/files/15_3297.jpg deleted file mode 100644 index 71c524e1a..000000000 Binary files a/files/15_3297.jpg and /dev/null differ diff --git a/files/15_3297.mp3 b/files/15_3297.mp3 deleted file mode 100644 index 96a7a7991..000000000 Binary files a/files/15_3297.mp3 and /dev/null differ diff --git a/files/15_3297_example.mp3 b/files/15_3297_example.mp3 deleted file mode 100644 index eb2a7d334..000000000 Binary files a/files/15_3297_example.mp3 and /dev/null differ diff --git a/files/15_3297_meaning.mp3 b/files/15_3297_meaning.mp3 deleted file mode 100644 index 87134f4d8..000000000 Binary files a/files/15_3297_meaning.mp3 and /dev/null differ diff --git a/files/15_3298.jpg b/files/15_3298.jpg deleted file mode 100644 index a8eb138b6..000000000 Binary files a/files/15_3298.jpg and /dev/null differ diff --git a/files/15_3298.mp3 b/files/15_3298.mp3 deleted file mode 100644 index 8e136de16..000000000 Binary files a/files/15_3298.mp3 and /dev/null differ diff --git a/files/15_3298_example.mp3 b/files/15_3298_example.mp3 deleted file mode 100644 index 1675f1c94..000000000 Binary files a/files/15_3298_example.mp3 and /dev/null differ diff --git a/files/15_3298_meaning.mp3 b/files/15_3298_meaning.mp3 deleted file mode 100644 index a331a2ce6..000000000 Binary files a/files/15_3298_meaning.mp3 and /dev/null differ diff --git a/files/15_3299.jpg b/files/15_3299.jpg deleted file mode 100644 index 9b17dcca2..000000000 Binary files a/files/15_3299.jpg and /dev/null differ diff --git a/files/15_3299.mp3 b/files/15_3299.mp3 deleted file mode 100644 index 828a90839..000000000 Binary files a/files/15_3299.mp3 and /dev/null differ diff --git a/files/15_3299_example.mp3 b/files/15_3299_example.mp3 deleted file mode 100644 index 9b3ce12b7..000000000 Binary files a/files/15_3299_example.mp3 and /dev/null differ diff --git a/files/15_3299_meaning.mp3 b/files/15_3299_meaning.mp3 deleted file mode 100644 index d825a1cd2..000000000 Binary files a/files/15_3299_meaning.mp3 and /dev/null differ diff --git a/files/15_3300.jpg b/files/15_3300.jpg deleted file mode 100644 index 7497c8a09..000000000 Binary files a/files/15_3300.jpg and /dev/null differ diff --git a/files/15_3300.mp3 b/files/15_3300.mp3 deleted file mode 100644 index df734e9b6..000000000 Binary files a/files/15_3300.mp3 and /dev/null differ diff --git a/files/15_3300_example.mp3 b/files/15_3300_example.mp3 deleted file mode 100644 index 492033aa5..000000000 Binary files a/files/15_3300_example.mp3 and /dev/null differ diff --git a/files/15_3300_meaning.mp3 b/files/15_3300_meaning.mp3 deleted file mode 100644 index b1904ff0f..000000000 Binary files a/files/15_3300_meaning.mp3 and /dev/null differ diff --git a/files/16_0301.jpg b/files/16_0301.jpg deleted file mode 100644 index 6addc8ab4..000000000 Binary files a/files/16_0301.jpg and /dev/null differ diff --git a/files/16_0301.mp3 b/files/16_0301.mp3 deleted file mode 100644 index 538efbc72..000000000 Binary files a/files/16_0301.mp3 and /dev/null differ diff --git a/files/16_0301_example.mp3 b/files/16_0301_example.mp3 deleted file mode 100644 index f0b6ce013..000000000 Binary files a/files/16_0301_example.mp3 and /dev/null differ diff --git a/files/16_0301_meaning.mp3 b/files/16_0301_meaning.mp3 deleted file mode 100644 index 0713f3105..000000000 Binary files a/files/16_0301_meaning.mp3 and /dev/null differ diff --git a/files/16_0302.jpg b/files/16_0302.jpg deleted file mode 100644 index b9da813f7..000000000 Binary files a/files/16_0302.jpg and /dev/null differ diff --git a/files/16_0302.mp3 b/files/16_0302.mp3 deleted file mode 100644 index b842e742e..000000000 Binary files a/files/16_0302.mp3 and /dev/null differ diff --git a/files/16_0302_example.mp3 b/files/16_0302_example.mp3 deleted file mode 100644 index 5aaa90629..000000000 Binary files a/files/16_0302_example.mp3 and /dev/null differ diff --git a/files/16_0302_meaning.mp3 b/files/16_0302_meaning.mp3 deleted file mode 100644 index e3cedfee5..000000000 Binary files a/files/16_0302_meaning.mp3 and /dev/null differ diff --git a/files/16_0303.jpg b/files/16_0303.jpg deleted file mode 100644 index b90c496fb..000000000 Binary files a/files/16_0303.jpg and /dev/null differ diff --git a/files/16_0303.mp3 b/files/16_0303.mp3 deleted file mode 100644 index 7129b2239..000000000 Binary files a/files/16_0303.mp3 and /dev/null differ diff --git a/files/16_0303_example.mp3 b/files/16_0303_example.mp3 deleted file mode 100644 index c175f984f..000000000 Binary files a/files/16_0303_example.mp3 and /dev/null differ diff --git a/files/16_0303_meaning.mp3 b/files/16_0303_meaning.mp3 deleted file mode 100644 index 745c712e2..000000000 Binary files a/files/16_0303_meaning.mp3 and /dev/null differ diff --git a/files/16_0304.jpg b/files/16_0304.jpg deleted file mode 100644 index 660485da8..000000000 Binary files a/files/16_0304.jpg and /dev/null differ diff --git a/files/16_0304.mp3 b/files/16_0304.mp3 deleted file mode 100644 index ed3fb33b2..000000000 Binary files a/files/16_0304.mp3 and /dev/null differ diff --git a/files/16_0304_example.mp3 b/files/16_0304_example.mp3 deleted file mode 100644 index 7042ac565..000000000 Binary files a/files/16_0304_example.mp3 and /dev/null differ diff --git a/files/16_0304_meaning.mp3 b/files/16_0304_meaning.mp3 deleted file mode 100644 index 5b88adb39..000000000 Binary files a/files/16_0304_meaning.mp3 and /dev/null differ diff --git a/files/16_0305.jpg b/files/16_0305.jpg deleted file mode 100644 index a83881128..000000000 Binary files a/files/16_0305.jpg and /dev/null differ diff --git a/files/16_0305.mp3 b/files/16_0305.mp3 deleted file mode 100644 index b155cb516..000000000 Binary files a/files/16_0305.mp3 and /dev/null differ diff --git a/files/16_0305_example.mp3 b/files/16_0305_example.mp3 deleted file mode 100644 index 69ae74cb9..000000000 Binary files a/files/16_0305_example.mp3 and /dev/null differ diff --git a/files/16_0305_meaning.mp3 b/files/16_0305_meaning.mp3 deleted file mode 100644 index 97e9b0405..000000000 Binary files a/files/16_0305_meaning.mp3 and /dev/null differ diff --git a/files/16_0306.jpg b/files/16_0306.jpg deleted file mode 100644 index ef372dca1..000000000 Binary files a/files/16_0306.jpg and /dev/null differ diff --git a/files/16_0306.mp3 b/files/16_0306.mp3 deleted file mode 100644 index 51f785b61..000000000 Binary files a/files/16_0306.mp3 and /dev/null differ diff --git a/files/16_0306_example.mp3 b/files/16_0306_example.mp3 deleted file mode 100644 index 7e2bd5cd7..000000000 Binary files a/files/16_0306_example.mp3 and /dev/null differ diff --git a/files/16_0306_meaning.mp3 b/files/16_0306_meaning.mp3 deleted file mode 100644 index 8889f08f8..000000000 Binary files a/files/16_0306_meaning.mp3 and /dev/null differ diff --git a/files/16_0307.jpg b/files/16_0307.jpg deleted file mode 100644 index 2a2be9c91..000000000 Binary files a/files/16_0307.jpg and /dev/null differ diff --git a/files/16_0307.mp3 b/files/16_0307.mp3 deleted file mode 100644 index e706c1ef8..000000000 Binary files a/files/16_0307.mp3 and /dev/null differ diff --git a/files/16_0307_example.mp3 b/files/16_0307_example.mp3 deleted file mode 100644 index 13cd6832d..000000000 Binary files a/files/16_0307_example.mp3 and /dev/null differ diff --git a/files/16_0307_meaning.mp3 b/files/16_0307_meaning.mp3 deleted file mode 100644 index 63d7dcc4a..000000000 Binary files a/files/16_0307_meaning.mp3 and /dev/null differ diff --git a/files/16_0308.jpg b/files/16_0308.jpg deleted file mode 100644 index f1e7ddb4b..000000000 Binary files a/files/16_0308.jpg and /dev/null differ diff --git a/files/16_0308.mp3 b/files/16_0308.mp3 deleted file mode 100644 index bce443c85..000000000 Binary files a/files/16_0308.mp3 and /dev/null differ diff --git a/files/16_0308_example.mp3 b/files/16_0308_example.mp3 deleted file mode 100644 index 8119af326..000000000 Binary files a/files/16_0308_example.mp3 and /dev/null differ diff --git a/files/16_0308_meaning.mp3 b/files/16_0308_meaning.mp3 deleted file mode 100644 index 1ee5f1f59..000000000 Binary files a/files/16_0308_meaning.mp3 and /dev/null differ diff --git a/files/16_0309.jpg b/files/16_0309.jpg deleted file mode 100644 index 1ccf06adb..000000000 Binary files a/files/16_0309.jpg and /dev/null differ diff --git a/files/16_0309.mp3 b/files/16_0309.mp3 deleted file mode 100644 index 577633e04..000000000 Binary files a/files/16_0309.mp3 and /dev/null differ diff --git a/files/16_0309_example.mp3 b/files/16_0309_example.mp3 deleted file mode 100644 index dbc42d070..000000000 Binary files a/files/16_0309_example.mp3 and /dev/null differ diff --git a/files/16_0309_meaning.mp3 b/files/16_0309_meaning.mp3 deleted file mode 100644 index 79fadb620..000000000 Binary files a/files/16_0309_meaning.mp3 and /dev/null differ diff --git a/files/16_0310.jpg b/files/16_0310.jpg deleted file mode 100644 index 0dff6ab56..000000000 Binary files a/files/16_0310.jpg and /dev/null differ diff --git a/files/16_0310.mp3 b/files/16_0310.mp3 deleted file mode 100644 index 2bc394d51..000000000 Binary files a/files/16_0310.mp3 and /dev/null differ diff --git a/files/16_0310_example.mp3 b/files/16_0310_example.mp3 deleted file mode 100644 index 6cebd2e74..000000000 Binary files a/files/16_0310_example.mp3 and /dev/null differ diff --git a/files/16_0310_meaning.mp3 b/files/16_0310_meaning.mp3 deleted file mode 100644 index d0d4dcc3e..000000000 Binary files a/files/16_0310_meaning.mp3 and /dev/null differ diff --git a/files/16_0311.jpg b/files/16_0311.jpg deleted file mode 100644 index 7d1e88267..000000000 Binary files a/files/16_0311.jpg and /dev/null differ diff --git a/files/16_0311.mp3 b/files/16_0311.mp3 deleted file mode 100644 index ff33d320c..000000000 Binary files a/files/16_0311.mp3 and /dev/null differ diff --git a/files/16_0311_example.mp3 b/files/16_0311_example.mp3 deleted file mode 100644 index eaae37c1c..000000000 Binary files a/files/16_0311_example.mp3 and /dev/null differ diff --git a/files/16_0311_meaning.mp3 b/files/16_0311_meaning.mp3 deleted file mode 100644 index a32785dab..000000000 Binary files a/files/16_0311_meaning.mp3 and /dev/null differ diff --git a/files/16_0312.jpg b/files/16_0312.jpg deleted file mode 100644 index b57e08108..000000000 Binary files a/files/16_0312.jpg and /dev/null differ diff --git a/files/16_0312.mp3 b/files/16_0312.mp3 deleted file mode 100644 index 2ccd23c5d..000000000 Binary files a/files/16_0312.mp3 and /dev/null differ diff --git a/files/16_0312_example.mp3 b/files/16_0312_example.mp3 deleted file mode 100644 index 969ea15e7..000000000 Binary files a/files/16_0312_example.mp3 and /dev/null differ diff --git a/files/16_0312_meaning.mp3 b/files/16_0312_meaning.mp3 deleted file mode 100644 index 918737525..000000000 Binary files a/files/16_0312_meaning.mp3 and /dev/null differ diff --git a/files/16_0313.jpg b/files/16_0313.jpg deleted file mode 100644 index f5b01f97e..000000000 Binary files a/files/16_0313.jpg and /dev/null differ diff --git a/files/16_0313.mp3 b/files/16_0313.mp3 deleted file mode 100644 index 9419d0023..000000000 Binary files a/files/16_0313.mp3 and /dev/null differ diff --git a/files/16_0313_example.mp3 b/files/16_0313_example.mp3 deleted file mode 100644 index d9bc667e0..000000000 Binary files a/files/16_0313_example.mp3 and /dev/null differ diff --git a/files/16_0313_meaning.mp3 b/files/16_0313_meaning.mp3 deleted file mode 100644 index 99ec079d6..000000000 Binary files a/files/16_0313_meaning.mp3 and /dev/null differ diff --git a/files/16_0314.jpg b/files/16_0314.jpg deleted file mode 100644 index 9fea54c24..000000000 Binary files a/files/16_0314.jpg and /dev/null differ diff --git a/files/16_0314.mp3 b/files/16_0314.mp3 deleted file mode 100644 index 36889eee1..000000000 Binary files a/files/16_0314.mp3 and /dev/null differ diff --git a/files/16_0314_example.mp3 b/files/16_0314_example.mp3 deleted file mode 100644 index 2705fff88..000000000 Binary files a/files/16_0314_example.mp3 and /dev/null differ diff --git a/files/16_0314_meaning.mp3 b/files/16_0314_meaning.mp3 deleted file mode 100644 index 9f86699e5..000000000 Binary files a/files/16_0314_meaning.mp3 and /dev/null differ diff --git a/files/16_0315.jpg b/files/16_0315.jpg deleted file mode 100644 index efbecc092..000000000 Binary files a/files/16_0315.jpg and /dev/null differ diff --git a/files/16_0315.mp3 b/files/16_0315.mp3 deleted file mode 100644 index 9175683e9..000000000 Binary files a/files/16_0315.mp3 and /dev/null differ diff --git a/files/16_0315_example.mp3 b/files/16_0315_example.mp3 deleted file mode 100644 index b06e3b243..000000000 Binary files a/files/16_0315_example.mp3 and /dev/null differ diff --git a/files/16_0315_meaning.mp3 b/files/16_0315_meaning.mp3 deleted file mode 100644 index fed94456f..000000000 Binary files a/files/16_0315_meaning.mp3 and /dev/null differ diff --git a/files/16_0316.jpg b/files/16_0316.jpg deleted file mode 100644 index 53b88f496..000000000 Binary files a/files/16_0316.jpg and /dev/null differ diff --git a/files/16_0316.mp3 b/files/16_0316.mp3 deleted file mode 100644 index 5a17bf956..000000000 Binary files a/files/16_0316.mp3 and /dev/null differ diff --git a/files/16_0316_example.mp3 b/files/16_0316_example.mp3 deleted file mode 100644 index daa3b5055..000000000 Binary files a/files/16_0316_example.mp3 and /dev/null differ diff --git a/files/16_0316_meaning.mp3 b/files/16_0316_meaning.mp3 deleted file mode 100644 index 5271b930b..000000000 Binary files a/files/16_0316_meaning.mp3 and /dev/null differ diff --git a/files/16_0317.jpg b/files/16_0317.jpg deleted file mode 100644 index 4018bd4fa..000000000 Binary files a/files/16_0317.jpg and /dev/null differ diff --git a/files/16_0317.mp3 b/files/16_0317.mp3 deleted file mode 100644 index 4fe6eba04..000000000 Binary files a/files/16_0317.mp3 and /dev/null differ diff --git a/files/16_0317_example.mp3 b/files/16_0317_example.mp3 deleted file mode 100644 index c7d961610..000000000 Binary files a/files/16_0317_example.mp3 and /dev/null differ diff --git a/files/16_0317_meaning.mp3 b/files/16_0317_meaning.mp3 deleted file mode 100644 index 44301f850..000000000 Binary files a/files/16_0317_meaning.mp3 and /dev/null differ diff --git a/files/16_0318.jpg b/files/16_0318.jpg deleted file mode 100644 index 909bfb054..000000000 Binary files a/files/16_0318.jpg and /dev/null differ diff --git a/files/16_0318.mp3 b/files/16_0318.mp3 deleted file mode 100644 index a7c86c6d9..000000000 Binary files a/files/16_0318.mp3 and /dev/null differ diff --git a/files/16_0318_example.mp3 b/files/16_0318_example.mp3 deleted file mode 100644 index 118cca119..000000000 Binary files a/files/16_0318_example.mp3 and /dev/null differ diff --git a/files/16_0318_meaning.mp3 b/files/16_0318_meaning.mp3 deleted file mode 100644 index e3859bae5..000000000 Binary files a/files/16_0318_meaning.mp3 and /dev/null differ diff --git a/files/16_0319.jpg b/files/16_0319.jpg deleted file mode 100644 index 99b72b0a3..000000000 Binary files a/files/16_0319.jpg and /dev/null differ diff --git a/files/16_0319.mp3 b/files/16_0319.mp3 deleted file mode 100644 index e4979d1bc..000000000 Binary files a/files/16_0319.mp3 and /dev/null differ diff --git a/files/16_0319_example.mp3 b/files/16_0319_example.mp3 deleted file mode 100644 index 549f36f0f..000000000 Binary files a/files/16_0319_example.mp3 and /dev/null differ diff --git a/files/16_0319_meaning.mp3 b/files/16_0319_meaning.mp3 deleted file mode 100644 index 64bf29a6c..000000000 Binary files a/files/16_0319_meaning.mp3 and /dev/null differ diff --git a/files/16_0320.jpg b/files/16_0320.jpg deleted file mode 100644 index 0c4fb2928..000000000 Binary files a/files/16_0320.jpg and /dev/null differ diff --git a/files/16_0320.mp3 b/files/16_0320.mp3 deleted file mode 100644 index b7697d9b3..000000000 Binary files a/files/16_0320.mp3 and /dev/null differ diff --git a/files/16_0320_example.mp3 b/files/16_0320_example.mp3 deleted file mode 100644 index 6fe5f2d47..000000000 Binary files a/files/16_0320_example.mp3 and /dev/null differ diff --git a/files/16_0320_meaning.mp3 b/files/16_0320_meaning.mp3 deleted file mode 100644 index 9d2ca9ba9..000000000 Binary files a/files/16_0320_meaning.mp3 and /dev/null differ diff --git a/files/16_0901.jpg b/files/16_0901.jpg deleted file mode 100644 index 6b3c72dec..000000000 Binary files a/files/16_0901.jpg and /dev/null differ diff --git a/files/16_0901.mp3 b/files/16_0901.mp3 deleted file mode 100644 index 8a85c0c7a..000000000 Binary files a/files/16_0901.mp3 and /dev/null differ diff --git a/files/16_0901_example.mp3 b/files/16_0901_example.mp3 deleted file mode 100644 index 37af5eca4..000000000 Binary files a/files/16_0901_example.mp3 and /dev/null differ diff --git a/files/16_0901_meaning.mp3 b/files/16_0901_meaning.mp3 deleted file mode 100644 index 7355dec15..000000000 Binary files a/files/16_0901_meaning.mp3 and /dev/null differ diff --git a/files/16_0902.jpg b/files/16_0902.jpg deleted file mode 100644 index 21354c597..000000000 Binary files a/files/16_0902.jpg and /dev/null differ diff --git a/files/16_0902.mp3 b/files/16_0902.mp3 deleted file mode 100644 index e27af4d87..000000000 Binary files a/files/16_0902.mp3 and /dev/null differ diff --git a/files/16_0902_example.mp3 b/files/16_0902_example.mp3 deleted file mode 100644 index 00acd2287..000000000 Binary files a/files/16_0902_example.mp3 and /dev/null differ diff --git a/files/16_0902_meaning.mp3 b/files/16_0902_meaning.mp3 deleted file mode 100644 index 2dda0f5e4..000000000 Binary files a/files/16_0902_meaning.mp3 and /dev/null differ diff --git a/files/16_0903.jpg b/files/16_0903.jpg deleted file mode 100644 index 92dab4f17..000000000 Binary files a/files/16_0903.jpg and /dev/null differ diff --git a/files/16_0903.mp3 b/files/16_0903.mp3 deleted file mode 100644 index b77827068..000000000 Binary files a/files/16_0903.mp3 and /dev/null differ diff --git a/files/16_0903_example.mp3 b/files/16_0903_example.mp3 deleted file mode 100644 index c7e5a1eea..000000000 Binary files a/files/16_0903_example.mp3 and /dev/null differ diff --git a/files/16_0903_meaning.mp3 b/files/16_0903_meaning.mp3 deleted file mode 100644 index 5849b9124..000000000 Binary files a/files/16_0903_meaning.mp3 and /dev/null differ diff --git a/files/16_0904.jpg b/files/16_0904.jpg deleted file mode 100644 index b261e479e..000000000 Binary files a/files/16_0904.jpg and /dev/null differ diff --git a/files/16_0904.mp3 b/files/16_0904.mp3 deleted file mode 100644 index 611a2ac6f..000000000 Binary files a/files/16_0904.mp3 and /dev/null differ diff --git a/files/16_0904_example.mp3 b/files/16_0904_example.mp3 deleted file mode 100644 index 341e2fbd5..000000000 Binary files a/files/16_0904_example.mp3 and /dev/null differ diff --git a/files/16_0904_meaning.mp3 b/files/16_0904_meaning.mp3 deleted file mode 100644 index 13da5af22..000000000 Binary files a/files/16_0904_meaning.mp3 and /dev/null differ diff --git a/files/16_0905.jpg b/files/16_0905.jpg deleted file mode 100644 index badebe76e..000000000 Binary files a/files/16_0905.jpg and /dev/null differ diff --git a/files/16_0905.mp3 b/files/16_0905.mp3 deleted file mode 100644 index 008dcc50e..000000000 Binary files a/files/16_0905.mp3 and /dev/null differ diff --git a/files/16_0905_example.mp3 b/files/16_0905_example.mp3 deleted file mode 100644 index 903fc3b38..000000000 Binary files a/files/16_0905_example.mp3 and /dev/null differ diff --git a/files/16_0905_meaning.mp3 b/files/16_0905_meaning.mp3 deleted file mode 100644 index a37a0a061..000000000 Binary files a/files/16_0905_meaning.mp3 and /dev/null differ diff --git a/files/16_0906.jpg b/files/16_0906.jpg deleted file mode 100644 index e2916c0fc..000000000 Binary files a/files/16_0906.jpg and /dev/null differ diff --git a/files/16_0906.mp3 b/files/16_0906.mp3 deleted file mode 100644 index e49266372..000000000 Binary files a/files/16_0906.mp3 and /dev/null differ diff --git a/files/16_0906_example.mp3 b/files/16_0906_example.mp3 deleted file mode 100644 index 02aa54869..000000000 Binary files a/files/16_0906_example.mp3 and /dev/null differ diff --git a/files/16_0906_meaning.mp3 b/files/16_0906_meaning.mp3 deleted file mode 100644 index f6f30c76f..000000000 Binary files a/files/16_0906_meaning.mp3 and /dev/null differ diff --git a/files/16_0907.jpg b/files/16_0907.jpg deleted file mode 100644 index 9622e5d71..000000000 Binary files a/files/16_0907.jpg and /dev/null differ diff --git a/files/16_0907.mp3 b/files/16_0907.mp3 deleted file mode 100644 index 889fbb5fe..000000000 Binary files a/files/16_0907.mp3 and /dev/null differ diff --git a/files/16_0907_example.mp3 b/files/16_0907_example.mp3 deleted file mode 100644 index 47a66a893..000000000 Binary files a/files/16_0907_example.mp3 and /dev/null differ diff --git a/files/16_0907_meaning.mp3 b/files/16_0907_meaning.mp3 deleted file mode 100644 index c39b37612..000000000 Binary files a/files/16_0907_meaning.mp3 and /dev/null differ diff --git a/files/16_0908.jpg b/files/16_0908.jpg deleted file mode 100644 index 82277e6e1..000000000 Binary files a/files/16_0908.jpg and /dev/null differ diff --git a/files/16_0908.mp3 b/files/16_0908.mp3 deleted file mode 100644 index d1473290f..000000000 Binary files a/files/16_0908.mp3 and /dev/null differ diff --git a/files/16_0908_example.mp3 b/files/16_0908_example.mp3 deleted file mode 100644 index 5ee68e318..000000000 Binary files a/files/16_0908_example.mp3 and /dev/null differ diff --git a/files/16_0908_meaning.mp3 b/files/16_0908_meaning.mp3 deleted file mode 100644 index 71d8c3d4b..000000000 Binary files a/files/16_0908_meaning.mp3 and /dev/null differ diff --git a/files/16_0909.jpg b/files/16_0909.jpg deleted file mode 100644 index 1fba147cb..000000000 Binary files a/files/16_0909.jpg and /dev/null differ diff --git a/files/16_0909.mp3 b/files/16_0909.mp3 deleted file mode 100644 index 9bddf84d5..000000000 Binary files a/files/16_0909.mp3 and /dev/null differ diff --git a/files/16_0909_example.mp3 b/files/16_0909_example.mp3 deleted file mode 100644 index 60b072e49..000000000 Binary files a/files/16_0909_example.mp3 and /dev/null differ diff --git a/files/16_0909_meaning.mp3 b/files/16_0909_meaning.mp3 deleted file mode 100644 index 93d86394c..000000000 Binary files a/files/16_0909_meaning.mp3 and /dev/null differ diff --git a/files/16_0910.jpg b/files/16_0910.jpg deleted file mode 100644 index 537c6d4a7..000000000 Binary files a/files/16_0910.jpg and /dev/null differ diff --git a/files/16_0910.mp3 b/files/16_0910.mp3 deleted file mode 100644 index 4e084af1f..000000000 Binary files a/files/16_0910.mp3 and /dev/null differ diff --git a/files/16_0910_example.mp3 b/files/16_0910_example.mp3 deleted file mode 100644 index 6a3ca77bc..000000000 Binary files a/files/16_0910_example.mp3 and /dev/null differ diff --git a/files/16_0910_meaning.mp3 b/files/16_0910_meaning.mp3 deleted file mode 100644 index ab32b267b..000000000 Binary files a/files/16_0910_meaning.mp3 and /dev/null differ diff --git a/files/16_0911.jpg b/files/16_0911.jpg deleted file mode 100644 index 9f952e601..000000000 Binary files a/files/16_0911.jpg and /dev/null differ diff --git a/files/16_0911.mp3 b/files/16_0911.mp3 deleted file mode 100644 index 5c69c2e01..000000000 Binary files a/files/16_0911.mp3 and /dev/null differ diff --git a/files/16_0911_example.mp3 b/files/16_0911_example.mp3 deleted file mode 100644 index 2e912a6a0..000000000 Binary files a/files/16_0911_example.mp3 and /dev/null differ diff --git a/files/16_0911_meaning.mp3 b/files/16_0911_meaning.mp3 deleted file mode 100644 index d8ae9ce96..000000000 Binary files a/files/16_0911_meaning.mp3 and /dev/null differ diff --git a/files/16_0912.jpg b/files/16_0912.jpg deleted file mode 100644 index bb3d8692b..000000000 Binary files a/files/16_0912.jpg and /dev/null differ diff --git a/files/16_0912.mp3 b/files/16_0912.mp3 deleted file mode 100644 index 3ae6a3880..000000000 Binary files a/files/16_0912.mp3 and /dev/null differ diff --git a/files/16_0912_example.mp3 b/files/16_0912_example.mp3 deleted file mode 100644 index 3f388368d..000000000 Binary files a/files/16_0912_example.mp3 and /dev/null differ diff --git a/files/16_0912_meaning.mp3 b/files/16_0912_meaning.mp3 deleted file mode 100644 index 484f63e26..000000000 Binary files a/files/16_0912_meaning.mp3 and /dev/null differ diff --git a/files/16_0913.jpg b/files/16_0913.jpg deleted file mode 100644 index 1737b6f70..000000000 Binary files a/files/16_0913.jpg and /dev/null differ diff --git a/files/16_0913.mp3 b/files/16_0913.mp3 deleted file mode 100644 index 21eea45e8..000000000 Binary files a/files/16_0913.mp3 and /dev/null differ diff --git a/files/16_0913_example.mp3 b/files/16_0913_example.mp3 deleted file mode 100644 index aa364bd91..000000000 Binary files a/files/16_0913_example.mp3 and /dev/null differ diff --git a/files/16_0913_meaning.mp3 b/files/16_0913_meaning.mp3 deleted file mode 100644 index 12da09923..000000000 Binary files a/files/16_0913_meaning.mp3 and /dev/null differ diff --git a/files/16_0914.jpg b/files/16_0914.jpg deleted file mode 100644 index ce7611e02..000000000 Binary files a/files/16_0914.jpg and /dev/null differ diff --git a/files/16_0914.mp3 b/files/16_0914.mp3 deleted file mode 100644 index 2d4060aaf..000000000 Binary files a/files/16_0914.mp3 and /dev/null differ diff --git a/files/16_0914_example.mp3 b/files/16_0914_example.mp3 deleted file mode 100644 index abcf2c8f7..000000000 Binary files a/files/16_0914_example.mp3 and /dev/null differ diff --git a/files/16_0914_meaning.mp3 b/files/16_0914_meaning.mp3 deleted file mode 100644 index 5814fd916..000000000 Binary files a/files/16_0914_meaning.mp3 and /dev/null differ diff --git a/files/16_0915.jpg b/files/16_0915.jpg deleted file mode 100644 index 9a475cecb..000000000 Binary files a/files/16_0915.jpg and /dev/null differ diff --git a/files/16_0915.mp3 b/files/16_0915.mp3 deleted file mode 100644 index f93eef758..000000000 Binary files a/files/16_0915.mp3 and /dev/null differ diff --git a/files/16_0915_example.mp3 b/files/16_0915_example.mp3 deleted file mode 100644 index c9a927594..000000000 Binary files a/files/16_0915_example.mp3 and /dev/null differ diff --git a/files/16_0915_meaning.mp3 b/files/16_0915_meaning.mp3 deleted file mode 100644 index 155c6056d..000000000 Binary files a/files/16_0915_meaning.mp3 and /dev/null differ diff --git a/files/16_0916.jpg b/files/16_0916.jpg deleted file mode 100644 index 0dc5c10af..000000000 Binary files a/files/16_0916.jpg and /dev/null differ diff --git a/files/16_0916.mp3 b/files/16_0916.mp3 deleted file mode 100644 index d1e72b3da..000000000 Binary files a/files/16_0916.mp3 and /dev/null differ diff --git a/files/16_0916_example.mp3 b/files/16_0916_example.mp3 deleted file mode 100644 index 9d4b483f7..000000000 Binary files a/files/16_0916_example.mp3 and /dev/null differ diff --git a/files/16_0916_meaning.mp3 b/files/16_0916_meaning.mp3 deleted file mode 100644 index 7b444db4e..000000000 Binary files a/files/16_0916_meaning.mp3 and /dev/null differ diff --git a/files/16_0917.jpg b/files/16_0917.jpg deleted file mode 100644 index c85dadcc5..000000000 Binary files a/files/16_0917.jpg and /dev/null differ diff --git a/files/16_0917.mp3 b/files/16_0917.mp3 deleted file mode 100644 index b37cd5840..000000000 Binary files a/files/16_0917.mp3 and /dev/null differ diff --git a/files/16_0917_example.mp3 b/files/16_0917_example.mp3 deleted file mode 100644 index 298bc9ed6..000000000 Binary files a/files/16_0917_example.mp3 and /dev/null differ diff --git a/files/16_0917_meaning.mp3 b/files/16_0917_meaning.mp3 deleted file mode 100644 index f53a538a1..000000000 Binary files a/files/16_0917_meaning.mp3 and /dev/null differ diff --git a/files/16_0918.jpg b/files/16_0918.jpg deleted file mode 100644 index 378d993f7..000000000 Binary files a/files/16_0918.jpg and /dev/null differ diff --git a/files/16_0918.mp3 b/files/16_0918.mp3 deleted file mode 100644 index 86fccca7d..000000000 Binary files a/files/16_0918.mp3 and /dev/null differ diff --git a/files/16_0918_example.mp3 b/files/16_0918_example.mp3 deleted file mode 100644 index c3b043473..000000000 Binary files a/files/16_0918_example.mp3 and /dev/null differ diff --git a/files/16_0918_meaning.mp3 b/files/16_0918_meaning.mp3 deleted file mode 100644 index 5eb3a585a..000000000 Binary files a/files/16_0918_meaning.mp3 and /dev/null differ diff --git a/files/16_0919.jpg b/files/16_0919.jpg deleted file mode 100644 index c7785d605..000000000 Binary files a/files/16_0919.jpg and /dev/null differ diff --git a/files/16_0919.mp3 b/files/16_0919.mp3 deleted file mode 100644 index ca414b501..000000000 Binary files a/files/16_0919.mp3 and /dev/null differ diff --git a/files/16_0919_example.mp3 b/files/16_0919_example.mp3 deleted file mode 100644 index 086691700..000000000 Binary files a/files/16_0919_example.mp3 and /dev/null differ diff --git a/files/16_0919_meaning.mp3 b/files/16_0919_meaning.mp3 deleted file mode 100644 index 3d57ff1d7..000000000 Binary files a/files/16_0919_meaning.mp3 and /dev/null differ diff --git a/files/16_0920.jpg b/files/16_0920.jpg deleted file mode 100644 index 81bca90aa..000000000 Binary files a/files/16_0920.jpg and /dev/null differ diff --git a/files/16_0920.mp3 b/files/16_0920.mp3 deleted file mode 100644 index 98d9275bf..000000000 Binary files a/files/16_0920.mp3 and /dev/null differ diff --git a/files/16_0920_example.mp3 b/files/16_0920_example.mp3 deleted file mode 100644 index c83480a8f..000000000 Binary files a/files/16_0920_example.mp3 and /dev/null differ diff --git a/files/16_0920_meaning.mp3 b/files/16_0920_meaning.mp3 deleted file mode 100644 index 42cf59fe3..000000000 Binary files a/files/16_0920_meaning.mp3 and /dev/null differ diff --git a/files/16_1501.jpg b/files/16_1501.jpg deleted file mode 100644 index 680e72a13..000000000 Binary files a/files/16_1501.jpg and /dev/null differ diff --git a/files/16_1501.mp3 b/files/16_1501.mp3 deleted file mode 100644 index 7010af844..000000000 Binary files a/files/16_1501.mp3 and /dev/null differ diff --git a/files/16_1501_example.mp3 b/files/16_1501_example.mp3 deleted file mode 100644 index 41c336201..000000000 Binary files a/files/16_1501_example.mp3 and /dev/null differ diff --git a/files/16_1501_meaning.mp3 b/files/16_1501_meaning.mp3 deleted file mode 100644 index b2c25ed1f..000000000 Binary files a/files/16_1501_meaning.mp3 and /dev/null differ diff --git a/files/16_1502.jpg b/files/16_1502.jpg deleted file mode 100644 index 2a2ef32fa..000000000 Binary files a/files/16_1502.jpg and /dev/null differ diff --git a/files/16_1502.mp3 b/files/16_1502.mp3 deleted file mode 100644 index b3a0b7691..000000000 Binary files a/files/16_1502.mp3 and /dev/null differ diff --git a/files/16_1502_example.mp3 b/files/16_1502_example.mp3 deleted file mode 100644 index e88b9bc96..000000000 Binary files a/files/16_1502_example.mp3 and /dev/null differ diff --git a/files/16_1502_meaning.mp3 b/files/16_1502_meaning.mp3 deleted file mode 100644 index 5d4a158b0..000000000 Binary files a/files/16_1502_meaning.mp3 and /dev/null differ diff --git a/files/16_1503.jpg b/files/16_1503.jpg deleted file mode 100644 index b42ce4ad5..000000000 Binary files a/files/16_1503.jpg and /dev/null differ diff --git a/files/16_1503.mp3 b/files/16_1503.mp3 deleted file mode 100644 index 42628d46f..000000000 Binary files a/files/16_1503.mp3 and /dev/null differ diff --git a/files/16_1503_example.mp3 b/files/16_1503_example.mp3 deleted file mode 100644 index d65e3ac40..000000000 Binary files a/files/16_1503_example.mp3 and /dev/null differ diff --git a/files/16_1503_meaning.mp3 b/files/16_1503_meaning.mp3 deleted file mode 100644 index ff4828766..000000000 Binary files a/files/16_1503_meaning.mp3 and /dev/null differ diff --git a/files/16_1504.jpg b/files/16_1504.jpg deleted file mode 100644 index a378f0aa8..000000000 Binary files a/files/16_1504.jpg and /dev/null differ diff --git a/files/16_1504.mp3 b/files/16_1504.mp3 deleted file mode 100644 index a1aa1b971..000000000 Binary files a/files/16_1504.mp3 and /dev/null differ diff --git a/files/16_1504_example.mp3 b/files/16_1504_example.mp3 deleted file mode 100644 index df1d7d0b2..000000000 Binary files a/files/16_1504_example.mp3 and /dev/null differ diff --git a/files/16_1504_meaning.mp3 b/files/16_1504_meaning.mp3 deleted file mode 100644 index 0d3e0265e..000000000 Binary files a/files/16_1504_meaning.mp3 and /dev/null differ diff --git a/files/16_1505.jpg b/files/16_1505.jpg deleted file mode 100644 index ba9982aef..000000000 Binary files a/files/16_1505.jpg and /dev/null differ diff --git a/files/16_1505.mp3 b/files/16_1505.mp3 deleted file mode 100644 index e1259e9f3..000000000 Binary files a/files/16_1505.mp3 and /dev/null differ diff --git a/files/16_1505_example.mp3 b/files/16_1505_example.mp3 deleted file mode 100644 index 814809865..000000000 Binary files a/files/16_1505_example.mp3 and /dev/null differ diff --git a/files/16_1505_meaning.mp3 b/files/16_1505_meaning.mp3 deleted file mode 100644 index a512691f0..000000000 Binary files a/files/16_1505_meaning.mp3 and /dev/null differ diff --git a/files/16_1506.jpg b/files/16_1506.jpg deleted file mode 100644 index c8b505d69..000000000 Binary files a/files/16_1506.jpg and /dev/null differ diff --git a/files/16_1506.mp3 b/files/16_1506.mp3 deleted file mode 100644 index d4a0dc77f..000000000 Binary files a/files/16_1506.mp3 and /dev/null differ diff --git a/files/16_1506_example.mp3 b/files/16_1506_example.mp3 deleted file mode 100644 index ba2c7d023..000000000 Binary files a/files/16_1506_example.mp3 and /dev/null differ diff --git a/files/16_1506_meaning.mp3 b/files/16_1506_meaning.mp3 deleted file mode 100644 index e7484a819..000000000 Binary files a/files/16_1506_meaning.mp3 and /dev/null differ diff --git a/files/16_1507.jpg b/files/16_1507.jpg deleted file mode 100644 index ad6d47705..000000000 Binary files a/files/16_1507.jpg and /dev/null differ diff --git a/files/16_1507.mp3 b/files/16_1507.mp3 deleted file mode 100644 index 78d483e60..000000000 Binary files a/files/16_1507.mp3 and /dev/null differ diff --git a/files/16_1507_example.mp3 b/files/16_1507_example.mp3 deleted file mode 100644 index 6f0fe69ea..000000000 Binary files a/files/16_1507_example.mp3 and /dev/null differ diff --git a/files/16_1507_meaning.mp3 b/files/16_1507_meaning.mp3 deleted file mode 100644 index 32c8a83f2..000000000 Binary files a/files/16_1507_meaning.mp3 and /dev/null differ diff --git a/files/16_1508.jpg b/files/16_1508.jpg deleted file mode 100644 index 3e59dfa73..000000000 Binary files a/files/16_1508.jpg and /dev/null differ diff --git a/files/16_1508.mp3 b/files/16_1508.mp3 deleted file mode 100644 index 61b5ae6a3..000000000 Binary files a/files/16_1508.mp3 and /dev/null differ diff --git a/files/16_1508_example.mp3 b/files/16_1508_example.mp3 deleted file mode 100644 index 51cba096a..000000000 Binary files a/files/16_1508_example.mp3 and /dev/null differ diff --git a/files/16_1508_meaning.mp3 b/files/16_1508_meaning.mp3 deleted file mode 100644 index a2e8c7001..000000000 Binary files a/files/16_1508_meaning.mp3 and /dev/null differ diff --git a/files/16_1509.jpg b/files/16_1509.jpg deleted file mode 100644 index 9782c8267..000000000 Binary files a/files/16_1509.jpg and /dev/null differ diff --git a/files/16_1509.mp3 b/files/16_1509.mp3 deleted file mode 100644 index 708b49cf9..000000000 Binary files a/files/16_1509.mp3 and /dev/null differ diff --git a/files/16_1509_example.mp3 b/files/16_1509_example.mp3 deleted file mode 100644 index 7ece30e41..000000000 Binary files a/files/16_1509_example.mp3 and /dev/null differ diff --git a/files/16_1509_meaning.mp3 b/files/16_1509_meaning.mp3 deleted file mode 100644 index bbf772cbe..000000000 Binary files a/files/16_1509_meaning.mp3 and /dev/null differ diff --git a/files/16_1510.jpg b/files/16_1510.jpg deleted file mode 100644 index 84f53143c..000000000 Binary files a/files/16_1510.jpg and /dev/null differ diff --git a/files/16_1510.mp3 b/files/16_1510.mp3 deleted file mode 100644 index 49126ccdd..000000000 Binary files a/files/16_1510.mp3 and /dev/null differ diff --git a/files/16_1510_example.mp3 b/files/16_1510_example.mp3 deleted file mode 100644 index 562b72e95..000000000 Binary files a/files/16_1510_example.mp3 and /dev/null differ diff --git a/files/16_1510_meaning.mp3 b/files/16_1510_meaning.mp3 deleted file mode 100644 index b48043703..000000000 Binary files a/files/16_1510_meaning.mp3 and /dev/null differ diff --git a/files/16_1511.jpg b/files/16_1511.jpg deleted file mode 100644 index 83a62a351..000000000 Binary files a/files/16_1511.jpg and /dev/null differ diff --git a/files/16_1511.mp3 b/files/16_1511.mp3 deleted file mode 100644 index 9a2daf5cb..000000000 Binary files a/files/16_1511.mp3 and /dev/null differ diff --git a/files/16_1511_example.mp3 b/files/16_1511_example.mp3 deleted file mode 100644 index 45e221c55..000000000 Binary files a/files/16_1511_example.mp3 and /dev/null differ diff --git a/files/16_1511_meaning.mp3 b/files/16_1511_meaning.mp3 deleted file mode 100644 index 31d4bdff2..000000000 Binary files a/files/16_1511_meaning.mp3 and /dev/null differ diff --git a/files/16_1512.jpg b/files/16_1512.jpg deleted file mode 100644 index 276dfb6a4..000000000 Binary files a/files/16_1512.jpg and /dev/null differ diff --git a/files/16_1512.mp3 b/files/16_1512.mp3 deleted file mode 100644 index c26767691..000000000 Binary files a/files/16_1512.mp3 and /dev/null differ diff --git a/files/16_1512_example.mp3 b/files/16_1512_example.mp3 deleted file mode 100644 index 0c13e4916..000000000 Binary files a/files/16_1512_example.mp3 and /dev/null differ diff --git a/files/16_1512_meaning.mp3 b/files/16_1512_meaning.mp3 deleted file mode 100644 index b228ed8ed..000000000 Binary files a/files/16_1512_meaning.mp3 and /dev/null differ diff --git a/files/16_1513.jpg b/files/16_1513.jpg deleted file mode 100644 index 5fa174071..000000000 Binary files a/files/16_1513.jpg and /dev/null differ diff --git a/files/16_1513.mp3 b/files/16_1513.mp3 deleted file mode 100644 index 106ec45ef..000000000 Binary files a/files/16_1513.mp3 and /dev/null differ diff --git a/files/16_1513_example.mp3 b/files/16_1513_example.mp3 deleted file mode 100644 index 6f3ba3404..000000000 Binary files a/files/16_1513_example.mp3 and /dev/null differ diff --git a/files/16_1513_meaning.mp3 b/files/16_1513_meaning.mp3 deleted file mode 100644 index a5e062bd8..000000000 Binary files a/files/16_1513_meaning.mp3 and /dev/null differ diff --git a/files/16_1514.jpg b/files/16_1514.jpg deleted file mode 100644 index 9a7f8ae85..000000000 Binary files a/files/16_1514.jpg and /dev/null differ diff --git a/files/16_1514.mp3 b/files/16_1514.mp3 deleted file mode 100644 index 3b6d9bc15..000000000 Binary files a/files/16_1514.mp3 and /dev/null differ diff --git a/files/16_1514_example.mp3 b/files/16_1514_example.mp3 deleted file mode 100644 index 5e951ee2f..000000000 Binary files a/files/16_1514_example.mp3 and /dev/null differ diff --git a/files/16_1514_meaning.mp3 b/files/16_1514_meaning.mp3 deleted file mode 100644 index b1b814526..000000000 Binary files a/files/16_1514_meaning.mp3 and /dev/null differ diff --git a/files/16_1515.jpg b/files/16_1515.jpg deleted file mode 100644 index e7ff54298..000000000 Binary files a/files/16_1515.jpg and /dev/null differ diff --git a/files/16_1515.mp3 b/files/16_1515.mp3 deleted file mode 100644 index 239c0f441..000000000 Binary files a/files/16_1515.mp3 and /dev/null differ diff --git a/files/16_1515_example.mp3 b/files/16_1515_example.mp3 deleted file mode 100644 index 00efc563c..000000000 Binary files a/files/16_1515_example.mp3 and /dev/null differ diff --git a/files/16_1515_meaning.mp3 b/files/16_1515_meaning.mp3 deleted file mode 100644 index e2c7a6d7f..000000000 Binary files a/files/16_1515_meaning.mp3 and /dev/null differ diff --git a/files/16_1516.jpg b/files/16_1516.jpg deleted file mode 100644 index e003d520e..000000000 Binary files a/files/16_1516.jpg and /dev/null differ diff --git a/files/16_1516.mp3 b/files/16_1516.mp3 deleted file mode 100644 index a26354048..000000000 Binary files a/files/16_1516.mp3 and /dev/null differ diff --git a/files/16_1516_example.mp3 b/files/16_1516_example.mp3 deleted file mode 100644 index 455a864c6..000000000 Binary files a/files/16_1516_example.mp3 and /dev/null differ diff --git a/files/16_1516_meaning.mp3 b/files/16_1516_meaning.mp3 deleted file mode 100644 index d7b08b301..000000000 Binary files a/files/16_1516_meaning.mp3 and /dev/null differ diff --git a/files/16_1517.jpg b/files/16_1517.jpg deleted file mode 100644 index b00cc792a..000000000 Binary files a/files/16_1517.jpg and /dev/null differ diff --git a/files/16_1517.mp3 b/files/16_1517.mp3 deleted file mode 100644 index ef9c01caa..000000000 Binary files a/files/16_1517.mp3 and /dev/null differ diff --git a/files/16_1517_example.mp3 b/files/16_1517_example.mp3 deleted file mode 100644 index 21fde2066..000000000 Binary files a/files/16_1517_example.mp3 and /dev/null differ diff --git a/files/16_1517_meaning.mp3 b/files/16_1517_meaning.mp3 deleted file mode 100644 index 4dbde2693..000000000 Binary files a/files/16_1517_meaning.mp3 and /dev/null differ diff --git a/files/16_1518.jpg b/files/16_1518.jpg deleted file mode 100644 index 3f7a66300..000000000 Binary files a/files/16_1518.jpg and /dev/null differ diff --git a/files/16_1518.mp3 b/files/16_1518.mp3 deleted file mode 100644 index 56aa3a5d3..000000000 Binary files a/files/16_1518.mp3 and /dev/null differ diff --git a/files/16_1518_example.mp3 b/files/16_1518_example.mp3 deleted file mode 100644 index 4f576db21..000000000 Binary files a/files/16_1518_example.mp3 and /dev/null differ diff --git a/files/16_1518_meaning.mp3 b/files/16_1518_meaning.mp3 deleted file mode 100644 index 7a9360efe..000000000 Binary files a/files/16_1518_meaning.mp3 and /dev/null differ diff --git a/files/16_1519.jpg b/files/16_1519.jpg deleted file mode 100644 index 3159e6b5f..000000000 Binary files a/files/16_1519.jpg and /dev/null differ diff --git a/files/16_1519.mp3 b/files/16_1519.mp3 deleted file mode 100644 index ee17e21a1..000000000 Binary files a/files/16_1519.mp3 and /dev/null differ diff --git a/files/16_1519_example.mp3 b/files/16_1519_example.mp3 deleted file mode 100644 index 0e5e193d2..000000000 Binary files a/files/16_1519_example.mp3 and /dev/null differ diff --git a/files/16_1519_meaning.mp3 b/files/16_1519_meaning.mp3 deleted file mode 100644 index 274779186..000000000 Binary files a/files/16_1519_meaning.mp3 and /dev/null differ diff --git a/files/16_1520.jpg b/files/16_1520.jpg deleted file mode 100644 index 5c68fdd19..000000000 Binary files a/files/16_1520.jpg and /dev/null differ diff --git a/files/16_1520.mp3 b/files/16_1520.mp3 deleted file mode 100644 index 719030d2c..000000000 Binary files a/files/16_1520.mp3 and /dev/null differ diff --git a/files/16_1520_example.mp3 b/files/16_1520_example.mp3 deleted file mode 100644 index 312cfa57f..000000000 Binary files a/files/16_1520_example.mp3 and /dev/null differ diff --git a/files/16_1520_meaning.mp3 b/files/16_1520_meaning.mp3 deleted file mode 100644 index 74ce94a37..000000000 Binary files a/files/16_1520_meaning.mp3 and /dev/null differ diff --git a/files/16_2101.jpg b/files/16_2101.jpg deleted file mode 100644 index 0f497652c..000000000 Binary files a/files/16_2101.jpg and /dev/null differ diff --git a/files/16_2101.mp3 b/files/16_2101.mp3 deleted file mode 100644 index d70112bd5..000000000 Binary files a/files/16_2101.mp3 and /dev/null differ diff --git a/files/16_2101_example.mp3 b/files/16_2101_example.mp3 deleted file mode 100644 index 44fa8d992..000000000 Binary files a/files/16_2101_example.mp3 and /dev/null differ diff --git a/files/16_2101_meaning.mp3 b/files/16_2101_meaning.mp3 deleted file mode 100644 index 7ec812b8b..000000000 Binary files a/files/16_2101_meaning.mp3 and /dev/null differ diff --git a/files/16_2102.jpg b/files/16_2102.jpg deleted file mode 100644 index 4ef28aaa6..000000000 Binary files a/files/16_2102.jpg and /dev/null differ diff --git a/files/16_2102.mp3 b/files/16_2102.mp3 deleted file mode 100644 index cf981ecf9..000000000 Binary files a/files/16_2102.mp3 and /dev/null differ diff --git a/files/16_2102_example.mp3 b/files/16_2102_example.mp3 deleted file mode 100644 index 7f33d3b17..000000000 Binary files a/files/16_2102_example.mp3 and /dev/null differ diff --git a/files/16_2102_meaning.mp3 b/files/16_2102_meaning.mp3 deleted file mode 100644 index 065e2dcb9..000000000 Binary files a/files/16_2102_meaning.mp3 and /dev/null differ diff --git a/files/16_2103.jpg b/files/16_2103.jpg deleted file mode 100644 index f2159c8c0..000000000 Binary files a/files/16_2103.jpg and /dev/null differ diff --git a/files/16_2103.mp3 b/files/16_2103.mp3 deleted file mode 100644 index 44862b516..000000000 Binary files a/files/16_2103.mp3 and /dev/null differ diff --git a/files/16_2103_example.mp3 b/files/16_2103_example.mp3 deleted file mode 100644 index b2f894dc6..000000000 Binary files a/files/16_2103_example.mp3 and /dev/null differ diff --git a/files/16_2103_meaning.mp3 b/files/16_2103_meaning.mp3 deleted file mode 100644 index debb1b87c..000000000 Binary files a/files/16_2103_meaning.mp3 and /dev/null differ diff --git a/files/16_2104.jpg b/files/16_2104.jpg deleted file mode 100644 index 341f5df39..000000000 Binary files a/files/16_2104.jpg and /dev/null differ diff --git a/files/16_2104.mp3 b/files/16_2104.mp3 deleted file mode 100644 index 22b3dec26..000000000 Binary files a/files/16_2104.mp3 and /dev/null differ diff --git a/files/16_2104_example.mp3 b/files/16_2104_example.mp3 deleted file mode 100644 index 4f683f7d0..000000000 Binary files a/files/16_2104_example.mp3 and /dev/null differ diff --git a/files/16_2104_meaning.mp3 b/files/16_2104_meaning.mp3 deleted file mode 100644 index 4b25e24cd..000000000 Binary files a/files/16_2104_meaning.mp3 and /dev/null differ diff --git a/files/16_2105.jpg b/files/16_2105.jpg deleted file mode 100644 index 7b0697480..000000000 Binary files a/files/16_2105.jpg and /dev/null differ diff --git a/files/16_2105.mp3 b/files/16_2105.mp3 deleted file mode 100644 index c093e5eb9..000000000 Binary files a/files/16_2105.mp3 and /dev/null differ diff --git a/files/16_2105_example.mp3 b/files/16_2105_example.mp3 deleted file mode 100644 index f61117005..000000000 Binary files a/files/16_2105_example.mp3 and /dev/null differ diff --git a/files/16_2105_meaning.mp3 b/files/16_2105_meaning.mp3 deleted file mode 100644 index 1cd5e2be6..000000000 Binary files a/files/16_2105_meaning.mp3 and /dev/null differ diff --git a/files/16_2106.jpg b/files/16_2106.jpg deleted file mode 100644 index 029a366d2..000000000 Binary files a/files/16_2106.jpg and /dev/null differ diff --git a/files/16_2106.mp3 b/files/16_2106.mp3 deleted file mode 100644 index b58749f38..000000000 Binary files a/files/16_2106.mp3 and /dev/null differ diff --git a/files/16_2106_example.mp3 b/files/16_2106_example.mp3 deleted file mode 100644 index eb66cd59e..000000000 Binary files a/files/16_2106_example.mp3 and /dev/null differ diff --git a/files/16_2106_meaning.mp3 b/files/16_2106_meaning.mp3 deleted file mode 100644 index 64b16e64f..000000000 Binary files a/files/16_2106_meaning.mp3 and /dev/null differ diff --git a/files/16_2107.jpg b/files/16_2107.jpg deleted file mode 100644 index 2e78f4cd2..000000000 Binary files a/files/16_2107.jpg and /dev/null differ diff --git a/files/16_2107.mp3 b/files/16_2107.mp3 deleted file mode 100644 index 34432bcb3..000000000 Binary files a/files/16_2107.mp3 and /dev/null differ diff --git a/files/16_2107_example.mp3 b/files/16_2107_example.mp3 deleted file mode 100644 index 8c5ab416f..000000000 Binary files a/files/16_2107_example.mp3 and /dev/null differ diff --git a/files/16_2107_meaning.mp3 b/files/16_2107_meaning.mp3 deleted file mode 100644 index b473c2fa7..000000000 Binary files a/files/16_2107_meaning.mp3 and /dev/null differ diff --git a/files/16_2108.jpg b/files/16_2108.jpg deleted file mode 100644 index 9399a5942..000000000 Binary files a/files/16_2108.jpg and /dev/null differ diff --git a/files/16_2108.mp3 b/files/16_2108.mp3 deleted file mode 100644 index 57a7d1e04..000000000 Binary files a/files/16_2108.mp3 and /dev/null differ diff --git a/files/16_2108_example.mp3 b/files/16_2108_example.mp3 deleted file mode 100644 index cc4e29a58..000000000 Binary files a/files/16_2108_example.mp3 and /dev/null differ diff --git a/files/16_2108_meaning.mp3 b/files/16_2108_meaning.mp3 deleted file mode 100644 index 6d465ad1b..000000000 Binary files a/files/16_2108_meaning.mp3 and /dev/null differ diff --git a/files/16_2109.jpg b/files/16_2109.jpg deleted file mode 100644 index c21e18e99..000000000 Binary files a/files/16_2109.jpg and /dev/null differ diff --git a/files/16_2109.mp3 b/files/16_2109.mp3 deleted file mode 100644 index 927e63d91..000000000 Binary files a/files/16_2109.mp3 and /dev/null differ diff --git a/files/16_2109_example.mp3 b/files/16_2109_example.mp3 deleted file mode 100644 index 8b82e6330..000000000 Binary files a/files/16_2109_example.mp3 and /dev/null differ diff --git a/files/16_2109_meaning.mp3 b/files/16_2109_meaning.mp3 deleted file mode 100644 index 453354c6a..000000000 Binary files a/files/16_2109_meaning.mp3 and /dev/null differ diff --git a/files/16_2110.jpg b/files/16_2110.jpg deleted file mode 100644 index 477236c1d..000000000 Binary files a/files/16_2110.jpg and /dev/null differ diff --git a/files/16_2110.mp3 b/files/16_2110.mp3 deleted file mode 100644 index 7e4cc1da7..000000000 Binary files a/files/16_2110.mp3 and /dev/null differ diff --git a/files/16_2110_example.mp3 b/files/16_2110_example.mp3 deleted file mode 100644 index 427c048ab..000000000 Binary files a/files/16_2110_example.mp3 and /dev/null differ diff --git a/files/16_2110_meaning.mp3 b/files/16_2110_meaning.mp3 deleted file mode 100644 index efce4ef59..000000000 Binary files a/files/16_2110_meaning.mp3 and /dev/null differ diff --git a/files/16_2111.jpg b/files/16_2111.jpg deleted file mode 100644 index 78bc9cdbd..000000000 Binary files a/files/16_2111.jpg and /dev/null differ diff --git a/files/16_2111.mp3 b/files/16_2111.mp3 deleted file mode 100644 index 0a28b876b..000000000 Binary files a/files/16_2111.mp3 and /dev/null differ diff --git a/files/16_2111_example.mp3 b/files/16_2111_example.mp3 deleted file mode 100644 index 225522934..000000000 Binary files a/files/16_2111_example.mp3 and /dev/null differ diff --git a/files/16_2111_meaning.mp3 b/files/16_2111_meaning.mp3 deleted file mode 100644 index f57403446..000000000 Binary files a/files/16_2111_meaning.mp3 and /dev/null differ diff --git a/files/16_2112.jpg b/files/16_2112.jpg deleted file mode 100644 index 089aebdcc..000000000 Binary files a/files/16_2112.jpg and /dev/null differ diff --git a/files/16_2112.mp3 b/files/16_2112.mp3 deleted file mode 100644 index 2dddbc291..000000000 Binary files a/files/16_2112.mp3 and /dev/null differ diff --git a/files/16_2112_example.mp3 b/files/16_2112_example.mp3 deleted file mode 100644 index aae25a5fc..000000000 Binary files a/files/16_2112_example.mp3 and /dev/null differ diff --git a/files/16_2112_meaning.mp3 b/files/16_2112_meaning.mp3 deleted file mode 100644 index 182ce4153..000000000 Binary files a/files/16_2112_meaning.mp3 and /dev/null differ diff --git a/files/16_2113.jpg b/files/16_2113.jpg deleted file mode 100644 index fcba19d3e..000000000 Binary files a/files/16_2113.jpg and /dev/null differ diff --git a/files/16_2113.mp3 b/files/16_2113.mp3 deleted file mode 100644 index 580770257..000000000 Binary files a/files/16_2113.mp3 and /dev/null differ diff --git a/files/16_2113_example.mp3 b/files/16_2113_example.mp3 deleted file mode 100644 index fbf06e7b6..000000000 Binary files a/files/16_2113_example.mp3 and /dev/null differ diff --git a/files/16_2113_meaning.mp3 b/files/16_2113_meaning.mp3 deleted file mode 100644 index 47c55db9d..000000000 Binary files a/files/16_2113_meaning.mp3 and /dev/null differ diff --git a/files/16_2114.jpg b/files/16_2114.jpg deleted file mode 100644 index 1f8c9c398..000000000 Binary files a/files/16_2114.jpg and /dev/null differ diff --git a/files/16_2114.mp3 b/files/16_2114.mp3 deleted file mode 100644 index 02ce4402f..000000000 Binary files a/files/16_2114.mp3 and /dev/null differ diff --git a/files/16_2114_example.mp3 b/files/16_2114_example.mp3 deleted file mode 100644 index 3612c3caf..000000000 Binary files a/files/16_2114_example.mp3 and /dev/null differ diff --git a/files/16_2114_meaning.mp3 b/files/16_2114_meaning.mp3 deleted file mode 100644 index e113eb10e..000000000 Binary files a/files/16_2114_meaning.mp3 and /dev/null differ diff --git a/files/16_2115.jpg b/files/16_2115.jpg deleted file mode 100644 index 305c0d297..000000000 Binary files a/files/16_2115.jpg and /dev/null differ diff --git a/files/16_2115.mp3 b/files/16_2115.mp3 deleted file mode 100644 index 9fb40c53c..000000000 Binary files a/files/16_2115.mp3 and /dev/null differ diff --git a/files/16_2115_example.mp3 b/files/16_2115_example.mp3 deleted file mode 100644 index f008a767a..000000000 Binary files a/files/16_2115_example.mp3 and /dev/null differ diff --git a/files/16_2115_meaning.mp3 b/files/16_2115_meaning.mp3 deleted file mode 100644 index 5e21aef53..000000000 Binary files a/files/16_2115_meaning.mp3 and /dev/null differ diff --git a/files/16_2116.jpg b/files/16_2116.jpg deleted file mode 100644 index 0f5f1d3e0..000000000 Binary files a/files/16_2116.jpg and /dev/null differ diff --git a/files/16_2116.mp3 b/files/16_2116.mp3 deleted file mode 100644 index 5aad7a21b..000000000 Binary files a/files/16_2116.mp3 and /dev/null differ diff --git a/files/16_2116_example.mp3 b/files/16_2116_example.mp3 deleted file mode 100644 index 32eec8987..000000000 Binary files a/files/16_2116_example.mp3 and /dev/null differ diff --git a/files/16_2116_meaning.mp3 b/files/16_2116_meaning.mp3 deleted file mode 100644 index d8d7367b2..000000000 Binary files a/files/16_2116_meaning.mp3 and /dev/null differ diff --git a/files/16_2117.jpg b/files/16_2117.jpg deleted file mode 100644 index 97191708c..000000000 Binary files a/files/16_2117.jpg and /dev/null differ diff --git a/files/16_2117.mp3 b/files/16_2117.mp3 deleted file mode 100644 index 659db1b49..000000000 Binary files a/files/16_2117.mp3 and /dev/null differ diff --git a/files/16_2117_example.mp3 b/files/16_2117_example.mp3 deleted file mode 100644 index e899751d8..000000000 Binary files a/files/16_2117_example.mp3 and /dev/null differ diff --git a/files/16_2117_meaning.mp3 b/files/16_2117_meaning.mp3 deleted file mode 100644 index c0386d475..000000000 Binary files a/files/16_2117_meaning.mp3 and /dev/null differ diff --git a/files/16_2118.jpg b/files/16_2118.jpg deleted file mode 100644 index a4a8a7efd..000000000 Binary files a/files/16_2118.jpg and /dev/null differ diff --git a/files/16_2118.mp3 b/files/16_2118.mp3 deleted file mode 100644 index 2cc7b7474..000000000 Binary files a/files/16_2118.mp3 and /dev/null differ diff --git a/files/16_2118_example.mp3 b/files/16_2118_example.mp3 deleted file mode 100644 index 48a7678cf..000000000 Binary files a/files/16_2118_example.mp3 and /dev/null differ diff --git a/files/16_2118_meaning.mp3 b/files/16_2118_meaning.mp3 deleted file mode 100644 index 99f910d25..000000000 Binary files a/files/16_2118_meaning.mp3 and /dev/null differ diff --git a/files/16_2119.jpg b/files/16_2119.jpg deleted file mode 100644 index f8c8459d0..000000000 Binary files a/files/16_2119.jpg and /dev/null differ diff --git a/files/16_2119.mp3 b/files/16_2119.mp3 deleted file mode 100644 index 2a3e8d5a4..000000000 Binary files a/files/16_2119.mp3 and /dev/null differ diff --git a/files/16_2119_example.mp3 b/files/16_2119_example.mp3 deleted file mode 100644 index fc9589197..000000000 Binary files a/files/16_2119_example.mp3 and /dev/null differ diff --git a/files/16_2119_meaning.mp3 b/files/16_2119_meaning.mp3 deleted file mode 100644 index 1155b1ca3..000000000 Binary files a/files/16_2119_meaning.mp3 and /dev/null differ diff --git a/files/16_2120.jpg b/files/16_2120.jpg deleted file mode 100644 index ecc1f7f0f..000000000 Binary files a/files/16_2120.jpg and /dev/null differ diff --git a/files/16_2120.mp3 b/files/16_2120.mp3 deleted file mode 100644 index 244642144..000000000 Binary files a/files/16_2120.mp3 and /dev/null differ diff --git a/files/16_2120_example.mp3 b/files/16_2120_example.mp3 deleted file mode 100644 index eb7e74475..000000000 Binary files a/files/16_2120_example.mp3 and /dev/null differ diff --git a/files/16_2120_meaning.mp3 b/files/16_2120_meaning.mp3 deleted file mode 100644 index cb7748851..000000000 Binary files a/files/16_2120_meaning.mp3 and /dev/null differ diff --git a/files/16_2701.jpg b/files/16_2701.jpg deleted file mode 100644 index c8a35aeff..000000000 Binary files a/files/16_2701.jpg and /dev/null differ diff --git a/files/16_2701.mp3 b/files/16_2701.mp3 deleted file mode 100644 index 2e8376544..000000000 Binary files a/files/16_2701.mp3 and /dev/null differ diff --git a/files/16_2701_example.mp3 b/files/16_2701_example.mp3 deleted file mode 100644 index 7a768cff9..000000000 Binary files a/files/16_2701_example.mp3 and /dev/null differ diff --git a/files/16_2701_meaning.mp3 b/files/16_2701_meaning.mp3 deleted file mode 100644 index be5d658df..000000000 Binary files a/files/16_2701_meaning.mp3 and /dev/null differ diff --git a/files/16_2702.jpg b/files/16_2702.jpg deleted file mode 100644 index 609616f7f..000000000 Binary files a/files/16_2702.jpg and /dev/null differ diff --git a/files/16_2702.mp3 b/files/16_2702.mp3 deleted file mode 100644 index b7d268b52..000000000 Binary files a/files/16_2702.mp3 and /dev/null differ diff --git a/files/16_2702_example.mp3 b/files/16_2702_example.mp3 deleted file mode 100644 index 1083b25c9..000000000 Binary files a/files/16_2702_example.mp3 and /dev/null differ diff --git a/files/16_2702_meaning.mp3 b/files/16_2702_meaning.mp3 deleted file mode 100644 index 96d69a3aa..000000000 Binary files a/files/16_2702_meaning.mp3 and /dev/null differ diff --git a/files/16_2703.jpg b/files/16_2703.jpg deleted file mode 100644 index 1c2b4aa59..000000000 Binary files a/files/16_2703.jpg and /dev/null differ diff --git a/files/16_2703.mp3 b/files/16_2703.mp3 deleted file mode 100644 index d3d1af626..000000000 Binary files a/files/16_2703.mp3 and /dev/null differ diff --git a/files/16_2703_example.mp3 b/files/16_2703_example.mp3 deleted file mode 100644 index 666d25cf6..000000000 Binary files a/files/16_2703_example.mp3 and /dev/null differ diff --git a/files/16_2703_meaning.mp3 b/files/16_2703_meaning.mp3 deleted file mode 100644 index 3babd582b..000000000 Binary files a/files/16_2703_meaning.mp3 and /dev/null differ diff --git a/files/16_2704.jpg b/files/16_2704.jpg deleted file mode 100644 index d13871a5e..000000000 Binary files a/files/16_2704.jpg and /dev/null differ diff --git a/files/16_2704.mp3 b/files/16_2704.mp3 deleted file mode 100644 index e98d605e3..000000000 Binary files a/files/16_2704.mp3 and /dev/null differ diff --git a/files/16_2704_example.mp3 b/files/16_2704_example.mp3 deleted file mode 100644 index dca546da1..000000000 Binary files a/files/16_2704_example.mp3 and /dev/null differ diff --git a/files/16_2704_meaning.mp3 b/files/16_2704_meaning.mp3 deleted file mode 100644 index d5f71e512..000000000 Binary files a/files/16_2704_meaning.mp3 and /dev/null differ diff --git a/files/16_2705.jpg b/files/16_2705.jpg deleted file mode 100644 index 26856c7e1..000000000 Binary files a/files/16_2705.jpg and /dev/null differ diff --git a/files/16_2705.mp3 b/files/16_2705.mp3 deleted file mode 100644 index 8352b721c..000000000 Binary files a/files/16_2705.mp3 and /dev/null differ diff --git a/files/16_2705_example.mp3 b/files/16_2705_example.mp3 deleted file mode 100644 index 67f3f704f..000000000 Binary files a/files/16_2705_example.mp3 and /dev/null differ diff --git a/files/16_2705_meaning.mp3 b/files/16_2705_meaning.mp3 deleted file mode 100644 index 741da7c27..000000000 Binary files a/files/16_2705_meaning.mp3 and /dev/null differ diff --git a/files/16_2706.jpg b/files/16_2706.jpg deleted file mode 100644 index 58facc0c2..000000000 Binary files a/files/16_2706.jpg and /dev/null differ diff --git a/files/16_2706.mp3 b/files/16_2706.mp3 deleted file mode 100644 index 0fa16815b..000000000 Binary files a/files/16_2706.mp3 and /dev/null differ diff --git a/files/16_2706_example.mp3 b/files/16_2706_example.mp3 deleted file mode 100644 index 2b966430f..000000000 Binary files a/files/16_2706_example.mp3 and /dev/null differ diff --git a/files/16_2706_meaning.mp3 b/files/16_2706_meaning.mp3 deleted file mode 100644 index ab6ab492b..000000000 Binary files a/files/16_2706_meaning.mp3 and /dev/null differ diff --git a/files/16_2707.jpg b/files/16_2707.jpg deleted file mode 100644 index 1f1a7dac4..000000000 Binary files a/files/16_2707.jpg and /dev/null differ diff --git a/files/16_2707.mp3 b/files/16_2707.mp3 deleted file mode 100644 index a79c299a5..000000000 Binary files a/files/16_2707.mp3 and /dev/null differ diff --git a/files/16_2707_example.mp3 b/files/16_2707_example.mp3 deleted file mode 100644 index 7fa7160a6..000000000 Binary files a/files/16_2707_example.mp3 and /dev/null differ diff --git a/files/16_2707_meaning.mp3 b/files/16_2707_meaning.mp3 deleted file mode 100644 index 2e7e29781..000000000 Binary files a/files/16_2707_meaning.mp3 and /dev/null differ diff --git a/files/16_2708.jpg b/files/16_2708.jpg deleted file mode 100644 index 1262fa568..000000000 Binary files a/files/16_2708.jpg and /dev/null differ diff --git a/files/16_2708.mp3 b/files/16_2708.mp3 deleted file mode 100644 index 74a9a19a5..000000000 Binary files a/files/16_2708.mp3 and /dev/null differ diff --git a/files/16_2708_example.mp3 b/files/16_2708_example.mp3 deleted file mode 100644 index 62791f1ff..000000000 Binary files a/files/16_2708_example.mp3 and /dev/null differ diff --git a/files/16_2708_meaning.mp3 b/files/16_2708_meaning.mp3 deleted file mode 100644 index de0df8123..000000000 Binary files a/files/16_2708_meaning.mp3 and /dev/null differ diff --git a/files/16_2709.jpg b/files/16_2709.jpg deleted file mode 100644 index 9b2677930..000000000 Binary files a/files/16_2709.jpg and /dev/null differ diff --git a/files/16_2709.mp3 b/files/16_2709.mp3 deleted file mode 100644 index 1c274bfa6..000000000 Binary files a/files/16_2709.mp3 and /dev/null differ diff --git a/files/16_2709_example.mp3 b/files/16_2709_example.mp3 deleted file mode 100644 index 07575b412..000000000 Binary files a/files/16_2709_example.mp3 and /dev/null differ diff --git a/files/16_2709_meaning.mp3 b/files/16_2709_meaning.mp3 deleted file mode 100644 index d9bb93f1f..000000000 Binary files a/files/16_2709_meaning.mp3 and /dev/null differ diff --git a/files/16_2710.jpg b/files/16_2710.jpg deleted file mode 100644 index 9947388cb..000000000 Binary files a/files/16_2710.jpg and /dev/null differ diff --git a/files/16_2710.mp3 b/files/16_2710.mp3 deleted file mode 100644 index 92f662b1e..000000000 Binary files a/files/16_2710.mp3 and /dev/null differ diff --git a/files/16_2710_example.mp3 b/files/16_2710_example.mp3 deleted file mode 100644 index 8f91be43e..000000000 Binary files a/files/16_2710_example.mp3 and /dev/null differ diff --git a/files/16_2710_meaning.mp3 b/files/16_2710_meaning.mp3 deleted file mode 100644 index 1fa136589..000000000 Binary files a/files/16_2710_meaning.mp3 and /dev/null differ diff --git a/files/16_2711.jpg b/files/16_2711.jpg deleted file mode 100644 index b51b5f4e3..000000000 Binary files a/files/16_2711.jpg and /dev/null differ diff --git a/files/16_2711.mp3 b/files/16_2711.mp3 deleted file mode 100644 index 5492c7952..000000000 Binary files a/files/16_2711.mp3 and /dev/null differ diff --git a/files/16_2711_example.mp3 b/files/16_2711_example.mp3 deleted file mode 100644 index 84dad9e5d..000000000 Binary files a/files/16_2711_example.mp3 and /dev/null differ diff --git a/files/16_2711_meaning.mp3 b/files/16_2711_meaning.mp3 deleted file mode 100644 index 8e9246888..000000000 Binary files a/files/16_2711_meaning.mp3 and /dev/null differ diff --git a/files/16_2712.jpg b/files/16_2712.jpg deleted file mode 100644 index 312e286c1..000000000 Binary files a/files/16_2712.jpg and /dev/null differ diff --git a/files/16_2712.mp3 b/files/16_2712.mp3 deleted file mode 100644 index b137f9e78..000000000 Binary files a/files/16_2712.mp3 and /dev/null differ diff --git a/files/16_2712_example.mp3 b/files/16_2712_example.mp3 deleted file mode 100644 index cbf1c4e86..000000000 Binary files a/files/16_2712_example.mp3 and /dev/null differ diff --git a/files/16_2712_meaning.mp3 b/files/16_2712_meaning.mp3 deleted file mode 100644 index 1a5d1d7fd..000000000 Binary files a/files/16_2712_meaning.mp3 and /dev/null differ diff --git a/files/16_2713.jpg b/files/16_2713.jpg deleted file mode 100644 index 6493fa3ca..000000000 Binary files a/files/16_2713.jpg and /dev/null differ diff --git a/files/16_2713.mp3 b/files/16_2713.mp3 deleted file mode 100644 index 6c40dedb1..000000000 Binary files a/files/16_2713.mp3 and /dev/null differ diff --git a/files/16_2713_example.mp3 b/files/16_2713_example.mp3 deleted file mode 100644 index ae0d9e067..000000000 Binary files a/files/16_2713_example.mp3 and /dev/null differ diff --git a/files/16_2713_meaning.mp3 b/files/16_2713_meaning.mp3 deleted file mode 100644 index 60670fec3..000000000 Binary files a/files/16_2713_meaning.mp3 and /dev/null differ diff --git a/files/16_2714.jpg b/files/16_2714.jpg deleted file mode 100644 index b673ac130..000000000 Binary files a/files/16_2714.jpg and /dev/null differ diff --git a/files/16_2714.mp3 b/files/16_2714.mp3 deleted file mode 100644 index 300606d71..000000000 Binary files a/files/16_2714.mp3 and /dev/null differ diff --git a/files/16_2714_example.mp3 b/files/16_2714_example.mp3 deleted file mode 100644 index fe5dee38a..000000000 Binary files a/files/16_2714_example.mp3 and /dev/null differ diff --git a/files/16_2714_meaning.mp3 b/files/16_2714_meaning.mp3 deleted file mode 100644 index 6cbacb7ae..000000000 Binary files a/files/16_2714_meaning.mp3 and /dev/null differ diff --git a/files/16_2715.jpg b/files/16_2715.jpg deleted file mode 100644 index 67d565f2c..000000000 Binary files a/files/16_2715.jpg and /dev/null differ diff --git a/files/16_2715.mp3 b/files/16_2715.mp3 deleted file mode 100644 index ba0e118ab..000000000 Binary files a/files/16_2715.mp3 and /dev/null differ diff --git a/files/16_2715_example.mp3 b/files/16_2715_example.mp3 deleted file mode 100644 index 44851259a..000000000 Binary files a/files/16_2715_example.mp3 and /dev/null differ diff --git a/files/16_2715_meaning.mp3 b/files/16_2715_meaning.mp3 deleted file mode 100644 index 7d03c9628..000000000 Binary files a/files/16_2715_meaning.mp3 and /dev/null differ diff --git a/files/16_2716.jpg b/files/16_2716.jpg deleted file mode 100644 index b67cacbd3..000000000 Binary files a/files/16_2716.jpg and /dev/null differ diff --git a/files/16_2716.mp3 b/files/16_2716.mp3 deleted file mode 100644 index b1a192031..000000000 Binary files a/files/16_2716.mp3 and /dev/null differ diff --git a/files/16_2716_example.mp3 b/files/16_2716_example.mp3 deleted file mode 100644 index 1af4a0988..000000000 Binary files a/files/16_2716_example.mp3 and /dev/null differ diff --git a/files/16_2716_meaning.mp3 b/files/16_2716_meaning.mp3 deleted file mode 100644 index ccd53063f..000000000 Binary files a/files/16_2716_meaning.mp3 and /dev/null differ diff --git a/files/16_2717.jpg b/files/16_2717.jpg deleted file mode 100644 index 7b50b209f..000000000 Binary files a/files/16_2717.jpg and /dev/null differ diff --git a/files/16_2717.mp3 b/files/16_2717.mp3 deleted file mode 100644 index ffb369fdb..000000000 Binary files a/files/16_2717.mp3 and /dev/null differ diff --git a/files/16_2717_example.mp3 b/files/16_2717_example.mp3 deleted file mode 100644 index 13cd13c57..000000000 Binary files a/files/16_2717_example.mp3 and /dev/null differ diff --git a/files/16_2717_meaning.mp3 b/files/16_2717_meaning.mp3 deleted file mode 100644 index cf3e3c38f..000000000 Binary files a/files/16_2717_meaning.mp3 and /dev/null differ diff --git a/files/16_2718.jpg b/files/16_2718.jpg deleted file mode 100644 index 5bd65c655..000000000 Binary files a/files/16_2718.jpg and /dev/null differ diff --git a/files/16_2718.mp3 b/files/16_2718.mp3 deleted file mode 100644 index 497beb156..000000000 Binary files a/files/16_2718.mp3 and /dev/null differ diff --git a/files/16_2718_example.mp3 b/files/16_2718_example.mp3 deleted file mode 100644 index 5fa8665bd..000000000 Binary files a/files/16_2718_example.mp3 and /dev/null differ diff --git a/files/16_2718_meaning.mp3 b/files/16_2718_meaning.mp3 deleted file mode 100644 index 5dd5f5010..000000000 Binary files a/files/16_2718_meaning.mp3 and /dev/null differ diff --git a/files/16_2719.jpg b/files/16_2719.jpg deleted file mode 100644 index 969f54861..000000000 Binary files a/files/16_2719.jpg and /dev/null differ diff --git a/files/16_2719.mp3 b/files/16_2719.mp3 deleted file mode 100644 index a60af2adb..000000000 Binary files a/files/16_2719.mp3 and /dev/null differ diff --git a/files/16_2719_example.mp3 b/files/16_2719_example.mp3 deleted file mode 100644 index 84a2e4b99..000000000 Binary files a/files/16_2719_example.mp3 and /dev/null differ diff --git a/files/16_2719_meaning.mp3 b/files/16_2719_meaning.mp3 deleted file mode 100644 index e14b0cd1d..000000000 Binary files a/files/16_2719_meaning.mp3 and /dev/null differ diff --git a/files/16_2720.jpg b/files/16_2720.jpg deleted file mode 100644 index 07d888cf8..000000000 Binary files a/files/16_2720.jpg and /dev/null differ diff --git a/files/16_2720.mp3 b/files/16_2720.mp3 deleted file mode 100644 index ff4cec574..000000000 Binary files a/files/16_2720.mp3 and /dev/null differ diff --git a/files/16_2720_example.mp3 b/files/16_2720_example.mp3 deleted file mode 100644 index f90a361f5..000000000 Binary files a/files/16_2720_example.mp3 and /dev/null differ diff --git a/files/16_2720_meaning.mp3 b/files/16_2720_meaning.mp3 deleted file mode 100644 index 3beeaeb8e..000000000 Binary files a/files/16_2720_meaning.mp3 and /dev/null differ diff --git a/files/16_3301.jpg b/files/16_3301.jpg deleted file mode 100644 index 37499fa69..000000000 Binary files a/files/16_3301.jpg and /dev/null differ diff --git a/files/16_3301.mp3 b/files/16_3301.mp3 deleted file mode 100644 index 7289b61ff..000000000 Binary files a/files/16_3301.mp3 and /dev/null differ diff --git a/files/16_3301_example.mp3 b/files/16_3301_example.mp3 deleted file mode 100644 index 86265d603..000000000 Binary files a/files/16_3301_example.mp3 and /dev/null differ diff --git a/files/16_3301_meaning.mp3 b/files/16_3301_meaning.mp3 deleted file mode 100644 index f635299d0..000000000 Binary files a/files/16_3301_meaning.mp3 and /dev/null differ diff --git a/files/16_3302.jpg b/files/16_3302.jpg deleted file mode 100644 index 612331e16..000000000 Binary files a/files/16_3302.jpg and /dev/null differ diff --git a/files/16_3302.mp3 b/files/16_3302.mp3 deleted file mode 100644 index d8393af68..000000000 Binary files a/files/16_3302.mp3 and /dev/null differ diff --git a/files/16_3302_example.mp3 b/files/16_3302_example.mp3 deleted file mode 100644 index 3f2c44004..000000000 Binary files a/files/16_3302_example.mp3 and /dev/null differ diff --git a/files/16_3302_meaning.mp3 b/files/16_3302_meaning.mp3 deleted file mode 100644 index 645de3936..000000000 Binary files a/files/16_3302_meaning.mp3 and /dev/null differ diff --git a/files/16_3303.jpg b/files/16_3303.jpg deleted file mode 100644 index 774aebd9c..000000000 Binary files a/files/16_3303.jpg and /dev/null differ diff --git a/files/16_3303.mp3 b/files/16_3303.mp3 deleted file mode 100644 index 17bcdfb02..000000000 Binary files a/files/16_3303.mp3 and /dev/null differ diff --git a/files/16_3303_example.mp3 b/files/16_3303_example.mp3 deleted file mode 100644 index a68ac1bbd..000000000 Binary files a/files/16_3303_example.mp3 and /dev/null differ diff --git a/files/16_3303_meaning.mp3 b/files/16_3303_meaning.mp3 deleted file mode 100644 index 5b31e03c5..000000000 Binary files a/files/16_3303_meaning.mp3 and /dev/null differ diff --git a/files/16_3304.jpg b/files/16_3304.jpg deleted file mode 100644 index 9bb77a945..000000000 Binary files a/files/16_3304.jpg and /dev/null differ diff --git a/files/16_3304.mp3 b/files/16_3304.mp3 deleted file mode 100644 index c5e9d25cf..000000000 Binary files a/files/16_3304.mp3 and /dev/null differ diff --git a/files/16_3304_example.mp3 b/files/16_3304_example.mp3 deleted file mode 100644 index 0ce76cb75..000000000 Binary files a/files/16_3304_example.mp3 and /dev/null differ diff --git a/files/16_3304_meaning.mp3 b/files/16_3304_meaning.mp3 deleted file mode 100644 index d7ad7b5ad..000000000 Binary files a/files/16_3304_meaning.mp3 and /dev/null differ diff --git a/files/16_3305.jpg b/files/16_3305.jpg deleted file mode 100644 index f239274a3..000000000 Binary files a/files/16_3305.jpg and /dev/null differ diff --git a/files/16_3305.mp3 b/files/16_3305.mp3 deleted file mode 100644 index 7c4486411..000000000 Binary files a/files/16_3305.mp3 and /dev/null differ diff --git a/files/16_3305_example.mp3 b/files/16_3305_example.mp3 deleted file mode 100644 index fd75c242d..000000000 Binary files a/files/16_3305_example.mp3 and /dev/null differ diff --git a/files/16_3305_meaning.mp3 b/files/16_3305_meaning.mp3 deleted file mode 100644 index 38a3950bb..000000000 Binary files a/files/16_3305_meaning.mp3 and /dev/null differ diff --git a/files/16_3306.jpg b/files/16_3306.jpg deleted file mode 100644 index e3961f70a..000000000 Binary files a/files/16_3306.jpg and /dev/null differ diff --git a/files/16_3306.mp3 b/files/16_3306.mp3 deleted file mode 100644 index cc1e71ea0..000000000 Binary files a/files/16_3306.mp3 and /dev/null differ diff --git a/files/16_3306_example.mp3 b/files/16_3306_example.mp3 deleted file mode 100644 index c03fd9c22..000000000 Binary files a/files/16_3306_example.mp3 and /dev/null differ diff --git a/files/16_3306_meaning.mp3 b/files/16_3306_meaning.mp3 deleted file mode 100644 index d11caf0c0..000000000 Binary files a/files/16_3306_meaning.mp3 and /dev/null differ diff --git a/files/16_3307.jpg b/files/16_3307.jpg deleted file mode 100644 index 5a42f5178..000000000 Binary files a/files/16_3307.jpg and /dev/null differ diff --git a/files/16_3307.mp3 b/files/16_3307.mp3 deleted file mode 100644 index 9626774ce..000000000 Binary files a/files/16_3307.mp3 and /dev/null differ diff --git a/files/16_3307_example.mp3 b/files/16_3307_example.mp3 deleted file mode 100644 index f5334ad11..000000000 Binary files a/files/16_3307_example.mp3 and /dev/null differ diff --git a/files/16_3307_meaning.mp3 b/files/16_3307_meaning.mp3 deleted file mode 100644 index 450bb15cb..000000000 Binary files a/files/16_3307_meaning.mp3 and /dev/null differ diff --git a/files/16_3308.jpg b/files/16_3308.jpg deleted file mode 100644 index e3e2cf22d..000000000 Binary files a/files/16_3308.jpg and /dev/null differ diff --git a/files/16_3308.mp3 b/files/16_3308.mp3 deleted file mode 100644 index c82f7ab58..000000000 Binary files a/files/16_3308.mp3 and /dev/null differ diff --git a/files/16_3308_example.mp3 b/files/16_3308_example.mp3 deleted file mode 100644 index 0263d628d..000000000 Binary files a/files/16_3308_example.mp3 and /dev/null differ diff --git a/files/16_3308_meaning.mp3 b/files/16_3308_meaning.mp3 deleted file mode 100644 index bd23774fe..000000000 Binary files a/files/16_3308_meaning.mp3 and /dev/null differ diff --git a/files/16_3309.jpg b/files/16_3309.jpg deleted file mode 100644 index 38b587c72..000000000 Binary files a/files/16_3309.jpg and /dev/null differ diff --git a/files/16_3309.mp3 b/files/16_3309.mp3 deleted file mode 100644 index 95c87162b..000000000 Binary files a/files/16_3309.mp3 and /dev/null differ diff --git a/files/16_3309_example.mp3 b/files/16_3309_example.mp3 deleted file mode 100644 index 7797a5bd3..000000000 Binary files a/files/16_3309_example.mp3 and /dev/null differ diff --git a/files/16_3309_meaning.mp3 b/files/16_3309_meaning.mp3 deleted file mode 100644 index 1ce92077d..000000000 Binary files a/files/16_3309_meaning.mp3 and /dev/null differ diff --git a/files/16_3310.jpg b/files/16_3310.jpg deleted file mode 100644 index 65df77be0..000000000 Binary files a/files/16_3310.jpg and /dev/null differ diff --git a/files/16_3310.mp3 b/files/16_3310.mp3 deleted file mode 100644 index 642b2fe65..000000000 Binary files a/files/16_3310.mp3 and /dev/null differ diff --git a/files/16_3310_example.mp3 b/files/16_3310_example.mp3 deleted file mode 100644 index fe9cb5b8e..000000000 Binary files a/files/16_3310_example.mp3 and /dev/null differ diff --git a/files/16_3310_meaning.mp3 b/files/16_3310_meaning.mp3 deleted file mode 100644 index 3f3fe2354..000000000 Binary files a/files/16_3310_meaning.mp3 and /dev/null differ diff --git a/files/16_3311.jpg b/files/16_3311.jpg deleted file mode 100644 index 51adc429f..000000000 Binary files a/files/16_3311.jpg and /dev/null differ diff --git a/files/16_3311.mp3 b/files/16_3311.mp3 deleted file mode 100644 index f88a3aa14..000000000 Binary files a/files/16_3311.mp3 and /dev/null differ diff --git a/files/16_3311_example.mp3 b/files/16_3311_example.mp3 deleted file mode 100644 index 7decea69c..000000000 Binary files a/files/16_3311_example.mp3 and /dev/null differ diff --git a/files/16_3311_meaning.mp3 b/files/16_3311_meaning.mp3 deleted file mode 100644 index c8bdf3699..000000000 Binary files a/files/16_3311_meaning.mp3 and /dev/null differ diff --git a/files/16_3312.jpg b/files/16_3312.jpg deleted file mode 100644 index f151b659d..000000000 Binary files a/files/16_3312.jpg and /dev/null differ diff --git a/files/16_3312.mp3 b/files/16_3312.mp3 deleted file mode 100644 index 0cc20ffe4..000000000 Binary files a/files/16_3312.mp3 and /dev/null differ diff --git a/files/16_3312_example.mp3 b/files/16_3312_example.mp3 deleted file mode 100644 index fde7091fc..000000000 Binary files a/files/16_3312_example.mp3 and /dev/null differ diff --git a/files/16_3312_meaning.mp3 b/files/16_3312_meaning.mp3 deleted file mode 100644 index 88ef349ef..000000000 Binary files a/files/16_3312_meaning.mp3 and /dev/null differ diff --git a/files/16_3313.jpg b/files/16_3313.jpg deleted file mode 100644 index 8eb91b8d1..000000000 Binary files a/files/16_3313.jpg and /dev/null differ diff --git a/files/16_3313.mp3 b/files/16_3313.mp3 deleted file mode 100644 index 1c4f4f0b9..000000000 Binary files a/files/16_3313.mp3 and /dev/null differ diff --git a/files/16_3313_example.mp3 b/files/16_3313_example.mp3 deleted file mode 100644 index 4b57fe3ff..000000000 Binary files a/files/16_3313_example.mp3 and /dev/null differ diff --git a/files/16_3313_meaning.mp3 b/files/16_3313_meaning.mp3 deleted file mode 100644 index a129572aa..000000000 Binary files a/files/16_3313_meaning.mp3 and /dev/null differ diff --git a/files/16_3314.jpg b/files/16_3314.jpg deleted file mode 100644 index 3f771fdfa..000000000 Binary files a/files/16_3314.jpg and /dev/null differ diff --git a/files/16_3314.mp3 b/files/16_3314.mp3 deleted file mode 100644 index 81f7f47a7..000000000 Binary files a/files/16_3314.mp3 and /dev/null differ diff --git a/files/16_3314_example.mp3 b/files/16_3314_example.mp3 deleted file mode 100644 index f56c1611f..000000000 Binary files a/files/16_3314_example.mp3 and /dev/null differ diff --git a/files/16_3314_meaning.mp3 b/files/16_3314_meaning.mp3 deleted file mode 100644 index 52df9ab89..000000000 Binary files a/files/16_3314_meaning.mp3 and /dev/null differ diff --git a/files/16_3315.jpg b/files/16_3315.jpg deleted file mode 100644 index 9a940d598..000000000 Binary files a/files/16_3315.jpg and /dev/null differ diff --git a/files/16_3315.mp3 b/files/16_3315.mp3 deleted file mode 100644 index 7f2de1f74..000000000 Binary files a/files/16_3315.mp3 and /dev/null differ diff --git a/files/16_3315_example.mp3 b/files/16_3315_example.mp3 deleted file mode 100644 index d96abe938..000000000 Binary files a/files/16_3315_example.mp3 and /dev/null differ diff --git a/files/16_3315_meaning.mp3 b/files/16_3315_meaning.mp3 deleted file mode 100644 index 9a54e069a..000000000 Binary files a/files/16_3315_meaning.mp3 and /dev/null differ diff --git a/files/16_3316.jpg b/files/16_3316.jpg deleted file mode 100644 index a094d57bc..000000000 Binary files a/files/16_3316.jpg and /dev/null differ diff --git a/files/16_3316.mp3 b/files/16_3316.mp3 deleted file mode 100644 index c92cfc9a7..000000000 Binary files a/files/16_3316.mp3 and /dev/null differ diff --git a/files/16_3316_example.mp3 b/files/16_3316_example.mp3 deleted file mode 100644 index d293503af..000000000 Binary files a/files/16_3316_example.mp3 and /dev/null differ diff --git a/files/16_3316_meaning.mp3 b/files/16_3316_meaning.mp3 deleted file mode 100644 index 913912389..000000000 Binary files a/files/16_3316_meaning.mp3 and /dev/null differ diff --git a/files/16_3317.jpg b/files/16_3317.jpg deleted file mode 100644 index b976334bd..000000000 Binary files a/files/16_3317.jpg and /dev/null differ diff --git a/files/16_3317.mp3 b/files/16_3317.mp3 deleted file mode 100644 index 374cd4ca2..000000000 Binary files a/files/16_3317.mp3 and /dev/null differ diff --git a/files/16_3317_example.mp3 b/files/16_3317_example.mp3 deleted file mode 100644 index 2c7acf0a3..000000000 Binary files a/files/16_3317_example.mp3 and /dev/null differ diff --git a/files/16_3317_meaning.mp3 b/files/16_3317_meaning.mp3 deleted file mode 100644 index 41b719089..000000000 Binary files a/files/16_3317_meaning.mp3 and /dev/null differ diff --git a/files/16_3318.jpg b/files/16_3318.jpg deleted file mode 100644 index dbac216d7..000000000 Binary files a/files/16_3318.jpg and /dev/null differ diff --git a/files/16_3318.mp3 b/files/16_3318.mp3 deleted file mode 100644 index 1d2963d7c..000000000 Binary files a/files/16_3318.mp3 and /dev/null differ diff --git a/files/16_3318_example.mp3 b/files/16_3318_example.mp3 deleted file mode 100644 index 1c292b39b..000000000 Binary files a/files/16_3318_example.mp3 and /dev/null differ diff --git a/files/16_3318_meaning.mp3 b/files/16_3318_meaning.mp3 deleted file mode 100644 index dabc4ce25..000000000 Binary files a/files/16_3318_meaning.mp3 and /dev/null differ diff --git a/files/16_3319.jpg b/files/16_3319.jpg deleted file mode 100644 index a80bff68e..000000000 Binary files a/files/16_3319.jpg and /dev/null differ diff --git a/files/16_3319.mp3 b/files/16_3319.mp3 deleted file mode 100644 index e5fd84a7f..000000000 Binary files a/files/16_3319.mp3 and /dev/null differ diff --git a/files/16_3319_example.mp3 b/files/16_3319_example.mp3 deleted file mode 100644 index f22d94349..000000000 Binary files a/files/16_3319_example.mp3 and /dev/null differ diff --git a/files/16_3319_meaning.mp3 b/files/16_3319_meaning.mp3 deleted file mode 100644 index a42b2bcac..000000000 Binary files a/files/16_3319_meaning.mp3 and /dev/null differ diff --git a/files/16_3320.jpg b/files/16_3320.jpg deleted file mode 100644 index 9379a6f04..000000000 Binary files a/files/16_3320.jpg and /dev/null differ diff --git a/files/16_3320.mp3 b/files/16_3320.mp3 deleted file mode 100644 index a94c4e4b8..000000000 Binary files a/files/16_3320.mp3 and /dev/null differ diff --git a/files/16_3320_example.mp3 b/files/16_3320_example.mp3 deleted file mode 100644 index 343ab5556..000000000 Binary files a/files/16_3320_example.mp3 and /dev/null differ diff --git a/files/16_3320_meaning.mp3 b/files/16_3320_meaning.mp3 deleted file mode 100644 index 70d85e259..000000000 Binary files a/files/16_3320_meaning.mp3 and /dev/null differ diff --git a/files/17_0321.jpg b/files/17_0321.jpg deleted file mode 100644 index c9409d0be..000000000 Binary files a/files/17_0321.jpg and /dev/null differ diff --git a/files/17_0321.mp3 b/files/17_0321.mp3 deleted file mode 100644 index 1df25c494..000000000 Binary files a/files/17_0321.mp3 and /dev/null differ diff --git a/files/17_0321_example.mp3 b/files/17_0321_example.mp3 deleted file mode 100644 index ba7bceb7c..000000000 Binary files a/files/17_0321_example.mp3 and /dev/null differ diff --git a/files/17_0321_meaning.mp3 b/files/17_0321_meaning.mp3 deleted file mode 100644 index eb929929f..000000000 Binary files a/files/17_0321_meaning.mp3 and /dev/null differ diff --git a/files/17_0322.jpg b/files/17_0322.jpg deleted file mode 100644 index 9c9753ca3..000000000 Binary files a/files/17_0322.jpg and /dev/null differ diff --git a/files/17_0322.mp3 b/files/17_0322.mp3 deleted file mode 100644 index bf1d23c24..000000000 Binary files a/files/17_0322.mp3 and /dev/null differ diff --git a/files/17_0322_example.mp3 b/files/17_0322_example.mp3 deleted file mode 100644 index 017cdac1e..000000000 Binary files a/files/17_0322_example.mp3 and /dev/null differ diff --git a/files/17_0322_meaning.mp3 b/files/17_0322_meaning.mp3 deleted file mode 100644 index d9552da8c..000000000 Binary files a/files/17_0322_meaning.mp3 and /dev/null differ diff --git a/files/17_0323.jpg b/files/17_0323.jpg deleted file mode 100644 index 5c2ffe427..000000000 Binary files a/files/17_0323.jpg and /dev/null differ diff --git a/files/17_0323.mp3 b/files/17_0323.mp3 deleted file mode 100644 index 7167834ad..000000000 Binary files a/files/17_0323.mp3 and /dev/null differ diff --git a/files/17_0323_example.mp3 b/files/17_0323_example.mp3 deleted file mode 100644 index 2bb362ac0..000000000 Binary files a/files/17_0323_example.mp3 and /dev/null differ diff --git a/files/17_0323_meaning.mp3 b/files/17_0323_meaning.mp3 deleted file mode 100644 index 5d25198db..000000000 Binary files a/files/17_0323_meaning.mp3 and /dev/null differ diff --git a/files/17_0324.jpg b/files/17_0324.jpg deleted file mode 100644 index 7d0d92cfc..000000000 Binary files a/files/17_0324.jpg and /dev/null differ diff --git a/files/17_0324.mp3 b/files/17_0324.mp3 deleted file mode 100644 index 44b2339ee..000000000 Binary files a/files/17_0324.mp3 and /dev/null differ diff --git a/files/17_0324_example.mp3 b/files/17_0324_example.mp3 deleted file mode 100644 index 097751920..000000000 Binary files a/files/17_0324_example.mp3 and /dev/null differ diff --git a/files/17_0324_meaning.mp3 b/files/17_0324_meaning.mp3 deleted file mode 100644 index 6d70caae6..000000000 Binary files a/files/17_0324_meaning.mp3 and /dev/null differ diff --git a/files/17_0325.jpg b/files/17_0325.jpg deleted file mode 100644 index 356cc356d..000000000 Binary files a/files/17_0325.jpg and /dev/null differ diff --git a/files/17_0325.mp3 b/files/17_0325.mp3 deleted file mode 100644 index 259ee4dcb..000000000 Binary files a/files/17_0325.mp3 and /dev/null differ diff --git a/files/17_0325_example.mp3 b/files/17_0325_example.mp3 deleted file mode 100644 index 9e7e6ada0..000000000 Binary files a/files/17_0325_example.mp3 and /dev/null differ diff --git a/files/17_0325_meaning.mp3 b/files/17_0325_meaning.mp3 deleted file mode 100644 index 5edbacfc5..000000000 Binary files a/files/17_0325_meaning.mp3 and /dev/null differ diff --git a/files/17_0326.jpg b/files/17_0326.jpg deleted file mode 100644 index 439548055..000000000 Binary files a/files/17_0326.jpg and /dev/null differ diff --git a/files/17_0326.mp3 b/files/17_0326.mp3 deleted file mode 100644 index 73fe8460a..000000000 Binary files a/files/17_0326.mp3 and /dev/null differ diff --git a/files/17_0326_example.mp3 b/files/17_0326_example.mp3 deleted file mode 100644 index 11a7a5d9f..000000000 Binary files a/files/17_0326_example.mp3 and /dev/null differ diff --git a/files/17_0326_meaning.mp3 b/files/17_0326_meaning.mp3 deleted file mode 100644 index fc423102d..000000000 Binary files a/files/17_0326_meaning.mp3 and /dev/null differ diff --git a/files/17_0327.jpg b/files/17_0327.jpg deleted file mode 100644 index 2f4429d88..000000000 Binary files a/files/17_0327.jpg and /dev/null differ diff --git a/files/17_0327.mp3 b/files/17_0327.mp3 deleted file mode 100644 index f00404f5c..000000000 Binary files a/files/17_0327.mp3 and /dev/null differ diff --git a/files/17_0327_example.mp3 b/files/17_0327_example.mp3 deleted file mode 100644 index de9b3ab63..000000000 Binary files a/files/17_0327_example.mp3 and /dev/null differ diff --git a/files/17_0327_meaning.mp3 b/files/17_0327_meaning.mp3 deleted file mode 100644 index d8bb95809..000000000 Binary files a/files/17_0327_meaning.mp3 and /dev/null differ diff --git a/files/17_0328.jpg b/files/17_0328.jpg deleted file mode 100644 index 5094f8759..000000000 Binary files a/files/17_0328.jpg and /dev/null differ diff --git a/files/17_0328.mp3 b/files/17_0328.mp3 deleted file mode 100644 index 70d18ebe7..000000000 Binary files a/files/17_0328.mp3 and /dev/null differ diff --git a/files/17_0328_example.mp3 b/files/17_0328_example.mp3 deleted file mode 100644 index dfd5ec07d..000000000 Binary files a/files/17_0328_example.mp3 and /dev/null differ diff --git a/files/17_0328_meaning.mp3 b/files/17_0328_meaning.mp3 deleted file mode 100644 index 103afa515..000000000 Binary files a/files/17_0328_meaning.mp3 and /dev/null differ diff --git a/files/17_0329.jpg b/files/17_0329.jpg deleted file mode 100644 index 3388519eb..000000000 Binary files a/files/17_0329.jpg and /dev/null differ diff --git a/files/17_0329.mp3 b/files/17_0329.mp3 deleted file mode 100644 index 5e606ebd7..000000000 Binary files a/files/17_0329.mp3 and /dev/null differ diff --git a/files/17_0329_example.mp3 b/files/17_0329_example.mp3 deleted file mode 100644 index 2d095812e..000000000 Binary files a/files/17_0329_example.mp3 and /dev/null differ diff --git a/files/17_0329_meaning.mp3 b/files/17_0329_meaning.mp3 deleted file mode 100644 index 2ab6fb838..000000000 Binary files a/files/17_0329_meaning.mp3 and /dev/null differ diff --git a/files/17_0330.jpg b/files/17_0330.jpg deleted file mode 100644 index 58348ac55..000000000 Binary files a/files/17_0330.jpg and /dev/null differ diff --git a/files/17_0330.mp3 b/files/17_0330.mp3 deleted file mode 100644 index 6fdb0cd67..000000000 Binary files a/files/17_0330.mp3 and /dev/null differ diff --git a/files/17_0330_example.mp3 b/files/17_0330_example.mp3 deleted file mode 100644 index a5be026b0..000000000 Binary files a/files/17_0330_example.mp3 and /dev/null differ diff --git a/files/17_0330_meaning.mp3 b/files/17_0330_meaning.mp3 deleted file mode 100644 index 4e67b3d8b..000000000 Binary files a/files/17_0330_meaning.mp3 and /dev/null differ diff --git a/files/17_0331.jpg b/files/17_0331.jpg deleted file mode 100644 index c5e26d27d..000000000 Binary files a/files/17_0331.jpg and /dev/null differ diff --git a/files/17_0331.mp3 b/files/17_0331.mp3 deleted file mode 100644 index 91671e27c..000000000 Binary files a/files/17_0331.mp3 and /dev/null differ diff --git a/files/17_0331_example.mp3 b/files/17_0331_example.mp3 deleted file mode 100644 index 265dd190e..000000000 Binary files a/files/17_0331_example.mp3 and /dev/null differ diff --git a/files/17_0331_meaning.mp3 b/files/17_0331_meaning.mp3 deleted file mode 100644 index 6cf2cfadf..000000000 Binary files a/files/17_0331_meaning.mp3 and /dev/null differ diff --git a/files/17_0332.jpg b/files/17_0332.jpg deleted file mode 100644 index 58d219e23..000000000 Binary files a/files/17_0332.jpg and /dev/null differ diff --git a/files/17_0332.mp3 b/files/17_0332.mp3 deleted file mode 100644 index f48349c10..000000000 Binary files a/files/17_0332.mp3 and /dev/null differ diff --git a/files/17_0332_example.mp3 b/files/17_0332_example.mp3 deleted file mode 100644 index a8f4bee4e..000000000 Binary files a/files/17_0332_example.mp3 and /dev/null differ diff --git a/files/17_0332_meaning.mp3 b/files/17_0332_meaning.mp3 deleted file mode 100644 index 368b55c66..000000000 Binary files a/files/17_0332_meaning.mp3 and /dev/null differ diff --git a/files/17_0333.jpg b/files/17_0333.jpg deleted file mode 100644 index b2cc9e261..000000000 Binary files a/files/17_0333.jpg and /dev/null differ diff --git a/files/17_0333.mp3 b/files/17_0333.mp3 deleted file mode 100644 index c9681079b..000000000 Binary files a/files/17_0333.mp3 and /dev/null differ diff --git a/files/17_0333_example.mp3 b/files/17_0333_example.mp3 deleted file mode 100644 index 4484cfa34..000000000 Binary files a/files/17_0333_example.mp3 and /dev/null differ diff --git a/files/17_0333_meaning.mp3 b/files/17_0333_meaning.mp3 deleted file mode 100644 index e3f807157..000000000 Binary files a/files/17_0333_meaning.mp3 and /dev/null differ diff --git a/files/17_0334.jpg b/files/17_0334.jpg deleted file mode 100644 index 2fc0e4a96..000000000 Binary files a/files/17_0334.jpg and /dev/null differ diff --git a/files/17_0334.mp3 b/files/17_0334.mp3 deleted file mode 100644 index 45aff77e2..000000000 Binary files a/files/17_0334.mp3 and /dev/null differ diff --git a/files/17_0334_example.mp3 b/files/17_0334_example.mp3 deleted file mode 100644 index f3e0a1c34..000000000 Binary files a/files/17_0334_example.mp3 and /dev/null differ diff --git a/files/17_0334_meaning.mp3 b/files/17_0334_meaning.mp3 deleted file mode 100644 index 6476ae397..000000000 Binary files a/files/17_0334_meaning.mp3 and /dev/null differ diff --git a/files/17_0335.jpg b/files/17_0335.jpg deleted file mode 100644 index 5d1336d40..000000000 Binary files a/files/17_0335.jpg and /dev/null differ diff --git a/files/17_0335.mp3 b/files/17_0335.mp3 deleted file mode 100644 index 286931fd2..000000000 Binary files a/files/17_0335.mp3 and /dev/null differ diff --git a/files/17_0335_example.mp3 b/files/17_0335_example.mp3 deleted file mode 100644 index 13ccc98c1..000000000 Binary files a/files/17_0335_example.mp3 and /dev/null differ diff --git a/files/17_0335_meaning.mp3 b/files/17_0335_meaning.mp3 deleted file mode 100644 index 9d8e18d3a..000000000 Binary files a/files/17_0335_meaning.mp3 and /dev/null differ diff --git a/files/17_0336.jpg b/files/17_0336.jpg deleted file mode 100644 index a32147de2..000000000 Binary files a/files/17_0336.jpg and /dev/null differ diff --git a/files/17_0336.mp3 b/files/17_0336.mp3 deleted file mode 100644 index 10b847481..000000000 Binary files a/files/17_0336.mp3 and /dev/null differ diff --git a/files/17_0336_example.mp3 b/files/17_0336_example.mp3 deleted file mode 100644 index b09bb4a46..000000000 Binary files a/files/17_0336_example.mp3 and /dev/null differ diff --git a/files/17_0336_meaning.mp3 b/files/17_0336_meaning.mp3 deleted file mode 100644 index f407e81c8..000000000 Binary files a/files/17_0336_meaning.mp3 and /dev/null differ diff --git a/files/17_0337.jpg b/files/17_0337.jpg deleted file mode 100644 index 401a481bf..000000000 Binary files a/files/17_0337.jpg and /dev/null differ diff --git a/files/17_0337.mp3 b/files/17_0337.mp3 deleted file mode 100644 index bdcd453f5..000000000 Binary files a/files/17_0337.mp3 and /dev/null differ diff --git a/files/17_0337_example.mp3 b/files/17_0337_example.mp3 deleted file mode 100644 index 45009a09d..000000000 Binary files a/files/17_0337_example.mp3 and /dev/null differ diff --git a/files/17_0337_meaning.mp3 b/files/17_0337_meaning.mp3 deleted file mode 100644 index 532623d9a..000000000 Binary files a/files/17_0337_meaning.mp3 and /dev/null differ diff --git a/files/17_0338.jpg b/files/17_0338.jpg deleted file mode 100644 index 868c45a56..000000000 Binary files a/files/17_0338.jpg and /dev/null differ diff --git a/files/17_0338.mp3 b/files/17_0338.mp3 deleted file mode 100644 index e0d604976..000000000 Binary files a/files/17_0338.mp3 and /dev/null differ diff --git a/files/17_0338_example.mp3 b/files/17_0338_example.mp3 deleted file mode 100644 index ffb921eaf..000000000 Binary files a/files/17_0338_example.mp3 and /dev/null differ diff --git a/files/17_0338_meaning.mp3 b/files/17_0338_meaning.mp3 deleted file mode 100644 index 0eee44137..000000000 Binary files a/files/17_0338_meaning.mp3 and /dev/null differ diff --git a/files/17_0339.jpg b/files/17_0339.jpg deleted file mode 100644 index df9dde113..000000000 Binary files a/files/17_0339.jpg and /dev/null differ diff --git a/files/17_0339.mp3 b/files/17_0339.mp3 deleted file mode 100644 index bc2ca2209..000000000 Binary files a/files/17_0339.mp3 and /dev/null differ diff --git a/files/17_0339_example.mp3 b/files/17_0339_example.mp3 deleted file mode 100644 index bfe2ce6ee..000000000 Binary files a/files/17_0339_example.mp3 and /dev/null differ diff --git a/files/17_0339_meaning.mp3 b/files/17_0339_meaning.mp3 deleted file mode 100644 index 8f837d689..000000000 Binary files a/files/17_0339_meaning.mp3 and /dev/null differ diff --git a/files/17_0340.jpg b/files/17_0340.jpg deleted file mode 100644 index 03cc46cf1..000000000 Binary files a/files/17_0340.jpg and /dev/null differ diff --git a/files/17_0340.mp3 b/files/17_0340.mp3 deleted file mode 100644 index 205fc6e85..000000000 Binary files a/files/17_0340.mp3 and /dev/null differ diff --git a/files/17_0340_example.mp3 b/files/17_0340_example.mp3 deleted file mode 100644 index 2a0c28f5e..000000000 Binary files a/files/17_0340_example.mp3 and /dev/null differ diff --git a/files/17_0340_meaning.mp3 b/files/17_0340_meaning.mp3 deleted file mode 100644 index 47919446c..000000000 Binary files a/files/17_0340_meaning.mp3 and /dev/null differ diff --git a/files/17_0921.jpg b/files/17_0921.jpg deleted file mode 100644 index d7b2bbeca..000000000 Binary files a/files/17_0921.jpg and /dev/null differ diff --git a/files/17_0921.mp3 b/files/17_0921.mp3 deleted file mode 100644 index db03f423a..000000000 Binary files a/files/17_0921.mp3 and /dev/null differ diff --git a/files/17_0921_example.mp3 b/files/17_0921_example.mp3 deleted file mode 100644 index 5d6c36882..000000000 Binary files a/files/17_0921_example.mp3 and /dev/null differ diff --git a/files/17_0921_meaning.mp3 b/files/17_0921_meaning.mp3 deleted file mode 100644 index 623305616..000000000 Binary files a/files/17_0921_meaning.mp3 and /dev/null differ diff --git a/files/17_0922.jpg b/files/17_0922.jpg deleted file mode 100644 index 51f5755b6..000000000 Binary files a/files/17_0922.jpg and /dev/null differ diff --git a/files/17_0922.mp3 b/files/17_0922.mp3 deleted file mode 100644 index df0cc99f0..000000000 Binary files a/files/17_0922.mp3 and /dev/null differ diff --git a/files/17_0922_example.mp3 b/files/17_0922_example.mp3 deleted file mode 100644 index 33c9dcfb4..000000000 Binary files a/files/17_0922_example.mp3 and /dev/null differ diff --git a/files/17_0922_meaning.mp3 b/files/17_0922_meaning.mp3 deleted file mode 100644 index 1387c91c8..000000000 Binary files a/files/17_0922_meaning.mp3 and /dev/null differ diff --git a/files/17_0923.jpg b/files/17_0923.jpg deleted file mode 100644 index 5834b06ab..000000000 Binary files a/files/17_0923.jpg and /dev/null differ diff --git a/files/17_0923.mp3 b/files/17_0923.mp3 deleted file mode 100644 index 9beb75d6c..000000000 Binary files a/files/17_0923.mp3 and /dev/null differ diff --git a/files/17_0923_example.mp3 b/files/17_0923_example.mp3 deleted file mode 100644 index fdee1dd0b..000000000 Binary files a/files/17_0923_example.mp3 and /dev/null differ diff --git a/files/17_0923_meaning.mp3 b/files/17_0923_meaning.mp3 deleted file mode 100644 index 66a162f55..000000000 Binary files a/files/17_0923_meaning.mp3 and /dev/null differ diff --git a/files/17_0924.jpg b/files/17_0924.jpg deleted file mode 100644 index ef87371d1..000000000 Binary files a/files/17_0924.jpg and /dev/null differ diff --git a/files/17_0924.mp3 b/files/17_0924.mp3 deleted file mode 100644 index 5445952c7..000000000 Binary files a/files/17_0924.mp3 and /dev/null differ diff --git a/files/17_0924_example.mp3 b/files/17_0924_example.mp3 deleted file mode 100644 index f8036c74b..000000000 Binary files a/files/17_0924_example.mp3 and /dev/null differ diff --git a/files/17_0924_meaning.mp3 b/files/17_0924_meaning.mp3 deleted file mode 100644 index 22a65d3c1..000000000 Binary files a/files/17_0924_meaning.mp3 and /dev/null differ diff --git a/files/17_0925.jpg b/files/17_0925.jpg deleted file mode 100644 index c486ac4c5..000000000 Binary files a/files/17_0925.jpg and /dev/null differ diff --git a/files/17_0925.mp3 b/files/17_0925.mp3 deleted file mode 100644 index f5eda33eb..000000000 Binary files a/files/17_0925.mp3 and /dev/null differ diff --git a/files/17_0925_example.mp3 b/files/17_0925_example.mp3 deleted file mode 100644 index 0a8eeadd7..000000000 Binary files a/files/17_0925_example.mp3 and /dev/null differ diff --git a/files/17_0925_meaning.mp3 b/files/17_0925_meaning.mp3 deleted file mode 100644 index 805e732af..000000000 Binary files a/files/17_0925_meaning.mp3 and /dev/null differ diff --git a/files/17_0926.jpg b/files/17_0926.jpg deleted file mode 100644 index dfcfb3826..000000000 Binary files a/files/17_0926.jpg and /dev/null differ diff --git a/files/17_0926.mp3 b/files/17_0926.mp3 deleted file mode 100644 index 751871def..000000000 Binary files a/files/17_0926.mp3 and /dev/null differ diff --git a/files/17_0926_example.mp3 b/files/17_0926_example.mp3 deleted file mode 100644 index a414fef8c..000000000 Binary files a/files/17_0926_example.mp3 and /dev/null differ diff --git a/files/17_0926_meaning.mp3 b/files/17_0926_meaning.mp3 deleted file mode 100644 index d6dc15996..000000000 Binary files a/files/17_0926_meaning.mp3 and /dev/null differ diff --git a/files/17_0927.jpg b/files/17_0927.jpg deleted file mode 100644 index 2d1137326..000000000 Binary files a/files/17_0927.jpg and /dev/null differ diff --git a/files/17_0927.mp3 b/files/17_0927.mp3 deleted file mode 100644 index c73cf8ee6..000000000 Binary files a/files/17_0927.mp3 and /dev/null differ diff --git a/files/17_0927_example.mp3 b/files/17_0927_example.mp3 deleted file mode 100644 index 325f1687c..000000000 Binary files a/files/17_0927_example.mp3 and /dev/null differ diff --git a/files/17_0927_meaning.mp3 b/files/17_0927_meaning.mp3 deleted file mode 100644 index 59ab4e1d9..000000000 Binary files a/files/17_0927_meaning.mp3 and /dev/null differ diff --git a/files/17_0928.jpg b/files/17_0928.jpg deleted file mode 100644 index bde5500ba..000000000 Binary files a/files/17_0928.jpg and /dev/null differ diff --git a/files/17_0928.mp3 b/files/17_0928.mp3 deleted file mode 100644 index 8c10f43f8..000000000 Binary files a/files/17_0928.mp3 and /dev/null differ diff --git a/files/17_0928_example.mp3 b/files/17_0928_example.mp3 deleted file mode 100644 index 1df0e94c5..000000000 Binary files a/files/17_0928_example.mp3 and /dev/null differ diff --git a/files/17_0928_meaning.mp3 b/files/17_0928_meaning.mp3 deleted file mode 100644 index 4b0767682..000000000 Binary files a/files/17_0928_meaning.mp3 and /dev/null differ diff --git a/files/17_0929.jpg b/files/17_0929.jpg deleted file mode 100644 index 66110c4cc..000000000 Binary files a/files/17_0929.jpg and /dev/null differ diff --git a/files/17_0929.mp3 b/files/17_0929.mp3 deleted file mode 100644 index 8578a90a3..000000000 Binary files a/files/17_0929.mp3 and /dev/null differ diff --git a/files/17_0929_example.mp3 b/files/17_0929_example.mp3 deleted file mode 100644 index 5148a479e..000000000 Binary files a/files/17_0929_example.mp3 and /dev/null differ diff --git a/files/17_0929_meaning.mp3 b/files/17_0929_meaning.mp3 deleted file mode 100644 index ca8cb86fd..000000000 Binary files a/files/17_0929_meaning.mp3 and /dev/null differ diff --git a/files/17_0930.jpg b/files/17_0930.jpg deleted file mode 100644 index d82178118..000000000 Binary files a/files/17_0930.jpg and /dev/null differ diff --git a/files/17_0930.mp3 b/files/17_0930.mp3 deleted file mode 100644 index 8315353f4..000000000 Binary files a/files/17_0930.mp3 and /dev/null differ diff --git a/files/17_0930_example.mp3 b/files/17_0930_example.mp3 deleted file mode 100644 index f46307978..000000000 Binary files a/files/17_0930_example.mp3 and /dev/null differ diff --git a/files/17_0930_meaning.mp3 b/files/17_0930_meaning.mp3 deleted file mode 100644 index 0eff9d047..000000000 Binary files a/files/17_0930_meaning.mp3 and /dev/null differ diff --git a/files/17_0931.jpg b/files/17_0931.jpg deleted file mode 100644 index 12c7ab792..000000000 Binary files a/files/17_0931.jpg and /dev/null differ diff --git a/files/17_0931.mp3 b/files/17_0931.mp3 deleted file mode 100644 index e4fc7c4e8..000000000 Binary files a/files/17_0931.mp3 and /dev/null differ diff --git a/files/17_0931_example.mp3 b/files/17_0931_example.mp3 deleted file mode 100644 index 383623244..000000000 Binary files a/files/17_0931_example.mp3 and /dev/null differ diff --git a/files/17_0931_meaning.mp3 b/files/17_0931_meaning.mp3 deleted file mode 100644 index 774e36ba7..000000000 Binary files a/files/17_0931_meaning.mp3 and /dev/null differ diff --git a/files/17_0932.jpg b/files/17_0932.jpg deleted file mode 100644 index 5c5e18f1f..000000000 Binary files a/files/17_0932.jpg and /dev/null differ diff --git a/files/17_0932.mp3 b/files/17_0932.mp3 deleted file mode 100644 index 8cf7de605..000000000 Binary files a/files/17_0932.mp3 and /dev/null differ diff --git a/files/17_0932_example.mp3 b/files/17_0932_example.mp3 deleted file mode 100644 index a60fda200..000000000 Binary files a/files/17_0932_example.mp3 and /dev/null differ diff --git a/files/17_0932_meaning.mp3 b/files/17_0932_meaning.mp3 deleted file mode 100644 index c275299a1..000000000 Binary files a/files/17_0932_meaning.mp3 and /dev/null differ diff --git a/files/17_0933.jpg b/files/17_0933.jpg deleted file mode 100644 index ed84ac4bc..000000000 Binary files a/files/17_0933.jpg and /dev/null differ diff --git a/files/17_0933.mp3 b/files/17_0933.mp3 deleted file mode 100644 index 1a2a9b488..000000000 Binary files a/files/17_0933.mp3 and /dev/null differ diff --git a/files/17_0933_example.mp3 b/files/17_0933_example.mp3 deleted file mode 100644 index a00c60d0a..000000000 Binary files a/files/17_0933_example.mp3 and /dev/null differ diff --git a/files/17_0933_meaning.mp3 b/files/17_0933_meaning.mp3 deleted file mode 100644 index 2463b5c7f..000000000 Binary files a/files/17_0933_meaning.mp3 and /dev/null differ diff --git a/files/17_0934.jpg b/files/17_0934.jpg deleted file mode 100644 index c5ebb6af5..000000000 Binary files a/files/17_0934.jpg and /dev/null differ diff --git a/files/17_0934.mp3 b/files/17_0934.mp3 deleted file mode 100644 index 55e760ff4..000000000 Binary files a/files/17_0934.mp3 and /dev/null differ diff --git a/files/17_0934_example.mp3 b/files/17_0934_example.mp3 deleted file mode 100644 index f5c79807b..000000000 Binary files a/files/17_0934_example.mp3 and /dev/null differ diff --git a/files/17_0934_meaning.mp3 b/files/17_0934_meaning.mp3 deleted file mode 100644 index e6051c11b..000000000 Binary files a/files/17_0934_meaning.mp3 and /dev/null differ diff --git a/files/17_0935.jpg b/files/17_0935.jpg deleted file mode 100644 index f94eefa66..000000000 Binary files a/files/17_0935.jpg and /dev/null differ diff --git a/files/17_0935.mp3 b/files/17_0935.mp3 deleted file mode 100644 index ed9517e41..000000000 Binary files a/files/17_0935.mp3 and /dev/null differ diff --git a/files/17_0935_example.mp3 b/files/17_0935_example.mp3 deleted file mode 100644 index 6ecf5eca7..000000000 Binary files a/files/17_0935_example.mp3 and /dev/null differ diff --git a/files/17_0935_meaning.mp3 b/files/17_0935_meaning.mp3 deleted file mode 100644 index 29ef178c7..000000000 Binary files a/files/17_0935_meaning.mp3 and /dev/null differ diff --git a/files/17_0936.jpg b/files/17_0936.jpg deleted file mode 100644 index d381abc99..000000000 Binary files a/files/17_0936.jpg and /dev/null differ diff --git a/files/17_0936.mp3 b/files/17_0936.mp3 deleted file mode 100644 index 2edfab4fe..000000000 Binary files a/files/17_0936.mp3 and /dev/null differ diff --git a/files/17_0936_example.mp3 b/files/17_0936_example.mp3 deleted file mode 100644 index a5543fff3..000000000 Binary files a/files/17_0936_example.mp3 and /dev/null differ diff --git a/files/17_0936_meaning.mp3 b/files/17_0936_meaning.mp3 deleted file mode 100644 index 5489d3975..000000000 Binary files a/files/17_0936_meaning.mp3 and /dev/null differ diff --git a/files/17_0937.jpg b/files/17_0937.jpg deleted file mode 100644 index 711415f02..000000000 Binary files a/files/17_0937.jpg and /dev/null differ diff --git a/files/17_0937.mp3 b/files/17_0937.mp3 deleted file mode 100644 index 750e4b728..000000000 Binary files a/files/17_0937.mp3 and /dev/null differ diff --git a/files/17_0937_example.mp3 b/files/17_0937_example.mp3 deleted file mode 100644 index 3e10ca1c5..000000000 Binary files a/files/17_0937_example.mp3 and /dev/null differ diff --git a/files/17_0937_meaning.mp3 b/files/17_0937_meaning.mp3 deleted file mode 100644 index d6d2e49a6..000000000 Binary files a/files/17_0937_meaning.mp3 and /dev/null differ diff --git a/files/17_0938.jpg b/files/17_0938.jpg deleted file mode 100644 index ca294d3f2..000000000 Binary files a/files/17_0938.jpg and /dev/null differ diff --git a/files/17_0938.mp3 b/files/17_0938.mp3 deleted file mode 100644 index bf74a8082..000000000 Binary files a/files/17_0938.mp3 and /dev/null differ diff --git a/files/17_0938_example.mp3 b/files/17_0938_example.mp3 deleted file mode 100644 index 44bf4cde5..000000000 Binary files a/files/17_0938_example.mp3 and /dev/null differ diff --git a/files/17_0938_meaning.mp3 b/files/17_0938_meaning.mp3 deleted file mode 100644 index 19677f15c..000000000 Binary files a/files/17_0938_meaning.mp3 and /dev/null differ diff --git a/files/17_0939.jpg b/files/17_0939.jpg deleted file mode 100644 index 10f9ef8a8..000000000 Binary files a/files/17_0939.jpg and /dev/null differ diff --git a/files/17_0939.mp3 b/files/17_0939.mp3 deleted file mode 100644 index 54cac0bc8..000000000 Binary files a/files/17_0939.mp3 and /dev/null differ diff --git a/files/17_0939_example.mp3 b/files/17_0939_example.mp3 deleted file mode 100644 index dbad2884e..000000000 Binary files a/files/17_0939_example.mp3 and /dev/null differ diff --git a/files/17_0939_meaning.mp3 b/files/17_0939_meaning.mp3 deleted file mode 100644 index e1d37528a..000000000 Binary files a/files/17_0939_meaning.mp3 and /dev/null differ diff --git a/files/17_0940.jpg b/files/17_0940.jpg deleted file mode 100644 index 56937c3ee..000000000 Binary files a/files/17_0940.jpg and /dev/null differ diff --git a/files/17_0940.mp3 b/files/17_0940.mp3 deleted file mode 100644 index b1e69d31b..000000000 Binary files a/files/17_0940.mp3 and /dev/null differ diff --git a/files/17_0940_example.mp3 b/files/17_0940_example.mp3 deleted file mode 100644 index 95c252fa6..000000000 Binary files a/files/17_0940_example.mp3 and /dev/null differ diff --git a/files/17_0940_meaning.mp3 b/files/17_0940_meaning.mp3 deleted file mode 100644 index 9471f755e..000000000 Binary files a/files/17_0940_meaning.mp3 and /dev/null differ diff --git a/files/17_1521.jpg b/files/17_1521.jpg deleted file mode 100644 index 18ab7745b..000000000 Binary files a/files/17_1521.jpg and /dev/null differ diff --git a/files/17_1521.mp3 b/files/17_1521.mp3 deleted file mode 100644 index fbab611b1..000000000 Binary files a/files/17_1521.mp3 and /dev/null differ diff --git a/files/17_1521_example.mp3 b/files/17_1521_example.mp3 deleted file mode 100644 index 9463d011c..000000000 Binary files a/files/17_1521_example.mp3 and /dev/null differ diff --git a/files/17_1521_meaning.mp3 b/files/17_1521_meaning.mp3 deleted file mode 100644 index 2f7f78eaa..000000000 Binary files a/files/17_1521_meaning.mp3 and /dev/null differ diff --git a/files/17_1522.jpg b/files/17_1522.jpg deleted file mode 100644 index 5eb6a2f96..000000000 Binary files a/files/17_1522.jpg and /dev/null differ diff --git a/files/17_1522.mp3 b/files/17_1522.mp3 deleted file mode 100644 index 5a4da7720..000000000 Binary files a/files/17_1522.mp3 and /dev/null differ diff --git a/files/17_1522_example.mp3 b/files/17_1522_example.mp3 deleted file mode 100644 index 547cba94b..000000000 Binary files a/files/17_1522_example.mp3 and /dev/null differ diff --git a/files/17_1522_meaning.mp3 b/files/17_1522_meaning.mp3 deleted file mode 100644 index ce33d9158..000000000 Binary files a/files/17_1522_meaning.mp3 and /dev/null differ diff --git a/files/17_1523.jpg b/files/17_1523.jpg deleted file mode 100644 index 6a72914ee..000000000 Binary files a/files/17_1523.jpg and /dev/null differ diff --git a/files/17_1523.mp3 b/files/17_1523.mp3 deleted file mode 100644 index f350f1903..000000000 Binary files a/files/17_1523.mp3 and /dev/null differ diff --git a/files/17_1523_example.mp3 b/files/17_1523_example.mp3 deleted file mode 100644 index 9023fdca6..000000000 Binary files a/files/17_1523_example.mp3 and /dev/null differ diff --git a/files/17_1523_meaning.mp3 b/files/17_1523_meaning.mp3 deleted file mode 100644 index 09a7412c5..000000000 Binary files a/files/17_1523_meaning.mp3 and /dev/null differ diff --git a/files/17_1524.jpg b/files/17_1524.jpg deleted file mode 100644 index d219748fe..000000000 Binary files a/files/17_1524.jpg and /dev/null differ diff --git a/files/17_1524.mp3 b/files/17_1524.mp3 deleted file mode 100644 index fa09358ea..000000000 Binary files a/files/17_1524.mp3 and /dev/null differ diff --git a/files/17_1524_example.mp3 b/files/17_1524_example.mp3 deleted file mode 100644 index d226cbd65..000000000 Binary files a/files/17_1524_example.mp3 and /dev/null differ diff --git a/files/17_1524_meaning.mp3 b/files/17_1524_meaning.mp3 deleted file mode 100644 index 9f3a702f9..000000000 Binary files a/files/17_1524_meaning.mp3 and /dev/null differ diff --git a/files/17_1525.jpg b/files/17_1525.jpg deleted file mode 100644 index a88e3c92e..000000000 Binary files a/files/17_1525.jpg and /dev/null differ diff --git a/files/17_1525.mp3 b/files/17_1525.mp3 deleted file mode 100644 index 93df6893a..000000000 Binary files a/files/17_1525.mp3 and /dev/null differ diff --git a/files/17_1525_example.mp3 b/files/17_1525_example.mp3 deleted file mode 100644 index d92bb020c..000000000 Binary files a/files/17_1525_example.mp3 and /dev/null differ diff --git a/files/17_1525_meaning.mp3 b/files/17_1525_meaning.mp3 deleted file mode 100644 index f84207b24..000000000 Binary files a/files/17_1525_meaning.mp3 and /dev/null differ diff --git a/files/17_1526.jpg b/files/17_1526.jpg deleted file mode 100644 index 7284aa17f..000000000 Binary files a/files/17_1526.jpg and /dev/null differ diff --git a/files/17_1526.mp3 b/files/17_1526.mp3 deleted file mode 100644 index e505133c8..000000000 Binary files a/files/17_1526.mp3 and /dev/null differ diff --git a/files/17_1526_example.mp3 b/files/17_1526_example.mp3 deleted file mode 100644 index 6c4a7f4bc..000000000 Binary files a/files/17_1526_example.mp3 and /dev/null differ diff --git a/files/17_1526_meaning.mp3 b/files/17_1526_meaning.mp3 deleted file mode 100644 index fbc1641c4..000000000 Binary files a/files/17_1526_meaning.mp3 and /dev/null differ diff --git a/files/17_1527.jpg b/files/17_1527.jpg deleted file mode 100644 index dba50e08b..000000000 Binary files a/files/17_1527.jpg and /dev/null differ diff --git a/files/17_1527.mp3 b/files/17_1527.mp3 deleted file mode 100644 index a8b95f369..000000000 Binary files a/files/17_1527.mp3 and /dev/null differ diff --git a/files/17_1527_example.mp3 b/files/17_1527_example.mp3 deleted file mode 100644 index 851f1b2f0..000000000 Binary files a/files/17_1527_example.mp3 and /dev/null differ diff --git a/files/17_1527_meaning.mp3 b/files/17_1527_meaning.mp3 deleted file mode 100644 index f31fb63d9..000000000 Binary files a/files/17_1527_meaning.mp3 and /dev/null differ diff --git a/files/17_1528.jpg b/files/17_1528.jpg deleted file mode 100644 index e2066fb9a..000000000 Binary files a/files/17_1528.jpg and /dev/null differ diff --git a/files/17_1528.mp3 b/files/17_1528.mp3 deleted file mode 100644 index 91d76e241..000000000 Binary files a/files/17_1528.mp3 and /dev/null differ diff --git a/files/17_1528_example.mp3 b/files/17_1528_example.mp3 deleted file mode 100644 index 7ed48145c..000000000 Binary files a/files/17_1528_example.mp3 and /dev/null differ diff --git a/files/17_1528_meaning.mp3 b/files/17_1528_meaning.mp3 deleted file mode 100644 index d03e1e231..000000000 Binary files a/files/17_1528_meaning.mp3 and /dev/null differ diff --git a/files/17_1529.jpg b/files/17_1529.jpg deleted file mode 100644 index fc00d1fee..000000000 Binary files a/files/17_1529.jpg and /dev/null differ diff --git a/files/17_1529.mp3 b/files/17_1529.mp3 deleted file mode 100644 index e6366cfbb..000000000 Binary files a/files/17_1529.mp3 and /dev/null differ diff --git a/files/17_1529_example.mp3 b/files/17_1529_example.mp3 deleted file mode 100644 index 9bb34c8af..000000000 Binary files a/files/17_1529_example.mp3 and /dev/null differ diff --git a/files/17_1529_meaning.mp3 b/files/17_1529_meaning.mp3 deleted file mode 100644 index f4207f36a..000000000 Binary files a/files/17_1529_meaning.mp3 and /dev/null differ diff --git a/files/17_1530.jpg b/files/17_1530.jpg deleted file mode 100644 index b762337d2..000000000 Binary files a/files/17_1530.jpg and /dev/null differ diff --git a/files/17_1530.mp3 b/files/17_1530.mp3 deleted file mode 100644 index 743d7cc9f..000000000 Binary files a/files/17_1530.mp3 and /dev/null differ diff --git a/files/17_1530_example.mp3 b/files/17_1530_example.mp3 deleted file mode 100644 index 7a863c1e6..000000000 Binary files a/files/17_1530_example.mp3 and /dev/null differ diff --git a/files/17_1530_meaning.mp3 b/files/17_1530_meaning.mp3 deleted file mode 100644 index d6d4dbead..000000000 Binary files a/files/17_1530_meaning.mp3 and /dev/null differ diff --git a/files/17_1531.jpg b/files/17_1531.jpg deleted file mode 100644 index f8cff9ddf..000000000 Binary files a/files/17_1531.jpg and /dev/null differ diff --git a/files/17_1531.mp3 b/files/17_1531.mp3 deleted file mode 100644 index a224d8106..000000000 Binary files a/files/17_1531.mp3 and /dev/null differ diff --git a/files/17_1531_example.mp3 b/files/17_1531_example.mp3 deleted file mode 100644 index a5ebb5ac4..000000000 Binary files a/files/17_1531_example.mp3 and /dev/null differ diff --git a/files/17_1531_meaning.mp3 b/files/17_1531_meaning.mp3 deleted file mode 100644 index 60093d52b..000000000 Binary files a/files/17_1531_meaning.mp3 and /dev/null differ diff --git a/files/17_1532.jpg b/files/17_1532.jpg deleted file mode 100644 index fa3c2b67b..000000000 Binary files a/files/17_1532.jpg and /dev/null differ diff --git a/files/17_1532.mp3 b/files/17_1532.mp3 deleted file mode 100644 index 80d4d16ea..000000000 Binary files a/files/17_1532.mp3 and /dev/null differ diff --git a/files/17_1532_example.mp3 b/files/17_1532_example.mp3 deleted file mode 100644 index 3acf38ce7..000000000 Binary files a/files/17_1532_example.mp3 and /dev/null differ diff --git a/files/17_1532_meaning.mp3 b/files/17_1532_meaning.mp3 deleted file mode 100644 index 2fc678fe2..000000000 Binary files a/files/17_1532_meaning.mp3 and /dev/null differ diff --git a/files/17_1533.jpg b/files/17_1533.jpg deleted file mode 100644 index d41424bad..000000000 Binary files a/files/17_1533.jpg and /dev/null differ diff --git a/files/17_1533.mp3 b/files/17_1533.mp3 deleted file mode 100644 index 51ef5682e..000000000 Binary files a/files/17_1533.mp3 and /dev/null differ diff --git a/files/17_1533_example.mp3 b/files/17_1533_example.mp3 deleted file mode 100644 index 00994958b..000000000 Binary files a/files/17_1533_example.mp3 and /dev/null differ diff --git a/files/17_1533_meaning.mp3 b/files/17_1533_meaning.mp3 deleted file mode 100644 index 5c1920da5..000000000 Binary files a/files/17_1533_meaning.mp3 and /dev/null differ diff --git a/files/17_1534.jpg b/files/17_1534.jpg deleted file mode 100644 index c674b968f..000000000 Binary files a/files/17_1534.jpg and /dev/null differ diff --git a/files/17_1534.mp3 b/files/17_1534.mp3 deleted file mode 100644 index b2f81e18b..000000000 Binary files a/files/17_1534.mp3 and /dev/null differ diff --git a/files/17_1534_example.mp3 b/files/17_1534_example.mp3 deleted file mode 100644 index 3b386fa90..000000000 Binary files a/files/17_1534_example.mp3 and /dev/null differ diff --git a/files/17_1534_meaning.mp3 b/files/17_1534_meaning.mp3 deleted file mode 100644 index 964349c77..000000000 Binary files a/files/17_1534_meaning.mp3 and /dev/null differ diff --git a/files/17_1535.jpg b/files/17_1535.jpg deleted file mode 100644 index bd9548224..000000000 Binary files a/files/17_1535.jpg and /dev/null differ diff --git a/files/17_1535.mp3 b/files/17_1535.mp3 deleted file mode 100644 index 29a0a5506..000000000 Binary files a/files/17_1535.mp3 and /dev/null differ diff --git a/files/17_1535_example.mp3 b/files/17_1535_example.mp3 deleted file mode 100644 index 096424387..000000000 Binary files a/files/17_1535_example.mp3 and /dev/null differ diff --git a/files/17_1535_meaning.mp3 b/files/17_1535_meaning.mp3 deleted file mode 100644 index aa5995e0a..000000000 Binary files a/files/17_1535_meaning.mp3 and /dev/null differ diff --git a/files/17_1536.jpg b/files/17_1536.jpg deleted file mode 100644 index 865ad0cf7..000000000 Binary files a/files/17_1536.jpg and /dev/null differ diff --git a/files/17_1536.mp3 b/files/17_1536.mp3 deleted file mode 100644 index 4dad76014..000000000 Binary files a/files/17_1536.mp3 and /dev/null differ diff --git a/files/17_1536_example.mp3 b/files/17_1536_example.mp3 deleted file mode 100644 index aa1dc7c23..000000000 Binary files a/files/17_1536_example.mp3 and /dev/null differ diff --git a/files/17_1536_meaning.mp3 b/files/17_1536_meaning.mp3 deleted file mode 100644 index 54024a5c0..000000000 Binary files a/files/17_1536_meaning.mp3 and /dev/null differ diff --git a/files/17_1537.jpg b/files/17_1537.jpg deleted file mode 100644 index bae34638d..000000000 Binary files a/files/17_1537.jpg and /dev/null differ diff --git a/files/17_1537.mp3 b/files/17_1537.mp3 deleted file mode 100644 index ea4028b27..000000000 Binary files a/files/17_1537.mp3 and /dev/null differ diff --git a/files/17_1537_example.mp3 b/files/17_1537_example.mp3 deleted file mode 100644 index a7a0ec2aa..000000000 Binary files a/files/17_1537_example.mp3 and /dev/null differ diff --git a/files/17_1537_meaning.mp3 b/files/17_1537_meaning.mp3 deleted file mode 100644 index 6c740768a..000000000 Binary files a/files/17_1537_meaning.mp3 and /dev/null differ diff --git a/files/17_1538.jpg b/files/17_1538.jpg deleted file mode 100644 index 29f95a6f1..000000000 Binary files a/files/17_1538.jpg and /dev/null differ diff --git a/files/17_1538.mp3 b/files/17_1538.mp3 deleted file mode 100644 index 73b60652d..000000000 Binary files a/files/17_1538.mp3 and /dev/null differ diff --git a/files/17_1538_example.mp3 b/files/17_1538_example.mp3 deleted file mode 100644 index 2c546fe28..000000000 Binary files a/files/17_1538_example.mp3 and /dev/null differ diff --git a/files/17_1538_meaning.mp3 b/files/17_1538_meaning.mp3 deleted file mode 100644 index e3c88007a..000000000 Binary files a/files/17_1538_meaning.mp3 and /dev/null differ diff --git a/files/17_1539.jpg b/files/17_1539.jpg deleted file mode 100644 index b37068693..000000000 Binary files a/files/17_1539.jpg and /dev/null differ diff --git a/files/17_1539.mp3 b/files/17_1539.mp3 deleted file mode 100644 index 454626dd8..000000000 Binary files a/files/17_1539.mp3 and /dev/null differ diff --git a/files/17_1539_example.mp3 b/files/17_1539_example.mp3 deleted file mode 100644 index 3462d59d2..000000000 Binary files a/files/17_1539_example.mp3 and /dev/null differ diff --git a/files/17_1539_meaning.mp3 b/files/17_1539_meaning.mp3 deleted file mode 100644 index 49d096e98..000000000 Binary files a/files/17_1539_meaning.mp3 and /dev/null differ diff --git a/files/17_1540.jpg b/files/17_1540.jpg deleted file mode 100644 index 5bca5015a..000000000 Binary files a/files/17_1540.jpg and /dev/null differ diff --git a/files/17_1540.mp3 b/files/17_1540.mp3 deleted file mode 100644 index 30024564a..000000000 Binary files a/files/17_1540.mp3 and /dev/null differ diff --git a/files/17_1540_example.mp3 b/files/17_1540_example.mp3 deleted file mode 100644 index d6c93d0ab..000000000 Binary files a/files/17_1540_example.mp3 and /dev/null differ diff --git a/files/17_1540_meaning.mp3 b/files/17_1540_meaning.mp3 deleted file mode 100644 index 9556dd1f2..000000000 Binary files a/files/17_1540_meaning.mp3 and /dev/null differ diff --git a/files/17_2121.jpg b/files/17_2121.jpg deleted file mode 100644 index 6fd12b658..000000000 Binary files a/files/17_2121.jpg and /dev/null differ diff --git a/files/17_2121.mp3 b/files/17_2121.mp3 deleted file mode 100644 index 57ee8e9cb..000000000 Binary files a/files/17_2121.mp3 and /dev/null differ diff --git a/files/17_2121_example.mp3 b/files/17_2121_example.mp3 deleted file mode 100644 index e1b79611e..000000000 Binary files a/files/17_2121_example.mp3 and /dev/null differ diff --git a/files/17_2121_meaning.mp3 b/files/17_2121_meaning.mp3 deleted file mode 100644 index cd3ecb50d..000000000 Binary files a/files/17_2121_meaning.mp3 and /dev/null differ diff --git a/files/17_2122.jpg b/files/17_2122.jpg deleted file mode 100644 index 2fbdd750e..000000000 Binary files a/files/17_2122.jpg and /dev/null differ diff --git a/files/17_2122.mp3 b/files/17_2122.mp3 deleted file mode 100644 index 47718ceeb..000000000 Binary files a/files/17_2122.mp3 and /dev/null differ diff --git a/files/17_2122_example.mp3 b/files/17_2122_example.mp3 deleted file mode 100644 index 7ba33b6fd..000000000 Binary files a/files/17_2122_example.mp3 and /dev/null differ diff --git a/files/17_2122_meaning.mp3 b/files/17_2122_meaning.mp3 deleted file mode 100644 index 0400caedf..000000000 Binary files a/files/17_2122_meaning.mp3 and /dev/null differ diff --git a/files/17_2123.jpg b/files/17_2123.jpg deleted file mode 100644 index 0de3b7bdb..000000000 Binary files a/files/17_2123.jpg and /dev/null differ diff --git a/files/17_2123.mp3 b/files/17_2123.mp3 deleted file mode 100644 index 3ca8f25f4..000000000 Binary files a/files/17_2123.mp3 and /dev/null differ diff --git a/files/17_2123_example.mp3 b/files/17_2123_example.mp3 deleted file mode 100644 index 3eb378720..000000000 Binary files a/files/17_2123_example.mp3 and /dev/null differ diff --git a/files/17_2123_meaning.mp3 b/files/17_2123_meaning.mp3 deleted file mode 100644 index e97eff5f2..000000000 Binary files a/files/17_2123_meaning.mp3 and /dev/null differ diff --git a/files/17_2124.jpg b/files/17_2124.jpg deleted file mode 100644 index 45c013257..000000000 Binary files a/files/17_2124.jpg and /dev/null differ diff --git a/files/17_2124.mp3 b/files/17_2124.mp3 deleted file mode 100644 index d315d6f40..000000000 Binary files a/files/17_2124.mp3 and /dev/null differ diff --git a/files/17_2124_example.mp3 b/files/17_2124_example.mp3 deleted file mode 100644 index 3d537ed1a..000000000 Binary files a/files/17_2124_example.mp3 and /dev/null differ diff --git a/files/17_2124_meaning.mp3 b/files/17_2124_meaning.mp3 deleted file mode 100644 index 3dc4b3d2e..000000000 Binary files a/files/17_2124_meaning.mp3 and /dev/null differ diff --git a/files/17_2125.jpg b/files/17_2125.jpg deleted file mode 100644 index c011f92e2..000000000 Binary files a/files/17_2125.jpg and /dev/null differ diff --git a/files/17_2125.mp3 b/files/17_2125.mp3 deleted file mode 100644 index ca0892908..000000000 Binary files a/files/17_2125.mp3 and /dev/null differ diff --git a/files/17_2125_example.mp3 b/files/17_2125_example.mp3 deleted file mode 100644 index 405139583..000000000 Binary files a/files/17_2125_example.mp3 and /dev/null differ diff --git a/files/17_2125_meaning.mp3 b/files/17_2125_meaning.mp3 deleted file mode 100644 index 9968f07eb..000000000 Binary files a/files/17_2125_meaning.mp3 and /dev/null differ diff --git a/files/17_2126.jpg b/files/17_2126.jpg deleted file mode 100644 index 2153e5d98..000000000 Binary files a/files/17_2126.jpg and /dev/null differ diff --git a/files/17_2126.mp3 b/files/17_2126.mp3 deleted file mode 100644 index e4a7c34c0..000000000 Binary files a/files/17_2126.mp3 and /dev/null differ diff --git a/files/17_2126_example.mp3 b/files/17_2126_example.mp3 deleted file mode 100644 index bba1d42a7..000000000 Binary files a/files/17_2126_example.mp3 and /dev/null differ diff --git a/files/17_2126_meaning.mp3 b/files/17_2126_meaning.mp3 deleted file mode 100644 index d4454f3ed..000000000 Binary files a/files/17_2126_meaning.mp3 and /dev/null differ diff --git a/files/17_2127.jpg b/files/17_2127.jpg deleted file mode 100644 index 95cc0019f..000000000 Binary files a/files/17_2127.jpg and /dev/null differ diff --git a/files/17_2127.mp3 b/files/17_2127.mp3 deleted file mode 100644 index da3f40365..000000000 Binary files a/files/17_2127.mp3 and /dev/null differ diff --git a/files/17_2127_example.mp3 b/files/17_2127_example.mp3 deleted file mode 100644 index f926e4976..000000000 Binary files a/files/17_2127_example.mp3 and /dev/null differ diff --git a/files/17_2127_meaning.mp3 b/files/17_2127_meaning.mp3 deleted file mode 100644 index 097af7e55..000000000 Binary files a/files/17_2127_meaning.mp3 and /dev/null differ diff --git a/files/17_2128.jpg b/files/17_2128.jpg deleted file mode 100644 index b55d35a1c..000000000 Binary files a/files/17_2128.jpg and /dev/null differ diff --git a/files/17_2128.mp3 b/files/17_2128.mp3 deleted file mode 100644 index f2cf5c404..000000000 Binary files a/files/17_2128.mp3 and /dev/null differ diff --git a/files/17_2128_example.mp3 b/files/17_2128_example.mp3 deleted file mode 100644 index 3023d27d9..000000000 Binary files a/files/17_2128_example.mp3 and /dev/null differ diff --git a/files/17_2128_meaning.mp3 b/files/17_2128_meaning.mp3 deleted file mode 100644 index 60adc49e8..000000000 Binary files a/files/17_2128_meaning.mp3 and /dev/null differ diff --git a/files/17_2129.jpg b/files/17_2129.jpg deleted file mode 100644 index 0a0048254..000000000 Binary files a/files/17_2129.jpg and /dev/null differ diff --git a/files/17_2129.mp3 b/files/17_2129.mp3 deleted file mode 100644 index 8bbfdce5d..000000000 Binary files a/files/17_2129.mp3 and /dev/null differ diff --git a/files/17_2129_example.mp3 b/files/17_2129_example.mp3 deleted file mode 100644 index 78536825b..000000000 Binary files a/files/17_2129_example.mp3 and /dev/null differ diff --git a/files/17_2129_meaning.mp3 b/files/17_2129_meaning.mp3 deleted file mode 100644 index d673ff5da..000000000 Binary files a/files/17_2129_meaning.mp3 and /dev/null differ diff --git a/files/17_2130.jpg b/files/17_2130.jpg deleted file mode 100644 index 335c50ece..000000000 Binary files a/files/17_2130.jpg and /dev/null differ diff --git a/files/17_2130.mp3 b/files/17_2130.mp3 deleted file mode 100644 index 5d7f2efc6..000000000 Binary files a/files/17_2130.mp3 and /dev/null differ diff --git a/files/17_2130_example.mp3 b/files/17_2130_example.mp3 deleted file mode 100644 index 430ae4a56..000000000 Binary files a/files/17_2130_example.mp3 and /dev/null differ diff --git a/files/17_2130_meaning.mp3 b/files/17_2130_meaning.mp3 deleted file mode 100644 index 0e41cf6d5..000000000 Binary files a/files/17_2130_meaning.mp3 and /dev/null differ diff --git a/files/17_2131.jpg b/files/17_2131.jpg deleted file mode 100644 index 3505e7f2f..000000000 Binary files a/files/17_2131.jpg and /dev/null differ diff --git a/files/17_2131.mp3 b/files/17_2131.mp3 deleted file mode 100644 index d55ac0d84..000000000 Binary files a/files/17_2131.mp3 and /dev/null differ diff --git a/files/17_2131_example.mp3 b/files/17_2131_example.mp3 deleted file mode 100644 index b6805f35a..000000000 Binary files a/files/17_2131_example.mp3 and /dev/null differ diff --git a/files/17_2131_meaning.mp3 b/files/17_2131_meaning.mp3 deleted file mode 100644 index 6bc232c77..000000000 Binary files a/files/17_2131_meaning.mp3 and /dev/null differ diff --git a/files/17_2132.jpg b/files/17_2132.jpg deleted file mode 100644 index 16f82bd34..000000000 Binary files a/files/17_2132.jpg and /dev/null differ diff --git a/files/17_2132.mp3 b/files/17_2132.mp3 deleted file mode 100644 index ba42f9f33..000000000 Binary files a/files/17_2132.mp3 and /dev/null differ diff --git a/files/17_2132_example.mp3 b/files/17_2132_example.mp3 deleted file mode 100644 index 2e23b2ea1..000000000 Binary files a/files/17_2132_example.mp3 and /dev/null differ diff --git a/files/17_2132_meaning.mp3 b/files/17_2132_meaning.mp3 deleted file mode 100644 index 9e926fafc..000000000 Binary files a/files/17_2132_meaning.mp3 and /dev/null differ diff --git a/files/17_2133.jpg b/files/17_2133.jpg deleted file mode 100644 index 3bedf3bed..000000000 Binary files a/files/17_2133.jpg and /dev/null differ diff --git a/files/17_2133.mp3 b/files/17_2133.mp3 deleted file mode 100644 index 98a4e65b5..000000000 Binary files a/files/17_2133.mp3 and /dev/null differ diff --git a/files/17_2133_example.mp3 b/files/17_2133_example.mp3 deleted file mode 100644 index 13c261016..000000000 Binary files a/files/17_2133_example.mp3 and /dev/null differ diff --git a/files/17_2133_meaning.mp3 b/files/17_2133_meaning.mp3 deleted file mode 100644 index 6c0579267..000000000 Binary files a/files/17_2133_meaning.mp3 and /dev/null differ diff --git a/files/17_2134.jpg b/files/17_2134.jpg deleted file mode 100644 index e4ec1d553..000000000 Binary files a/files/17_2134.jpg and /dev/null differ diff --git a/files/17_2134.mp3 b/files/17_2134.mp3 deleted file mode 100644 index f8137d352..000000000 Binary files a/files/17_2134.mp3 and /dev/null differ diff --git a/files/17_2134_example.mp3 b/files/17_2134_example.mp3 deleted file mode 100644 index 3cb95128a..000000000 Binary files a/files/17_2134_example.mp3 and /dev/null differ diff --git a/files/17_2134_meaning.mp3 b/files/17_2134_meaning.mp3 deleted file mode 100644 index 75f47c629..000000000 Binary files a/files/17_2134_meaning.mp3 and /dev/null differ diff --git a/files/17_2135.jpg b/files/17_2135.jpg deleted file mode 100644 index f58d9fe98..000000000 Binary files a/files/17_2135.jpg and /dev/null differ diff --git a/files/17_2135.mp3 b/files/17_2135.mp3 deleted file mode 100644 index fb2d54322..000000000 Binary files a/files/17_2135.mp3 and /dev/null differ diff --git a/files/17_2135_example.mp3 b/files/17_2135_example.mp3 deleted file mode 100644 index dbf6b623f..000000000 Binary files a/files/17_2135_example.mp3 and /dev/null differ diff --git a/files/17_2135_meaning.mp3 b/files/17_2135_meaning.mp3 deleted file mode 100644 index 235d5b667..000000000 Binary files a/files/17_2135_meaning.mp3 and /dev/null differ diff --git a/files/17_2136.jpg b/files/17_2136.jpg deleted file mode 100644 index 12ba3f208..000000000 Binary files a/files/17_2136.jpg and /dev/null differ diff --git a/files/17_2136.mp3 b/files/17_2136.mp3 deleted file mode 100644 index 1a43b9a48..000000000 Binary files a/files/17_2136.mp3 and /dev/null differ diff --git a/files/17_2136_example.mp3 b/files/17_2136_example.mp3 deleted file mode 100644 index ff7d7ad88..000000000 Binary files a/files/17_2136_example.mp3 and /dev/null differ diff --git a/files/17_2136_meaning.mp3 b/files/17_2136_meaning.mp3 deleted file mode 100644 index 49d62f98c..000000000 Binary files a/files/17_2136_meaning.mp3 and /dev/null differ diff --git a/files/17_2137.jpg b/files/17_2137.jpg deleted file mode 100644 index b151c4863..000000000 Binary files a/files/17_2137.jpg and /dev/null differ diff --git a/files/17_2137.mp3 b/files/17_2137.mp3 deleted file mode 100644 index dee103b42..000000000 Binary files a/files/17_2137.mp3 and /dev/null differ diff --git a/files/17_2137_example.mp3 b/files/17_2137_example.mp3 deleted file mode 100644 index e1d035ec5..000000000 Binary files a/files/17_2137_example.mp3 and /dev/null differ diff --git a/files/17_2137_meaning.mp3 b/files/17_2137_meaning.mp3 deleted file mode 100644 index 46df56022..000000000 Binary files a/files/17_2137_meaning.mp3 and /dev/null differ diff --git a/files/17_2138.jpg b/files/17_2138.jpg deleted file mode 100644 index fba879685..000000000 Binary files a/files/17_2138.jpg and /dev/null differ diff --git a/files/17_2138.mp3 b/files/17_2138.mp3 deleted file mode 100644 index a62ae00ef..000000000 Binary files a/files/17_2138.mp3 and /dev/null differ diff --git a/files/17_2138_example.mp3 b/files/17_2138_example.mp3 deleted file mode 100644 index df978b584..000000000 Binary files a/files/17_2138_example.mp3 and /dev/null differ diff --git a/files/17_2138_meaning.mp3 b/files/17_2138_meaning.mp3 deleted file mode 100644 index 98c4c8d63..000000000 Binary files a/files/17_2138_meaning.mp3 and /dev/null differ diff --git a/files/17_2139.jpg b/files/17_2139.jpg deleted file mode 100644 index ad35cf2cd..000000000 Binary files a/files/17_2139.jpg and /dev/null differ diff --git a/files/17_2139.mp3 b/files/17_2139.mp3 deleted file mode 100644 index 218f4e579..000000000 Binary files a/files/17_2139.mp3 and /dev/null differ diff --git a/files/17_2139_example.mp3 b/files/17_2139_example.mp3 deleted file mode 100644 index 4244eddd9..000000000 Binary files a/files/17_2139_example.mp3 and /dev/null differ diff --git a/files/17_2139_meaning.mp3 b/files/17_2139_meaning.mp3 deleted file mode 100644 index dcd98d541..000000000 Binary files a/files/17_2139_meaning.mp3 and /dev/null differ diff --git a/files/17_2140.jpg b/files/17_2140.jpg deleted file mode 100644 index ecb81aebf..000000000 Binary files a/files/17_2140.jpg and /dev/null differ diff --git a/files/17_2140.mp3 b/files/17_2140.mp3 deleted file mode 100644 index 6045261a1..000000000 Binary files a/files/17_2140.mp3 and /dev/null differ diff --git a/files/17_2140_example.mp3 b/files/17_2140_example.mp3 deleted file mode 100644 index 64e59d948..000000000 Binary files a/files/17_2140_example.mp3 and /dev/null differ diff --git a/files/17_2140_meaning.mp3 b/files/17_2140_meaning.mp3 deleted file mode 100644 index 06ebcad14..000000000 Binary files a/files/17_2140_meaning.mp3 and /dev/null differ diff --git a/files/17_2721.jpg b/files/17_2721.jpg deleted file mode 100644 index 1dc1a25c3..000000000 Binary files a/files/17_2721.jpg and /dev/null differ diff --git a/files/17_2721.mp3 b/files/17_2721.mp3 deleted file mode 100644 index 3c8148b6d..000000000 Binary files a/files/17_2721.mp3 and /dev/null differ diff --git a/files/17_2721_example.mp3 b/files/17_2721_example.mp3 deleted file mode 100644 index cf7dadcbf..000000000 Binary files a/files/17_2721_example.mp3 and /dev/null differ diff --git a/files/17_2721_meaning.mp3 b/files/17_2721_meaning.mp3 deleted file mode 100644 index 0182c0f49..000000000 Binary files a/files/17_2721_meaning.mp3 and /dev/null differ diff --git a/files/17_2722.jpg b/files/17_2722.jpg deleted file mode 100644 index ece71aea5..000000000 Binary files a/files/17_2722.jpg and /dev/null differ diff --git a/files/17_2722.mp3 b/files/17_2722.mp3 deleted file mode 100644 index cca926f81..000000000 Binary files a/files/17_2722.mp3 and /dev/null differ diff --git a/files/17_2722_example.mp3 b/files/17_2722_example.mp3 deleted file mode 100644 index 291884676..000000000 Binary files a/files/17_2722_example.mp3 and /dev/null differ diff --git a/files/17_2722_meaning.mp3 b/files/17_2722_meaning.mp3 deleted file mode 100644 index fd329ad71..000000000 Binary files a/files/17_2722_meaning.mp3 and /dev/null differ diff --git a/files/17_2723.jpg b/files/17_2723.jpg deleted file mode 100644 index 82eb7c880..000000000 Binary files a/files/17_2723.jpg and /dev/null differ diff --git a/files/17_2723.mp3 b/files/17_2723.mp3 deleted file mode 100644 index 00fdaa69a..000000000 Binary files a/files/17_2723.mp3 and /dev/null differ diff --git a/files/17_2723_example.mp3 b/files/17_2723_example.mp3 deleted file mode 100644 index 80f6aa366..000000000 Binary files a/files/17_2723_example.mp3 and /dev/null differ diff --git a/files/17_2723_meaning.mp3 b/files/17_2723_meaning.mp3 deleted file mode 100644 index 7018e53af..000000000 Binary files a/files/17_2723_meaning.mp3 and /dev/null differ diff --git a/files/17_2724.jpg b/files/17_2724.jpg deleted file mode 100644 index eee2c4096..000000000 Binary files a/files/17_2724.jpg and /dev/null differ diff --git a/files/17_2724.mp3 b/files/17_2724.mp3 deleted file mode 100644 index 39f96a64c..000000000 Binary files a/files/17_2724.mp3 and /dev/null differ diff --git a/files/17_2724_example.mp3 b/files/17_2724_example.mp3 deleted file mode 100644 index 0f621f1a0..000000000 Binary files a/files/17_2724_example.mp3 and /dev/null differ diff --git a/files/17_2724_meaning.mp3 b/files/17_2724_meaning.mp3 deleted file mode 100644 index 4df5b588f..000000000 Binary files a/files/17_2724_meaning.mp3 and /dev/null differ diff --git a/files/17_2725.jpg b/files/17_2725.jpg deleted file mode 100644 index 6334f837c..000000000 Binary files a/files/17_2725.jpg and /dev/null differ diff --git a/files/17_2725.mp3 b/files/17_2725.mp3 deleted file mode 100644 index bfb707354..000000000 Binary files a/files/17_2725.mp3 and /dev/null differ diff --git a/files/17_2725_example.mp3 b/files/17_2725_example.mp3 deleted file mode 100644 index 76fbd5f66..000000000 Binary files a/files/17_2725_example.mp3 and /dev/null differ diff --git a/files/17_2725_meaning.mp3 b/files/17_2725_meaning.mp3 deleted file mode 100644 index 6fa45d76e..000000000 Binary files a/files/17_2725_meaning.mp3 and /dev/null differ diff --git a/files/17_2726.jpg b/files/17_2726.jpg deleted file mode 100644 index c38586c85..000000000 Binary files a/files/17_2726.jpg and /dev/null differ diff --git a/files/17_2726.mp3 b/files/17_2726.mp3 deleted file mode 100644 index 0b19efb6a..000000000 Binary files a/files/17_2726.mp3 and /dev/null differ diff --git a/files/17_2726_example.mp3 b/files/17_2726_example.mp3 deleted file mode 100644 index 26fe27374..000000000 Binary files a/files/17_2726_example.mp3 and /dev/null differ diff --git a/files/17_2726_meaning.mp3 b/files/17_2726_meaning.mp3 deleted file mode 100644 index b2d06c1cb..000000000 Binary files a/files/17_2726_meaning.mp3 and /dev/null differ diff --git a/files/17_2727.jpg b/files/17_2727.jpg deleted file mode 100644 index d0a5dff3d..000000000 Binary files a/files/17_2727.jpg and /dev/null differ diff --git a/files/17_2727.mp3 b/files/17_2727.mp3 deleted file mode 100644 index 6f8faa5d3..000000000 Binary files a/files/17_2727.mp3 and /dev/null differ diff --git a/files/17_2727_example.mp3 b/files/17_2727_example.mp3 deleted file mode 100644 index 7d6fb13c9..000000000 Binary files a/files/17_2727_example.mp3 and /dev/null differ diff --git a/files/17_2727_meaning.mp3 b/files/17_2727_meaning.mp3 deleted file mode 100644 index 1d011d6d3..000000000 Binary files a/files/17_2727_meaning.mp3 and /dev/null differ diff --git a/files/17_2728.jpg b/files/17_2728.jpg deleted file mode 100644 index 76a7eaf4a..000000000 Binary files a/files/17_2728.jpg and /dev/null differ diff --git a/files/17_2728.mp3 b/files/17_2728.mp3 deleted file mode 100644 index 93097342c..000000000 Binary files a/files/17_2728.mp3 and /dev/null differ diff --git a/files/17_2728_example.mp3 b/files/17_2728_example.mp3 deleted file mode 100644 index 816579a91..000000000 Binary files a/files/17_2728_example.mp3 and /dev/null differ diff --git a/files/17_2728_meaning.mp3 b/files/17_2728_meaning.mp3 deleted file mode 100644 index 48934bdfb..000000000 Binary files a/files/17_2728_meaning.mp3 and /dev/null differ diff --git a/files/17_2729.jpg b/files/17_2729.jpg deleted file mode 100644 index e4e8eb743..000000000 Binary files a/files/17_2729.jpg and /dev/null differ diff --git a/files/17_2729.mp3 b/files/17_2729.mp3 deleted file mode 100644 index 55d605cc4..000000000 Binary files a/files/17_2729.mp3 and /dev/null differ diff --git a/files/17_2729_example.mp3 b/files/17_2729_example.mp3 deleted file mode 100644 index 0dea9b5b2..000000000 Binary files a/files/17_2729_example.mp3 and /dev/null differ diff --git a/files/17_2729_meaning.mp3 b/files/17_2729_meaning.mp3 deleted file mode 100644 index 1b55dc284..000000000 Binary files a/files/17_2729_meaning.mp3 and /dev/null differ diff --git a/files/17_2730.jpg b/files/17_2730.jpg deleted file mode 100644 index 256f1ade7..000000000 Binary files a/files/17_2730.jpg and /dev/null differ diff --git a/files/17_2730.mp3 b/files/17_2730.mp3 deleted file mode 100644 index 444334ff8..000000000 Binary files a/files/17_2730.mp3 and /dev/null differ diff --git a/files/17_2730_example.mp3 b/files/17_2730_example.mp3 deleted file mode 100644 index c45bef212..000000000 Binary files a/files/17_2730_example.mp3 and /dev/null differ diff --git a/files/17_2730_meaning.mp3 b/files/17_2730_meaning.mp3 deleted file mode 100644 index 47f6b87f4..000000000 Binary files a/files/17_2730_meaning.mp3 and /dev/null differ diff --git a/files/17_2731.jpg b/files/17_2731.jpg deleted file mode 100644 index d46f81e8a..000000000 Binary files a/files/17_2731.jpg and /dev/null differ diff --git a/files/17_2731.mp3 b/files/17_2731.mp3 deleted file mode 100644 index d554d8124..000000000 Binary files a/files/17_2731.mp3 and /dev/null differ diff --git a/files/17_2731_example.mp3 b/files/17_2731_example.mp3 deleted file mode 100644 index 4f8bc5631..000000000 Binary files a/files/17_2731_example.mp3 and /dev/null differ diff --git a/files/17_2731_meaning.mp3 b/files/17_2731_meaning.mp3 deleted file mode 100644 index 99845dc93..000000000 Binary files a/files/17_2731_meaning.mp3 and /dev/null differ diff --git a/files/17_2732.jpg b/files/17_2732.jpg deleted file mode 100644 index 7f9d6e1e0..000000000 Binary files a/files/17_2732.jpg and /dev/null differ diff --git a/files/17_2732.mp3 b/files/17_2732.mp3 deleted file mode 100644 index af85bc4a1..000000000 Binary files a/files/17_2732.mp3 and /dev/null differ diff --git a/files/17_2732_example.mp3 b/files/17_2732_example.mp3 deleted file mode 100644 index f661704af..000000000 Binary files a/files/17_2732_example.mp3 and /dev/null differ diff --git a/files/17_2732_meaning.mp3 b/files/17_2732_meaning.mp3 deleted file mode 100644 index 0d67aee9c..000000000 Binary files a/files/17_2732_meaning.mp3 and /dev/null differ diff --git a/files/17_2733.jpg b/files/17_2733.jpg deleted file mode 100644 index e6b2fb068..000000000 Binary files a/files/17_2733.jpg and /dev/null differ diff --git a/files/17_2733.mp3 b/files/17_2733.mp3 deleted file mode 100644 index 9db39c23d..000000000 Binary files a/files/17_2733.mp3 and /dev/null differ diff --git a/files/17_2733_example.mp3 b/files/17_2733_example.mp3 deleted file mode 100644 index 64382cb87..000000000 Binary files a/files/17_2733_example.mp3 and /dev/null differ diff --git a/files/17_2733_meaning.mp3 b/files/17_2733_meaning.mp3 deleted file mode 100644 index 49e2e3940..000000000 Binary files a/files/17_2733_meaning.mp3 and /dev/null differ diff --git a/files/17_2734.jpg b/files/17_2734.jpg deleted file mode 100644 index ed60952b8..000000000 Binary files a/files/17_2734.jpg and /dev/null differ diff --git a/files/17_2734.mp3 b/files/17_2734.mp3 deleted file mode 100644 index e4a3f36d2..000000000 Binary files a/files/17_2734.mp3 and /dev/null differ diff --git a/files/17_2734_example.mp3 b/files/17_2734_example.mp3 deleted file mode 100644 index 39d4900bf..000000000 Binary files a/files/17_2734_example.mp3 and /dev/null differ diff --git a/files/17_2734_meaning.mp3 b/files/17_2734_meaning.mp3 deleted file mode 100644 index 96cfd1b61..000000000 Binary files a/files/17_2734_meaning.mp3 and /dev/null differ diff --git a/files/17_2735.jpg b/files/17_2735.jpg deleted file mode 100644 index f8223c6cf..000000000 Binary files a/files/17_2735.jpg and /dev/null differ diff --git a/files/17_2735.mp3 b/files/17_2735.mp3 deleted file mode 100644 index 7d933277a..000000000 Binary files a/files/17_2735.mp3 and /dev/null differ diff --git a/files/17_2735_example.mp3 b/files/17_2735_example.mp3 deleted file mode 100644 index d60e4c26c..000000000 Binary files a/files/17_2735_example.mp3 and /dev/null differ diff --git a/files/17_2735_meaning.mp3 b/files/17_2735_meaning.mp3 deleted file mode 100644 index 8c1a00fc5..000000000 Binary files a/files/17_2735_meaning.mp3 and /dev/null differ diff --git a/files/17_2736.jpg b/files/17_2736.jpg deleted file mode 100644 index f56ddcf58..000000000 Binary files a/files/17_2736.jpg and /dev/null differ diff --git a/files/17_2736.mp3 b/files/17_2736.mp3 deleted file mode 100644 index 11a93e361..000000000 Binary files a/files/17_2736.mp3 and /dev/null differ diff --git a/files/17_2736_example.mp3 b/files/17_2736_example.mp3 deleted file mode 100644 index a9bb0377c..000000000 Binary files a/files/17_2736_example.mp3 and /dev/null differ diff --git a/files/17_2736_meaning.mp3 b/files/17_2736_meaning.mp3 deleted file mode 100644 index edb69492d..000000000 Binary files a/files/17_2736_meaning.mp3 and /dev/null differ diff --git a/files/17_2737.jpg b/files/17_2737.jpg deleted file mode 100644 index efd940902..000000000 Binary files a/files/17_2737.jpg and /dev/null differ diff --git a/files/17_2737.mp3 b/files/17_2737.mp3 deleted file mode 100644 index 2609eb31f..000000000 Binary files a/files/17_2737.mp3 and /dev/null differ diff --git a/files/17_2737_example.mp3 b/files/17_2737_example.mp3 deleted file mode 100644 index d751bcb3d..000000000 Binary files a/files/17_2737_example.mp3 and /dev/null differ diff --git a/files/17_2737_meaning.mp3 b/files/17_2737_meaning.mp3 deleted file mode 100644 index c3c66ecbe..000000000 Binary files a/files/17_2737_meaning.mp3 and /dev/null differ diff --git a/files/17_2738.jpg b/files/17_2738.jpg deleted file mode 100644 index 33858d39b..000000000 Binary files a/files/17_2738.jpg and /dev/null differ diff --git a/files/17_2738.mp3 b/files/17_2738.mp3 deleted file mode 100644 index 58cff1ce9..000000000 Binary files a/files/17_2738.mp3 and /dev/null differ diff --git a/files/17_2738_example.mp3 b/files/17_2738_example.mp3 deleted file mode 100644 index 8327c3c1f..000000000 Binary files a/files/17_2738_example.mp3 and /dev/null differ diff --git a/files/17_2738_meaning.mp3 b/files/17_2738_meaning.mp3 deleted file mode 100644 index bb8e77f9b..000000000 Binary files a/files/17_2738_meaning.mp3 and /dev/null differ diff --git a/files/17_2739.jpg b/files/17_2739.jpg deleted file mode 100644 index 38cf2f3f5..000000000 Binary files a/files/17_2739.jpg and /dev/null differ diff --git a/files/17_2739.mp3 b/files/17_2739.mp3 deleted file mode 100644 index 1e827aa73..000000000 Binary files a/files/17_2739.mp3 and /dev/null differ diff --git a/files/17_2739_example.mp3 b/files/17_2739_example.mp3 deleted file mode 100644 index 98742db24..000000000 Binary files a/files/17_2739_example.mp3 and /dev/null differ diff --git a/files/17_2739_meaning.mp3 b/files/17_2739_meaning.mp3 deleted file mode 100644 index 42c583bf5..000000000 Binary files a/files/17_2739_meaning.mp3 and /dev/null differ diff --git a/files/17_2740.jpg b/files/17_2740.jpg deleted file mode 100644 index e9af82ab3..000000000 Binary files a/files/17_2740.jpg and /dev/null differ diff --git a/files/17_2740.mp3 b/files/17_2740.mp3 deleted file mode 100644 index 57c4d7a50..000000000 Binary files a/files/17_2740.mp3 and /dev/null differ diff --git a/files/17_2740_example.mp3 b/files/17_2740_example.mp3 deleted file mode 100644 index 061dc2be4..000000000 Binary files a/files/17_2740_example.mp3 and /dev/null differ diff --git a/files/17_2740_meaning.mp3 b/files/17_2740_meaning.mp3 deleted file mode 100644 index a75bf254e..000000000 Binary files a/files/17_2740_meaning.mp3 and /dev/null differ diff --git a/files/17_3321.jpg b/files/17_3321.jpg deleted file mode 100644 index 8d7189c2e..000000000 Binary files a/files/17_3321.jpg and /dev/null differ diff --git a/files/17_3321.mp3 b/files/17_3321.mp3 deleted file mode 100644 index 217edf384..000000000 Binary files a/files/17_3321.mp3 and /dev/null differ diff --git a/files/17_3321_example.mp3 b/files/17_3321_example.mp3 deleted file mode 100644 index 4e10f3162..000000000 Binary files a/files/17_3321_example.mp3 and /dev/null differ diff --git a/files/17_3321_meaning.mp3 b/files/17_3321_meaning.mp3 deleted file mode 100644 index 720cded5e..000000000 Binary files a/files/17_3321_meaning.mp3 and /dev/null differ diff --git a/files/17_3322.jpg b/files/17_3322.jpg deleted file mode 100644 index 72eb4ee98..000000000 Binary files a/files/17_3322.jpg and /dev/null differ diff --git a/files/17_3322.mp3 b/files/17_3322.mp3 deleted file mode 100644 index 2bba45eb4..000000000 Binary files a/files/17_3322.mp3 and /dev/null differ diff --git a/files/17_3322_example.mp3 b/files/17_3322_example.mp3 deleted file mode 100644 index 9a3d4d339..000000000 Binary files a/files/17_3322_example.mp3 and /dev/null differ diff --git a/files/17_3322_meaning.mp3 b/files/17_3322_meaning.mp3 deleted file mode 100644 index 5a407082a..000000000 Binary files a/files/17_3322_meaning.mp3 and /dev/null differ diff --git a/files/17_3323.jpg b/files/17_3323.jpg deleted file mode 100644 index 9a04feeb3..000000000 Binary files a/files/17_3323.jpg and /dev/null differ diff --git a/files/17_3323.mp3 b/files/17_3323.mp3 deleted file mode 100644 index 32665afca..000000000 Binary files a/files/17_3323.mp3 and /dev/null differ diff --git a/files/17_3323_example.mp3 b/files/17_3323_example.mp3 deleted file mode 100644 index 5fc9d8df4..000000000 Binary files a/files/17_3323_example.mp3 and /dev/null differ diff --git a/files/17_3323_meaning.mp3 b/files/17_3323_meaning.mp3 deleted file mode 100644 index b88de56e7..000000000 Binary files a/files/17_3323_meaning.mp3 and /dev/null differ diff --git a/files/17_3324.jpg b/files/17_3324.jpg deleted file mode 100644 index f463c0c60..000000000 Binary files a/files/17_3324.jpg and /dev/null differ diff --git a/files/17_3324.mp3 b/files/17_3324.mp3 deleted file mode 100644 index e2ad87540..000000000 Binary files a/files/17_3324.mp3 and /dev/null differ diff --git a/files/17_3324_example.mp3 b/files/17_3324_example.mp3 deleted file mode 100644 index b6dc9bd9a..000000000 Binary files a/files/17_3324_example.mp3 and /dev/null differ diff --git a/files/17_3324_meaning.mp3 b/files/17_3324_meaning.mp3 deleted file mode 100644 index bdaf5739b..000000000 Binary files a/files/17_3324_meaning.mp3 and /dev/null differ diff --git a/files/17_3325.jpg b/files/17_3325.jpg deleted file mode 100644 index 4b6f2d5e2..000000000 Binary files a/files/17_3325.jpg and /dev/null differ diff --git a/files/17_3325.mp3 b/files/17_3325.mp3 deleted file mode 100644 index bf1685696..000000000 Binary files a/files/17_3325.mp3 and /dev/null differ diff --git a/files/17_3325_example.mp3 b/files/17_3325_example.mp3 deleted file mode 100644 index d7670eeaf..000000000 Binary files a/files/17_3325_example.mp3 and /dev/null differ diff --git a/files/17_3325_meaning.mp3 b/files/17_3325_meaning.mp3 deleted file mode 100644 index 0fc89e484..000000000 Binary files a/files/17_3325_meaning.mp3 and /dev/null differ diff --git a/files/17_3326.jpg b/files/17_3326.jpg deleted file mode 100644 index b4d48da26..000000000 Binary files a/files/17_3326.jpg and /dev/null differ diff --git a/files/17_3326.mp3 b/files/17_3326.mp3 deleted file mode 100644 index b08818f5e..000000000 Binary files a/files/17_3326.mp3 and /dev/null differ diff --git a/files/17_3326_example.mp3 b/files/17_3326_example.mp3 deleted file mode 100644 index b0d392daa..000000000 Binary files a/files/17_3326_example.mp3 and /dev/null differ diff --git a/files/17_3326_meaning.mp3 b/files/17_3326_meaning.mp3 deleted file mode 100644 index 800be2dd2..000000000 Binary files a/files/17_3326_meaning.mp3 and /dev/null differ diff --git a/files/17_3327.jpg b/files/17_3327.jpg deleted file mode 100644 index 9596b1a16..000000000 Binary files a/files/17_3327.jpg and /dev/null differ diff --git a/files/17_3327.mp3 b/files/17_3327.mp3 deleted file mode 100644 index 7a7b43f50..000000000 Binary files a/files/17_3327.mp3 and /dev/null differ diff --git a/files/17_3327_example.mp3 b/files/17_3327_example.mp3 deleted file mode 100644 index 6f9de5827..000000000 Binary files a/files/17_3327_example.mp3 and /dev/null differ diff --git a/files/17_3327_meaning.mp3 b/files/17_3327_meaning.mp3 deleted file mode 100644 index 21cd74aba..000000000 Binary files a/files/17_3327_meaning.mp3 and /dev/null differ diff --git a/files/17_3328.jpg b/files/17_3328.jpg deleted file mode 100644 index 0bc7773ba..000000000 Binary files a/files/17_3328.jpg and /dev/null differ diff --git a/files/17_3328.mp3 b/files/17_3328.mp3 deleted file mode 100644 index 470112b98..000000000 Binary files a/files/17_3328.mp3 and /dev/null differ diff --git a/files/17_3328_example.mp3 b/files/17_3328_example.mp3 deleted file mode 100644 index 8b5128a21..000000000 Binary files a/files/17_3328_example.mp3 and /dev/null differ diff --git a/files/17_3328_meaning.mp3 b/files/17_3328_meaning.mp3 deleted file mode 100644 index 140e717ff..000000000 Binary files a/files/17_3328_meaning.mp3 and /dev/null differ diff --git a/files/17_3329.jpg b/files/17_3329.jpg deleted file mode 100644 index 3109ece0a..000000000 Binary files a/files/17_3329.jpg and /dev/null differ diff --git a/files/17_3329.mp3 b/files/17_3329.mp3 deleted file mode 100644 index a8e7d76d7..000000000 Binary files a/files/17_3329.mp3 and /dev/null differ diff --git a/files/17_3329_example.mp3 b/files/17_3329_example.mp3 deleted file mode 100644 index ccafd6d5f..000000000 Binary files a/files/17_3329_example.mp3 and /dev/null differ diff --git a/files/17_3329_meaning.mp3 b/files/17_3329_meaning.mp3 deleted file mode 100644 index ff610ef3c..000000000 Binary files a/files/17_3329_meaning.mp3 and /dev/null differ diff --git a/files/17_3330.jpg b/files/17_3330.jpg deleted file mode 100644 index f42ce8c1a..000000000 Binary files a/files/17_3330.jpg and /dev/null differ diff --git a/files/17_3330.mp3 b/files/17_3330.mp3 deleted file mode 100644 index 92480b40c..000000000 Binary files a/files/17_3330.mp3 and /dev/null differ diff --git a/files/17_3330_example.mp3 b/files/17_3330_example.mp3 deleted file mode 100644 index 3fbce2392..000000000 Binary files a/files/17_3330_example.mp3 and /dev/null differ diff --git a/files/17_3330_meaning.mp3 b/files/17_3330_meaning.mp3 deleted file mode 100644 index 17422ecd2..000000000 Binary files a/files/17_3330_meaning.mp3 and /dev/null differ diff --git a/files/17_3331.jpg b/files/17_3331.jpg deleted file mode 100644 index 4fc7656c9..000000000 Binary files a/files/17_3331.jpg and /dev/null differ diff --git a/files/17_3331.mp3 b/files/17_3331.mp3 deleted file mode 100644 index b1de4a90d..000000000 Binary files a/files/17_3331.mp3 and /dev/null differ diff --git a/files/17_3331_example.mp3 b/files/17_3331_example.mp3 deleted file mode 100644 index 8dab6d7c7..000000000 Binary files a/files/17_3331_example.mp3 and /dev/null differ diff --git a/files/17_3331_meaning.mp3 b/files/17_3331_meaning.mp3 deleted file mode 100644 index cc8aded70..000000000 Binary files a/files/17_3331_meaning.mp3 and /dev/null differ diff --git a/files/17_3332.jpg b/files/17_3332.jpg deleted file mode 100644 index c87162307..000000000 Binary files a/files/17_3332.jpg and /dev/null differ diff --git a/files/17_3332.mp3 b/files/17_3332.mp3 deleted file mode 100644 index 30e62e498..000000000 Binary files a/files/17_3332.mp3 and /dev/null differ diff --git a/files/17_3332_example.mp3 b/files/17_3332_example.mp3 deleted file mode 100644 index 87b323d27..000000000 Binary files a/files/17_3332_example.mp3 and /dev/null differ diff --git a/files/17_3332_meaning.mp3 b/files/17_3332_meaning.mp3 deleted file mode 100644 index 0759cc835..000000000 Binary files a/files/17_3332_meaning.mp3 and /dev/null differ diff --git a/files/17_3333.jpg b/files/17_3333.jpg deleted file mode 100644 index ffffe1490..000000000 Binary files a/files/17_3333.jpg and /dev/null differ diff --git a/files/17_3333.mp3 b/files/17_3333.mp3 deleted file mode 100644 index 66eab1d35..000000000 Binary files a/files/17_3333.mp3 and /dev/null differ diff --git a/files/17_3333_example.mp3 b/files/17_3333_example.mp3 deleted file mode 100644 index 60170d7d6..000000000 Binary files a/files/17_3333_example.mp3 and /dev/null differ diff --git a/files/17_3333_meaning.mp3 b/files/17_3333_meaning.mp3 deleted file mode 100644 index 7dff2efb9..000000000 Binary files a/files/17_3333_meaning.mp3 and /dev/null differ diff --git a/files/17_3334.jpg b/files/17_3334.jpg deleted file mode 100644 index 0ece41330..000000000 Binary files a/files/17_3334.jpg and /dev/null differ diff --git a/files/17_3334.mp3 b/files/17_3334.mp3 deleted file mode 100644 index 90bcc3694..000000000 Binary files a/files/17_3334.mp3 and /dev/null differ diff --git a/files/17_3334_example.mp3 b/files/17_3334_example.mp3 deleted file mode 100644 index e381a0f85..000000000 Binary files a/files/17_3334_example.mp3 and /dev/null differ diff --git a/files/17_3334_meaning.mp3 b/files/17_3334_meaning.mp3 deleted file mode 100644 index 7b8f1fe0c..000000000 Binary files a/files/17_3334_meaning.mp3 and /dev/null differ diff --git a/files/17_3335.jpg b/files/17_3335.jpg deleted file mode 100644 index e12befcc1..000000000 Binary files a/files/17_3335.jpg and /dev/null differ diff --git a/files/17_3335.mp3 b/files/17_3335.mp3 deleted file mode 100644 index 24a8d48fe..000000000 Binary files a/files/17_3335.mp3 and /dev/null differ diff --git a/files/17_3335_example.mp3 b/files/17_3335_example.mp3 deleted file mode 100644 index 97cfcbe93..000000000 Binary files a/files/17_3335_example.mp3 and /dev/null differ diff --git a/files/17_3335_meaning.mp3 b/files/17_3335_meaning.mp3 deleted file mode 100644 index 58f1e2249..000000000 Binary files a/files/17_3335_meaning.mp3 and /dev/null differ diff --git a/files/17_3336.jpg b/files/17_3336.jpg deleted file mode 100644 index 34b17ea26..000000000 Binary files a/files/17_3336.jpg and /dev/null differ diff --git a/files/17_3336.mp3 b/files/17_3336.mp3 deleted file mode 100644 index 79ffdc716..000000000 Binary files a/files/17_3336.mp3 and /dev/null differ diff --git a/files/17_3336_example.mp3 b/files/17_3336_example.mp3 deleted file mode 100644 index 0b8805da7..000000000 Binary files a/files/17_3336_example.mp3 and /dev/null differ diff --git a/files/17_3336_meaning.mp3 b/files/17_3336_meaning.mp3 deleted file mode 100644 index 6a0ccdfdf..000000000 Binary files a/files/17_3336_meaning.mp3 and /dev/null differ diff --git a/files/17_3337.jpg b/files/17_3337.jpg deleted file mode 100644 index 90746ada2..000000000 Binary files a/files/17_3337.jpg and /dev/null differ diff --git a/files/17_3337.mp3 b/files/17_3337.mp3 deleted file mode 100644 index af599fd08..000000000 Binary files a/files/17_3337.mp3 and /dev/null differ diff --git a/files/17_3337_example.mp3 b/files/17_3337_example.mp3 deleted file mode 100644 index f162861cf..000000000 Binary files a/files/17_3337_example.mp3 and /dev/null differ diff --git a/files/17_3337_meaning.mp3 b/files/17_3337_meaning.mp3 deleted file mode 100644 index e4dfba1eb..000000000 Binary files a/files/17_3337_meaning.mp3 and /dev/null differ diff --git a/files/17_3338.jpg b/files/17_3338.jpg deleted file mode 100644 index 195991a43..000000000 Binary files a/files/17_3338.jpg and /dev/null differ diff --git a/files/17_3338.mp3 b/files/17_3338.mp3 deleted file mode 100644 index 18e8270c3..000000000 Binary files a/files/17_3338.mp3 and /dev/null differ diff --git a/files/17_3338_example.mp3 b/files/17_3338_example.mp3 deleted file mode 100644 index a29b39858..000000000 Binary files a/files/17_3338_example.mp3 and /dev/null differ diff --git a/files/17_3338_meaning.mp3 b/files/17_3338_meaning.mp3 deleted file mode 100644 index c9d6ecab4..000000000 Binary files a/files/17_3338_meaning.mp3 and /dev/null differ diff --git a/files/17_3339.jpg b/files/17_3339.jpg deleted file mode 100644 index 8d1f1a9ac..000000000 Binary files a/files/17_3339.jpg and /dev/null differ diff --git a/files/17_3339.mp3 b/files/17_3339.mp3 deleted file mode 100644 index 00a445806..000000000 Binary files a/files/17_3339.mp3 and /dev/null differ diff --git a/files/17_3339_example.mp3 b/files/17_3339_example.mp3 deleted file mode 100644 index 2ad71d328..000000000 Binary files a/files/17_3339_example.mp3 and /dev/null differ diff --git a/files/17_3339_meaning.mp3 b/files/17_3339_meaning.mp3 deleted file mode 100644 index 7502cb0eb..000000000 Binary files a/files/17_3339_meaning.mp3 and /dev/null differ diff --git a/files/17_3340.jpg b/files/17_3340.jpg deleted file mode 100644 index 6f13941ec..000000000 Binary files a/files/17_3340.jpg and /dev/null differ diff --git a/files/17_3340.mp3 b/files/17_3340.mp3 deleted file mode 100644 index 77c78c92b..000000000 Binary files a/files/17_3340.mp3 and /dev/null differ diff --git a/files/17_3340_example.mp3 b/files/17_3340_example.mp3 deleted file mode 100644 index 06d558c0d..000000000 Binary files a/files/17_3340_example.mp3 and /dev/null differ diff --git a/files/17_3340_meaning.mp3 b/files/17_3340_meaning.mp3 deleted file mode 100644 index 78c6534a2..000000000 Binary files a/files/17_3340_meaning.mp3 and /dev/null differ diff --git a/files/18_0341.jpg b/files/18_0341.jpg deleted file mode 100644 index 7d5b1b71f..000000000 Binary files a/files/18_0341.jpg and /dev/null differ diff --git a/files/18_0341.mp3 b/files/18_0341.mp3 deleted file mode 100644 index 8a06e882b..000000000 Binary files a/files/18_0341.mp3 and /dev/null differ diff --git a/files/18_0341_example.mp3 b/files/18_0341_example.mp3 deleted file mode 100644 index 4284708c3..000000000 Binary files a/files/18_0341_example.mp3 and /dev/null differ diff --git a/files/18_0341_meaning.mp3 b/files/18_0341_meaning.mp3 deleted file mode 100644 index 3973a8807..000000000 Binary files a/files/18_0341_meaning.mp3 and /dev/null differ diff --git a/files/18_0342.jpg b/files/18_0342.jpg deleted file mode 100644 index 838660081..000000000 Binary files a/files/18_0342.jpg and /dev/null differ diff --git a/files/18_0342.mp3 b/files/18_0342.mp3 deleted file mode 100644 index 4eee3b22f..000000000 Binary files a/files/18_0342.mp3 and /dev/null differ diff --git a/files/18_0342_example.mp3 b/files/18_0342_example.mp3 deleted file mode 100644 index 9c3b66483..000000000 Binary files a/files/18_0342_example.mp3 and /dev/null differ diff --git a/files/18_0342_meaning.mp3 b/files/18_0342_meaning.mp3 deleted file mode 100644 index 63c82d0c7..000000000 Binary files a/files/18_0342_meaning.mp3 and /dev/null differ diff --git a/files/18_0343.jpg b/files/18_0343.jpg deleted file mode 100644 index 2f54b3b47..000000000 Binary files a/files/18_0343.jpg and /dev/null differ diff --git a/files/18_0343.mp3 b/files/18_0343.mp3 deleted file mode 100644 index 26710cd06..000000000 Binary files a/files/18_0343.mp3 and /dev/null differ diff --git a/files/18_0343_example.mp3 b/files/18_0343_example.mp3 deleted file mode 100644 index 912707965..000000000 Binary files a/files/18_0343_example.mp3 and /dev/null differ diff --git a/files/18_0343_meaning.mp3 b/files/18_0343_meaning.mp3 deleted file mode 100644 index 06da104e3..000000000 Binary files a/files/18_0343_meaning.mp3 and /dev/null differ diff --git a/files/18_0344.jpg b/files/18_0344.jpg deleted file mode 100644 index 01030a5c5..000000000 Binary files a/files/18_0344.jpg and /dev/null differ diff --git a/files/18_0344.mp3 b/files/18_0344.mp3 deleted file mode 100644 index 4beb452ea..000000000 Binary files a/files/18_0344.mp3 and /dev/null differ diff --git a/files/18_0344_example.mp3 b/files/18_0344_example.mp3 deleted file mode 100644 index 203813c9f..000000000 Binary files a/files/18_0344_example.mp3 and /dev/null differ diff --git a/files/18_0344_meaning.mp3 b/files/18_0344_meaning.mp3 deleted file mode 100644 index d81b1b79a..000000000 Binary files a/files/18_0344_meaning.mp3 and /dev/null differ diff --git a/files/18_0345.jpg b/files/18_0345.jpg deleted file mode 100644 index 4881f59da..000000000 Binary files a/files/18_0345.jpg and /dev/null differ diff --git a/files/18_0345.mp3 b/files/18_0345.mp3 deleted file mode 100644 index d84e2e3bb..000000000 Binary files a/files/18_0345.mp3 and /dev/null differ diff --git a/files/18_0345_example.mp3 b/files/18_0345_example.mp3 deleted file mode 100644 index 2393e11f8..000000000 Binary files a/files/18_0345_example.mp3 and /dev/null differ diff --git a/files/18_0345_meaning.mp3 b/files/18_0345_meaning.mp3 deleted file mode 100644 index 5652e4eef..000000000 Binary files a/files/18_0345_meaning.mp3 and /dev/null differ diff --git a/files/18_0346.jpg b/files/18_0346.jpg deleted file mode 100644 index 3e99a6f30..000000000 Binary files a/files/18_0346.jpg and /dev/null differ diff --git a/files/18_0346.mp3 b/files/18_0346.mp3 deleted file mode 100644 index 2a200fa97..000000000 Binary files a/files/18_0346.mp3 and /dev/null differ diff --git a/files/18_0346_example.mp3 b/files/18_0346_example.mp3 deleted file mode 100644 index ef417b5ad..000000000 Binary files a/files/18_0346_example.mp3 and /dev/null differ diff --git a/files/18_0346_meaning.mp3 b/files/18_0346_meaning.mp3 deleted file mode 100644 index 80486d4b2..000000000 Binary files a/files/18_0346_meaning.mp3 and /dev/null differ diff --git a/files/18_0347.jpg b/files/18_0347.jpg deleted file mode 100644 index 717ef8824..000000000 Binary files a/files/18_0347.jpg and /dev/null differ diff --git a/files/18_0347.mp3 b/files/18_0347.mp3 deleted file mode 100644 index 13be12ccb..000000000 Binary files a/files/18_0347.mp3 and /dev/null differ diff --git a/files/18_0347_example.mp3 b/files/18_0347_example.mp3 deleted file mode 100644 index 5d863884f..000000000 Binary files a/files/18_0347_example.mp3 and /dev/null differ diff --git a/files/18_0347_meaning.mp3 b/files/18_0347_meaning.mp3 deleted file mode 100644 index cde712805..000000000 Binary files a/files/18_0347_meaning.mp3 and /dev/null differ diff --git a/files/18_0348.jpg b/files/18_0348.jpg deleted file mode 100644 index d16af718d..000000000 Binary files a/files/18_0348.jpg and /dev/null differ diff --git a/files/18_0348.mp3 b/files/18_0348.mp3 deleted file mode 100644 index a8ed9a5f6..000000000 Binary files a/files/18_0348.mp3 and /dev/null differ diff --git a/files/18_0348_example.mp3 b/files/18_0348_example.mp3 deleted file mode 100644 index 96f62c444..000000000 Binary files a/files/18_0348_example.mp3 and /dev/null differ diff --git a/files/18_0348_meaning.mp3 b/files/18_0348_meaning.mp3 deleted file mode 100644 index 55e21be18..000000000 Binary files a/files/18_0348_meaning.mp3 and /dev/null differ diff --git a/files/18_0349.jpg b/files/18_0349.jpg deleted file mode 100644 index 9bf5c8570..000000000 Binary files a/files/18_0349.jpg and /dev/null differ diff --git a/files/18_0349.mp3 b/files/18_0349.mp3 deleted file mode 100644 index 14593f10f..000000000 Binary files a/files/18_0349.mp3 and /dev/null differ diff --git a/files/18_0349_example.mp3 b/files/18_0349_example.mp3 deleted file mode 100644 index b5d0029ef..000000000 Binary files a/files/18_0349_example.mp3 and /dev/null differ diff --git a/files/18_0349_meaning.mp3 b/files/18_0349_meaning.mp3 deleted file mode 100644 index 3108e048c..000000000 Binary files a/files/18_0349_meaning.mp3 and /dev/null differ diff --git a/files/18_0350.jpg b/files/18_0350.jpg deleted file mode 100644 index 15c46fb88..000000000 Binary files a/files/18_0350.jpg and /dev/null differ diff --git a/files/18_0350.mp3 b/files/18_0350.mp3 deleted file mode 100644 index 155c67a7a..000000000 Binary files a/files/18_0350.mp3 and /dev/null differ diff --git a/files/18_0350_example.mp3 b/files/18_0350_example.mp3 deleted file mode 100644 index 7a2d83aa4..000000000 Binary files a/files/18_0350_example.mp3 and /dev/null differ diff --git a/files/18_0350_meaning.mp3 b/files/18_0350_meaning.mp3 deleted file mode 100644 index 662987fa9..000000000 Binary files a/files/18_0350_meaning.mp3 and /dev/null differ diff --git a/files/18_0351.jpg b/files/18_0351.jpg deleted file mode 100644 index 5795e0bff..000000000 Binary files a/files/18_0351.jpg and /dev/null differ diff --git a/files/18_0351.mp3 b/files/18_0351.mp3 deleted file mode 100644 index efdfd2b71..000000000 Binary files a/files/18_0351.mp3 and /dev/null differ diff --git a/files/18_0351_example.mp3 b/files/18_0351_example.mp3 deleted file mode 100644 index 2e726b653..000000000 Binary files a/files/18_0351_example.mp3 and /dev/null differ diff --git a/files/18_0351_meaning.mp3 b/files/18_0351_meaning.mp3 deleted file mode 100644 index 78ff5c4cd..000000000 Binary files a/files/18_0351_meaning.mp3 and /dev/null differ diff --git a/files/18_0352.jpg b/files/18_0352.jpg deleted file mode 100644 index c86ce0927..000000000 Binary files a/files/18_0352.jpg and /dev/null differ diff --git a/files/18_0352.mp3 b/files/18_0352.mp3 deleted file mode 100644 index 46b23b20a..000000000 Binary files a/files/18_0352.mp3 and /dev/null differ diff --git a/files/18_0352_example.mp3 b/files/18_0352_example.mp3 deleted file mode 100644 index 65002f8d8..000000000 Binary files a/files/18_0352_example.mp3 and /dev/null differ diff --git a/files/18_0352_meaning.mp3 b/files/18_0352_meaning.mp3 deleted file mode 100644 index 7bfa14fc7..000000000 Binary files a/files/18_0352_meaning.mp3 and /dev/null differ diff --git a/files/18_0353.jpg b/files/18_0353.jpg deleted file mode 100644 index 06a8d86dc..000000000 Binary files a/files/18_0353.jpg and /dev/null differ diff --git a/files/18_0353.mp3 b/files/18_0353.mp3 deleted file mode 100644 index 947ea1096..000000000 Binary files a/files/18_0353.mp3 and /dev/null differ diff --git a/files/18_0353_example.mp3 b/files/18_0353_example.mp3 deleted file mode 100644 index d42b7ef23..000000000 Binary files a/files/18_0353_example.mp3 and /dev/null differ diff --git a/files/18_0353_meaning.mp3 b/files/18_0353_meaning.mp3 deleted file mode 100644 index b2b7e7b40..000000000 Binary files a/files/18_0353_meaning.mp3 and /dev/null differ diff --git a/files/18_0354.jpg b/files/18_0354.jpg deleted file mode 100644 index 58255203c..000000000 Binary files a/files/18_0354.jpg and /dev/null differ diff --git a/files/18_0354.mp3 b/files/18_0354.mp3 deleted file mode 100644 index d9590eb30..000000000 Binary files a/files/18_0354.mp3 and /dev/null differ diff --git a/files/18_0354_example.mp3 b/files/18_0354_example.mp3 deleted file mode 100644 index 9ec569bcc..000000000 Binary files a/files/18_0354_example.mp3 and /dev/null differ diff --git a/files/18_0354_meaning.mp3 b/files/18_0354_meaning.mp3 deleted file mode 100644 index 3cd8ced71..000000000 Binary files a/files/18_0354_meaning.mp3 and /dev/null differ diff --git a/files/18_0355.jpg b/files/18_0355.jpg deleted file mode 100644 index 1c1ed5d85..000000000 Binary files a/files/18_0355.jpg and /dev/null differ diff --git a/files/18_0355.mp3 b/files/18_0355.mp3 deleted file mode 100644 index 27c633a83..000000000 Binary files a/files/18_0355.mp3 and /dev/null differ diff --git a/files/18_0355_example.mp3 b/files/18_0355_example.mp3 deleted file mode 100644 index 2e96ea6a8..000000000 Binary files a/files/18_0355_example.mp3 and /dev/null differ diff --git a/files/18_0355_meaning.mp3 b/files/18_0355_meaning.mp3 deleted file mode 100644 index 31b5b05ef..000000000 Binary files a/files/18_0355_meaning.mp3 and /dev/null differ diff --git a/files/18_0356.jpg b/files/18_0356.jpg deleted file mode 100644 index 69ce865e7..000000000 Binary files a/files/18_0356.jpg and /dev/null differ diff --git a/files/18_0356.mp3 b/files/18_0356.mp3 deleted file mode 100644 index a03a66868..000000000 Binary files a/files/18_0356.mp3 and /dev/null differ diff --git a/files/18_0356_example.mp3 b/files/18_0356_example.mp3 deleted file mode 100644 index ecac98ee8..000000000 Binary files a/files/18_0356_example.mp3 and /dev/null differ diff --git a/files/18_0356_meaning.mp3 b/files/18_0356_meaning.mp3 deleted file mode 100644 index 567a1ec8a..000000000 Binary files a/files/18_0356_meaning.mp3 and /dev/null differ diff --git a/files/18_0357.jpg b/files/18_0357.jpg deleted file mode 100644 index 6628eda20..000000000 Binary files a/files/18_0357.jpg and /dev/null differ diff --git a/files/18_0357.mp3 b/files/18_0357.mp3 deleted file mode 100644 index 94506299d..000000000 Binary files a/files/18_0357.mp3 and /dev/null differ diff --git a/files/18_0357_example.mp3 b/files/18_0357_example.mp3 deleted file mode 100644 index a975a25c1..000000000 Binary files a/files/18_0357_example.mp3 and /dev/null differ diff --git a/files/18_0357_meaning.mp3 b/files/18_0357_meaning.mp3 deleted file mode 100644 index bd461c67b..000000000 Binary files a/files/18_0357_meaning.mp3 and /dev/null differ diff --git a/files/18_0358.jpg b/files/18_0358.jpg deleted file mode 100644 index a8eac4e5f..000000000 Binary files a/files/18_0358.jpg and /dev/null differ diff --git a/files/18_0358.mp3 b/files/18_0358.mp3 deleted file mode 100644 index 291e3dd49..000000000 Binary files a/files/18_0358.mp3 and /dev/null differ diff --git a/files/18_0358_example.mp3 b/files/18_0358_example.mp3 deleted file mode 100644 index 2dc77a185..000000000 Binary files a/files/18_0358_example.mp3 and /dev/null differ diff --git a/files/18_0358_meaning.mp3 b/files/18_0358_meaning.mp3 deleted file mode 100644 index 96810e9d7..000000000 Binary files a/files/18_0358_meaning.mp3 and /dev/null differ diff --git a/files/18_0359.jpg b/files/18_0359.jpg deleted file mode 100644 index 1e550859b..000000000 Binary files a/files/18_0359.jpg and /dev/null differ diff --git a/files/18_0359.mp3 b/files/18_0359.mp3 deleted file mode 100644 index d7e501919..000000000 Binary files a/files/18_0359.mp3 and /dev/null differ diff --git a/files/18_0359_example.mp3 b/files/18_0359_example.mp3 deleted file mode 100644 index 14783757d..000000000 Binary files a/files/18_0359_example.mp3 and /dev/null differ diff --git a/files/18_0359_meaning.mp3 b/files/18_0359_meaning.mp3 deleted file mode 100644 index eff1260d7..000000000 Binary files a/files/18_0359_meaning.mp3 and /dev/null differ diff --git a/files/18_0360.jpg b/files/18_0360.jpg deleted file mode 100644 index 8eedf37a1..000000000 Binary files a/files/18_0360.jpg and /dev/null differ diff --git a/files/18_0360.mp3 b/files/18_0360.mp3 deleted file mode 100644 index d5c7fe1e5..000000000 Binary files a/files/18_0360.mp3 and /dev/null differ diff --git a/files/18_0360_example.mp3 b/files/18_0360_example.mp3 deleted file mode 100644 index a244aadf8..000000000 Binary files a/files/18_0360_example.mp3 and /dev/null differ diff --git a/files/18_0360_meaning.mp3 b/files/18_0360_meaning.mp3 deleted file mode 100644 index 105905444..000000000 Binary files a/files/18_0360_meaning.mp3 and /dev/null differ diff --git a/files/18_0941.jpg b/files/18_0941.jpg deleted file mode 100644 index 7dbd274f3..000000000 Binary files a/files/18_0941.jpg and /dev/null differ diff --git a/files/18_0941.mp3 b/files/18_0941.mp3 deleted file mode 100644 index 825356c04..000000000 Binary files a/files/18_0941.mp3 and /dev/null differ diff --git a/files/18_0941_example.mp3 b/files/18_0941_example.mp3 deleted file mode 100644 index 4984eab87..000000000 Binary files a/files/18_0941_example.mp3 and /dev/null differ diff --git a/files/18_0941_meaning.mp3 b/files/18_0941_meaning.mp3 deleted file mode 100644 index 0c04bf3b7..000000000 Binary files a/files/18_0941_meaning.mp3 and /dev/null differ diff --git a/files/18_0942.jpg b/files/18_0942.jpg deleted file mode 100644 index 916c636da..000000000 Binary files a/files/18_0942.jpg and /dev/null differ diff --git a/files/18_0942.mp3 b/files/18_0942.mp3 deleted file mode 100644 index 272f93f46..000000000 Binary files a/files/18_0942.mp3 and /dev/null differ diff --git a/files/18_0942_example.mp3 b/files/18_0942_example.mp3 deleted file mode 100644 index c08b53fbf..000000000 Binary files a/files/18_0942_example.mp3 and /dev/null differ diff --git a/files/18_0942_meaning.mp3 b/files/18_0942_meaning.mp3 deleted file mode 100644 index c3e566ade..000000000 Binary files a/files/18_0942_meaning.mp3 and /dev/null differ diff --git a/files/18_0943.jpg b/files/18_0943.jpg deleted file mode 100644 index b56092ad6..000000000 Binary files a/files/18_0943.jpg and /dev/null differ diff --git a/files/18_0943.mp3 b/files/18_0943.mp3 deleted file mode 100644 index 8c5bb9db8..000000000 Binary files a/files/18_0943.mp3 and /dev/null differ diff --git a/files/18_0943_example.mp3 b/files/18_0943_example.mp3 deleted file mode 100644 index 551f5bff4..000000000 Binary files a/files/18_0943_example.mp3 and /dev/null differ diff --git a/files/18_0943_meaning.mp3 b/files/18_0943_meaning.mp3 deleted file mode 100644 index 36d03cdad..000000000 Binary files a/files/18_0943_meaning.mp3 and /dev/null differ diff --git a/files/18_0944.jpg b/files/18_0944.jpg deleted file mode 100644 index 53fdd2f34..000000000 Binary files a/files/18_0944.jpg and /dev/null differ diff --git a/files/18_0944.mp3 b/files/18_0944.mp3 deleted file mode 100644 index 817baee7e..000000000 Binary files a/files/18_0944.mp3 and /dev/null differ diff --git a/files/18_0944_example.mp3 b/files/18_0944_example.mp3 deleted file mode 100644 index d776d7255..000000000 Binary files a/files/18_0944_example.mp3 and /dev/null differ diff --git a/files/18_0944_meaning.mp3 b/files/18_0944_meaning.mp3 deleted file mode 100644 index 8e2d56039..000000000 Binary files a/files/18_0944_meaning.mp3 and /dev/null differ diff --git a/files/18_0945.jpg b/files/18_0945.jpg deleted file mode 100644 index 0aaaf9ad9..000000000 Binary files a/files/18_0945.jpg and /dev/null differ diff --git a/files/18_0945.mp3 b/files/18_0945.mp3 deleted file mode 100644 index ded1dce31..000000000 Binary files a/files/18_0945.mp3 and /dev/null differ diff --git a/files/18_0945_example.mp3 b/files/18_0945_example.mp3 deleted file mode 100644 index 2e4fb77e3..000000000 Binary files a/files/18_0945_example.mp3 and /dev/null differ diff --git a/files/18_0945_meaning.mp3 b/files/18_0945_meaning.mp3 deleted file mode 100644 index aa0e98671..000000000 Binary files a/files/18_0945_meaning.mp3 and /dev/null differ diff --git a/files/18_0946.jpg b/files/18_0946.jpg deleted file mode 100644 index 5c3012842..000000000 Binary files a/files/18_0946.jpg and /dev/null differ diff --git a/files/18_0946.mp3 b/files/18_0946.mp3 deleted file mode 100644 index 774d16a47..000000000 Binary files a/files/18_0946.mp3 and /dev/null differ diff --git a/files/18_0946_example.mp3 b/files/18_0946_example.mp3 deleted file mode 100644 index 3fc0669bb..000000000 Binary files a/files/18_0946_example.mp3 and /dev/null differ diff --git a/files/18_0946_meaning.mp3 b/files/18_0946_meaning.mp3 deleted file mode 100644 index d452a57f3..000000000 Binary files a/files/18_0946_meaning.mp3 and /dev/null differ diff --git a/files/18_0947.jpg b/files/18_0947.jpg deleted file mode 100644 index 6b17b537c..000000000 Binary files a/files/18_0947.jpg and /dev/null differ diff --git a/files/18_0947.mp3 b/files/18_0947.mp3 deleted file mode 100644 index ff5e95e4f..000000000 Binary files a/files/18_0947.mp3 and /dev/null differ diff --git a/files/18_0947_example.mp3 b/files/18_0947_example.mp3 deleted file mode 100644 index e84b22755..000000000 Binary files a/files/18_0947_example.mp3 and /dev/null differ diff --git a/files/18_0947_meaning.mp3 b/files/18_0947_meaning.mp3 deleted file mode 100644 index f034904ed..000000000 Binary files a/files/18_0947_meaning.mp3 and /dev/null differ diff --git a/files/18_0948.jpg b/files/18_0948.jpg deleted file mode 100644 index a00ce1bab..000000000 Binary files a/files/18_0948.jpg and /dev/null differ diff --git a/files/18_0948.mp3 b/files/18_0948.mp3 deleted file mode 100644 index 924677ca5..000000000 Binary files a/files/18_0948.mp3 and /dev/null differ diff --git a/files/18_0948_example.mp3 b/files/18_0948_example.mp3 deleted file mode 100644 index 4390b39cf..000000000 Binary files a/files/18_0948_example.mp3 and /dev/null differ diff --git a/files/18_0948_meaning.mp3 b/files/18_0948_meaning.mp3 deleted file mode 100644 index 1cc829577..000000000 Binary files a/files/18_0948_meaning.mp3 and /dev/null differ diff --git a/files/18_0949.jpg b/files/18_0949.jpg deleted file mode 100644 index 92ee2338b..000000000 Binary files a/files/18_0949.jpg and /dev/null differ diff --git a/files/18_0949.mp3 b/files/18_0949.mp3 deleted file mode 100644 index 788b0e348..000000000 Binary files a/files/18_0949.mp3 and /dev/null differ diff --git a/files/18_0949_example.mp3 b/files/18_0949_example.mp3 deleted file mode 100644 index bc279d04f..000000000 Binary files a/files/18_0949_example.mp3 and /dev/null differ diff --git a/files/18_0949_meaning.mp3 b/files/18_0949_meaning.mp3 deleted file mode 100644 index d25df9f8a..000000000 Binary files a/files/18_0949_meaning.mp3 and /dev/null differ diff --git a/files/18_0950.jpg b/files/18_0950.jpg deleted file mode 100644 index 81042ed00..000000000 Binary files a/files/18_0950.jpg and /dev/null differ diff --git a/files/18_0950.mp3 b/files/18_0950.mp3 deleted file mode 100644 index 9d035c359..000000000 Binary files a/files/18_0950.mp3 and /dev/null differ diff --git a/files/18_0950_example.mp3 b/files/18_0950_example.mp3 deleted file mode 100644 index 6d866a08c..000000000 Binary files a/files/18_0950_example.mp3 and /dev/null differ diff --git a/files/18_0950_meaning.mp3 b/files/18_0950_meaning.mp3 deleted file mode 100644 index 8e9856ce0..000000000 Binary files a/files/18_0950_meaning.mp3 and /dev/null differ diff --git a/files/18_0951.jpg b/files/18_0951.jpg deleted file mode 100644 index 49fdc9c5f..000000000 Binary files a/files/18_0951.jpg and /dev/null differ diff --git a/files/18_0951.mp3 b/files/18_0951.mp3 deleted file mode 100644 index 5454557d2..000000000 Binary files a/files/18_0951.mp3 and /dev/null differ diff --git a/files/18_0951_example.mp3 b/files/18_0951_example.mp3 deleted file mode 100644 index 4b68d4377..000000000 Binary files a/files/18_0951_example.mp3 and /dev/null differ diff --git a/files/18_0951_meaning.mp3 b/files/18_0951_meaning.mp3 deleted file mode 100644 index 5647d6086..000000000 Binary files a/files/18_0951_meaning.mp3 and /dev/null differ diff --git a/files/18_0952.jpg b/files/18_0952.jpg deleted file mode 100644 index 61510689a..000000000 Binary files a/files/18_0952.jpg and /dev/null differ diff --git a/files/18_0952.mp3 b/files/18_0952.mp3 deleted file mode 100644 index 19a9354fc..000000000 Binary files a/files/18_0952.mp3 and /dev/null differ diff --git a/files/18_0952_example.mp3 b/files/18_0952_example.mp3 deleted file mode 100644 index c9465c73d..000000000 Binary files a/files/18_0952_example.mp3 and /dev/null differ diff --git a/files/18_0952_meaning.mp3 b/files/18_0952_meaning.mp3 deleted file mode 100644 index dae1fafdd..000000000 Binary files a/files/18_0952_meaning.mp3 and /dev/null differ diff --git a/files/18_0953.jpg b/files/18_0953.jpg deleted file mode 100644 index 33e4eff33..000000000 Binary files a/files/18_0953.jpg and /dev/null differ diff --git a/files/18_0953.mp3 b/files/18_0953.mp3 deleted file mode 100644 index 81edbf05d..000000000 Binary files a/files/18_0953.mp3 and /dev/null differ diff --git a/files/18_0953_example.mp3 b/files/18_0953_example.mp3 deleted file mode 100644 index baf38bc8f..000000000 Binary files a/files/18_0953_example.mp3 and /dev/null differ diff --git a/files/18_0953_meaning.mp3 b/files/18_0953_meaning.mp3 deleted file mode 100644 index 318b3a219..000000000 Binary files a/files/18_0953_meaning.mp3 and /dev/null differ diff --git a/files/18_0954.jpg b/files/18_0954.jpg deleted file mode 100644 index eed28c27b..000000000 Binary files a/files/18_0954.jpg and /dev/null differ diff --git a/files/18_0954.mp3 b/files/18_0954.mp3 deleted file mode 100644 index 4a73f84aa..000000000 Binary files a/files/18_0954.mp3 and /dev/null differ diff --git a/files/18_0954_example.mp3 b/files/18_0954_example.mp3 deleted file mode 100644 index 369bf53ae..000000000 Binary files a/files/18_0954_example.mp3 and /dev/null differ diff --git a/files/18_0954_meaning.mp3 b/files/18_0954_meaning.mp3 deleted file mode 100644 index 6ecdb56dc..000000000 Binary files a/files/18_0954_meaning.mp3 and /dev/null differ diff --git a/files/18_0955.jpg b/files/18_0955.jpg deleted file mode 100644 index 26adaaa85..000000000 Binary files a/files/18_0955.jpg and /dev/null differ diff --git a/files/18_0955.mp3 b/files/18_0955.mp3 deleted file mode 100644 index c541a2101..000000000 Binary files a/files/18_0955.mp3 and /dev/null differ diff --git a/files/18_0955_example.mp3 b/files/18_0955_example.mp3 deleted file mode 100644 index 1788c16a8..000000000 Binary files a/files/18_0955_example.mp3 and /dev/null differ diff --git a/files/18_0955_meaning.mp3 b/files/18_0955_meaning.mp3 deleted file mode 100644 index 0c81544dd..000000000 Binary files a/files/18_0955_meaning.mp3 and /dev/null differ diff --git a/files/18_0956.jpg b/files/18_0956.jpg deleted file mode 100644 index 39ae94960..000000000 Binary files a/files/18_0956.jpg and /dev/null differ diff --git a/files/18_0956.mp3 b/files/18_0956.mp3 deleted file mode 100644 index e77e0b7c7..000000000 Binary files a/files/18_0956.mp3 and /dev/null differ diff --git a/files/18_0956_example.mp3 b/files/18_0956_example.mp3 deleted file mode 100644 index 6e0814d0a..000000000 Binary files a/files/18_0956_example.mp3 and /dev/null differ diff --git a/files/18_0956_meaning.mp3 b/files/18_0956_meaning.mp3 deleted file mode 100644 index 35b6489e3..000000000 Binary files a/files/18_0956_meaning.mp3 and /dev/null differ diff --git a/files/18_0957.jpg b/files/18_0957.jpg deleted file mode 100644 index 14028a132..000000000 Binary files a/files/18_0957.jpg and /dev/null differ diff --git a/files/18_0957.mp3 b/files/18_0957.mp3 deleted file mode 100644 index b6b2b7f0f..000000000 Binary files a/files/18_0957.mp3 and /dev/null differ diff --git a/files/18_0957_example.mp3 b/files/18_0957_example.mp3 deleted file mode 100644 index aff1bdb3d..000000000 Binary files a/files/18_0957_example.mp3 and /dev/null differ diff --git a/files/18_0957_meaning.mp3 b/files/18_0957_meaning.mp3 deleted file mode 100644 index b4fcd7855..000000000 Binary files a/files/18_0957_meaning.mp3 and /dev/null differ diff --git a/files/18_0958.jpg b/files/18_0958.jpg deleted file mode 100644 index 0ce246cf3..000000000 Binary files a/files/18_0958.jpg and /dev/null differ diff --git a/files/18_0958.mp3 b/files/18_0958.mp3 deleted file mode 100644 index 29e395b23..000000000 Binary files a/files/18_0958.mp3 and /dev/null differ diff --git a/files/18_0958_example.mp3 b/files/18_0958_example.mp3 deleted file mode 100644 index d14a56214..000000000 Binary files a/files/18_0958_example.mp3 and /dev/null differ diff --git a/files/18_0958_meaning.mp3 b/files/18_0958_meaning.mp3 deleted file mode 100644 index 50a737823..000000000 Binary files a/files/18_0958_meaning.mp3 and /dev/null differ diff --git a/files/18_0959.jpg b/files/18_0959.jpg deleted file mode 100644 index 71062cc6c..000000000 Binary files a/files/18_0959.jpg and /dev/null differ diff --git a/files/18_0959.mp3 b/files/18_0959.mp3 deleted file mode 100644 index 012a3de87..000000000 Binary files a/files/18_0959.mp3 and /dev/null differ diff --git a/files/18_0959_example.mp3 b/files/18_0959_example.mp3 deleted file mode 100644 index 1acb93c2b..000000000 Binary files a/files/18_0959_example.mp3 and /dev/null differ diff --git a/files/18_0959_meaning.mp3 b/files/18_0959_meaning.mp3 deleted file mode 100644 index fe2779eb9..000000000 Binary files a/files/18_0959_meaning.mp3 and /dev/null differ diff --git a/files/18_0960.jpg b/files/18_0960.jpg deleted file mode 100644 index dac22a25d..000000000 Binary files a/files/18_0960.jpg and /dev/null differ diff --git a/files/18_0960.mp3 b/files/18_0960.mp3 deleted file mode 100644 index 935a6d75c..000000000 Binary files a/files/18_0960.mp3 and /dev/null differ diff --git a/files/18_0960_example.mp3 b/files/18_0960_example.mp3 deleted file mode 100644 index da3de4e44..000000000 Binary files a/files/18_0960_example.mp3 and /dev/null differ diff --git a/files/18_0960_meaning.mp3 b/files/18_0960_meaning.mp3 deleted file mode 100644 index 62f1e0225..000000000 Binary files a/files/18_0960_meaning.mp3 and /dev/null differ diff --git a/files/18_1541.jpg b/files/18_1541.jpg deleted file mode 100644 index cefab304a..000000000 Binary files a/files/18_1541.jpg and /dev/null differ diff --git a/files/18_1541.mp3 b/files/18_1541.mp3 deleted file mode 100644 index 1c5a8d22f..000000000 Binary files a/files/18_1541.mp3 and /dev/null differ diff --git a/files/18_1541_example.mp3 b/files/18_1541_example.mp3 deleted file mode 100644 index 60b209460..000000000 Binary files a/files/18_1541_example.mp3 and /dev/null differ diff --git a/files/18_1541_meaning.mp3 b/files/18_1541_meaning.mp3 deleted file mode 100644 index 499ed84e7..000000000 Binary files a/files/18_1541_meaning.mp3 and /dev/null differ diff --git a/files/18_1542.jpg b/files/18_1542.jpg deleted file mode 100644 index 409f64de8..000000000 Binary files a/files/18_1542.jpg and /dev/null differ diff --git a/files/18_1542.mp3 b/files/18_1542.mp3 deleted file mode 100644 index 44a63a8c7..000000000 Binary files a/files/18_1542.mp3 and /dev/null differ diff --git a/files/18_1542_example.mp3 b/files/18_1542_example.mp3 deleted file mode 100644 index 85f09314b..000000000 Binary files a/files/18_1542_example.mp3 and /dev/null differ diff --git a/files/18_1542_meaning.mp3 b/files/18_1542_meaning.mp3 deleted file mode 100644 index a4351c174..000000000 Binary files a/files/18_1542_meaning.mp3 and /dev/null differ diff --git a/files/18_1543.jpg b/files/18_1543.jpg deleted file mode 100644 index c62918bef..000000000 Binary files a/files/18_1543.jpg and /dev/null differ diff --git a/files/18_1543.mp3 b/files/18_1543.mp3 deleted file mode 100644 index cb4c20d01..000000000 Binary files a/files/18_1543.mp3 and /dev/null differ diff --git a/files/18_1543_example.mp3 b/files/18_1543_example.mp3 deleted file mode 100644 index 91bce2f1d..000000000 Binary files a/files/18_1543_example.mp3 and /dev/null differ diff --git a/files/18_1543_meaning.mp3 b/files/18_1543_meaning.mp3 deleted file mode 100644 index 4e3187c0f..000000000 Binary files a/files/18_1543_meaning.mp3 and /dev/null differ diff --git a/files/18_1544.jpg b/files/18_1544.jpg deleted file mode 100644 index ea61dddcd..000000000 Binary files a/files/18_1544.jpg and /dev/null differ diff --git a/files/18_1544.mp3 b/files/18_1544.mp3 deleted file mode 100644 index 041b6ade0..000000000 Binary files a/files/18_1544.mp3 and /dev/null differ diff --git a/files/18_1544_example.mp3 b/files/18_1544_example.mp3 deleted file mode 100644 index d04387c90..000000000 Binary files a/files/18_1544_example.mp3 and /dev/null differ diff --git a/files/18_1544_meaning.mp3 b/files/18_1544_meaning.mp3 deleted file mode 100644 index db6d32f0f..000000000 Binary files a/files/18_1544_meaning.mp3 and /dev/null differ diff --git a/files/18_1545.jpg b/files/18_1545.jpg deleted file mode 100644 index b93cf371b..000000000 Binary files a/files/18_1545.jpg and /dev/null differ diff --git a/files/18_1545.mp3 b/files/18_1545.mp3 deleted file mode 100644 index cf51d6f7f..000000000 Binary files a/files/18_1545.mp3 and /dev/null differ diff --git a/files/18_1545_example.mp3 b/files/18_1545_example.mp3 deleted file mode 100644 index bb415759b..000000000 Binary files a/files/18_1545_example.mp3 and /dev/null differ diff --git a/files/18_1545_meaning.mp3 b/files/18_1545_meaning.mp3 deleted file mode 100644 index 296f7bc32..000000000 Binary files a/files/18_1545_meaning.mp3 and /dev/null differ diff --git a/files/18_1546.jpg b/files/18_1546.jpg deleted file mode 100644 index 516fd08d1..000000000 Binary files a/files/18_1546.jpg and /dev/null differ diff --git a/files/18_1546.mp3 b/files/18_1546.mp3 deleted file mode 100644 index 69094b271..000000000 Binary files a/files/18_1546.mp3 and /dev/null differ diff --git a/files/18_1546_example.mp3 b/files/18_1546_example.mp3 deleted file mode 100644 index ca179c0c5..000000000 Binary files a/files/18_1546_example.mp3 and /dev/null differ diff --git a/files/18_1546_meaning.mp3 b/files/18_1546_meaning.mp3 deleted file mode 100644 index f5f9c117d..000000000 Binary files a/files/18_1546_meaning.mp3 and /dev/null differ diff --git a/files/18_1547.jpg b/files/18_1547.jpg deleted file mode 100644 index 81ddb5c09..000000000 Binary files a/files/18_1547.jpg and /dev/null differ diff --git a/files/18_1547.mp3 b/files/18_1547.mp3 deleted file mode 100644 index 1a2ce1e32..000000000 Binary files a/files/18_1547.mp3 and /dev/null differ diff --git a/files/18_1547_example.mp3 b/files/18_1547_example.mp3 deleted file mode 100644 index 30a148d55..000000000 Binary files a/files/18_1547_example.mp3 and /dev/null differ diff --git a/files/18_1547_meaning.mp3 b/files/18_1547_meaning.mp3 deleted file mode 100644 index acc864c25..000000000 Binary files a/files/18_1547_meaning.mp3 and /dev/null differ diff --git a/files/18_1548.jpg b/files/18_1548.jpg deleted file mode 100644 index bdbf94b04..000000000 Binary files a/files/18_1548.jpg and /dev/null differ diff --git a/files/18_1548.mp3 b/files/18_1548.mp3 deleted file mode 100644 index 41bdbc0cf..000000000 Binary files a/files/18_1548.mp3 and /dev/null differ diff --git a/files/18_1548_example.mp3 b/files/18_1548_example.mp3 deleted file mode 100644 index feb485371..000000000 Binary files a/files/18_1548_example.mp3 and /dev/null differ diff --git a/files/18_1548_meaning.mp3 b/files/18_1548_meaning.mp3 deleted file mode 100644 index 501a7826b..000000000 Binary files a/files/18_1548_meaning.mp3 and /dev/null differ diff --git a/files/18_1549.jpg b/files/18_1549.jpg deleted file mode 100644 index 639281dd5..000000000 Binary files a/files/18_1549.jpg and /dev/null differ diff --git a/files/18_1549.mp3 b/files/18_1549.mp3 deleted file mode 100644 index 13cff0c96..000000000 Binary files a/files/18_1549.mp3 and /dev/null differ diff --git a/files/18_1549_example.mp3 b/files/18_1549_example.mp3 deleted file mode 100644 index 8a2cd5e0a..000000000 Binary files a/files/18_1549_example.mp3 and /dev/null differ diff --git a/files/18_1549_meaning.mp3 b/files/18_1549_meaning.mp3 deleted file mode 100644 index e112c3841..000000000 Binary files a/files/18_1549_meaning.mp3 and /dev/null differ diff --git a/files/18_1550.jpg b/files/18_1550.jpg deleted file mode 100644 index ede09fce7..000000000 Binary files a/files/18_1550.jpg and /dev/null differ diff --git a/files/18_1550.mp3 b/files/18_1550.mp3 deleted file mode 100644 index 4f4335035..000000000 Binary files a/files/18_1550.mp3 and /dev/null differ diff --git a/files/18_1550_example.mp3 b/files/18_1550_example.mp3 deleted file mode 100644 index b0cdfb4cf..000000000 Binary files a/files/18_1550_example.mp3 and /dev/null differ diff --git a/files/18_1550_meaning.mp3 b/files/18_1550_meaning.mp3 deleted file mode 100644 index 334d56425..000000000 Binary files a/files/18_1550_meaning.mp3 and /dev/null differ diff --git a/files/18_1551.jpg b/files/18_1551.jpg deleted file mode 100644 index d3ae5a266..000000000 Binary files a/files/18_1551.jpg and /dev/null differ diff --git a/files/18_1551.mp3 b/files/18_1551.mp3 deleted file mode 100644 index d8579f1a7..000000000 Binary files a/files/18_1551.mp3 and /dev/null differ diff --git a/files/18_1551_example.mp3 b/files/18_1551_example.mp3 deleted file mode 100644 index ecac9d0b2..000000000 Binary files a/files/18_1551_example.mp3 and /dev/null differ diff --git a/files/18_1551_meaning.mp3 b/files/18_1551_meaning.mp3 deleted file mode 100644 index ca66f6ac8..000000000 Binary files a/files/18_1551_meaning.mp3 and /dev/null differ diff --git a/files/18_1552.jpg b/files/18_1552.jpg deleted file mode 100644 index 7b5326504..000000000 Binary files a/files/18_1552.jpg and /dev/null differ diff --git a/files/18_1552.mp3 b/files/18_1552.mp3 deleted file mode 100644 index 3a581e274..000000000 Binary files a/files/18_1552.mp3 and /dev/null differ diff --git a/files/18_1552_example.mp3 b/files/18_1552_example.mp3 deleted file mode 100644 index 9be01a818..000000000 Binary files a/files/18_1552_example.mp3 and /dev/null differ diff --git a/files/18_1552_meaning.mp3 b/files/18_1552_meaning.mp3 deleted file mode 100644 index c5297aaec..000000000 Binary files a/files/18_1552_meaning.mp3 and /dev/null differ diff --git a/files/18_1553.jpg b/files/18_1553.jpg deleted file mode 100644 index 963326542..000000000 Binary files a/files/18_1553.jpg and /dev/null differ diff --git a/files/18_1553.mp3 b/files/18_1553.mp3 deleted file mode 100644 index b61c6ce63..000000000 Binary files a/files/18_1553.mp3 and /dev/null differ diff --git a/files/18_1553_example.mp3 b/files/18_1553_example.mp3 deleted file mode 100644 index 4fd15f539..000000000 Binary files a/files/18_1553_example.mp3 and /dev/null differ diff --git a/files/18_1553_meaning.mp3 b/files/18_1553_meaning.mp3 deleted file mode 100644 index dc1f6005f..000000000 Binary files a/files/18_1553_meaning.mp3 and /dev/null differ diff --git a/files/18_1554.jpg b/files/18_1554.jpg deleted file mode 100644 index f3a4ad7bd..000000000 Binary files a/files/18_1554.jpg and /dev/null differ diff --git a/files/18_1554.mp3 b/files/18_1554.mp3 deleted file mode 100644 index 2bfa3a955..000000000 Binary files a/files/18_1554.mp3 and /dev/null differ diff --git a/files/18_1554_example.mp3 b/files/18_1554_example.mp3 deleted file mode 100644 index aafca24c6..000000000 Binary files a/files/18_1554_example.mp3 and /dev/null differ diff --git a/files/18_1554_meaning.mp3 b/files/18_1554_meaning.mp3 deleted file mode 100644 index 5128bf46d..000000000 Binary files a/files/18_1554_meaning.mp3 and /dev/null differ diff --git a/files/18_1555.jpg b/files/18_1555.jpg deleted file mode 100644 index f736fef99..000000000 Binary files a/files/18_1555.jpg and /dev/null differ diff --git a/files/18_1555.mp3 b/files/18_1555.mp3 deleted file mode 100644 index 65a27a074..000000000 Binary files a/files/18_1555.mp3 and /dev/null differ diff --git a/files/18_1555_example.mp3 b/files/18_1555_example.mp3 deleted file mode 100644 index ce047ce7a..000000000 Binary files a/files/18_1555_example.mp3 and /dev/null differ diff --git a/files/18_1555_meaning.mp3 b/files/18_1555_meaning.mp3 deleted file mode 100644 index 5a5128dde..000000000 Binary files a/files/18_1555_meaning.mp3 and /dev/null differ diff --git a/files/18_1556.jpg b/files/18_1556.jpg deleted file mode 100644 index 8d3f424bd..000000000 Binary files a/files/18_1556.jpg and /dev/null differ diff --git a/files/18_1556.mp3 b/files/18_1556.mp3 deleted file mode 100644 index 19210286a..000000000 Binary files a/files/18_1556.mp3 and /dev/null differ diff --git a/files/18_1556_example.mp3 b/files/18_1556_example.mp3 deleted file mode 100644 index 4458ceef2..000000000 Binary files a/files/18_1556_example.mp3 and /dev/null differ diff --git a/files/18_1556_meaning.mp3 b/files/18_1556_meaning.mp3 deleted file mode 100644 index 65c188e2e..000000000 Binary files a/files/18_1556_meaning.mp3 and /dev/null differ diff --git a/files/18_1557.jpg b/files/18_1557.jpg deleted file mode 100644 index 1beab53b3..000000000 Binary files a/files/18_1557.jpg and /dev/null differ diff --git a/files/18_1557.mp3 b/files/18_1557.mp3 deleted file mode 100644 index ea7c52838..000000000 Binary files a/files/18_1557.mp3 and /dev/null differ diff --git a/files/18_1557_example.mp3 b/files/18_1557_example.mp3 deleted file mode 100644 index d3c84edcb..000000000 Binary files a/files/18_1557_example.mp3 and /dev/null differ diff --git a/files/18_1557_meaning.mp3 b/files/18_1557_meaning.mp3 deleted file mode 100644 index ed2731586..000000000 Binary files a/files/18_1557_meaning.mp3 and /dev/null differ diff --git a/files/18_1558.jpg b/files/18_1558.jpg deleted file mode 100644 index 2b88c06f4..000000000 Binary files a/files/18_1558.jpg and /dev/null differ diff --git a/files/18_1558.mp3 b/files/18_1558.mp3 deleted file mode 100644 index df2d4334b..000000000 Binary files a/files/18_1558.mp3 and /dev/null differ diff --git a/files/18_1558_example.mp3 b/files/18_1558_example.mp3 deleted file mode 100644 index ccc766125..000000000 Binary files a/files/18_1558_example.mp3 and /dev/null differ diff --git a/files/18_1558_meaning.mp3 b/files/18_1558_meaning.mp3 deleted file mode 100644 index 44a286895..000000000 Binary files a/files/18_1558_meaning.mp3 and /dev/null differ diff --git a/files/18_1559.jpg b/files/18_1559.jpg deleted file mode 100644 index 0a5e236d6..000000000 Binary files a/files/18_1559.jpg and /dev/null differ diff --git a/files/18_1559.mp3 b/files/18_1559.mp3 deleted file mode 100644 index 6bffc797e..000000000 Binary files a/files/18_1559.mp3 and /dev/null differ diff --git a/files/18_1559_example.mp3 b/files/18_1559_example.mp3 deleted file mode 100644 index 43e22ea28..000000000 Binary files a/files/18_1559_example.mp3 and /dev/null differ diff --git a/files/18_1559_meaning.mp3 b/files/18_1559_meaning.mp3 deleted file mode 100644 index 1ececc0a6..000000000 Binary files a/files/18_1559_meaning.mp3 and /dev/null differ diff --git a/files/18_1560.jpg b/files/18_1560.jpg deleted file mode 100644 index 056e6c518..000000000 Binary files a/files/18_1560.jpg and /dev/null differ diff --git a/files/18_1560.mp3 b/files/18_1560.mp3 deleted file mode 100644 index d8eec128a..000000000 Binary files a/files/18_1560.mp3 and /dev/null differ diff --git a/files/18_1560_example.mp3 b/files/18_1560_example.mp3 deleted file mode 100644 index b190b38ff..000000000 Binary files a/files/18_1560_example.mp3 and /dev/null differ diff --git a/files/18_1560_meaning.mp3 b/files/18_1560_meaning.mp3 deleted file mode 100644 index d8b4e504d..000000000 Binary files a/files/18_1560_meaning.mp3 and /dev/null differ diff --git a/files/18_2141.jpg b/files/18_2141.jpg deleted file mode 100644 index b7e90f711..000000000 Binary files a/files/18_2141.jpg and /dev/null differ diff --git a/files/18_2141.mp3 b/files/18_2141.mp3 deleted file mode 100644 index c1e29a5bc..000000000 Binary files a/files/18_2141.mp3 and /dev/null differ diff --git a/files/18_2141_example.mp3 b/files/18_2141_example.mp3 deleted file mode 100644 index bf2d14bd8..000000000 Binary files a/files/18_2141_example.mp3 and /dev/null differ diff --git a/files/18_2141_meaning.mp3 b/files/18_2141_meaning.mp3 deleted file mode 100644 index eaf004465..000000000 Binary files a/files/18_2141_meaning.mp3 and /dev/null differ diff --git a/files/18_2142.jpg b/files/18_2142.jpg deleted file mode 100644 index 31a002761..000000000 Binary files a/files/18_2142.jpg and /dev/null differ diff --git a/files/18_2142.mp3 b/files/18_2142.mp3 deleted file mode 100644 index 88ad63d33..000000000 Binary files a/files/18_2142.mp3 and /dev/null differ diff --git a/files/18_2142_example.mp3 b/files/18_2142_example.mp3 deleted file mode 100644 index 0469f3846..000000000 Binary files a/files/18_2142_example.mp3 and /dev/null differ diff --git a/files/18_2142_meaning.mp3 b/files/18_2142_meaning.mp3 deleted file mode 100644 index 16c80e748..000000000 Binary files a/files/18_2142_meaning.mp3 and /dev/null differ diff --git a/files/18_2143.jpg b/files/18_2143.jpg deleted file mode 100644 index aa9962f2a..000000000 Binary files a/files/18_2143.jpg and /dev/null differ diff --git a/files/18_2143.mp3 b/files/18_2143.mp3 deleted file mode 100644 index 3218178b4..000000000 Binary files a/files/18_2143.mp3 and /dev/null differ diff --git a/files/18_2143_example.mp3 b/files/18_2143_example.mp3 deleted file mode 100644 index 987098f79..000000000 Binary files a/files/18_2143_example.mp3 and /dev/null differ diff --git a/files/18_2143_meaning.mp3 b/files/18_2143_meaning.mp3 deleted file mode 100644 index 713f804c0..000000000 Binary files a/files/18_2143_meaning.mp3 and /dev/null differ diff --git a/files/18_2144.jpg b/files/18_2144.jpg deleted file mode 100644 index b49d72498..000000000 Binary files a/files/18_2144.jpg and /dev/null differ diff --git a/files/18_2144.mp3 b/files/18_2144.mp3 deleted file mode 100644 index 87a61034c..000000000 Binary files a/files/18_2144.mp3 and /dev/null differ diff --git a/files/18_2144_example.mp3 b/files/18_2144_example.mp3 deleted file mode 100644 index 748d38874..000000000 Binary files a/files/18_2144_example.mp3 and /dev/null differ diff --git a/files/18_2144_meaning.mp3 b/files/18_2144_meaning.mp3 deleted file mode 100644 index f00837fe3..000000000 Binary files a/files/18_2144_meaning.mp3 and /dev/null differ diff --git a/files/18_2145.jpg b/files/18_2145.jpg deleted file mode 100644 index 65012b648..000000000 Binary files a/files/18_2145.jpg and /dev/null differ diff --git a/files/18_2145.mp3 b/files/18_2145.mp3 deleted file mode 100644 index b4726d704..000000000 Binary files a/files/18_2145.mp3 and /dev/null differ diff --git a/files/18_2145_example.mp3 b/files/18_2145_example.mp3 deleted file mode 100644 index 53fd8c32e..000000000 Binary files a/files/18_2145_example.mp3 and /dev/null differ diff --git a/files/18_2145_meaning.mp3 b/files/18_2145_meaning.mp3 deleted file mode 100644 index 8ca8e1863..000000000 Binary files a/files/18_2145_meaning.mp3 and /dev/null differ diff --git a/files/18_2146.jpg b/files/18_2146.jpg deleted file mode 100644 index cc7d6be39..000000000 Binary files a/files/18_2146.jpg and /dev/null differ diff --git a/files/18_2146.mp3 b/files/18_2146.mp3 deleted file mode 100644 index 3bf9d1c33..000000000 Binary files a/files/18_2146.mp3 and /dev/null differ diff --git a/files/18_2146_example.mp3 b/files/18_2146_example.mp3 deleted file mode 100644 index 222f925b0..000000000 Binary files a/files/18_2146_example.mp3 and /dev/null differ diff --git a/files/18_2146_meaning.mp3 b/files/18_2146_meaning.mp3 deleted file mode 100644 index e50d03bd0..000000000 Binary files a/files/18_2146_meaning.mp3 and /dev/null differ diff --git a/files/18_2147.jpg b/files/18_2147.jpg deleted file mode 100644 index f8ade3e79..000000000 Binary files a/files/18_2147.jpg and /dev/null differ diff --git a/files/18_2147.mp3 b/files/18_2147.mp3 deleted file mode 100644 index aa83842bf..000000000 Binary files a/files/18_2147.mp3 and /dev/null differ diff --git a/files/18_2147_example.mp3 b/files/18_2147_example.mp3 deleted file mode 100644 index 265db1e4f..000000000 Binary files a/files/18_2147_example.mp3 and /dev/null differ diff --git a/files/18_2147_meaning.mp3 b/files/18_2147_meaning.mp3 deleted file mode 100644 index e22eccfee..000000000 Binary files a/files/18_2147_meaning.mp3 and /dev/null differ diff --git a/files/18_2148.jpg b/files/18_2148.jpg deleted file mode 100644 index 126d7fba7..000000000 Binary files a/files/18_2148.jpg and /dev/null differ diff --git a/files/18_2148.mp3 b/files/18_2148.mp3 deleted file mode 100644 index 26c0981e8..000000000 Binary files a/files/18_2148.mp3 and /dev/null differ diff --git a/files/18_2148_example.mp3 b/files/18_2148_example.mp3 deleted file mode 100644 index 44af674a2..000000000 Binary files a/files/18_2148_example.mp3 and /dev/null differ diff --git a/files/18_2148_meaning.mp3 b/files/18_2148_meaning.mp3 deleted file mode 100644 index d6711f32c..000000000 Binary files a/files/18_2148_meaning.mp3 and /dev/null differ diff --git a/files/18_2149.jpg b/files/18_2149.jpg deleted file mode 100644 index bb0d184d9..000000000 Binary files a/files/18_2149.jpg and /dev/null differ diff --git a/files/18_2149.mp3 b/files/18_2149.mp3 deleted file mode 100644 index a3d431643..000000000 Binary files a/files/18_2149.mp3 and /dev/null differ diff --git a/files/18_2149_example.mp3 b/files/18_2149_example.mp3 deleted file mode 100644 index 2b8524ab0..000000000 Binary files a/files/18_2149_example.mp3 and /dev/null differ diff --git a/files/18_2149_meaning.mp3 b/files/18_2149_meaning.mp3 deleted file mode 100644 index f92fc27a4..000000000 Binary files a/files/18_2149_meaning.mp3 and /dev/null differ diff --git a/files/18_2150.jpg b/files/18_2150.jpg deleted file mode 100644 index a28967158..000000000 Binary files a/files/18_2150.jpg and /dev/null differ diff --git a/files/18_2150.mp3 b/files/18_2150.mp3 deleted file mode 100644 index 458a06c1e..000000000 Binary files a/files/18_2150.mp3 and /dev/null differ diff --git a/files/18_2150_example.mp3 b/files/18_2150_example.mp3 deleted file mode 100644 index c3946d463..000000000 Binary files a/files/18_2150_example.mp3 and /dev/null differ diff --git a/files/18_2150_meaning.mp3 b/files/18_2150_meaning.mp3 deleted file mode 100644 index 83f227f78..000000000 Binary files a/files/18_2150_meaning.mp3 and /dev/null differ diff --git a/files/18_2151.jpg b/files/18_2151.jpg deleted file mode 100644 index f55811d83..000000000 Binary files a/files/18_2151.jpg and /dev/null differ diff --git a/files/18_2151.mp3 b/files/18_2151.mp3 deleted file mode 100644 index c3f62206b..000000000 Binary files a/files/18_2151.mp3 and /dev/null differ diff --git a/files/18_2151_example.mp3 b/files/18_2151_example.mp3 deleted file mode 100644 index 3a3ba5b0d..000000000 Binary files a/files/18_2151_example.mp3 and /dev/null differ diff --git a/files/18_2151_meaning.mp3 b/files/18_2151_meaning.mp3 deleted file mode 100644 index fc6520e42..000000000 Binary files a/files/18_2151_meaning.mp3 and /dev/null differ diff --git a/files/18_2152.jpg b/files/18_2152.jpg deleted file mode 100644 index 510f78eff..000000000 Binary files a/files/18_2152.jpg and /dev/null differ diff --git a/files/18_2152.mp3 b/files/18_2152.mp3 deleted file mode 100644 index 9120a2bcd..000000000 Binary files a/files/18_2152.mp3 and /dev/null differ diff --git a/files/18_2152_example.mp3 b/files/18_2152_example.mp3 deleted file mode 100644 index 4dc3d6404..000000000 Binary files a/files/18_2152_example.mp3 and /dev/null differ diff --git a/files/18_2152_meaning.mp3 b/files/18_2152_meaning.mp3 deleted file mode 100644 index 5f655da35..000000000 Binary files a/files/18_2152_meaning.mp3 and /dev/null differ diff --git a/files/18_2153.jpg b/files/18_2153.jpg deleted file mode 100644 index c040ec2c8..000000000 Binary files a/files/18_2153.jpg and /dev/null differ diff --git a/files/18_2153.mp3 b/files/18_2153.mp3 deleted file mode 100644 index e84991703..000000000 Binary files a/files/18_2153.mp3 and /dev/null differ diff --git a/files/18_2153_example.mp3 b/files/18_2153_example.mp3 deleted file mode 100644 index b1e8564f0..000000000 Binary files a/files/18_2153_example.mp3 and /dev/null differ diff --git a/files/18_2153_meaning.mp3 b/files/18_2153_meaning.mp3 deleted file mode 100644 index 7af030360..000000000 Binary files a/files/18_2153_meaning.mp3 and /dev/null differ diff --git a/files/18_2154.jpg b/files/18_2154.jpg deleted file mode 100644 index ae3f32009..000000000 Binary files a/files/18_2154.jpg and /dev/null differ diff --git a/files/18_2154.mp3 b/files/18_2154.mp3 deleted file mode 100644 index b675517cd..000000000 Binary files a/files/18_2154.mp3 and /dev/null differ diff --git a/files/18_2154_example.mp3 b/files/18_2154_example.mp3 deleted file mode 100644 index 8229bb5af..000000000 Binary files a/files/18_2154_example.mp3 and /dev/null differ diff --git a/files/18_2154_meaning.mp3 b/files/18_2154_meaning.mp3 deleted file mode 100644 index a68ef5a4f..000000000 Binary files a/files/18_2154_meaning.mp3 and /dev/null differ diff --git a/files/18_2155.jpg b/files/18_2155.jpg deleted file mode 100644 index 6099d4784..000000000 Binary files a/files/18_2155.jpg and /dev/null differ diff --git a/files/18_2155.mp3 b/files/18_2155.mp3 deleted file mode 100644 index c6014f6bc..000000000 Binary files a/files/18_2155.mp3 and /dev/null differ diff --git a/files/18_2155_example.mp3 b/files/18_2155_example.mp3 deleted file mode 100644 index 3a7823686..000000000 Binary files a/files/18_2155_example.mp3 and /dev/null differ diff --git a/files/18_2155_meaning.mp3 b/files/18_2155_meaning.mp3 deleted file mode 100644 index 28dcffecc..000000000 Binary files a/files/18_2155_meaning.mp3 and /dev/null differ diff --git a/files/18_2156.jpg b/files/18_2156.jpg deleted file mode 100644 index 1c39d0991..000000000 Binary files a/files/18_2156.jpg and /dev/null differ diff --git a/files/18_2156.mp3 b/files/18_2156.mp3 deleted file mode 100644 index 5635dbfa4..000000000 Binary files a/files/18_2156.mp3 and /dev/null differ diff --git a/files/18_2156_example.mp3 b/files/18_2156_example.mp3 deleted file mode 100644 index 11964a01a..000000000 Binary files a/files/18_2156_example.mp3 and /dev/null differ diff --git a/files/18_2156_meaning.mp3 b/files/18_2156_meaning.mp3 deleted file mode 100644 index d92c65a65..000000000 Binary files a/files/18_2156_meaning.mp3 and /dev/null differ diff --git a/files/18_2157.jpg b/files/18_2157.jpg deleted file mode 100644 index 153ca8bdf..000000000 Binary files a/files/18_2157.jpg and /dev/null differ diff --git a/files/18_2157.mp3 b/files/18_2157.mp3 deleted file mode 100644 index 1dbbb906f..000000000 Binary files a/files/18_2157.mp3 and /dev/null differ diff --git a/files/18_2157_example.mp3 b/files/18_2157_example.mp3 deleted file mode 100644 index 33a9f6107..000000000 Binary files a/files/18_2157_example.mp3 and /dev/null differ diff --git a/files/18_2157_meaning.mp3 b/files/18_2157_meaning.mp3 deleted file mode 100644 index 9720ba0b3..000000000 Binary files a/files/18_2157_meaning.mp3 and /dev/null differ diff --git a/files/18_2158.jpg b/files/18_2158.jpg deleted file mode 100644 index 72780c288..000000000 Binary files a/files/18_2158.jpg and /dev/null differ diff --git a/files/18_2158.mp3 b/files/18_2158.mp3 deleted file mode 100644 index f6f0875b0..000000000 Binary files a/files/18_2158.mp3 and /dev/null differ diff --git a/files/18_2158_example.mp3 b/files/18_2158_example.mp3 deleted file mode 100644 index 862f352c3..000000000 Binary files a/files/18_2158_example.mp3 and /dev/null differ diff --git a/files/18_2158_meaning.mp3 b/files/18_2158_meaning.mp3 deleted file mode 100644 index b43aaed52..000000000 Binary files a/files/18_2158_meaning.mp3 and /dev/null differ diff --git a/files/18_2159.jpg b/files/18_2159.jpg deleted file mode 100644 index 72334666b..000000000 Binary files a/files/18_2159.jpg and /dev/null differ diff --git a/files/18_2159.mp3 b/files/18_2159.mp3 deleted file mode 100644 index 9fd7f0284..000000000 Binary files a/files/18_2159.mp3 and /dev/null differ diff --git a/files/18_2159_example.mp3 b/files/18_2159_example.mp3 deleted file mode 100644 index bc3f558fd..000000000 Binary files a/files/18_2159_example.mp3 and /dev/null differ diff --git a/files/18_2159_meaning.mp3 b/files/18_2159_meaning.mp3 deleted file mode 100644 index 976843d4f..000000000 Binary files a/files/18_2159_meaning.mp3 and /dev/null differ diff --git a/files/18_2160.jpg b/files/18_2160.jpg deleted file mode 100644 index 0f5b1cde4..000000000 Binary files a/files/18_2160.jpg and /dev/null differ diff --git a/files/18_2160.mp3 b/files/18_2160.mp3 deleted file mode 100644 index ea8f6e2ee..000000000 Binary files a/files/18_2160.mp3 and /dev/null differ diff --git a/files/18_2160_example.mp3 b/files/18_2160_example.mp3 deleted file mode 100644 index b557d6b17..000000000 Binary files a/files/18_2160_example.mp3 and /dev/null differ diff --git a/files/18_2160_meaning.mp3 b/files/18_2160_meaning.mp3 deleted file mode 100644 index 19bd3841f..000000000 Binary files a/files/18_2160_meaning.mp3 and /dev/null differ diff --git a/files/18_2741.jpg b/files/18_2741.jpg deleted file mode 100644 index 567e2608a..000000000 Binary files a/files/18_2741.jpg and /dev/null differ diff --git a/files/18_2741.mp3 b/files/18_2741.mp3 deleted file mode 100644 index 5e0148b0d..000000000 Binary files a/files/18_2741.mp3 and /dev/null differ diff --git a/files/18_2741_example.mp3 b/files/18_2741_example.mp3 deleted file mode 100644 index a8bc62035..000000000 Binary files a/files/18_2741_example.mp3 and /dev/null differ diff --git a/files/18_2741_meaning.mp3 b/files/18_2741_meaning.mp3 deleted file mode 100644 index bd715f4c2..000000000 Binary files a/files/18_2741_meaning.mp3 and /dev/null differ diff --git a/files/18_2742.jpg b/files/18_2742.jpg deleted file mode 100644 index 1c8a88ccb..000000000 Binary files a/files/18_2742.jpg and /dev/null differ diff --git a/files/18_2742.mp3 b/files/18_2742.mp3 deleted file mode 100644 index 242215ae3..000000000 Binary files a/files/18_2742.mp3 and /dev/null differ diff --git a/files/18_2742_example.mp3 b/files/18_2742_example.mp3 deleted file mode 100644 index 41194b3f3..000000000 Binary files a/files/18_2742_example.mp3 and /dev/null differ diff --git a/files/18_2742_meaning.mp3 b/files/18_2742_meaning.mp3 deleted file mode 100644 index 55fb1bb3b..000000000 Binary files a/files/18_2742_meaning.mp3 and /dev/null differ diff --git a/files/18_2743.jpg b/files/18_2743.jpg deleted file mode 100644 index e53b01db9..000000000 Binary files a/files/18_2743.jpg and /dev/null differ diff --git a/files/18_2743.mp3 b/files/18_2743.mp3 deleted file mode 100644 index 1d256c9a2..000000000 Binary files a/files/18_2743.mp3 and /dev/null differ diff --git a/files/18_2743_example.mp3 b/files/18_2743_example.mp3 deleted file mode 100644 index e500600ec..000000000 Binary files a/files/18_2743_example.mp3 and /dev/null differ diff --git a/files/18_2743_meaning.mp3 b/files/18_2743_meaning.mp3 deleted file mode 100644 index e9c763680..000000000 Binary files a/files/18_2743_meaning.mp3 and /dev/null differ diff --git a/files/18_2744.jpg b/files/18_2744.jpg deleted file mode 100644 index c2cb956c3..000000000 Binary files a/files/18_2744.jpg and /dev/null differ diff --git a/files/18_2744.mp3 b/files/18_2744.mp3 deleted file mode 100644 index ae16e9f68..000000000 Binary files a/files/18_2744.mp3 and /dev/null differ diff --git a/files/18_2744_example.mp3 b/files/18_2744_example.mp3 deleted file mode 100644 index d0daf7536..000000000 Binary files a/files/18_2744_example.mp3 and /dev/null differ diff --git a/files/18_2744_meaning.mp3 b/files/18_2744_meaning.mp3 deleted file mode 100644 index 692825b29..000000000 Binary files a/files/18_2744_meaning.mp3 and /dev/null differ diff --git a/files/18_2745.jpg b/files/18_2745.jpg deleted file mode 100644 index 6363f0f64..000000000 Binary files a/files/18_2745.jpg and /dev/null differ diff --git a/files/18_2745.mp3 b/files/18_2745.mp3 deleted file mode 100644 index 5f0bd009f..000000000 Binary files a/files/18_2745.mp3 and /dev/null differ diff --git a/files/18_2745_example.mp3 b/files/18_2745_example.mp3 deleted file mode 100644 index d6130ff7b..000000000 Binary files a/files/18_2745_example.mp3 and /dev/null differ diff --git a/files/18_2745_meaning.mp3 b/files/18_2745_meaning.mp3 deleted file mode 100644 index dc17951e2..000000000 Binary files a/files/18_2745_meaning.mp3 and /dev/null differ diff --git a/files/18_2746.jpg b/files/18_2746.jpg deleted file mode 100644 index 5bd91d323..000000000 Binary files a/files/18_2746.jpg and /dev/null differ diff --git a/files/18_2746.mp3 b/files/18_2746.mp3 deleted file mode 100644 index 0dc44b243..000000000 Binary files a/files/18_2746.mp3 and /dev/null differ diff --git a/files/18_2746_example.mp3 b/files/18_2746_example.mp3 deleted file mode 100644 index 756b42262..000000000 Binary files a/files/18_2746_example.mp3 and /dev/null differ diff --git a/files/18_2746_meaning.mp3 b/files/18_2746_meaning.mp3 deleted file mode 100644 index 875fe4924..000000000 Binary files a/files/18_2746_meaning.mp3 and /dev/null differ diff --git a/files/18_2747.jpg b/files/18_2747.jpg deleted file mode 100644 index fed0888b1..000000000 Binary files a/files/18_2747.jpg and /dev/null differ diff --git a/files/18_2747.mp3 b/files/18_2747.mp3 deleted file mode 100644 index fba790ca6..000000000 Binary files a/files/18_2747.mp3 and /dev/null differ diff --git a/files/18_2747_example.mp3 b/files/18_2747_example.mp3 deleted file mode 100644 index 0be2cc3ce..000000000 Binary files a/files/18_2747_example.mp3 and /dev/null differ diff --git a/files/18_2747_meaning.mp3 b/files/18_2747_meaning.mp3 deleted file mode 100644 index d04918d89..000000000 Binary files a/files/18_2747_meaning.mp3 and /dev/null differ diff --git a/files/18_2748.jpg b/files/18_2748.jpg deleted file mode 100644 index bbbb0f6ae..000000000 Binary files a/files/18_2748.jpg and /dev/null differ diff --git a/files/18_2748.mp3 b/files/18_2748.mp3 deleted file mode 100644 index 00d1db1c6..000000000 Binary files a/files/18_2748.mp3 and /dev/null differ diff --git a/files/18_2748_example.mp3 b/files/18_2748_example.mp3 deleted file mode 100644 index 164b4ea6e..000000000 Binary files a/files/18_2748_example.mp3 and /dev/null differ diff --git a/files/18_2748_meaning.mp3 b/files/18_2748_meaning.mp3 deleted file mode 100644 index 72991f70d..000000000 Binary files a/files/18_2748_meaning.mp3 and /dev/null differ diff --git a/files/18_2749.jpg b/files/18_2749.jpg deleted file mode 100644 index a5a2d7fe1..000000000 Binary files a/files/18_2749.jpg and /dev/null differ diff --git a/files/18_2749.mp3 b/files/18_2749.mp3 deleted file mode 100644 index 2008fa386..000000000 Binary files a/files/18_2749.mp3 and /dev/null differ diff --git a/files/18_2749_example.mp3 b/files/18_2749_example.mp3 deleted file mode 100644 index 7360d45de..000000000 Binary files a/files/18_2749_example.mp3 and /dev/null differ diff --git a/files/18_2749_meaning.mp3 b/files/18_2749_meaning.mp3 deleted file mode 100644 index 028d69571..000000000 Binary files a/files/18_2749_meaning.mp3 and /dev/null differ diff --git a/files/18_2750.jpg b/files/18_2750.jpg deleted file mode 100644 index e28e6465a..000000000 Binary files a/files/18_2750.jpg and /dev/null differ diff --git a/files/18_2750.mp3 b/files/18_2750.mp3 deleted file mode 100644 index 42e2b3e4e..000000000 Binary files a/files/18_2750.mp3 and /dev/null differ diff --git a/files/18_2750_example.mp3 b/files/18_2750_example.mp3 deleted file mode 100644 index 51143e22f..000000000 Binary files a/files/18_2750_example.mp3 and /dev/null differ diff --git a/files/18_2750_meaning.mp3 b/files/18_2750_meaning.mp3 deleted file mode 100644 index 687e346a4..000000000 Binary files a/files/18_2750_meaning.mp3 and /dev/null differ diff --git a/files/18_2751.jpg b/files/18_2751.jpg deleted file mode 100644 index 0f0e4be83..000000000 Binary files a/files/18_2751.jpg and /dev/null differ diff --git a/files/18_2751.mp3 b/files/18_2751.mp3 deleted file mode 100644 index 776e26322..000000000 Binary files a/files/18_2751.mp3 and /dev/null differ diff --git a/files/18_2751_example.mp3 b/files/18_2751_example.mp3 deleted file mode 100644 index 43ce72486..000000000 Binary files a/files/18_2751_example.mp3 and /dev/null differ diff --git a/files/18_2751_meaning.mp3 b/files/18_2751_meaning.mp3 deleted file mode 100644 index 0893e2071..000000000 Binary files a/files/18_2751_meaning.mp3 and /dev/null differ diff --git a/files/18_2752.jpg b/files/18_2752.jpg deleted file mode 100644 index f96c20c5d..000000000 Binary files a/files/18_2752.jpg and /dev/null differ diff --git a/files/18_2752.mp3 b/files/18_2752.mp3 deleted file mode 100644 index c8866d442..000000000 Binary files a/files/18_2752.mp3 and /dev/null differ diff --git a/files/18_2752_example.mp3 b/files/18_2752_example.mp3 deleted file mode 100644 index 9a9372c6d..000000000 Binary files a/files/18_2752_example.mp3 and /dev/null differ diff --git a/files/18_2752_meaning.mp3 b/files/18_2752_meaning.mp3 deleted file mode 100644 index c01d2d5dc..000000000 Binary files a/files/18_2752_meaning.mp3 and /dev/null differ diff --git a/files/18_2753.jpg b/files/18_2753.jpg deleted file mode 100644 index 3fed73789..000000000 Binary files a/files/18_2753.jpg and /dev/null differ diff --git a/files/18_2753.mp3 b/files/18_2753.mp3 deleted file mode 100644 index 6fa5027e0..000000000 Binary files a/files/18_2753.mp3 and /dev/null differ diff --git a/files/18_2753_example.mp3 b/files/18_2753_example.mp3 deleted file mode 100644 index 52bd78f96..000000000 Binary files a/files/18_2753_example.mp3 and /dev/null differ diff --git a/files/18_2753_meaning.mp3 b/files/18_2753_meaning.mp3 deleted file mode 100644 index 72e439f83..000000000 Binary files a/files/18_2753_meaning.mp3 and /dev/null differ diff --git a/files/18_2754.jpg b/files/18_2754.jpg deleted file mode 100644 index 3142ab7ce..000000000 Binary files a/files/18_2754.jpg and /dev/null differ diff --git a/files/18_2754.mp3 b/files/18_2754.mp3 deleted file mode 100644 index 4bf26c629..000000000 Binary files a/files/18_2754.mp3 and /dev/null differ diff --git a/files/18_2754_example.mp3 b/files/18_2754_example.mp3 deleted file mode 100644 index ca684e993..000000000 Binary files a/files/18_2754_example.mp3 and /dev/null differ diff --git a/files/18_2754_meaning.mp3 b/files/18_2754_meaning.mp3 deleted file mode 100644 index 106fc2b69..000000000 Binary files a/files/18_2754_meaning.mp3 and /dev/null differ diff --git a/files/18_2755.jpg b/files/18_2755.jpg deleted file mode 100644 index de0579c86..000000000 Binary files a/files/18_2755.jpg and /dev/null differ diff --git a/files/18_2755.mp3 b/files/18_2755.mp3 deleted file mode 100644 index d699309ce..000000000 Binary files a/files/18_2755.mp3 and /dev/null differ diff --git a/files/18_2755_example.mp3 b/files/18_2755_example.mp3 deleted file mode 100644 index 882c43dcd..000000000 Binary files a/files/18_2755_example.mp3 and /dev/null differ diff --git a/files/18_2755_meaning.mp3 b/files/18_2755_meaning.mp3 deleted file mode 100644 index 894f03276..000000000 Binary files a/files/18_2755_meaning.mp3 and /dev/null differ diff --git a/files/18_2756.jpg b/files/18_2756.jpg deleted file mode 100644 index 49bdb8956..000000000 Binary files a/files/18_2756.jpg and /dev/null differ diff --git a/files/18_2756.mp3 b/files/18_2756.mp3 deleted file mode 100644 index 42f21403f..000000000 Binary files a/files/18_2756.mp3 and /dev/null differ diff --git a/files/18_2756_example.mp3 b/files/18_2756_example.mp3 deleted file mode 100644 index 376334ef0..000000000 Binary files a/files/18_2756_example.mp3 and /dev/null differ diff --git a/files/18_2756_meaning.mp3 b/files/18_2756_meaning.mp3 deleted file mode 100644 index ff4f3d123..000000000 Binary files a/files/18_2756_meaning.mp3 and /dev/null differ diff --git a/files/18_2757.jpg b/files/18_2757.jpg deleted file mode 100644 index e5a8e30fb..000000000 Binary files a/files/18_2757.jpg and /dev/null differ diff --git a/files/18_2757.mp3 b/files/18_2757.mp3 deleted file mode 100644 index 464c8e254..000000000 Binary files a/files/18_2757.mp3 and /dev/null differ diff --git a/files/18_2757_example.mp3 b/files/18_2757_example.mp3 deleted file mode 100644 index d92834f67..000000000 Binary files a/files/18_2757_example.mp3 and /dev/null differ diff --git a/files/18_2757_meaning.mp3 b/files/18_2757_meaning.mp3 deleted file mode 100644 index 8d995c120..000000000 Binary files a/files/18_2757_meaning.mp3 and /dev/null differ diff --git a/files/18_2758.jpg b/files/18_2758.jpg deleted file mode 100644 index 1e424008e..000000000 Binary files a/files/18_2758.jpg and /dev/null differ diff --git a/files/18_2758.mp3 b/files/18_2758.mp3 deleted file mode 100644 index b71b258f2..000000000 Binary files a/files/18_2758.mp3 and /dev/null differ diff --git a/files/18_2758_example.mp3 b/files/18_2758_example.mp3 deleted file mode 100644 index e36571d9a..000000000 Binary files a/files/18_2758_example.mp3 and /dev/null differ diff --git a/files/18_2758_meaning.mp3 b/files/18_2758_meaning.mp3 deleted file mode 100644 index b2f9d0da9..000000000 Binary files a/files/18_2758_meaning.mp3 and /dev/null differ diff --git a/files/18_2759.jpg b/files/18_2759.jpg deleted file mode 100644 index fb1180b9a..000000000 Binary files a/files/18_2759.jpg and /dev/null differ diff --git a/files/18_2759.mp3 b/files/18_2759.mp3 deleted file mode 100644 index 326637d3b..000000000 Binary files a/files/18_2759.mp3 and /dev/null differ diff --git a/files/18_2759_example.mp3 b/files/18_2759_example.mp3 deleted file mode 100644 index 5ed9973e1..000000000 Binary files a/files/18_2759_example.mp3 and /dev/null differ diff --git a/files/18_2759_meaning.mp3 b/files/18_2759_meaning.mp3 deleted file mode 100644 index e4584e915..000000000 Binary files a/files/18_2759_meaning.mp3 and /dev/null differ diff --git a/files/18_2760.jpg b/files/18_2760.jpg deleted file mode 100644 index b00d2741d..000000000 Binary files a/files/18_2760.jpg and /dev/null differ diff --git a/files/18_2760.mp3 b/files/18_2760.mp3 deleted file mode 100644 index 5dc33f9a2..000000000 Binary files a/files/18_2760.mp3 and /dev/null differ diff --git a/files/18_2760_example.mp3 b/files/18_2760_example.mp3 deleted file mode 100644 index 3c02ad7bf..000000000 Binary files a/files/18_2760_example.mp3 and /dev/null differ diff --git a/files/18_2760_meaning.mp3 b/files/18_2760_meaning.mp3 deleted file mode 100644 index d2eeb2798..000000000 Binary files a/files/18_2760_meaning.mp3 and /dev/null differ diff --git a/files/18_3341.jpg b/files/18_3341.jpg deleted file mode 100644 index 12f99caf4..000000000 Binary files a/files/18_3341.jpg and /dev/null differ diff --git a/files/18_3341.mp3 b/files/18_3341.mp3 deleted file mode 100644 index bf920808b..000000000 Binary files a/files/18_3341.mp3 and /dev/null differ diff --git a/files/18_3341_example.mp3 b/files/18_3341_example.mp3 deleted file mode 100644 index 41aeee597..000000000 Binary files a/files/18_3341_example.mp3 and /dev/null differ diff --git a/files/18_3341_meaning.mp3 b/files/18_3341_meaning.mp3 deleted file mode 100644 index e1c70b9c4..000000000 Binary files a/files/18_3341_meaning.mp3 and /dev/null differ diff --git a/files/18_3342.jpg b/files/18_3342.jpg deleted file mode 100644 index bd07ecb75..000000000 Binary files a/files/18_3342.jpg and /dev/null differ diff --git a/files/18_3342.mp3 b/files/18_3342.mp3 deleted file mode 100644 index 4018dcbed..000000000 Binary files a/files/18_3342.mp3 and /dev/null differ diff --git a/files/18_3342_example.mp3 b/files/18_3342_example.mp3 deleted file mode 100644 index 7d55b906e..000000000 Binary files a/files/18_3342_example.mp3 and /dev/null differ diff --git a/files/18_3342_meaning.mp3 b/files/18_3342_meaning.mp3 deleted file mode 100644 index cf5222376..000000000 Binary files a/files/18_3342_meaning.mp3 and /dev/null differ diff --git a/files/18_3343.jpg b/files/18_3343.jpg deleted file mode 100644 index 5a4cb5a7f..000000000 Binary files a/files/18_3343.jpg and /dev/null differ diff --git a/files/18_3343.mp3 b/files/18_3343.mp3 deleted file mode 100644 index 3258e2402..000000000 Binary files a/files/18_3343.mp3 and /dev/null differ diff --git a/files/18_3343_example.mp3 b/files/18_3343_example.mp3 deleted file mode 100644 index 1b1af9833..000000000 Binary files a/files/18_3343_example.mp3 and /dev/null differ diff --git a/files/18_3343_meaning.mp3 b/files/18_3343_meaning.mp3 deleted file mode 100644 index ecfe11226..000000000 Binary files a/files/18_3343_meaning.mp3 and /dev/null differ diff --git a/files/18_3344.jpg b/files/18_3344.jpg deleted file mode 100644 index e1118cd02..000000000 Binary files a/files/18_3344.jpg and /dev/null differ diff --git a/files/18_3344.mp3 b/files/18_3344.mp3 deleted file mode 100644 index 7ca9fdd9e..000000000 Binary files a/files/18_3344.mp3 and /dev/null differ diff --git a/files/18_3344_example.mp3 b/files/18_3344_example.mp3 deleted file mode 100644 index b0cad0282..000000000 Binary files a/files/18_3344_example.mp3 and /dev/null differ diff --git a/files/18_3344_meaning.mp3 b/files/18_3344_meaning.mp3 deleted file mode 100644 index 77d3b1142..000000000 Binary files a/files/18_3344_meaning.mp3 and /dev/null differ diff --git a/files/18_3345.jpg b/files/18_3345.jpg deleted file mode 100644 index 9f1c4e96b..000000000 Binary files a/files/18_3345.jpg and /dev/null differ diff --git a/files/18_3345.mp3 b/files/18_3345.mp3 deleted file mode 100644 index c20abd941..000000000 Binary files a/files/18_3345.mp3 and /dev/null differ diff --git a/files/18_3345_example.mp3 b/files/18_3345_example.mp3 deleted file mode 100644 index 30ebad515..000000000 Binary files a/files/18_3345_example.mp3 and /dev/null differ diff --git a/files/18_3345_meaning.mp3 b/files/18_3345_meaning.mp3 deleted file mode 100644 index c7101030c..000000000 Binary files a/files/18_3345_meaning.mp3 and /dev/null differ diff --git a/files/18_3346.jpg b/files/18_3346.jpg deleted file mode 100644 index 2239a3c0e..000000000 Binary files a/files/18_3346.jpg and /dev/null differ diff --git a/files/18_3346.mp3 b/files/18_3346.mp3 deleted file mode 100644 index 28690a1b7..000000000 Binary files a/files/18_3346.mp3 and /dev/null differ diff --git a/files/18_3346_example.mp3 b/files/18_3346_example.mp3 deleted file mode 100644 index 19c8e9e98..000000000 Binary files a/files/18_3346_example.mp3 and /dev/null differ diff --git a/files/18_3346_meaning.mp3 b/files/18_3346_meaning.mp3 deleted file mode 100644 index 3a768ff59..000000000 Binary files a/files/18_3346_meaning.mp3 and /dev/null differ diff --git a/files/18_3347.jpg b/files/18_3347.jpg deleted file mode 100644 index d41f78af6..000000000 Binary files a/files/18_3347.jpg and /dev/null differ diff --git a/files/18_3347.mp3 b/files/18_3347.mp3 deleted file mode 100644 index ba1b47622..000000000 Binary files a/files/18_3347.mp3 and /dev/null differ diff --git a/files/18_3347_example.mp3 b/files/18_3347_example.mp3 deleted file mode 100644 index 9236c4bb7..000000000 Binary files a/files/18_3347_example.mp3 and /dev/null differ diff --git a/files/18_3347_meaning.mp3 b/files/18_3347_meaning.mp3 deleted file mode 100644 index dca0bbbd1..000000000 Binary files a/files/18_3347_meaning.mp3 and /dev/null differ diff --git a/files/18_3348.jpg b/files/18_3348.jpg deleted file mode 100644 index 0212e728c..000000000 Binary files a/files/18_3348.jpg and /dev/null differ diff --git a/files/18_3348.mp3 b/files/18_3348.mp3 deleted file mode 100644 index a50bae7a8..000000000 Binary files a/files/18_3348.mp3 and /dev/null differ diff --git a/files/18_3348_example.mp3 b/files/18_3348_example.mp3 deleted file mode 100644 index cc3ba38bb..000000000 Binary files a/files/18_3348_example.mp3 and /dev/null differ diff --git a/files/18_3348_meaning.mp3 b/files/18_3348_meaning.mp3 deleted file mode 100644 index a47f88a6b..000000000 Binary files a/files/18_3348_meaning.mp3 and /dev/null differ diff --git a/files/18_3349.jpg b/files/18_3349.jpg deleted file mode 100644 index b62333abe..000000000 Binary files a/files/18_3349.jpg and /dev/null differ diff --git a/files/18_3349.mp3 b/files/18_3349.mp3 deleted file mode 100644 index 42adbc3cd..000000000 Binary files a/files/18_3349.mp3 and /dev/null differ diff --git a/files/18_3349_example.mp3 b/files/18_3349_example.mp3 deleted file mode 100644 index a9b2ecbe8..000000000 Binary files a/files/18_3349_example.mp3 and /dev/null differ diff --git a/files/18_3349_meaning.mp3 b/files/18_3349_meaning.mp3 deleted file mode 100644 index a1d0180c2..000000000 Binary files a/files/18_3349_meaning.mp3 and /dev/null differ diff --git a/files/18_3350.jpg b/files/18_3350.jpg deleted file mode 100644 index 4619b17b6..000000000 Binary files a/files/18_3350.jpg and /dev/null differ diff --git a/files/18_3350.mp3 b/files/18_3350.mp3 deleted file mode 100644 index 3ec0921dc..000000000 Binary files a/files/18_3350.mp3 and /dev/null differ diff --git a/files/18_3350_example.mp3 b/files/18_3350_example.mp3 deleted file mode 100644 index 13fb90feb..000000000 Binary files a/files/18_3350_example.mp3 and /dev/null differ diff --git a/files/18_3350_meaning.mp3 b/files/18_3350_meaning.mp3 deleted file mode 100644 index 827c36a49..000000000 Binary files a/files/18_3350_meaning.mp3 and /dev/null differ diff --git a/files/18_3351.jpg b/files/18_3351.jpg deleted file mode 100644 index 7653064b4..000000000 Binary files a/files/18_3351.jpg and /dev/null differ diff --git a/files/18_3351.mp3 b/files/18_3351.mp3 deleted file mode 100644 index 5f84a60ca..000000000 Binary files a/files/18_3351.mp3 and /dev/null differ diff --git a/files/18_3351_example.mp3 b/files/18_3351_example.mp3 deleted file mode 100644 index ad1d6faa1..000000000 Binary files a/files/18_3351_example.mp3 and /dev/null differ diff --git a/files/18_3351_meaning.mp3 b/files/18_3351_meaning.mp3 deleted file mode 100644 index e8d397212..000000000 Binary files a/files/18_3351_meaning.mp3 and /dev/null differ diff --git a/files/18_3352.jpg b/files/18_3352.jpg deleted file mode 100644 index c7680ba32..000000000 Binary files a/files/18_3352.jpg and /dev/null differ diff --git a/files/18_3352.mp3 b/files/18_3352.mp3 deleted file mode 100644 index 25c7f1fc9..000000000 Binary files a/files/18_3352.mp3 and /dev/null differ diff --git a/files/18_3352_example.mp3 b/files/18_3352_example.mp3 deleted file mode 100644 index db373f054..000000000 Binary files a/files/18_3352_example.mp3 and /dev/null differ diff --git a/files/18_3352_meaning.mp3 b/files/18_3352_meaning.mp3 deleted file mode 100644 index 2435a7585..000000000 Binary files a/files/18_3352_meaning.mp3 and /dev/null differ diff --git a/files/18_3353.jpg b/files/18_3353.jpg deleted file mode 100644 index 1a9d107a7..000000000 Binary files a/files/18_3353.jpg and /dev/null differ diff --git a/files/18_3353.mp3 b/files/18_3353.mp3 deleted file mode 100644 index 07a44a3ee..000000000 Binary files a/files/18_3353.mp3 and /dev/null differ diff --git a/files/18_3353_example.mp3 b/files/18_3353_example.mp3 deleted file mode 100644 index fb4729a55..000000000 Binary files a/files/18_3353_example.mp3 and /dev/null differ diff --git a/files/18_3353_meaning.mp3 b/files/18_3353_meaning.mp3 deleted file mode 100644 index f5dd45f42..000000000 Binary files a/files/18_3353_meaning.mp3 and /dev/null differ diff --git a/files/18_3354.jpg b/files/18_3354.jpg deleted file mode 100644 index 31d2c09d9..000000000 Binary files a/files/18_3354.jpg and /dev/null differ diff --git a/files/18_3354.mp3 b/files/18_3354.mp3 deleted file mode 100644 index 65d73c17e..000000000 Binary files a/files/18_3354.mp3 and /dev/null differ diff --git a/files/18_3354_example.mp3 b/files/18_3354_example.mp3 deleted file mode 100644 index 19d8e7fc3..000000000 Binary files a/files/18_3354_example.mp3 and /dev/null differ diff --git a/files/18_3354_meaning.mp3 b/files/18_3354_meaning.mp3 deleted file mode 100644 index 8096e07fd..000000000 Binary files a/files/18_3354_meaning.mp3 and /dev/null differ diff --git a/files/18_3355.jpg b/files/18_3355.jpg deleted file mode 100644 index dfea3d1d1..000000000 Binary files a/files/18_3355.jpg and /dev/null differ diff --git a/files/18_3355.mp3 b/files/18_3355.mp3 deleted file mode 100644 index 467692144..000000000 Binary files a/files/18_3355.mp3 and /dev/null differ diff --git a/files/18_3355_example.mp3 b/files/18_3355_example.mp3 deleted file mode 100644 index a1f8554cc..000000000 Binary files a/files/18_3355_example.mp3 and /dev/null differ diff --git a/files/18_3355_meaning.mp3 b/files/18_3355_meaning.mp3 deleted file mode 100644 index 6ca496586..000000000 Binary files a/files/18_3355_meaning.mp3 and /dev/null differ diff --git a/files/18_3356.jpg b/files/18_3356.jpg deleted file mode 100644 index 3cf98fc14..000000000 Binary files a/files/18_3356.jpg and /dev/null differ diff --git a/files/18_3356.mp3 b/files/18_3356.mp3 deleted file mode 100644 index 9bd1617f1..000000000 Binary files a/files/18_3356.mp3 and /dev/null differ diff --git a/files/18_3356_example.mp3 b/files/18_3356_example.mp3 deleted file mode 100644 index b9cba8648..000000000 Binary files a/files/18_3356_example.mp3 and /dev/null differ diff --git a/files/18_3356_meaning.mp3 b/files/18_3356_meaning.mp3 deleted file mode 100644 index fa38387d5..000000000 Binary files a/files/18_3356_meaning.mp3 and /dev/null differ diff --git a/files/18_3357.jpg b/files/18_3357.jpg deleted file mode 100644 index 9c0996b70..000000000 Binary files a/files/18_3357.jpg and /dev/null differ diff --git a/files/18_3357.mp3 b/files/18_3357.mp3 deleted file mode 100644 index cf68251f5..000000000 Binary files a/files/18_3357.mp3 and /dev/null differ diff --git a/files/18_3357_example.mp3 b/files/18_3357_example.mp3 deleted file mode 100644 index a6e1c10a4..000000000 Binary files a/files/18_3357_example.mp3 and /dev/null differ diff --git a/files/18_3357_meaning.mp3 b/files/18_3357_meaning.mp3 deleted file mode 100644 index 5de997da2..000000000 Binary files a/files/18_3357_meaning.mp3 and /dev/null differ diff --git a/files/18_3358.jpg b/files/18_3358.jpg deleted file mode 100644 index 1c3f8338d..000000000 Binary files a/files/18_3358.jpg and /dev/null differ diff --git a/files/18_3358.mp3 b/files/18_3358.mp3 deleted file mode 100644 index 358f354fe..000000000 Binary files a/files/18_3358.mp3 and /dev/null differ diff --git a/files/18_3358_example.mp3 b/files/18_3358_example.mp3 deleted file mode 100644 index 9e191770f..000000000 Binary files a/files/18_3358_example.mp3 and /dev/null differ diff --git a/files/18_3358_meaning.mp3 b/files/18_3358_meaning.mp3 deleted file mode 100644 index 131d187a9..000000000 Binary files a/files/18_3358_meaning.mp3 and /dev/null differ diff --git a/files/18_3359.jpg b/files/18_3359.jpg deleted file mode 100644 index e2496ec17..000000000 Binary files a/files/18_3359.jpg and /dev/null differ diff --git a/files/18_3359.mp3 b/files/18_3359.mp3 deleted file mode 100644 index 8bc3c7924..000000000 Binary files a/files/18_3359.mp3 and /dev/null differ diff --git a/files/18_3359_example.mp3 b/files/18_3359_example.mp3 deleted file mode 100644 index 93e03a43b..000000000 Binary files a/files/18_3359_example.mp3 and /dev/null differ diff --git a/files/18_3359_meaning.mp3 b/files/18_3359_meaning.mp3 deleted file mode 100644 index f6ac930ea..000000000 Binary files a/files/18_3359_meaning.mp3 and /dev/null differ diff --git a/files/18_3360.jpg b/files/18_3360.jpg deleted file mode 100644 index d22cf9fd6..000000000 Binary files a/files/18_3360.jpg and /dev/null differ diff --git a/files/18_3360.mp3 b/files/18_3360.mp3 deleted file mode 100644 index 5ae956290..000000000 Binary files a/files/18_3360.mp3 and /dev/null differ diff --git a/files/18_3360_example.mp3 b/files/18_3360_example.mp3 deleted file mode 100644 index 2b64b9e2f..000000000 Binary files a/files/18_3360_example.mp3 and /dev/null differ diff --git a/files/18_3360_meaning.mp3 b/files/18_3360_meaning.mp3 deleted file mode 100644 index 64b8de3e3..000000000 Binary files a/files/18_3360_meaning.mp3 and /dev/null differ diff --git a/files/19_0361.jpg b/files/19_0361.jpg deleted file mode 100644 index 90f6ba5f4..000000000 Binary files a/files/19_0361.jpg and /dev/null differ diff --git a/files/19_0361.mp3 b/files/19_0361.mp3 deleted file mode 100644 index ed910f1fd..000000000 Binary files a/files/19_0361.mp3 and /dev/null differ diff --git a/files/19_0361_example.mp3 b/files/19_0361_example.mp3 deleted file mode 100644 index 08b3e870f..000000000 Binary files a/files/19_0361_example.mp3 and /dev/null differ diff --git a/files/19_0361_meaning.mp3 b/files/19_0361_meaning.mp3 deleted file mode 100644 index 0c16fa8aa..000000000 Binary files a/files/19_0361_meaning.mp3 and /dev/null differ diff --git a/files/19_0362.jpg b/files/19_0362.jpg deleted file mode 100644 index 1f8329943..000000000 Binary files a/files/19_0362.jpg and /dev/null differ diff --git a/files/19_0362.mp3 b/files/19_0362.mp3 deleted file mode 100644 index 1b0e690f8..000000000 Binary files a/files/19_0362.mp3 and /dev/null differ diff --git a/files/19_0362_example.mp3 b/files/19_0362_example.mp3 deleted file mode 100644 index a78847132..000000000 Binary files a/files/19_0362_example.mp3 and /dev/null differ diff --git a/files/19_0362_meaning.mp3 b/files/19_0362_meaning.mp3 deleted file mode 100644 index 8fe95fe69..000000000 Binary files a/files/19_0362_meaning.mp3 and /dev/null differ diff --git a/files/19_0363.jpg b/files/19_0363.jpg deleted file mode 100644 index 3479c65f6..000000000 Binary files a/files/19_0363.jpg and /dev/null differ diff --git a/files/19_0363.mp3 b/files/19_0363.mp3 deleted file mode 100644 index dc4b1f063..000000000 Binary files a/files/19_0363.mp3 and /dev/null differ diff --git a/files/19_0363_example.mp3 b/files/19_0363_example.mp3 deleted file mode 100644 index 2541eb3b6..000000000 Binary files a/files/19_0363_example.mp3 and /dev/null differ diff --git a/files/19_0363_meaning.mp3 b/files/19_0363_meaning.mp3 deleted file mode 100644 index e4ec6cccc..000000000 Binary files a/files/19_0363_meaning.mp3 and /dev/null differ diff --git a/files/19_0364.jpg b/files/19_0364.jpg deleted file mode 100644 index 7a7f9fd49..000000000 Binary files a/files/19_0364.jpg and /dev/null differ diff --git a/files/19_0364.mp3 b/files/19_0364.mp3 deleted file mode 100644 index e09f68f3b..000000000 Binary files a/files/19_0364.mp3 and /dev/null differ diff --git a/files/19_0364_example.mp3 b/files/19_0364_example.mp3 deleted file mode 100644 index 18a7765f9..000000000 Binary files a/files/19_0364_example.mp3 and /dev/null differ diff --git a/files/19_0364_meaning.mp3 b/files/19_0364_meaning.mp3 deleted file mode 100644 index df2762d90..000000000 Binary files a/files/19_0364_meaning.mp3 and /dev/null differ diff --git a/files/19_0365.jpg b/files/19_0365.jpg deleted file mode 100644 index cd228f5e8..000000000 Binary files a/files/19_0365.jpg and /dev/null differ diff --git a/files/19_0365.mp3 b/files/19_0365.mp3 deleted file mode 100644 index 5c24313b2..000000000 Binary files a/files/19_0365.mp3 and /dev/null differ diff --git a/files/19_0365_example.mp3 b/files/19_0365_example.mp3 deleted file mode 100644 index a24cb3986..000000000 Binary files a/files/19_0365_example.mp3 and /dev/null differ diff --git a/files/19_0365_meaning.mp3 b/files/19_0365_meaning.mp3 deleted file mode 100644 index 116ef0428..000000000 Binary files a/files/19_0365_meaning.mp3 and /dev/null differ diff --git a/files/19_0366.jpg b/files/19_0366.jpg deleted file mode 100644 index 9e06a5144..000000000 Binary files a/files/19_0366.jpg and /dev/null differ diff --git a/files/19_0366.mp3 b/files/19_0366.mp3 deleted file mode 100644 index a4423c6e5..000000000 Binary files a/files/19_0366.mp3 and /dev/null differ diff --git a/files/19_0366_example.mp3 b/files/19_0366_example.mp3 deleted file mode 100644 index 1eb25fdd3..000000000 Binary files a/files/19_0366_example.mp3 and /dev/null differ diff --git a/files/19_0366_meaning.mp3 b/files/19_0366_meaning.mp3 deleted file mode 100644 index d99048bc9..000000000 Binary files a/files/19_0366_meaning.mp3 and /dev/null differ diff --git a/files/19_0367.jpg b/files/19_0367.jpg deleted file mode 100644 index 01da200d0..000000000 Binary files a/files/19_0367.jpg and /dev/null differ diff --git a/files/19_0367.mp3 b/files/19_0367.mp3 deleted file mode 100644 index be6198ed5..000000000 Binary files a/files/19_0367.mp3 and /dev/null differ diff --git a/files/19_0367_example.mp3 b/files/19_0367_example.mp3 deleted file mode 100644 index baaa6e29a..000000000 Binary files a/files/19_0367_example.mp3 and /dev/null differ diff --git a/files/19_0367_meaning.mp3 b/files/19_0367_meaning.mp3 deleted file mode 100644 index 7f8622b79..000000000 Binary files a/files/19_0367_meaning.mp3 and /dev/null differ diff --git a/files/19_0368.jpg b/files/19_0368.jpg deleted file mode 100644 index 4636d8288..000000000 Binary files a/files/19_0368.jpg and /dev/null differ diff --git a/files/19_0368.mp3 b/files/19_0368.mp3 deleted file mode 100644 index 921b005e1..000000000 Binary files a/files/19_0368.mp3 and /dev/null differ diff --git a/files/19_0368_example.mp3 b/files/19_0368_example.mp3 deleted file mode 100644 index 584eb6222..000000000 Binary files a/files/19_0368_example.mp3 and /dev/null differ diff --git a/files/19_0368_meaning.mp3 b/files/19_0368_meaning.mp3 deleted file mode 100644 index 83c405b18..000000000 Binary files a/files/19_0368_meaning.mp3 and /dev/null differ diff --git a/files/19_0369.jpg b/files/19_0369.jpg deleted file mode 100644 index 6c35035f1..000000000 Binary files a/files/19_0369.jpg and /dev/null differ diff --git a/files/19_0369.mp3 b/files/19_0369.mp3 deleted file mode 100644 index eb4b0f7ff..000000000 Binary files a/files/19_0369.mp3 and /dev/null differ diff --git a/files/19_0369_example.mp3 b/files/19_0369_example.mp3 deleted file mode 100644 index c00cc3cd4..000000000 Binary files a/files/19_0369_example.mp3 and /dev/null differ diff --git a/files/19_0369_meaning.mp3 b/files/19_0369_meaning.mp3 deleted file mode 100644 index e4d6d90f4..000000000 Binary files a/files/19_0369_meaning.mp3 and /dev/null differ diff --git a/files/19_0370.jpg b/files/19_0370.jpg deleted file mode 100644 index 4ca2ab0b4..000000000 Binary files a/files/19_0370.jpg and /dev/null differ diff --git a/files/19_0370.mp3 b/files/19_0370.mp3 deleted file mode 100644 index 245fdc9e4..000000000 Binary files a/files/19_0370.mp3 and /dev/null differ diff --git a/files/19_0370_example.mp3 b/files/19_0370_example.mp3 deleted file mode 100644 index 32aeeb179..000000000 Binary files a/files/19_0370_example.mp3 and /dev/null differ diff --git a/files/19_0370_meaning.mp3 b/files/19_0370_meaning.mp3 deleted file mode 100644 index ba9517e1f..000000000 Binary files a/files/19_0370_meaning.mp3 and /dev/null differ diff --git a/files/19_0371.jpg b/files/19_0371.jpg deleted file mode 100644 index fe9abf3da..000000000 Binary files a/files/19_0371.jpg and /dev/null differ diff --git a/files/19_0371.mp3 b/files/19_0371.mp3 deleted file mode 100644 index 80e37b36b..000000000 Binary files a/files/19_0371.mp3 and /dev/null differ diff --git a/files/19_0371_example.mp3 b/files/19_0371_example.mp3 deleted file mode 100644 index e04db6839..000000000 Binary files a/files/19_0371_example.mp3 and /dev/null differ diff --git a/files/19_0371_meaning.mp3 b/files/19_0371_meaning.mp3 deleted file mode 100644 index 06d1f8980..000000000 Binary files a/files/19_0371_meaning.mp3 and /dev/null differ diff --git a/files/19_0372.jpg b/files/19_0372.jpg deleted file mode 100644 index 10b65a614..000000000 Binary files a/files/19_0372.jpg and /dev/null differ diff --git a/files/19_0372.mp3 b/files/19_0372.mp3 deleted file mode 100644 index 84a89fc50..000000000 Binary files a/files/19_0372.mp3 and /dev/null differ diff --git a/files/19_0372_example.mp3 b/files/19_0372_example.mp3 deleted file mode 100644 index fa87c45f6..000000000 Binary files a/files/19_0372_example.mp3 and /dev/null differ diff --git a/files/19_0372_meaning.mp3 b/files/19_0372_meaning.mp3 deleted file mode 100644 index 8617b09e7..000000000 Binary files a/files/19_0372_meaning.mp3 and /dev/null differ diff --git a/files/19_0373.jpg b/files/19_0373.jpg deleted file mode 100644 index 46eabc9cb..000000000 Binary files a/files/19_0373.jpg and /dev/null differ diff --git a/files/19_0373.mp3 b/files/19_0373.mp3 deleted file mode 100644 index 17be710a0..000000000 Binary files a/files/19_0373.mp3 and /dev/null differ diff --git a/files/19_0373_example.mp3 b/files/19_0373_example.mp3 deleted file mode 100644 index c2ac3e2d3..000000000 Binary files a/files/19_0373_example.mp3 and /dev/null differ diff --git a/files/19_0373_meaning.mp3 b/files/19_0373_meaning.mp3 deleted file mode 100644 index cd254fbbd..000000000 Binary files a/files/19_0373_meaning.mp3 and /dev/null differ diff --git a/files/19_0374.jpg b/files/19_0374.jpg deleted file mode 100644 index 1e9b82ba6..000000000 Binary files a/files/19_0374.jpg and /dev/null differ diff --git a/files/19_0374.mp3 b/files/19_0374.mp3 deleted file mode 100644 index 7462ac8e0..000000000 Binary files a/files/19_0374.mp3 and /dev/null differ diff --git a/files/19_0374_example.mp3 b/files/19_0374_example.mp3 deleted file mode 100644 index f2c653228..000000000 Binary files a/files/19_0374_example.mp3 and /dev/null differ diff --git a/files/19_0374_meaning.mp3 b/files/19_0374_meaning.mp3 deleted file mode 100644 index 353c75161..000000000 Binary files a/files/19_0374_meaning.mp3 and /dev/null differ diff --git a/files/19_0375.jpg b/files/19_0375.jpg deleted file mode 100644 index db3021a2d..000000000 Binary files a/files/19_0375.jpg and /dev/null differ diff --git a/files/19_0375.mp3 b/files/19_0375.mp3 deleted file mode 100644 index 57a80c1e6..000000000 Binary files a/files/19_0375.mp3 and /dev/null differ diff --git a/files/19_0375_example.mp3 b/files/19_0375_example.mp3 deleted file mode 100644 index 5f76aa1b1..000000000 Binary files a/files/19_0375_example.mp3 and /dev/null differ diff --git a/files/19_0375_meaning.mp3 b/files/19_0375_meaning.mp3 deleted file mode 100644 index b1ffaf16c..000000000 Binary files a/files/19_0375_meaning.mp3 and /dev/null differ diff --git a/files/19_0376.jpg b/files/19_0376.jpg deleted file mode 100644 index e8f84a2b5..000000000 Binary files a/files/19_0376.jpg and /dev/null differ diff --git a/files/19_0376.mp3 b/files/19_0376.mp3 deleted file mode 100644 index 0db84ba6c..000000000 Binary files a/files/19_0376.mp3 and /dev/null differ diff --git a/files/19_0376_example.mp3 b/files/19_0376_example.mp3 deleted file mode 100644 index 8644e4b94..000000000 Binary files a/files/19_0376_example.mp3 and /dev/null differ diff --git a/files/19_0376_meaning.mp3 b/files/19_0376_meaning.mp3 deleted file mode 100644 index 6e336fc53..000000000 Binary files a/files/19_0376_meaning.mp3 and /dev/null differ diff --git a/files/19_0377.jpg b/files/19_0377.jpg deleted file mode 100644 index 50114192c..000000000 Binary files a/files/19_0377.jpg and /dev/null differ diff --git a/files/19_0377.mp3 b/files/19_0377.mp3 deleted file mode 100644 index e580051c6..000000000 Binary files a/files/19_0377.mp3 and /dev/null differ diff --git a/files/19_0377_example.mp3 b/files/19_0377_example.mp3 deleted file mode 100644 index 5ff25c6a1..000000000 Binary files a/files/19_0377_example.mp3 and /dev/null differ diff --git a/files/19_0377_meaning.mp3 b/files/19_0377_meaning.mp3 deleted file mode 100644 index c6152ed8d..000000000 Binary files a/files/19_0377_meaning.mp3 and /dev/null differ diff --git a/files/19_0378.jpg b/files/19_0378.jpg deleted file mode 100644 index 00481e60c..000000000 Binary files a/files/19_0378.jpg and /dev/null differ diff --git a/files/19_0378.mp3 b/files/19_0378.mp3 deleted file mode 100644 index 7c9d06531..000000000 Binary files a/files/19_0378.mp3 and /dev/null differ diff --git a/files/19_0378_example.mp3 b/files/19_0378_example.mp3 deleted file mode 100644 index c7639a2a0..000000000 Binary files a/files/19_0378_example.mp3 and /dev/null differ diff --git a/files/19_0378_meaning.mp3 b/files/19_0378_meaning.mp3 deleted file mode 100644 index a4ef05c80..000000000 Binary files a/files/19_0378_meaning.mp3 and /dev/null differ diff --git a/files/19_0379.jpg b/files/19_0379.jpg deleted file mode 100644 index b55fb950e..000000000 Binary files a/files/19_0379.jpg and /dev/null differ diff --git a/files/19_0379.mp3 b/files/19_0379.mp3 deleted file mode 100644 index a29d82487..000000000 Binary files a/files/19_0379.mp3 and /dev/null differ diff --git a/files/19_0379_example.mp3 b/files/19_0379_example.mp3 deleted file mode 100644 index f1d5423af..000000000 Binary files a/files/19_0379_example.mp3 and /dev/null differ diff --git a/files/19_0379_meaning.mp3 b/files/19_0379_meaning.mp3 deleted file mode 100644 index ae1b4bf84..000000000 Binary files a/files/19_0379_meaning.mp3 and /dev/null differ diff --git a/files/19_0380.jpg b/files/19_0380.jpg deleted file mode 100644 index 5fb9595c2..000000000 Binary files a/files/19_0380.jpg and /dev/null differ diff --git a/files/19_0380.mp3 b/files/19_0380.mp3 deleted file mode 100644 index 360122bd4..000000000 Binary files a/files/19_0380.mp3 and /dev/null differ diff --git a/files/19_0380_example.mp3 b/files/19_0380_example.mp3 deleted file mode 100644 index 75f5c8a40..000000000 Binary files a/files/19_0380_example.mp3 and /dev/null differ diff --git a/files/19_0380_meaning.mp3 b/files/19_0380_meaning.mp3 deleted file mode 100644 index a121a32b5..000000000 Binary files a/files/19_0380_meaning.mp3 and /dev/null differ diff --git a/files/19_0961.jpg b/files/19_0961.jpg deleted file mode 100644 index ab2fba89b..000000000 Binary files a/files/19_0961.jpg and /dev/null differ diff --git a/files/19_0961.mp3 b/files/19_0961.mp3 deleted file mode 100644 index aa4777c44..000000000 Binary files a/files/19_0961.mp3 and /dev/null differ diff --git a/files/19_0961_example.mp3 b/files/19_0961_example.mp3 deleted file mode 100644 index f80d6afab..000000000 Binary files a/files/19_0961_example.mp3 and /dev/null differ diff --git a/files/19_0961_meaning.mp3 b/files/19_0961_meaning.mp3 deleted file mode 100644 index b7a8c7e40..000000000 Binary files a/files/19_0961_meaning.mp3 and /dev/null differ diff --git a/files/19_0962.jpg b/files/19_0962.jpg deleted file mode 100644 index a06ab17e8..000000000 Binary files a/files/19_0962.jpg and /dev/null differ diff --git a/files/19_0962.mp3 b/files/19_0962.mp3 deleted file mode 100644 index 44c9cd0a6..000000000 Binary files a/files/19_0962.mp3 and /dev/null differ diff --git a/files/19_0962_example.mp3 b/files/19_0962_example.mp3 deleted file mode 100644 index 5c81455d6..000000000 Binary files a/files/19_0962_example.mp3 and /dev/null differ diff --git a/files/19_0962_meaning.mp3 b/files/19_0962_meaning.mp3 deleted file mode 100644 index d1ae17377..000000000 Binary files a/files/19_0962_meaning.mp3 and /dev/null differ diff --git a/files/19_0963.jpg b/files/19_0963.jpg deleted file mode 100644 index f42912d15..000000000 Binary files a/files/19_0963.jpg and /dev/null differ diff --git a/files/19_0963.mp3 b/files/19_0963.mp3 deleted file mode 100644 index 16f920c97..000000000 Binary files a/files/19_0963.mp3 and /dev/null differ diff --git a/files/19_0963_example.mp3 b/files/19_0963_example.mp3 deleted file mode 100644 index 25abdb90c..000000000 Binary files a/files/19_0963_example.mp3 and /dev/null differ diff --git a/files/19_0963_meaning.mp3 b/files/19_0963_meaning.mp3 deleted file mode 100644 index e86d9d13b..000000000 Binary files a/files/19_0963_meaning.mp3 and /dev/null differ diff --git a/files/19_0964.jpg b/files/19_0964.jpg deleted file mode 100644 index c7ff4c027..000000000 Binary files a/files/19_0964.jpg and /dev/null differ diff --git a/files/19_0964.mp3 b/files/19_0964.mp3 deleted file mode 100644 index 375b6c573..000000000 Binary files a/files/19_0964.mp3 and /dev/null differ diff --git a/files/19_0964_example.mp3 b/files/19_0964_example.mp3 deleted file mode 100644 index a2a7ee44b..000000000 Binary files a/files/19_0964_example.mp3 and /dev/null differ diff --git a/files/19_0964_meaning.mp3 b/files/19_0964_meaning.mp3 deleted file mode 100644 index e3d63737a..000000000 Binary files a/files/19_0964_meaning.mp3 and /dev/null differ diff --git a/files/19_0965.jpg b/files/19_0965.jpg deleted file mode 100644 index 804539016..000000000 Binary files a/files/19_0965.jpg and /dev/null differ diff --git a/files/19_0965.mp3 b/files/19_0965.mp3 deleted file mode 100644 index c16566750..000000000 Binary files a/files/19_0965.mp3 and /dev/null differ diff --git a/files/19_0965_example.mp3 b/files/19_0965_example.mp3 deleted file mode 100644 index 13cedc1b4..000000000 Binary files a/files/19_0965_example.mp3 and /dev/null differ diff --git a/files/19_0965_meaning.mp3 b/files/19_0965_meaning.mp3 deleted file mode 100644 index b3f5133ed..000000000 Binary files a/files/19_0965_meaning.mp3 and /dev/null differ diff --git a/files/19_0966.jpg b/files/19_0966.jpg deleted file mode 100644 index 65f67891a..000000000 Binary files a/files/19_0966.jpg and /dev/null differ diff --git a/files/19_0966.mp3 b/files/19_0966.mp3 deleted file mode 100644 index 4f993cf6c..000000000 Binary files a/files/19_0966.mp3 and /dev/null differ diff --git a/files/19_0966_example.mp3 b/files/19_0966_example.mp3 deleted file mode 100644 index 7655693c3..000000000 Binary files a/files/19_0966_example.mp3 and /dev/null differ diff --git a/files/19_0966_meaning.mp3 b/files/19_0966_meaning.mp3 deleted file mode 100644 index 1abc350a1..000000000 Binary files a/files/19_0966_meaning.mp3 and /dev/null differ diff --git a/files/19_0967.jpg b/files/19_0967.jpg deleted file mode 100644 index a31c38e34..000000000 Binary files a/files/19_0967.jpg and /dev/null differ diff --git a/files/19_0967.mp3 b/files/19_0967.mp3 deleted file mode 100644 index afddaa96f..000000000 Binary files a/files/19_0967.mp3 and /dev/null differ diff --git a/files/19_0967_example.mp3 b/files/19_0967_example.mp3 deleted file mode 100644 index 5019ee6a9..000000000 Binary files a/files/19_0967_example.mp3 and /dev/null differ diff --git a/files/19_0967_meaning.mp3 b/files/19_0967_meaning.mp3 deleted file mode 100644 index 7067f6f38..000000000 Binary files a/files/19_0967_meaning.mp3 and /dev/null differ diff --git a/files/19_0968.jpg b/files/19_0968.jpg deleted file mode 100644 index bc5952f62..000000000 Binary files a/files/19_0968.jpg and /dev/null differ diff --git a/files/19_0968.mp3 b/files/19_0968.mp3 deleted file mode 100644 index 3073dc7e9..000000000 Binary files a/files/19_0968.mp3 and /dev/null differ diff --git a/files/19_0968_example.mp3 b/files/19_0968_example.mp3 deleted file mode 100644 index 7b892b06c..000000000 Binary files a/files/19_0968_example.mp3 and /dev/null differ diff --git a/files/19_0968_meaning.mp3 b/files/19_0968_meaning.mp3 deleted file mode 100644 index 878f5983f..000000000 Binary files a/files/19_0968_meaning.mp3 and /dev/null differ diff --git a/files/19_0969.jpg b/files/19_0969.jpg deleted file mode 100644 index 25f810f15..000000000 Binary files a/files/19_0969.jpg and /dev/null differ diff --git a/files/19_0969.mp3 b/files/19_0969.mp3 deleted file mode 100644 index 742968ff8..000000000 Binary files a/files/19_0969.mp3 and /dev/null differ diff --git a/files/19_0969_example.mp3 b/files/19_0969_example.mp3 deleted file mode 100644 index d5a4c849e..000000000 Binary files a/files/19_0969_example.mp3 and /dev/null differ diff --git a/files/19_0969_meaning.mp3 b/files/19_0969_meaning.mp3 deleted file mode 100644 index d5a1cd53d..000000000 Binary files a/files/19_0969_meaning.mp3 and /dev/null differ diff --git a/files/19_0970.jpg b/files/19_0970.jpg deleted file mode 100644 index 04dafc041..000000000 Binary files a/files/19_0970.jpg and /dev/null differ diff --git a/files/19_0970.mp3 b/files/19_0970.mp3 deleted file mode 100644 index 0cf520051..000000000 Binary files a/files/19_0970.mp3 and /dev/null differ diff --git a/files/19_0970_example.mp3 b/files/19_0970_example.mp3 deleted file mode 100644 index 612bbad06..000000000 Binary files a/files/19_0970_example.mp3 and /dev/null differ diff --git a/files/19_0970_meaning.mp3 b/files/19_0970_meaning.mp3 deleted file mode 100644 index 84887ec41..000000000 Binary files a/files/19_0970_meaning.mp3 and /dev/null differ diff --git a/files/19_0971.jpg b/files/19_0971.jpg deleted file mode 100644 index 3f6982051..000000000 Binary files a/files/19_0971.jpg and /dev/null differ diff --git a/files/19_0971.mp3 b/files/19_0971.mp3 deleted file mode 100644 index bb8ca163a..000000000 Binary files a/files/19_0971.mp3 and /dev/null differ diff --git a/files/19_0971_example.mp3 b/files/19_0971_example.mp3 deleted file mode 100644 index 9d6bb40f4..000000000 Binary files a/files/19_0971_example.mp3 and /dev/null differ diff --git a/files/19_0971_meaning.mp3 b/files/19_0971_meaning.mp3 deleted file mode 100644 index 3c102a387..000000000 Binary files a/files/19_0971_meaning.mp3 and /dev/null differ diff --git a/files/19_0972.jpg b/files/19_0972.jpg deleted file mode 100644 index 5b638f498..000000000 Binary files a/files/19_0972.jpg and /dev/null differ diff --git a/files/19_0972.mp3 b/files/19_0972.mp3 deleted file mode 100644 index cc0067920..000000000 Binary files a/files/19_0972.mp3 and /dev/null differ diff --git a/files/19_0972_example.mp3 b/files/19_0972_example.mp3 deleted file mode 100644 index a41413fb1..000000000 Binary files a/files/19_0972_example.mp3 and /dev/null differ diff --git a/files/19_0972_meaning.mp3 b/files/19_0972_meaning.mp3 deleted file mode 100644 index b98750da7..000000000 Binary files a/files/19_0972_meaning.mp3 and /dev/null differ diff --git a/files/19_0973.jpg b/files/19_0973.jpg deleted file mode 100644 index e8828c339..000000000 Binary files a/files/19_0973.jpg and /dev/null differ diff --git a/files/19_0973.mp3 b/files/19_0973.mp3 deleted file mode 100644 index 8276f02d7..000000000 Binary files a/files/19_0973.mp3 and /dev/null differ diff --git a/files/19_0973_example.mp3 b/files/19_0973_example.mp3 deleted file mode 100644 index 96bad043b..000000000 Binary files a/files/19_0973_example.mp3 and /dev/null differ diff --git a/files/19_0973_meaning.mp3 b/files/19_0973_meaning.mp3 deleted file mode 100644 index 4b79f4d05..000000000 Binary files a/files/19_0973_meaning.mp3 and /dev/null differ diff --git a/files/19_0974.jpg b/files/19_0974.jpg deleted file mode 100644 index 3dbffacd1..000000000 Binary files a/files/19_0974.jpg and /dev/null differ diff --git a/files/19_0974.mp3 b/files/19_0974.mp3 deleted file mode 100644 index 4dd4e4ef1..000000000 Binary files a/files/19_0974.mp3 and /dev/null differ diff --git a/files/19_0974_example.mp3 b/files/19_0974_example.mp3 deleted file mode 100644 index 200600c76..000000000 Binary files a/files/19_0974_example.mp3 and /dev/null differ diff --git a/files/19_0974_meaning.mp3 b/files/19_0974_meaning.mp3 deleted file mode 100644 index c9746a366..000000000 Binary files a/files/19_0974_meaning.mp3 and /dev/null differ diff --git a/files/19_0975.jpg b/files/19_0975.jpg deleted file mode 100644 index bd87aecb1..000000000 Binary files a/files/19_0975.jpg and /dev/null differ diff --git a/files/19_0975.mp3 b/files/19_0975.mp3 deleted file mode 100644 index e91d06bbf..000000000 Binary files a/files/19_0975.mp3 and /dev/null differ diff --git a/files/19_0975_example.mp3 b/files/19_0975_example.mp3 deleted file mode 100644 index 87daae653..000000000 Binary files a/files/19_0975_example.mp3 and /dev/null differ diff --git a/files/19_0975_meaning.mp3 b/files/19_0975_meaning.mp3 deleted file mode 100644 index e30956221..000000000 Binary files a/files/19_0975_meaning.mp3 and /dev/null differ diff --git a/files/19_0976.jpg b/files/19_0976.jpg deleted file mode 100644 index 7b630e346..000000000 Binary files a/files/19_0976.jpg and /dev/null differ diff --git a/files/19_0976.mp3 b/files/19_0976.mp3 deleted file mode 100644 index 36610eefb..000000000 Binary files a/files/19_0976.mp3 and /dev/null differ diff --git a/files/19_0976_example.mp3 b/files/19_0976_example.mp3 deleted file mode 100644 index e5e837976..000000000 Binary files a/files/19_0976_example.mp3 and /dev/null differ diff --git a/files/19_0976_meaning.mp3 b/files/19_0976_meaning.mp3 deleted file mode 100644 index aa745d852..000000000 Binary files a/files/19_0976_meaning.mp3 and /dev/null differ diff --git a/files/19_0977.jpg b/files/19_0977.jpg deleted file mode 100644 index 556b7a178..000000000 Binary files a/files/19_0977.jpg and /dev/null differ diff --git a/files/19_0977.mp3 b/files/19_0977.mp3 deleted file mode 100644 index e2131b487..000000000 Binary files a/files/19_0977.mp3 and /dev/null differ diff --git a/files/19_0977_example.mp3 b/files/19_0977_example.mp3 deleted file mode 100644 index b11cb1ff9..000000000 Binary files a/files/19_0977_example.mp3 and /dev/null differ diff --git a/files/19_0977_meaning.mp3 b/files/19_0977_meaning.mp3 deleted file mode 100644 index f67752e01..000000000 Binary files a/files/19_0977_meaning.mp3 and /dev/null differ diff --git a/files/19_0978.jpg b/files/19_0978.jpg deleted file mode 100644 index a33766950..000000000 Binary files a/files/19_0978.jpg and /dev/null differ diff --git a/files/19_0978.mp3 b/files/19_0978.mp3 deleted file mode 100644 index 45e85437b..000000000 Binary files a/files/19_0978.mp3 and /dev/null differ diff --git a/files/19_0978_example.mp3 b/files/19_0978_example.mp3 deleted file mode 100644 index 3fd648569..000000000 Binary files a/files/19_0978_example.mp3 and /dev/null differ diff --git a/files/19_0978_meaning.mp3 b/files/19_0978_meaning.mp3 deleted file mode 100644 index 7f8389142..000000000 Binary files a/files/19_0978_meaning.mp3 and /dev/null differ diff --git a/files/19_0979.jpg b/files/19_0979.jpg deleted file mode 100644 index 4de0d1090..000000000 Binary files a/files/19_0979.jpg and /dev/null differ diff --git a/files/19_0979.mp3 b/files/19_0979.mp3 deleted file mode 100644 index 9cfb3e754..000000000 Binary files a/files/19_0979.mp3 and /dev/null differ diff --git a/files/19_0979_example.mp3 b/files/19_0979_example.mp3 deleted file mode 100644 index 113cc5d89..000000000 Binary files a/files/19_0979_example.mp3 and /dev/null differ diff --git a/files/19_0979_meaning.mp3 b/files/19_0979_meaning.mp3 deleted file mode 100644 index 0f7303e1d..000000000 Binary files a/files/19_0979_meaning.mp3 and /dev/null differ diff --git a/files/19_0980.jpg b/files/19_0980.jpg deleted file mode 100644 index ab67f56cc..000000000 Binary files a/files/19_0980.jpg and /dev/null differ diff --git a/files/19_0980.mp3 b/files/19_0980.mp3 deleted file mode 100644 index d43155757..000000000 Binary files a/files/19_0980.mp3 and /dev/null differ diff --git a/files/19_0980_example.mp3 b/files/19_0980_example.mp3 deleted file mode 100644 index 8224ec6f8..000000000 Binary files a/files/19_0980_example.mp3 and /dev/null differ diff --git a/files/19_0980_meaning.mp3 b/files/19_0980_meaning.mp3 deleted file mode 100644 index 17ea0338c..000000000 Binary files a/files/19_0980_meaning.mp3 and /dev/null differ diff --git a/files/19_1561.jpg b/files/19_1561.jpg deleted file mode 100644 index 1b3c5d31e..000000000 Binary files a/files/19_1561.jpg and /dev/null differ diff --git a/files/19_1561.mp3 b/files/19_1561.mp3 deleted file mode 100644 index 6ab793351..000000000 Binary files a/files/19_1561.mp3 and /dev/null differ diff --git a/files/19_1561_example.mp3 b/files/19_1561_example.mp3 deleted file mode 100644 index 5e1999a72..000000000 Binary files a/files/19_1561_example.mp3 and /dev/null differ diff --git a/files/19_1561_meaning.mp3 b/files/19_1561_meaning.mp3 deleted file mode 100644 index 37ef712a8..000000000 Binary files a/files/19_1561_meaning.mp3 and /dev/null differ diff --git a/files/19_1562.jpg b/files/19_1562.jpg deleted file mode 100644 index b16945562..000000000 Binary files a/files/19_1562.jpg and /dev/null differ diff --git a/files/19_1562.mp3 b/files/19_1562.mp3 deleted file mode 100644 index 0b752994a..000000000 Binary files a/files/19_1562.mp3 and /dev/null differ diff --git a/files/19_1562_example.mp3 b/files/19_1562_example.mp3 deleted file mode 100644 index f8e5638da..000000000 Binary files a/files/19_1562_example.mp3 and /dev/null differ diff --git a/files/19_1562_meaning.mp3 b/files/19_1562_meaning.mp3 deleted file mode 100644 index c6551ad78..000000000 Binary files a/files/19_1562_meaning.mp3 and /dev/null differ diff --git a/files/19_1563.jpg b/files/19_1563.jpg deleted file mode 100644 index a766302f8..000000000 Binary files a/files/19_1563.jpg and /dev/null differ diff --git a/files/19_1563.mp3 b/files/19_1563.mp3 deleted file mode 100644 index 3670bed70..000000000 Binary files a/files/19_1563.mp3 and /dev/null differ diff --git a/files/19_1563_example.mp3 b/files/19_1563_example.mp3 deleted file mode 100644 index 06ab66a22..000000000 Binary files a/files/19_1563_example.mp3 and /dev/null differ diff --git a/files/19_1563_meaning.mp3 b/files/19_1563_meaning.mp3 deleted file mode 100644 index d93ba5dd7..000000000 Binary files a/files/19_1563_meaning.mp3 and /dev/null differ diff --git a/files/19_1564.jpg b/files/19_1564.jpg deleted file mode 100644 index 49ec61ac5..000000000 Binary files a/files/19_1564.jpg and /dev/null differ diff --git a/files/19_1564.mp3 b/files/19_1564.mp3 deleted file mode 100644 index 8881e1709..000000000 Binary files a/files/19_1564.mp3 and /dev/null differ diff --git a/files/19_1564_example.mp3 b/files/19_1564_example.mp3 deleted file mode 100644 index bf73f4299..000000000 Binary files a/files/19_1564_example.mp3 and /dev/null differ diff --git a/files/19_1564_meaning.mp3 b/files/19_1564_meaning.mp3 deleted file mode 100644 index 73eaa3d2e..000000000 Binary files a/files/19_1564_meaning.mp3 and /dev/null differ diff --git a/files/19_1565.jpg b/files/19_1565.jpg deleted file mode 100644 index 2ef451037..000000000 Binary files a/files/19_1565.jpg and /dev/null differ diff --git a/files/19_1565.mp3 b/files/19_1565.mp3 deleted file mode 100644 index aedcaa9d2..000000000 Binary files a/files/19_1565.mp3 and /dev/null differ diff --git a/files/19_1565_example.mp3 b/files/19_1565_example.mp3 deleted file mode 100644 index e8a2a28a8..000000000 Binary files a/files/19_1565_example.mp3 and /dev/null differ diff --git a/files/19_1565_meaning.mp3 b/files/19_1565_meaning.mp3 deleted file mode 100644 index 0ceb2abc3..000000000 Binary files a/files/19_1565_meaning.mp3 and /dev/null differ diff --git a/files/19_1566.jpg b/files/19_1566.jpg deleted file mode 100644 index bec627931..000000000 Binary files a/files/19_1566.jpg and /dev/null differ diff --git a/files/19_1566.mp3 b/files/19_1566.mp3 deleted file mode 100644 index 5b8188a30..000000000 Binary files a/files/19_1566.mp3 and /dev/null differ diff --git a/files/19_1566_example.mp3 b/files/19_1566_example.mp3 deleted file mode 100644 index 7770ee2b6..000000000 Binary files a/files/19_1566_example.mp3 and /dev/null differ diff --git a/files/19_1566_meaning.mp3 b/files/19_1566_meaning.mp3 deleted file mode 100644 index b9b80c7f5..000000000 Binary files a/files/19_1566_meaning.mp3 and /dev/null differ diff --git a/files/19_1567.jpg b/files/19_1567.jpg deleted file mode 100644 index 161e1ef93..000000000 Binary files a/files/19_1567.jpg and /dev/null differ diff --git a/files/19_1567.mp3 b/files/19_1567.mp3 deleted file mode 100644 index 7f6eee237..000000000 Binary files a/files/19_1567.mp3 and /dev/null differ diff --git a/files/19_1567_example.mp3 b/files/19_1567_example.mp3 deleted file mode 100644 index c59171428..000000000 Binary files a/files/19_1567_example.mp3 and /dev/null differ diff --git a/files/19_1567_meaning.mp3 b/files/19_1567_meaning.mp3 deleted file mode 100644 index 9bc68bddd..000000000 Binary files a/files/19_1567_meaning.mp3 and /dev/null differ diff --git a/files/19_1568.jpg b/files/19_1568.jpg deleted file mode 100644 index 6c89a8811..000000000 Binary files a/files/19_1568.jpg and /dev/null differ diff --git a/files/19_1568.mp3 b/files/19_1568.mp3 deleted file mode 100644 index dc0c3896e..000000000 Binary files a/files/19_1568.mp3 and /dev/null differ diff --git a/files/19_1568_example.mp3 b/files/19_1568_example.mp3 deleted file mode 100644 index 9dbda4588..000000000 Binary files a/files/19_1568_example.mp3 and /dev/null differ diff --git a/files/19_1568_meaning.mp3 b/files/19_1568_meaning.mp3 deleted file mode 100644 index d1e0af134..000000000 Binary files a/files/19_1568_meaning.mp3 and /dev/null differ diff --git a/files/19_1569.jpg b/files/19_1569.jpg deleted file mode 100644 index 5b07c4f2a..000000000 Binary files a/files/19_1569.jpg and /dev/null differ diff --git a/files/19_1569.mp3 b/files/19_1569.mp3 deleted file mode 100644 index eb4299129..000000000 Binary files a/files/19_1569.mp3 and /dev/null differ diff --git a/files/19_1569_example.mp3 b/files/19_1569_example.mp3 deleted file mode 100644 index 8b5a5cc03..000000000 Binary files a/files/19_1569_example.mp3 and /dev/null differ diff --git a/files/19_1569_meaning.mp3 b/files/19_1569_meaning.mp3 deleted file mode 100644 index 3837415c7..000000000 Binary files a/files/19_1569_meaning.mp3 and /dev/null differ diff --git a/files/19_1570.jpg b/files/19_1570.jpg deleted file mode 100644 index 97aeddaaf..000000000 Binary files a/files/19_1570.jpg and /dev/null differ diff --git a/files/19_1570.mp3 b/files/19_1570.mp3 deleted file mode 100644 index 9fa054ac6..000000000 Binary files a/files/19_1570.mp3 and /dev/null differ diff --git a/files/19_1570_example.mp3 b/files/19_1570_example.mp3 deleted file mode 100644 index 088827389..000000000 Binary files a/files/19_1570_example.mp3 and /dev/null differ diff --git a/files/19_1570_meaning.mp3 b/files/19_1570_meaning.mp3 deleted file mode 100644 index cefe87e5e..000000000 Binary files a/files/19_1570_meaning.mp3 and /dev/null differ diff --git a/files/19_1571.jpg b/files/19_1571.jpg deleted file mode 100644 index b6a445629..000000000 Binary files a/files/19_1571.jpg and /dev/null differ diff --git a/files/19_1571.mp3 b/files/19_1571.mp3 deleted file mode 100644 index b073b859b..000000000 Binary files a/files/19_1571.mp3 and /dev/null differ diff --git a/files/19_1571_example.mp3 b/files/19_1571_example.mp3 deleted file mode 100644 index fcf9638a3..000000000 Binary files a/files/19_1571_example.mp3 and /dev/null differ diff --git a/files/19_1571_meaning.mp3 b/files/19_1571_meaning.mp3 deleted file mode 100644 index cf78d3b5f..000000000 Binary files a/files/19_1571_meaning.mp3 and /dev/null differ diff --git a/files/19_1572.jpg b/files/19_1572.jpg deleted file mode 100644 index 74006a6d2..000000000 Binary files a/files/19_1572.jpg and /dev/null differ diff --git a/files/19_1572.mp3 b/files/19_1572.mp3 deleted file mode 100644 index 847bbfd19..000000000 Binary files a/files/19_1572.mp3 and /dev/null differ diff --git a/files/19_1572_example.mp3 b/files/19_1572_example.mp3 deleted file mode 100644 index d24a2f8d4..000000000 Binary files a/files/19_1572_example.mp3 and /dev/null differ diff --git a/files/19_1572_meaning.mp3 b/files/19_1572_meaning.mp3 deleted file mode 100644 index 572c80870..000000000 Binary files a/files/19_1572_meaning.mp3 and /dev/null differ diff --git a/files/19_1573.jpg b/files/19_1573.jpg deleted file mode 100644 index 9960aa7bc..000000000 Binary files a/files/19_1573.jpg and /dev/null differ diff --git a/files/19_1573.mp3 b/files/19_1573.mp3 deleted file mode 100644 index 6136d7ba1..000000000 Binary files a/files/19_1573.mp3 and /dev/null differ diff --git a/files/19_1573_example.mp3 b/files/19_1573_example.mp3 deleted file mode 100644 index 0ad5b10f7..000000000 Binary files a/files/19_1573_example.mp3 and /dev/null differ diff --git a/files/19_1573_meaning.mp3 b/files/19_1573_meaning.mp3 deleted file mode 100644 index f670cb5a4..000000000 Binary files a/files/19_1573_meaning.mp3 and /dev/null differ diff --git a/files/19_1574.jpg b/files/19_1574.jpg deleted file mode 100644 index c7026433a..000000000 Binary files a/files/19_1574.jpg and /dev/null differ diff --git a/files/19_1574.mp3 b/files/19_1574.mp3 deleted file mode 100644 index 22a296eb9..000000000 Binary files a/files/19_1574.mp3 and /dev/null differ diff --git a/files/19_1574_example.mp3 b/files/19_1574_example.mp3 deleted file mode 100644 index 3f70a9c32..000000000 Binary files a/files/19_1574_example.mp3 and /dev/null differ diff --git a/files/19_1574_meaning.mp3 b/files/19_1574_meaning.mp3 deleted file mode 100644 index 25acadcc3..000000000 Binary files a/files/19_1574_meaning.mp3 and /dev/null differ diff --git a/files/19_1575.jpg b/files/19_1575.jpg deleted file mode 100644 index 0d5fd2667..000000000 Binary files a/files/19_1575.jpg and /dev/null differ diff --git a/files/19_1575.mp3 b/files/19_1575.mp3 deleted file mode 100644 index ba18ebc37..000000000 Binary files a/files/19_1575.mp3 and /dev/null differ diff --git a/files/19_1575_example.mp3 b/files/19_1575_example.mp3 deleted file mode 100644 index 51b5909cf..000000000 Binary files a/files/19_1575_example.mp3 and /dev/null differ diff --git a/files/19_1575_meaning.mp3 b/files/19_1575_meaning.mp3 deleted file mode 100644 index 09882651d..000000000 Binary files a/files/19_1575_meaning.mp3 and /dev/null differ diff --git a/files/19_1576.jpg b/files/19_1576.jpg deleted file mode 100644 index e094de043..000000000 Binary files a/files/19_1576.jpg and /dev/null differ diff --git a/files/19_1576.mp3 b/files/19_1576.mp3 deleted file mode 100644 index 1f6fb2ff4..000000000 Binary files a/files/19_1576.mp3 and /dev/null differ diff --git a/files/19_1576_example.mp3 b/files/19_1576_example.mp3 deleted file mode 100644 index a6ec131e7..000000000 Binary files a/files/19_1576_example.mp3 and /dev/null differ diff --git a/files/19_1576_meaning.mp3 b/files/19_1576_meaning.mp3 deleted file mode 100644 index 9e6de0d2f..000000000 Binary files a/files/19_1576_meaning.mp3 and /dev/null differ diff --git a/files/19_1577.jpg b/files/19_1577.jpg deleted file mode 100644 index 612492b6d..000000000 Binary files a/files/19_1577.jpg and /dev/null differ diff --git a/files/19_1577.mp3 b/files/19_1577.mp3 deleted file mode 100644 index 6a4ed2cfc..000000000 Binary files a/files/19_1577.mp3 and /dev/null differ diff --git a/files/19_1577_example.mp3 b/files/19_1577_example.mp3 deleted file mode 100644 index 6ea59b993..000000000 Binary files a/files/19_1577_example.mp3 and /dev/null differ diff --git a/files/19_1577_meaning.mp3 b/files/19_1577_meaning.mp3 deleted file mode 100644 index 284a1b4df..000000000 Binary files a/files/19_1577_meaning.mp3 and /dev/null differ diff --git a/files/19_1578.jpg b/files/19_1578.jpg deleted file mode 100644 index 259cdf072..000000000 Binary files a/files/19_1578.jpg and /dev/null differ diff --git a/files/19_1578.mp3 b/files/19_1578.mp3 deleted file mode 100644 index dd830daec..000000000 Binary files a/files/19_1578.mp3 and /dev/null differ diff --git a/files/19_1578_example.mp3 b/files/19_1578_example.mp3 deleted file mode 100644 index 862d02b08..000000000 Binary files a/files/19_1578_example.mp3 and /dev/null differ diff --git a/files/19_1578_meaning.mp3 b/files/19_1578_meaning.mp3 deleted file mode 100644 index 31a869faa..000000000 Binary files a/files/19_1578_meaning.mp3 and /dev/null differ diff --git a/files/19_1579.jpg b/files/19_1579.jpg deleted file mode 100644 index dbef4b9e7..000000000 Binary files a/files/19_1579.jpg and /dev/null differ diff --git a/files/19_1579.mp3 b/files/19_1579.mp3 deleted file mode 100644 index 4aae50c1e..000000000 Binary files a/files/19_1579.mp3 and /dev/null differ diff --git a/files/19_1579_example.mp3 b/files/19_1579_example.mp3 deleted file mode 100644 index 4d4602895..000000000 Binary files a/files/19_1579_example.mp3 and /dev/null differ diff --git a/files/19_1579_meaning.mp3 b/files/19_1579_meaning.mp3 deleted file mode 100644 index 477a2e63e..000000000 Binary files a/files/19_1579_meaning.mp3 and /dev/null differ diff --git a/files/19_1580.jpg b/files/19_1580.jpg deleted file mode 100644 index ac83daef5..000000000 Binary files a/files/19_1580.jpg and /dev/null differ diff --git a/files/19_1580.mp3 b/files/19_1580.mp3 deleted file mode 100644 index 0a71c6617..000000000 Binary files a/files/19_1580.mp3 and /dev/null differ diff --git a/files/19_1580_example.mp3 b/files/19_1580_example.mp3 deleted file mode 100644 index d5036748c..000000000 Binary files a/files/19_1580_example.mp3 and /dev/null differ diff --git a/files/19_1580_meaning.mp3 b/files/19_1580_meaning.mp3 deleted file mode 100644 index f0ba42cf6..000000000 Binary files a/files/19_1580_meaning.mp3 and /dev/null differ diff --git a/files/19_2161.jpg b/files/19_2161.jpg deleted file mode 100644 index c965413d3..000000000 Binary files a/files/19_2161.jpg and /dev/null differ diff --git a/files/19_2161.mp3 b/files/19_2161.mp3 deleted file mode 100644 index 05d74f79d..000000000 Binary files a/files/19_2161.mp3 and /dev/null differ diff --git a/files/19_2161_example.mp3 b/files/19_2161_example.mp3 deleted file mode 100644 index 8e71378e6..000000000 Binary files a/files/19_2161_example.mp3 and /dev/null differ diff --git a/files/19_2161_meaning.mp3 b/files/19_2161_meaning.mp3 deleted file mode 100644 index fc5c5e729..000000000 Binary files a/files/19_2161_meaning.mp3 and /dev/null differ diff --git a/files/19_2162.jpg b/files/19_2162.jpg deleted file mode 100644 index 5c028f0d9..000000000 Binary files a/files/19_2162.jpg and /dev/null differ diff --git a/files/19_2162.mp3 b/files/19_2162.mp3 deleted file mode 100644 index 2841441d3..000000000 Binary files a/files/19_2162.mp3 and /dev/null differ diff --git a/files/19_2162_example.mp3 b/files/19_2162_example.mp3 deleted file mode 100644 index acbf88457..000000000 Binary files a/files/19_2162_example.mp3 and /dev/null differ diff --git a/files/19_2162_meaning.mp3 b/files/19_2162_meaning.mp3 deleted file mode 100644 index ebd00030b..000000000 Binary files a/files/19_2162_meaning.mp3 and /dev/null differ diff --git a/files/19_2163.jpg b/files/19_2163.jpg deleted file mode 100644 index fb0b7cf60..000000000 Binary files a/files/19_2163.jpg and /dev/null differ diff --git a/files/19_2163.mp3 b/files/19_2163.mp3 deleted file mode 100644 index b19227a9d..000000000 Binary files a/files/19_2163.mp3 and /dev/null differ diff --git a/files/19_2163_example.mp3 b/files/19_2163_example.mp3 deleted file mode 100644 index b9f3655a8..000000000 Binary files a/files/19_2163_example.mp3 and /dev/null differ diff --git a/files/19_2163_meaning.mp3 b/files/19_2163_meaning.mp3 deleted file mode 100644 index 539134ccc..000000000 Binary files a/files/19_2163_meaning.mp3 and /dev/null differ diff --git a/files/19_2164.jpg b/files/19_2164.jpg deleted file mode 100644 index 156d71c08..000000000 Binary files a/files/19_2164.jpg and /dev/null differ diff --git a/files/19_2164.mp3 b/files/19_2164.mp3 deleted file mode 100644 index 8b5d7ac48..000000000 Binary files a/files/19_2164.mp3 and /dev/null differ diff --git a/files/19_2164_example.mp3 b/files/19_2164_example.mp3 deleted file mode 100644 index 564437b1f..000000000 Binary files a/files/19_2164_example.mp3 and /dev/null differ diff --git a/files/19_2164_meaning.mp3 b/files/19_2164_meaning.mp3 deleted file mode 100644 index 88bc7bd59..000000000 Binary files a/files/19_2164_meaning.mp3 and /dev/null differ diff --git a/files/19_2165.jpg b/files/19_2165.jpg deleted file mode 100644 index 80e28c1df..000000000 Binary files a/files/19_2165.jpg and /dev/null differ diff --git a/files/19_2165.mp3 b/files/19_2165.mp3 deleted file mode 100644 index 8297c5020..000000000 Binary files a/files/19_2165.mp3 and /dev/null differ diff --git a/files/19_2165_example.mp3 b/files/19_2165_example.mp3 deleted file mode 100644 index 1fac8df17..000000000 Binary files a/files/19_2165_example.mp3 and /dev/null differ diff --git a/files/19_2165_meaning.mp3 b/files/19_2165_meaning.mp3 deleted file mode 100644 index 79116c74a..000000000 Binary files a/files/19_2165_meaning.mp3 and /dev/null differ diff --git a/files/19_2166.jpg b/files/19_2166.jpg deleted file mode 100644 index 5b21e8542..000000000 Binary files a/files/19_2166.jpg and /dev/null differ diff --git a/files/19_2166.mp3 b/files/19_2166.mp3 deleted file mode 100644 index ebafd4b2f..000000000 Binary files a/files/19_2166.mp3 and /dev/null differ diff --git a/files/19_2166_example.mp3 b/files/19_2166_example.mp3 deleted file mode 100644 index 657e7377e..000000000 Binary files a/files/19_2166_example.mp3 and /dev/null differ diff --git a/files/19_2166_meaning.mp3 b/files/19_2166_meaning.mp3 deleted file mode 100644 index 0bcbc0dd6..000000000 Binary files a/files/19_2166_meaning.mp3 and /dev/null differ diff --git a/files/19_2167.jpg b/files/19_2167.jpg deleted file mode 100644 index da1395990..000000000 Binary files a/files/19_2167.jpg and /dev/null differ diff --git a/files/19_2167.mp3 b/files/19_2167.mp3 deleted file mode 100644 index 5389f1327..000000000 Binary files a/files/19_2167.mp3 and /dev/null differ diff --git a/files/19_2167_example.mp3 b/files/19_2167_example.mp3 deleted file mode 100644 index 2679ac4a8..000000000 Binary files a/files/19_2167_example.mp3 and /dev/null differ diff --git a/files/19_2167_meaning.mp3 b/files/19_2167_meaning.mp3 deleted file mode 100644 index f19eed6a1..000000000 Binary files a/files/19_2167_meaning.mp3 and /dev/null differ diff --git a/files/19_2168.jpg b/files/19_2168.jpg deleted file mode 100644 index 8c1ad3871..000000000 Binary files a/files/19_2168.jpg and /dev/null differ diff --git a/files/19_2168.mp3 b/files/19_2168.mp3 deleted file mode 100644 index 94ec6f3ab..000000000 Binary files a/files/19_2168.mp3 and /dev/null differ diff --git a/files/19_2168_example.mp3 b/files/19_2168_example.mp3 deleted file mode 100644 index d40f80204..000000000 Binary files a/files/19_2168_example.mp3 and /dev/null differ diff --git a/files/19_2168_meaning.mp3 b/files/19_2168_meaning.mp3 deleted file mode 100644 index ad768df16..000000000 Binary files a/files/19_2168_meaning.mp3 and /dev/null differ diff --git a/files/19_2169.jpg b/files/19_2169.jpg deleted file mode 100644 index a15e45827..000000000 Binary files a/files/19_2169.jpg and /dev/null differ diff --git a/files/19_2169.mp3 b/files/19_2169.mp3 deleted file mode 100644 index 7e1b6e5be..000000000 Binary files a/files/19_2169.mp3 and /dev/null differ diff --git a/files/19_2169_example.mp3 b/files/19_2169_example.mp3 deleted file mode 100644 index eec078367..000000000 Binary files a/files/19_2169_example.mp3 and /dev/null differ diff --git a/files/19_2169_meaning.mp3 b/files/19_2169_meaning.mp3 deleted file mode 100644 index d369a5b2e..000000000 Binary files a/files/19_2169_meaning.mp3 and /dev/null differ diff --git a/files/19_2170.jpg b/files/19_2170.jpg deleted file mode 100644 index db02837bd..000000000 Binary files a/files/19_2170.jpg and /dev/null differ diff --git a/files/19_2170.mp3 b/files/19_2170.mp3 deleted file mode 100644 index 1c13345a1..000000000 Binary files a/files/19_2170.mp3 and /dev/null differ diff --git a/files/19_2170_example.mp3 b/files/19_2170_example.mp3 deleted file mode 100644 index 44a271050..000000000 Binary files a/files/19_2170_example.mp3 and /dev/null differ diff --git a/files/19_2170_meaning.mp3 b/files/19_2170_meaning.mp3 deleted file mode 100644 index 9ec6de5b1..000000000 Binary files a/files/19_2170_meaning.mp3 and /dev/null differ diff --git a/files/19_2171.jpg b/files/19_2171.jpg deleted file mode 100644 index d31c87741..000000000 Binary files a/files/19_2171.jpg and /dev/null differ diff --git a/files/19_2171.mp3 b/files/19_2171.mp3 deleted file mode 100644 index d9aee434a..000000000 Binary files a/files/19_2171.mp3 and /dev/null differ diff --git a/files/19_2171_example.mp3 b/files/19_2171_example.mp3 deleted file mode 100644 index e5e31f342..000000000 Binary files a/files/19_2171_example.mp3 and /dev/null differ diff --git a/files/19_2171_meaning.mp3 b/files/19_2171_meaning.mp3 deleted file mode 100644 index 75ac7c26e..000000000 Binary files a/files/19_2171_meaning.mp3 and /dev/null differ diff --git a/files/19_2172.jpg b/files/19_2172.jpg deleted file mode 100644 index a99c776e0..000000000 Binary files a/files/19_2172.jpg and /dev/null differ diff --git a/files/19_2172.mp3 b/files/19_2172.mp3 deleted file mode 100644 index 8ff7bdf55..000000000 Binary files a/files/19_2172.mp3 and /dev/null differ diff --git a/files/19_2172_example.mp3 b/files/19_2172_example.mp3 deleted file mode 100644 index 3c73f5571..000000000 Binary files a/files/19_2172_example.mp3 and /dev/null differ diff --git a/files/19_2172_meaning.mp3 b/files/19_2172_meaning.mp3 deleted file mode 100644 index f3525d9b5..000000000 Binary files a/files/19_2172_meaning.mp3 and /dev/null differ diff --git a/files/19_2173.jpg b/files/19_2173.jpg deleted file mode 100644 index a86daebd6..000000000 Binary files a/files/19_2173.jpg and /dev/null differ diff --git a/files/19_2173.mp3 b/files/19_2173.mp3 deleted file mode 100644 index 2e694cbed..000000000 Binary files a/files/19_2173.mp3 and /dev/null differ diff --git a/files/19_2173_example.mp3 b/files/19_2173_example.mp3 deleted file mode 100644 index 636f18f68..000000000 Binary files a/files/19_2173_example.mp3 and /dev/null differ diff --git a/files/19_2173_meaning.mp3 b/files/19_2173_meaning.mp3 deleted file mode 100644 index 4cba5a28d..000000000 Binary files a/files/19_2173_meaning.mp3 and /dev/null differ diff --git a/files/19_2174.jpg b/files/19_2174.jpg deleted file mode 100644 index b2c0d36a9..000000000 Binary files a/files/19_2174.jpg and /dev/null differ diff --git a/files/19_2174.mp3 b/files/19_2174.mp3 deleted file mode 100644 index 80e781e49..000000000 Binary files a/files/19_2174.mp3 and /dev/null differ diff --git a/files/19_2174_example.mp3 b/files/19_2174_example.mp3 deleted file mode 100644 index 4f0841b8c..000000000 Binary files a/files/19_2174_example.mp3 and /dev/null differ diff --git a/files/19_2174_meaning.mp3 b/files/19_2174_meaning.mp3 deleted file mode 100644 index 99265a7f7..000000000 Binary files a/files/19_2174_meaning.mp3 and /dev/null differ diff --git a/files/19_2175.jpg b/files/19_2175.jpg deleted file mode 100644 index 4d15470e6..000000000 Binary files a/files/19_2175.jpg and /dev/null differ diff --git a/files/19_2175.mp3 b/files/19_2175.mp3 deleted file mode 100644 index bd0d20c2a..000000000 Binary files a/files/19_2175.mp3 and /dev/null differ diff --git a/files/19_2175_example.mp3 b/files/19_2175_example.mp3 deleted file mode 100644 index 8449b878f..000000000 Binary files a/files/19_2175_example.mp3 and /dev/null differ diff --git a/files/19_2175_meaning.mp3 b/files/19_2175_meaning.mp3 deleted file mode 100644 index e49e44c90..000000000 Binary files a/files/19_2175_meaning.mp3 and /dev/null differ diff --git a/files/19_2176.jpg b/files/19_2176.jpg deleted file mode 100644 index 08f6f92b9..000000000 Binary files a/files/19_2176.jpg and /dev/null differ diff --git a/files/19_2176.mp3 b/files/19_2176.mp3 deleted file mode 100644 index 9b70ca0ba..000000000 Binary files a/files/19_2176.mp3 and /dev/null differ diff --git a/files/19_2176_example.mp3 b/files/19_2176_example.mp3 deleted file mode 100644 index d4ba34288..000000000 Binary files a/files/19_2176_example.mp3 and /dev/null differ diff --git a/files/19_2176_meaning.mp3 b/files/19_2176_meaning.mp3 deleted file mode 100644 index b757a01ba..000000000 Binary files a/files/19_2176_meaning.mp3 and /dev/null differ diff --git a/files/19_2177.jpg b/files/19_2177.jpg deleted file mode 100644 index f6a1e0f0c..000000000 Binary files a/files/19_2177.jpg and /dev/null differ diff --git a/files/19_2177.mp3 b/files/19_2177.mp3 deleted file mode 100644 index 8c4410201..000000000 Binary files a/files/19_2177.mp3 and /dev/null differ diff --git a/files/19_2177_example.mp3 b/files/19_2177_example.mp3 deleted file mode 100644 index d2bed81b3..000000000 Binary files a/files/19_2177_example.mp3 and /dev/null differ diff --git a/files/19_2177_meaning.mp3 b/files/19_2177_meaning.mp3 deleted file mode 100644 index 48456d854..000000000 Binary files a/files/19_2177_meaning.mp3 and /dev/null differ diff --git a/files/19_2178.jpg b/files/19_2178.jpg deleted file mode 100644 index 761e78b1e..000000000 Binary files a/files/19_2178.jpg and /dev/null differ diff --git a/files/19_2178.mp3 b/files/19_2178.mp3 deleted file mode 100644 index 3815a827b..000000000 Binary files a/files/19_2178.mp3 and /dev/null differ diff --git a/files/19_2178_example.mp3 b/files/19_2178_example.mp3 deleted file mode 100644 index 6b4a35e58..000000000 Binary files a/files/19_2178_example.mp3 and /dev/null differ diff --git a/files/19_2178_meaning.mp3 b/files/19_2178_meaning.mp3 deleted file mode 100644 index 4b4776b3b..000000000 Binary files a/files/19_2178_meaning.mp3 and /dev/null differ diff --git a/files/19_2179.jpg b/files/19_2179.jpg deleted file mode 100644 index 380fd75aa..000000000 Binary files a/files/19_2179.jpg and /dev/null differ diff --git a/files/19_2179.mp3 b/files/19_2179.mp3 deleted file mode 100644 index 9777a9c85..000000000 Binary files a/files/19_2179.mp3 and /dev/null differ diff --git a/files/19_2179_example.mp3 b/files/19_2179_example.mp3 deleted file mode 100644 index 5777f9c15..000000000 Binary files a/files/19_2179_example.mp3 and /dev/null differ diff --git a/files/19_2179_meaning.mp3 b/files/19_2179_meaning.mp3 deleted file mode 100644 index 29266bb90..000000000 Binary files a/files/19_2179_meaning.mp3 and /dev/null differ diff --git a/files/19_2180.jpg b/files/19_2180.jpg deleted file mode 100644 index 9f6f0a0a0..000000000 Binary files a/files/19_2180.jpg and /dev/null differ diff --git a/files/19_2180.mp3 b/files/19_2180.mp3 deleted file mode 100644 index 20d217b19..000000000 Binary files a/files/19_2180.mp3 and /dev/null differ diff --git a/files/19_2180_example.mp3 b/files/19_2180_example.mp3 deleted file mode 100644 index 0881e390d..000000000 Binary files a/files/19_2180_example.mp3 and /dev/null differ diff --git a/files/19_2180_meaning.mp3 b/files/19_2180_meaning.mp3 deleted file mode 100644 index 41017e145..000000000 Binary files a/files/19_2180_meaning.mp3 and /dev/null differ diff --git a/files/19_2761.jpg b/files/19_2761.jpg deleted file mode 100644 index 2d5ddf1d8..000000000 Binary files a/files/19_2761.jpg and /dev/null differ diff --git a/files/19_2761.mp3 b/files/19_2761.mp3 deleted file mode 100644 index da82359ea..000000000 Binary files a/files/19_2761.mp3 and /dev/null differ diff --git a/files/19_2761_example.mp3 b/files/19_2761_example.mp3 deleted file mode 100644 index dd5743016..000000000 Binary files a/files/19_2761_example.mp3 and /dev/null differ diff --git a/files/19_2761_meaning.mp3 b/files/19_2761_meaning.mp3 deleted file mode 100644 index 17225dc69..000000000 Binary files a/files/19_2761_meaning.mp3 and /dev/null differ diff --git a/files/19_2762.jpg b/files/19_2762.jpg deleted file mode 100644 index 9f7adf4b8..000000000 Binary files a/files/19_2762.jpg and /dev/null differ diff --git a/files/19_2762.mp3 b/files/19_2762.mp3 deleted file mode 100644 index 59922376a..000000000 Binary files a/files/19_2762.mp3 and /dev/null differ diff --git a/files/19_2762_example.mp3 b/files/19_2762_example.mp3 deleted file mode 100644 index 664903c0f..000000000 Binary files a/files/19_2762_example.mp3 and /dev/null differ diff --git a/files/19_2762_meaning.mp3 b/files/19_2762_meaning.mp3 deleted file mode 100644 index a08eda6c4..000000000 Binary files a/files/19_2762_meaning.mp3 and /dev/null differ diff --git a/files/19_2763.jpg b/files/19_2763.jpg deleted file mode 100644 index 89941eec8..000000000 Binary files a/files/19_2763.jpg and /dev/null differ diff --git a/files/19_2763.mp3 b/files/19_2763.mp3 deleted file mode 100644 index dda14033a..000000000 Binary files a/files/19_2763.mp3 and /dev/null differ diff --git a/files/19_2763_example.mp3 b/files/19_2763_example.mp3 deleted file mode 100644 index d7a0e5753..000000000 Binary files a/files/19_2763_example.mp3 and /dev/null differ diff --git a/files/19_2763_meaning.mp3 b/files/19_2763_meaning.mp3 deleted file mode 100644 index 717555fec..000000000 Binary files a/files/19_2763_meaning.mp3 and /dev/null differ diff --git a/files/19_2764.jpg b/files/19_2764.jpg deleted file mode 100644 index 6089436b3..000000000 Binary files a/files/19_2764.jpg and /dev/null differ diff --git a/files/19_2764.mp3 b/files/19_2764.mp3 deleted file mode 100644 index 9f5a6c1c4..000000000 Binary files a/files/19_2764.mp3 and /dev/null differ diff --git a/files/19_2764_example.mp3 b/files/19_2764_example.mp3 deleted file mode 100644 index 99643a91f..000000000 Binary files a/files/19_2764_example.mp3 and /dev/null differ diff --git a/files/19_2764_meaning.mp3 b/files/19_2764_meaning.mp3 deleted file mode 100644 index 3a14eae72..000000000 Binary files a/files/19_2764_meaning.mp3 and /dev/null differ diff --git a/files/19_2765.jpg b/files/19_2765.jpg deleted file mode 100644 index 75d918069..000000000 Binary files a/files/19_2765.jpg and /dev/null differ diff --git a/files/19_2765.mp3 b/files/19_2765.mp3 deleted file mode 100644 index eed1d8545..000000000 Binary files a/files/19_2765.mp3 and /dev/null differ diff --git a/files/19_2765_example.mp3 b/files/19_2765_example.mp3 deleted file mode 100644 index 7562b79c0..000000000 Binary files a/files/19_2765_example.mp3 and /dev/null differ diff --git a/files/19_2765_meaning.mp3 b/files/19_2765_meaning.mp3 deleted file mode 100644 index 6a6cc6a9e..000000000 Binary files a/files/19_2765_meaning.mp3 and /dev/null differ diff --git a/files/19_2766.jpg b/files/19_2766.jpg deleted file mode 100644 index cf964239a..000000000 Binary files a/files/19_2766.jpg and /dev/null differ diff --git a/files/19_2766.mp3 b/files/19_2766.mp3 deleted file mode 100644 index 8e10006f3..000000000 Binary files a/files/19_2766.mp3 and /dev/null differ diff --git a/files/19_2766_example.mp3 b/files/19_2766_example.mp3 deleted file mode 100644 index 9e5720418..000000000 Binary files a/files/19_2766_example.mp3 and /dev/null differ diff --git a/files/19_2766_meaning.mp3 b/files/19_2766_meaning.mp3 deleted file mode 100644 index b63b18b33..000000000 Binary files a/files/19_2766_meaning.mp3 and /dev/null differ diff --git a/files/19_2767.jpg b/files/19_2767.jpg deleted file mode 100644 index ccbead5f0..000000000 Binary files a/files/19_2767.jpg and /dev/null differ diff --git a/files/19_2767.mp3 b/files/19_2767.mp3 deleted file mode 100644 index c07ac7bfd..000000000 Binary files a/files/19_2767.mp3 and /dev/null differ diff --git a/files/19_2767_example.mp3 b/files/19_2767_example.mp3 deleted file mode 100644 index 0e086d029..000000000 Binary files a/files/19_2767_example.mp3 and /dev/null differ diff --git a/files/19_2767_meaning.mp3 b/files/19_2767_meaning.mp3 deleted file mode 100644 index 19bc5d8ef..000000000 Binary files a/files/19_2767_meaning.mp3 and /dev/null differ diff --git a/files/19_2768.jpg b/files/19_2768.jpg deleted file mode 100644 index 99c1d27aa..000000000 Binary files a/files/19_2768.jpg and /dev/null differ diff --git a/files/19_2768.mp3 b/files/19_2768.mp3 deleted file mode 100644 index 9a4799ce3..000000000 Binary files a/files/19_2768.mp3 and /dev/null differ diff --git a/files/19_2768_example.mp3 b/files/19_2768_example.mp3 deleted file mode 100644 index a819cc18c..000000000 Binary files a/files/19_2768_example.mp3 and /dev/null differ diff --git a/files/19_2768_meaning.mp3 b/files/19_2768_meaning.mp3 deleted file mode 100644 index ef7e155ce..000000000 Binary files a/files/19_2768_meaning.mp3 and /dev/null differ diff --git a/files/19_2769.jpg b/files/19_2769.jpg deleted file mode 100644 index 325f2d71d..000000000 Binary files a/files/19_2769.jpg and /dev/null differ diff --git a/files/19_2769.mp3 b/files/19_2769.mp3 deleted file mode 100644 index 8ddba1282..000000000 Binary files a/files/19_2769.mp3 and /dev/null differ diff --git a/files/19_2769_example.mp3 b/files/19_2769_example.mp3 deleted file mode 100644 index c09f08332..000000000 Binary files a/files/19_2769_example.mp3 and /dev/null differ diff --git a/files/19_2769_meaning.mp3 b/files/19_2769_meaning.mp3 deleted file mode 100644 index 7cf164c18..000000000 Binary files a/files/19_2769_meaning.mp3 and /dev/null differ diff --git a/files/19_2770.jpg b/files/19_2770.jpg deleted file mode 100644 index bd9e6757d..000000000 Binary files a/files/19_2770.jpg and /dev/null differ diff --git a/files/19_2770.mp3 b/files/19_2770.mp3 deleted file mode 100644 index 631ac0fc1..000000000 Binary files a/files/19_2770.mp3 and /dev/null differ diff --git a/files/19_2770_example.mp3 b/files/19_2770_example.mp3 deleted file mode 100644 index ebf864b6b..000000000 Binary files a/files/19_2770_example.mp3 and /dev/null differ diff --git a/files/19_2770_meaning.mp3 b/files/19_2770_meaning.mp3 deleted file mode 100644 index 9b3d508f7..000000000 Binary files a/files/19_2770_meaning.mp3 and /dev/null differ diff --git a/files/19_2771.jpg b/files/19_2771.jpg deleted file mode 100644 index fbef792d6..000000000 Binary files a/files/19_2771.jpg and /dev/null differ diff --git a/files/19_2771.mp3 b/files/19_2771.mp3 deleted file mode 100644 index 41a145227..000000000 Binary files a/files/19_2771.mp3 and /dev/null differ diff --git a/files/19_2771_example.mp3 b/files/19_2771_example.mp3 deleted file mode 100644 index e73041b19..000000000 Binary files a/files/19_2771_example.mp3 and /dev/null differ diff --git a/files/19_2771_meaning.mp3 b/files/19_2771_meaning.mp3 deleted file mode 100644 index a09aff011..000000000 Binary files a/files/19_2771_meaning.mp3 and /dev/null differ diff --git a/files/19_2772.jpg b/files/19_2772.jpg deleted file mode 100644 index b1010a944..000000000 Binary files a/files/19_2772.jpg and /dev/null differ diff --git a/files/19_2772.mp3 b/files/19_2772.mp3 deleted file mode 100644 index ddfc6e08a..000000000 Binary files a/files/19_2772.mp3 and /dev/null differ diff --git a/files/19_2772_example.mp3 b/files/19_2772_example.mp3 deleted file mode 100644 index 758d7723f..000000000 Binary files a/files/19_2772_example.mp3 and /dev/null differ diff --git a/files/19_2772_meaning.mp3 b/files/19_2772_meaning.mp3 deleted file mode 100644 index 3c0bb78fa..000000000 Binary files a/files/19_2772_meaning.mp3 and /dev/null differ diff --git a/files/19_2773.jpg b/files/19_2773.jpg deleted file mode 100644 index fb8bee0cb..000000000 Binary files a/files/19_2773.jpg and /dev/null differ diff --git a/files/19_2773.mp3 b/files/19_2773.mp3 deleted file mode 100644 index 9176d5c8f..000000000 Binary files a/files/19_2773.mp3 and /dev/null differ diff --git a/files/19_2773_example.mp3 b/files/19_2773_example.mp3 deleted file mode 100644 index dc6705ef0..000000000 Binary files a/files/19_2773_example.mp3 and /dev/null differ diff --git a/files/19_2773_meaning.mp3 b/files/19_2773_meaning.mp3 deleted file mode 100644 index 8ee3736a4..000000000 Binary files a/files/19_2773_meaning.mp3 and /dev/null differ diff --git a/files/19_2774.jpg b/files/19_2774.jpg deleted file mode 100644 index 97eb4c760..000000000 Binary files a/files/19_2774.jpg and /dev/null differ diff --git a/files/19_2774.mp3 b/files/19_2774.mp3 deleted file mode 100644 index 005110959..000000000 Binary files a/files/19_2774.mp3 and /dev/null differ diff --git a/files/19_2774_example.mp3 b/files/19_2774_example.mp3 deleted file mode 100644 index 0a0b0f5d6..000000000 Binary files a/files/19_2774_example.mp3 and /dev/null differ diff --git a/files/19_2774_meaning.mp3 b/files/19_2774_meaning.mp3 deleted file mode 100644 index 620962490..000000000 Binary files a/files/19_2774_meaning.mp3 and /dev/null differ diff --git a/files/19_2775.jpg b/files/19_2775.jpg deleted file mode 100644 index b74efe09e..000000000 Binary files a/files/19_2775.jpg and /dev/null differ diff --git a/files/19_2775.mp3 b/files/19_2775.mp3 deleted file mode 100644 index 7280ccd82..000000000 Binary files a/files/19_2775.mp3 and /dev/null differ diff --git a/files/19_2775_example.mp3 b/files/19_2775_example.mp3 deleted file mode 100644 index f516cb7f9..000000000 Binary files a/files/19_2775_example.mp3 and /dev/null differ diff --git a/files/19_2775_meaning.mp3 b/files/19_2775_meaning.mp3 deleted file mode 100644 index f90ffb24c..000000000 Binary files a/files/19_2775_meaning.mp3 and /dev/null differ diff --git a/files/19_2776.jpg b/files/19_2776.jpg deleted file mode 100644 index 492c8e56c..000000000 Binary files a/files/19_2776.jpg and /dev/null differ diff --git a/files/19_2776.mp3 b/files/19_2776.mp3 deleted file mode 100644 index 1bb3fabea..000000000 Binary files a/files/19_2776.mp3 and /dev/null differ diff --git a/files/19_2776_example.mp3 b/files/19_2776_example.mp3 deleted file mode 100644 index 5b2eb670c..000000000 Binary files a/files/19_2776_example.mp3 and /dev/null differ diff --git a/files/19_2776_meaning.mp3 b/files/19_2776_meaning.mp3 deleted file mode 100644 index 59c3b69cc..000000000 Binary files a/files/19_2776_meaning.mp3 and /dev/null differ diff --git a/files/19_2777.jpg b/files/19_2777.jpg deleted file mode 100644 index bc306eea3..000000000 Binary files a/files/19_2777.jpg and /dev/null differ diff --git a/files/19_2777.mp3 b/files/19_2777.mp3 deleted file mode 100644 index 0638f3395..000000000 Binary files a/files/19_2777.mp3 and /dev/null differ diff --git a/files/19_2777_example.mp3 b/files/19_2777_example.mp3 deleted file mode 100644 index 4e4b51260..000000000 Binary files a/files/19_2777_example.mp3 and /dev/null differ diff --git a/files/19_2777_meaning.mp3 b/files/19_2777_meaning.mp3 deleted file mode 100644 index fa3c1e13b..000000000 Binary files a/files/19_2777_meaning.mp3 and /dev/null differ diff --git a/files/19_2778.jpg b/files/19_2778.jpg deleted file mode 100644 index 1da81e6da..000000000 Binary files a/files/19_2778.jpg and /dev/null differ diff --git a/files/19_2778.mp3 b/files/19_2778.mp3 deleted file mode 100644 index 93eba9549..000000000 Binary files a/files/19_2778.mp3 and /dev/null differ diff --git a/files/19_2778_example.mp3 b/files/19_2778_example.mp3 deleted file mode 100644 index c439df9a3..000000000 Binary files a/files/19_2778_example.mp3 and /dev/null differ diff --git a/files/19_2778_meaning.mp3 b/files/19_2778_meaning.mp3 deleted file mode 100644 index a7a9799ef..000000000 Binary files a/files/19_2778_meaning.mp3 and /dev/null differ diff --git a/files/19_2779.jpg b/files/19_2779.jpg deleted file mode 100644 index 6db36fb93..000000000 Binary files a/files/19_2779.jpg and /dev/null differ diff --git a/files/19_2779.mp3 b/files/19_2779.mp3 deleted file mode 100644 index d1b43f70d..000000000 Binary files a/files/19_2779.mp3 and /dev/null differ diff --git a/files/19_2779_example.mp3 b/files/19_2779_example.mp3 deleted file mode 100644 index a314c28af..000000000 Binary files a/files/19_2779_example.mp3 and /dev/null differ diff --git a/files/19_2779_meaning.mp3 b/files/19_2779_meaning.mp3 deleted file mode 100644 index 6775ab6d1..000000000 Binary files a/files/19_2779_meaning.mp3 and /dev/null differ diff --git a/files/19_2780.jpg b/files/19_2780.jpg deleted file mode 100644 index ac3d5f47d..000000000 Binary files a/files/19_2780.jpg and /dev/null differ diff --git a/files/19_2780.mp3 b/files/19_2780.mp3 deleted file mode 100644 index b41f6a789..000000000 Binary files a/files/19_2780.mp3 and /dev/null differ diff --git a/files/19_2780_example.mp3 b/files/19_2780_example.mp3 deleted file mode 100644 index 9829bae5d..000000000 Binary files a/files/19_2780_example.mp3 and /dev/null differ diff --git a/files/19_2780_meaning.mp3 b/files/19_2780_meaning.mp3 deleted file mode 100644 index 8dd934bd0..000000000 Binary files a/files/19_2780_meaning.mp3 and /dev/null differ diff --git a/files/19_3361.jpg b/files/19_3361.jpg deleted file mode 100644 index da1f6f91e..000000000 Binary files a/files/19_3361.jpg and /dev/null differ diff --git a/files/19_3361.mp3 b/files/19_3361.mp3 deleted file mode 100644 index 86d533b95..000000000 Binary files a/files/19_3361.mp3 and /dev/null differ diff --git a/files/19_3361_example.mp3 b/files/19_3361_example.mp3 deleted file mode 100644 index 68d6a12af..000000000 Binary files a/files/19_3361_example.mp3 and /dev/null differ diff --git a/files/19_3361_meaning.mp3 b/files/19_3361_meaning.mp3 deleted file mode 100644 index 2727c4d02..000000000 Binary files a/files/19_3361_meaning.mp3 and /dev/null differ diff --git a/files/19_3362.jpg b/files/19_3362.jpg deleted file mode 100644 index bacd7176f..000000000 Binary files a/files/19_3362.jpg and /dev/null differ diff --git a/files/19_3362.mp3 b/files/19_3362.mp3 deleted file mode 100644 index 159eb2d35..000000000 Binary files a/files/19_3362.mp3 and /dev/null differ diff --git a/files/19_3362_example.mp3 b/files/19_3362_example.mp3 deleted file mode 100644 index d07dc3df1..000000000 Binary files a/files/19_3362_example.mp3 and /dev/null differ diff --git a/files/19_3362_meaning.mp3 b/files/19_3362_meaning.mp3 deleted file mode 100644 index c3427f621..000000000 Binary files a/files/19_3362_meaning.mp3 and /dev/null differ diff --git a/files/19_3363.jpg b/files/19_3363.jpg deleted file mode 100644 index 96a2aef14..000000000 Binary files a/files/19_3363.jpg and /dev/null differ diff --git a/files/19_3363.mp3 b/files/19_3363.mp3 deleted file mode 100644 index c0890371f..000000000 Binary files a/files/19_3363.mp3 and /dev/null differ diff --git a/files/19_3363_example.mp3 b/files/19_3363_example.mp3 deleted file mode 100644 index 89a3d9fb5..000000000 Binary files a/files/19_3363_example.mp3 and /dev/null differ diff --git a/files/19_3363_meaning.mp3 b/files/19_3363_meaning.mp3 deleted file mode 100644 index e51add417..000000000 Binary files a/files/19_3363_meaning.mp3 and /dev/null differ diff --git a/files/19_3364.jpg b/files/19_3364.jpg deleted file mode 100644 index 612449531..000000000 Binary files a/files/19_3364.jpg and /dev/null differ diff --git a/files/19_3364.mp3 b/files/19_3364.mp3 deleted file mode 100644 index 579a0a59d..000000000 Binary files a/files/19_3364.mp3 and /dev/null differ diff --git a/files/19_3364_example.mp3 b/files/19_3364_example.mp3 deleted file mode 100644 index 2e06b5632..000000000 Binary files a/files/19_3364_example.mp3 and /dev/null differ diff --git a/files/19_3364_meaning.mp3 b/files/19_3364_meaning.mp3 deleted file mode 100644 index dc5525ab0..000000000 Binary files a/files/19_3364_meaning.mp3 and /dev/null differ diff --git a/files/19_3365.jpg b/files/19_3365.jpg deleted file mode 100644 index fe85d4ee4..000000000 Binary files a/files/19_3365.jpg and /dev/null differ diff --git a/files/19_3365.mp3 b/files/19_3365.mp3 deleted file mode 100644 index c98116e45..000000000 Binary files a/files/19_3365.mp3 and /dev/null differ diff --git a/files/19_3365_example.mp3 b/files/19_3365_example.mp3 deleted file mode 100644 index 61a43b0fc..000000000 Binary files a/files/19_3365_example.mp3 and /dev/null differ diff --git a/files/19_3365_meaning.mp3 b/files/19_3365_meaning.mp3 deleted file mode 100644 index ee61cf2d8..000000000 Binary files a/files/19_3365_meaning.mp3 and /dev/null differ diff --git a/files/19_3366.jpg b/files/19_3366.jpg deleted file mode 100644 index 5ff6fd353..000000000 Binary files a/files/19_3366.jpg and /dev/null differ diff --git a/files/19_3366.mp3 b/files/19_3366.mp3 deleted file mode 100644 index 68540b15d..000000000 Binary files a/files/19_3366.mp3 and /dev/null differ diff --git a/files/19_3366_example.mp3 b/files/19_3366_example.mp3 deleted file mode 100644 index 32c9fdf1d..000000000 Binary files a/files/19_3366_example.mp3 and /dev/null differ diff --git a/files/19_3366_meaning.mp3 b/files/19_3366_meaning.mp3 deleted file mode 100644 index 93939843e..000000000 Binary files a/files/19_3366_meaning.mp3 and /dev/null differ diff --git a/files/19_3367.jpg b/files/19_3367.jpg deleted file mode 100644 index 6151b02b5..000000000 Binary files a/files/19_3367.jpg and /dev/null differ diff --git a/files/19_3367.mp3 b/files/19_3367.mp3 deleted file mode 100644 index 119c64470..000000000 Binary files a/files/19_3367.mp3 and /dev/null differ diff --git a/files/19_3367_example.mp3 b/files/19_3367_example.mp3 deleted file mode 100644 index fc4539df0..000000000 Binary files a/files/19_3367_example.mp3 and /dev/null differ diff --git a/files/19_3367_meaning.mp3 b/files/19_3367_meaning.mp3 deleted file mode 100644 index 98825073d..000000000 Binary files a/files/19_3367_meaning.mp3 and /dev/null differ diff --git a/files/19_3368.jpg b/files/19_3368.jpg deleted file mode 100644 index 5f78018d2..000000000 Binary files a/files/19_3368.jpg and /dev/null differ diff --git a/files/19_3368.mp3 b/files/19_3368.mp3 deleted file mode 100644 index 94612e35d..000000000 Binary files a/files/19_3368.mp3 and /dev/null differ diff --git a/files/19_3368_example.mp3 b/files/19_3368_example.mp3 deleted file mode 100644 index 8568b5c38..000000000 Binary files a/files/19_3368_example.mp3 and /dev/null differ diff --git a/files/19_3368_meaning.mp3 b/files/19_3368_meaning.mp3 deleted file mode 100644 index 92d0f8fb0..000000000 Binary files a/files/19_3368_meaning.mp3 and /dev/null differ diff --git a/files/19_3369.jpg b/files/19_3369.jpg deleted file mode 100644 index 47820dec3..000000000 Binary files a/files/19_3369.jpg and /dev/null differ diff --git a/files/19_3369.mp3 b/files/19_3369.mp3 deleted file mode 100644 index 3a95ce856..000000000 Binary files a/files/19_3369.mp3 and /dev/null differ diff --git a/files/19_3369_example.mp3 b/files/19_3369_example.mp3 deleted file mode 100644 index 35601ca72..000000000 Binary files a/files/19_3369_example.mp3 and /dev/null differ diff --git a/files/19_3369_meaning.mp3 b/files/19_3369_meaning.mp3 deleted file mode 100644 index 67f9c56cc..000000000 Binary files a/files/19_3369_meaning.mp3 and /dev/null differ diff --git a/files/19_3370.jpg b/files/19_3370.jpg deleted file mode 100644 index 7007bc4c6..000000000 Binary files a/files/19_3370.jpg and /dev/null differ diff --git a/files/19_3370.mp3 b/files/19_3370.mp3 deleted file mode 100644 index 191574f53..000000000 Binary files a/files/19_3370.mp3 and /dev/null differ diff --git a/files/19_3370_example.mp3 b/files/19_3370_example.mp3 deleted file mode 100644 index 73a73fdc2..000000000 Binary files a/files/19_3370_example.mp3 and /dev/null differ diff --git a/files/19_3370_meaning.mp3 b/files/19_3370_meaning.mp3 deleted file mode 100644 index 6bce44bcb..000000000 Binary files a/files/19_3370_meaning.mp3 and /dev/null differ diff --git a/files/19_3371.jpg b/files/19_3371.jpg deleted file mode 100644 index 1e3be5457..000000000 Binary files a/files/19_3371.jpg and /dev/null differ diff --git a/files/19_3371.mp3 b/files/19_3371.mp3 deleted file mode 100644 index 4a251e3c9..000000000 Binary files a/files/19_3371.mp3 and /dev/null differ diff --git a/files/19_3371_example.mp3 b/files/19_3371_example.mp3 deleted file mode 100644 index 8d165c5b3..000000000 Binary files a/files/19_3371_example.mp3 and /dev/null differ diff --git a/files/19_3371_meaning.mp3 b/files/19_3371_meaning.mp3 deleted file mode 100644 index 2a214f554..000000000 Binary files a/files/19_3371_meaning.mp3 and /dev/null differ diff --git a/files/19_3372.jpg b/files/19_3372.jpg deleted file mode 100644 index f7beae671..000000000 Binary files a/files/19_3372.jpg and /dev/null differ diff --git a/files/19_3372.mp3 b/files/19_3372.mp3 deleted file mode 100644 index 7f52a0b9b..000000000 Binary files a/files/19_3372.mp3 and /dev/null differ diff --git a/files/19_3372_example.mp3 b/files/19_3372_example.mp3 deleted file mode 100644 index aeea35bc0..000000000 Binary files a/files/19_3372_example.mp3 and /dev/null differ diff --git a/files/19_3372_meaning.mp3 b/files/19_3372_meaning.mp3 deleted file mode 100644 index 694ec6bf1..000000000 Binary files a/files/19_3372_meaning.mp3 and /dev/null differ diff --git a/files/19_3373.jpg b/files/19_3373.jpg deleted file mode 100644 index 3b82f2e7c..000000000 Binary files a/files/19_3373.jpg and /dev/null differ diff --git a/files/19_3373.mp3 b/files/19_3373.mp3 deleted file mode 100644 index d34191127..000000000 Binary files a/files/19_3373.mp3 and /dev/null differ diff --git a/files/19_3373_example.mp3 b/files/19_3373_example.mp3 deleted file mode 100644 index c564f1d75..000000000 Binary files a/files/19_3373_example.mp3 and /dev/null differ diff --git a/files/19_3373_meaning.mp3 b/files/19_3373_meaning.mp3 deleted file mode 100644 index c2881e783..000000000 Binary files a/files/19_3373_meaning.mp3 and /dev/null differ diff --git a/files/19_3374.jpg b/files/19_3374.jpg deleted file mode 100644 index bc0464ac7..000000000 Binary files a/files/19_3374.jpg and /dev/null differ diff --git a/files/19_3374.mp3 b/files/19_3374.mp3 deleted file mode 100644 index d7cdf160d..000000000 Binary files a/files/19_3374.mp3 and /dev/null differ diff --git a/files/19_3374_example.mp3 b/files/19_3374_example.mp3 deleted file mode 100644 index d9de64751..000000000 Binary files a/files/19_3374_example.mp3 and /dev/null differ diff --git a/files/19_3374_meaning.mp3 b/files/19_3374_meaning.mp3 deleted file mode 100644 index 65a0f8c66..000000000 Binary files a/files/19_3374_meaning.mp3 and /dev/null differ diff --git a/files/19_3375.jpg b/files/19_3375.jpg deleted file mode 100644 index 3f0f72777..000000000 Binary files a/files/19_3375.jpg and /dev/null differ diff --git a/files/19_3375.mp3 b/files/19_3375.mp3 deleted file mode 100644 index f1ca8bc2f..000000000 Binary files a/files/19_3375.mp3 and /dev/null differ diff --git a/files/19_3375_example.mp3 b/files/19_3375_example.mp3 deleted file mode 100644 index c20115902..000000000 Binary files a/files/19_3375_example.mp3 and /dev/null differ diff --git a/files/19_3375_meaning.mp3 b/files/19_3375_meaning.mp3 deleted file mode 100644 index d46bd4d6e..000000000 Binary files a/files/19_3375_meaning.mp3 and /dev/null differ diff --git a/files/19_3376.jpg b/files/19_3376.jpg deleted file mode 100644 index 361121b01..000000000 Binary files a/files/19_3376.jpg and /dev/null differ diff --git a/files/19_3376.mp3 b/files/19_3376.mp3 deleted file mode 100644 index 5172b0349..000000000 Binary files a/files/19_3376.mp3 and /dev/null differ diff --git a/files/19_3376_example.mp3 b/files/19_3376_example.mp3 deleted file mode 100644 index a9d7f5b09..000000000 Binary files a/files/19_3376_example.mp3 and /dev/null differ diff --git a/files/19_3376_meaning.mp3 b/files/19_3376_meaning.mp3 deleted file mode 100644 index 1544f04d2..000000000 Binary files a/files/19_3376_meaning.mp3 and /dev/null differ diff --git a/files/19_3377.jpg b/files/19_3377.jpg deleted file mode 100644 index b9d7a9258..000000000 Binary files a/files/19_3377.jpg and /dev/null differ diff --git a/files/19_3377.mp3 b/files/19_3377.mp3 deleted file mode 100644 index 69140c4a8..000000000 Binary files a/files/19_3377.mp3 and /dev/null differ diff --git a/files/19_3377_example.mp3 b/files/19_3377_example.mp3 deleted file mode 100644 index 09911bb21..000000000 Binary files a/files/19_3377_example.mp3 and /dev/null differ diff --git a/files/19_3377_meaning.mp3 b/files/19_3377_meaning.mp3 deleted file mode 100644 index 8395fa25e..000000000 Binary files a/files/19_3377_meaning.mp3 and /dev/null differ diff --git a/files/19_3378.jpg b/files/19_3378.jpg deleted file mode 100644 index 334227c84..000000000 Binary files a/files/19_3378.jpg and /dev/null differ diff --git a/files/19_3378.mp3 b/files/19_3378.mp3 deleted file mode 100644 index 89ab035e9..000000000 Binary files a/files/19_3378.mp3 and /dev/null differ diff --git a/files/19_3378_example.mp3 b/files/19_3378_example.mp3 deleted file mode 100644 index fdcc37567..000000000 Binary files a/files/19_3378_example.mp3 and /dev/null differ diff --git a/files/19_3378_meaning.mp3 b/files/19_3378_meaning.mp3 deleted file mode 100644 index 2ffded342..000000000 Binary files a/files/19_3378_meaning.mp3 and /dev/null differ diff --git a/files/19_3379.jpg b/files/19_3379.jpg deleted file mode 100644 index 14416407c..000000000 Binary files a/files/19_3379.jpg and /dev/null differ diff --git a/files/19_3379.mp3 b/files/19_3379.mp3 deleted file mode 100644 index 613938c49..000000000 Binary files a/files/19_3379.mp3 and /dev/null differ diff --git a/files/19_3379_example.mp3 b/files/19_3379_example.mp3 deleted file mode 100644 index ead9671d6..000000000 Binary files a/files/19_3379_example.mp3 and /dev/null differ diff --git a/files/19_3379_meaning.mp3 b/files/19_3379_meaning.mp3 deleted file mode 100644 index 13dd179a6..000000000 Binary files a/files/19_3379_meaning.mp3 and /dev/null differ diff --git a/files/19_3380.jpg b/files/19_3380.jpg deleted file mode 100644 index 897a51772..000000000 Binary files a/files/19_3380.jpg and /dev/null differ diff --git a/files/19_3380.mp3 b/files/19_3380.mp3 deleted file mode 100644 index 5966ecb6f..000000000 Binary files a/files/19_3380.mp3 and /dev/null differ diff --git a/files/19_3380_example.mp3 b/files/19_3380_example.mp3 deleted file mode 100644 index c1e124a1a..000000000 Binary files a/files/19_3380_example.mp3 and /dev/null differ diff --git a/files/19_3380_meaning.mp3 b/files/19_3380_meaning.mp3 deleted file mode 100644 index c74e6b501..000000000 Binary files a/files/19_3380_meaning.mp3 and /dev/null differ diff --git a/files/20_0381.jpg b/files/20_0381.jpg deleted file mode 100644 index 5a6a9214e..000000000 Binary files a/files/20_0381.jpg and /dev/null differ diff --git a/files/20_0381.mp3 b/files/20_0381.mp3 deleted file mode 100644 index 55f6d6ca7..000000000 Binary files a/files/20_0381.mp3 and /dev/null differ diff --git a/files/20_0381_example.mp3 b/files/20_0381_example.mp3 deleted file mode 100644 index 4d02c2d55..000000000 Binary files a/files/20_0381_example.mp3 and /dev/null differ diff --git a/files/20_0381_meaning.mp3 b/files/20_0381_meaning.mp3 deleted file mode 100644 index 0e1e33546..000000000 Binary files a/files/20_0381_meaning.mp3 and /dev/null differ diff --git a/files/20_0382.jpg b/files/20_0382.jpg deleted file mode 100644 index 21a2a3c62..000000000 Binary files a/files/20_0382.jpg and /dev/null differ diff --git a/files/20_0382.mp3 b/files/20_0382.mp3 deleted file mode 100644 index 486cf7a14..000000000 Binary files a/files/20_0382.mp3 and /dev/null differ diff --git a/files/20_0382_example.mp3 b/files/20_0382_example.mp3 deleted file mode 100644 index b5ff7555b..000000000 Binary files a/files/20_0382_example.mp3 and /dev/null differ diff --git a/files/20_0382_meaning.mp3 b/files/20_0382_meaning.mp3 deleted file mode 100644 index e483fb51a..000000000 Binary files a/files/20_0382_meaning.mp3 and /dev/null differ diff --git a/files/20_0383.jpg b/files/20_0383.jpg deleted file mode 100644 index 2fdc0c837..000000000 Binary files a/files/20_0383.jpg and /dev/null differ diff --git a/files/20_0383.mp3 b/files/20_0383.mp3 deleted file mode 100644 index a5d7019f2..000000000 Binary files a/files/20_0383.mp3 and /dev/null differ diff --git a/files/20_0383_example.mp3 b/files/20_0383_example.mp3 deleted file mode 100644 index a3216122f..000000000 Binary files a/files/20_0383_example.mp3 and /dev/null differ diff --git a/files/20_0383_meaning.mp3 b/files/20_0383_meaning.mp3 deleted file mode 100644 index d5c32e396..000000000 Binary files a/files/20_0383_meaning.mp3 and /dev/null differ diff --git a/files/20_0384.jpg b/files/20_0384.jpg deleted file mode 100644 index fceb0f7f3..000000000 Binary files a/files/20_0384.jpg and /dev/null differ diff --git a/files/20_0384.mp3 b/files/20_0384.mp3 deleted file mode 100644 index 15b511dfd..000000000 Binary files a/files/20_0384.mp3 and /dev/null differ diff --git a/files/20_0384_example.mp3 b/files/20_0384_example.mp3 deleted file mode 100644 index 9626adfee..000000000 Binary files a/files/20_0384_example.mp3 and /dev/null differ diff --git a/files/20_0384_meaning.mp3 b/files/20_0384_meaning.mp3 deleted file mode 100644 index 0da57ade1..000000000 Binary files a/files/20_0384_meaning.mp3 and /dev/null differ diff --git a/files/20_0385.jpg b/files/20_0385.jpg deleted file mode 100644 index 5c93134ff..000000000 Binary files a/files/20_0385.jpg and /dev/null differ diff --git a/files/20_0385.mp3 b/files/20_0385.mp3 deleted file mode 100644 index eb43be920..000000000 Binary files a/files/20_0385.mp3 and /dev/null differ diff --git a/files/20_0385_example.mp3 b/files/20_0385_example.mp3 deleted file mode 100644 index d73b8c35c..000000000 Binary files a/files/20_0385_example.mp3 and /dev/null differ diff --git a/files/20_0385_meaning.mp3 b/files/20_0385_meaning.mp3 deleted file mode 100644 index 3e708f713..000000000 Binary files a/files/20_0385_meaning.mp3 and /dev/null differ diff --git a/files/20_0386.jpg b/files/20_0386.jpg deleted file mode 100644 index 76194a5e4..000000000 Binary files a/files/20_0386.jpg and /dev/null differ diff --git a/files/20_0386.mp3 b/files/20_0386.mp3 deleted file mode 100644 index 54ca3479e..000000000 Binary files a/files/20_0386.mp3 and /dev/null differ diff --git a/files/20_0386_example.mp3 b/files/20_0386_example.mp3 deleted file mode 100644 index 5dfd90580..000000000 Binary files a/files/20_0386_example.mp3 and /dev/null differ diff --git a/files/20_0386_meaning.mp3 b/files/20_0386_meaning.mp3 deleted file mode 100644 index 44dad1ddc..000000000 Binary files a/files/20_0386_meaning.mp3 and /dev/null differ diff --git a/files/20_0387.jpg b/files/20_0387.jpg deleted file mode 100644 index 297cbb9d8..000000000 Binary files a/files/20_0387.jpg and /dev/null differ diff --git a/files/20_0387.mp3 b/files/20_0387.mp3 deleted file mode 100644 index 1b24cd6e5..000000000 Binary files a/files/20_0387.mp3 and /dev/null differ diff --git a/files/20_0387_example.mp3 b/files/20_0387_example.mp3 deleted file mode 100644 index d5fffdc26..000000000 Binary files a/files/20_0387_example.mp3 and /dev/null differ diff --git a/files/20_0387_meaning.mp3 b/files/20_0387_meaning.mp3 deleted file mode 100644 index 06d08e7ef..000000000 Binary files a/files/20_0387_meaning.mp3 and /dev/null differ diff --git a/files/20_0388.jpg b/files/20_0388.jpg deleted file mode 100644 index 376167fa0..000000000 Binary files a/files/20_0388.jpg and /dev/null differ diff --git a/files/20_0388.mp3 b/files/20_0388.mp3 deleted file mode 100644 index 37d57a37f..000000000 Binary files a/files/20_0388.mp3 and /dev/null differ diff --git a/files/20_0388_example.mp3 b/files/20_0388_example.mp3 deleted file mode 100644 index 7ef3bbecd..000000000 Binary files a/files/20_0388_example.mp3 and /dev/null differ diff --git a/files/20_0388_meaning.mp3 b/files/20_0388_meaning.mp3 deleted file mode 100644 index 705fd45a8..000000000 Binary files a/files/20_0388_meaning.mp3 and /dev/null differ diff --git a/files/20_0389.jpg b/files/20_0389.jpg deleted file mode 100644 index 018858773..000000000 Binary files a/files/20_0389.jpg and /dev/null differ diff --git a/files/20_0389.mp3 b/files/20_0389.mp3 deleted file mode 100644 index 3135d4dad..000000000 Binary files a/files/20_0389.mp3 and /dev/null differ diff --git a/files/20_0389_example.mp3 b/files/20_0389_example.mp3 deleted file mode 100644 index 34780fb08..000000000 Binary files a/files/20_0389_example.mp3 and /dev/null differ diff --git a/files/20_0389_meaning.mp3 b/files/20_0389_meaning.mp3 deleted file mode 100644 index 73f85788e..000000000 Binary files a/files/20_0389_meaning.mp3 and /dev/null differ diff --git a/files/20_0390.jpg b/files/20_0390.jpg deleted file mode 100644 index 67dbf71f7..000000000 Binary files a/files/20_0390.jpg and /dev/null differ diff --git a/files/20_0390.mp3 b/files/20_0390.mp3 deleted file mode 100644 index e5d9fd234..000000000 Binary files a/files/20_0390.mp3 and /dev/null differ diff --git a/files/20_0390_example.mp3 b/files/20_0390_example.mp3 deleted file mode 100644 index c2f8802d2..000000000 Binary files a/files/20_0390_example.mp3 and /dev/null differ diff --git a/files/20_0390_meaning.mp3 b/files/20_0390_meaning.mp3 deleted file mode 100644 index 668beb2ee..000000000 Binary files a/files/20_0390_meaning.mp3 and /dev/null differ diff --git a/files/20_0391.jpg b/files/20_0391.jpg deleted file mode 100644 index c1f230224..000000000 Binary files a/files/20_0391.jpg and /dev/null differ diff --git a/files/20_0391.mp3 b/files/20_0391.mp3 deleted file mode 100644 index 51ace6ca9..000000000 Binary files a/files/20_0391.mp3 and /dev/null differ diff --git a/files/20_0391_example.mp3 b/files/20_0391_example.mp3 deleted file mode 100644 index 84ba27684..000000000 Binary files a/files/20_0391_example.mp3 and /dev/null differ diff --git a/files/20_0391_meaning.mp3 b/files/20_0391_meaning.mp3 deleted file mode 100644 index 5ba23db99..000000000 Binary files a/files/20_0391_meaning.mp3 and /dev/null differ diff --git a/files/20_0392.jpg b/files/20_0392.jpg deleted file mode 100644 index 3ad068b5f..000000000 Binary files a/files/20_0392.jpg and /dev/null differ diff --git a/files/20_0392.mp3 b/files/20_0392.mp3 deleted file mode 100644 index e4ccf53e0..000000000 Binary files a/files/20_0392.mp3 and /dev/null differ diff --git a/files/20_0392_example.mp3 b/files/20_0392_example.mp3 deleted file mode 100644 index 84d9bb203..000000000 Binary files a/files/20_0392_example.mp3 and /dev/null differ diff --git a/files/20_0392_meaning.mp3 b/files/20_0392_meaning.mp3 deleted file mode 100644 index 30d6cebc6..000000000 Binary files a/files/20_0392_meaning.mp3 and /dev/null differ diff --git a/files/20_0393.jpg b/files/20_0393.jpg deleted file mode 100644 index fba467ea7..000000000 Binary files a/files/20_0393.jpg and /dev/null differ diff --git a/files/20_0393.mp3 b/files/20_0393.mp3 deleted file mode 100644 index ef9103299..000000000 Binary files a/files/20_0393.mp3 and /dev/null differ diff --git a/files/20_0393_example.mp3 b/files/20_0393_example.mp3 deleted file mode 100644 index 055b321f4..000000000 Binary files a/files/20_0393_example.mp3 and /dev/null differ diff --git a/files/20_0393_meaning.mp3 b/files/20_0393_meaning.mp3 deleted file mode 100644 index 697fdd05d..000000000 Binary files a/files/20_0393_meaning.mp3 and /dev/null differ diff --git a/files/20_0394.jpg b/files/20_0394.jpg deleted file mode 100644 index faab7d3e8..000000000 Binary files a/files/20_0394.jpg and /dev/null differ diff --git a/files/20_0394.mp3 b/files/20_0394.mp3 deleted file mode 100644 index e5c0ee51c..000000000 Binary files a/files/20_0394.mp3 and /dev/null differ diff --git a/files/20_0394_example.mp3 b/files/20_0394_example.mp3 deleted file mode 100644 index 84f46a972..000000000 Binary files a/files/20_0394_example.mp3 and /dev/null differ diff --git a/files/20_0394_meaning.mp3 b/files/20_0394_meaning.mp3 deleted file mode 100644 index 4f2cf47ae..000000000 Binary files a/files/20_0394_meaning.mp3 and /dev/null differ diff --git a/files/20_0395.jpg b/files/20_0395.jpg deleted file mode 100644 index ca8ccb9a9..000000000 Binary files a/files/20_0395.jpg and /dev/null differ diff --git a/files/20_0395.mp3 b/files/20_0395.mp3 deleted file mode 100644 index 3bb9f120c..000000000 Binary files a/files/20_0395.mp3 and /dev/null differ diff --git a/files/20_0395_example.mp3 b/files/20_0395_example.mp3 deleted file mode 100644 index 2dbc9f2be..000000000 Binary files a/files/20_0395_example.mp3 and /dev/null differ diff --git a/files/20_0395_meaning.mp3 b/files/20_0395_meaning.mp3 deleted file mode 100644 index b0051c845..000000000 Binary files a/files/20_0395_meaning.mp3 and /dev/null differ diff --git a/files/20_0396.jpg b/files/20_0396.jpg deleted file mode 100644 index 9d94d05ca..000000000 Binary files a/files/20_0396.jpg and /dev/null differ diff --git a/files/20_0396.mp3 b/files/20_0396.mp3 deleted file mode 100644 index 20f261dd1..000000000 Binary files a/files/20_0396.mp3 and /dev/null differ diff --git a/files/20_0396_example.mp3 b/files/20_0396_example.mp3 deleted file mode 100644 index ca265b4d9..000000000 Binary files a/files/20_0396_example.mp3 and /dev/null differ diff --git a/files/20_0396_meaning.mp3 b/files/20_0396_meaning.mp3 deleted file mode 100644 index a26a7b86f..000000000 Binary files a/files/20_0396_meaning.mp3 and /dev/null differ diff --git a/files/20_0397.jpg b/files/20_0397.jpg deleted file mode 100644 index aa615f0c9..000000000 Binary files a/files/20_0397.jpg and /dev/null differ diff --git a/files/20_0397.mp3 b/files/20_0397.mp3 deleted file mode 100644 index 34b906c99..000000000 Binary files a/files/20_0397.mp3 and /dev/null differ diff --git a/files/20_0397_example.mp3 b/files/20_0397_example.mp3 deleted file mode 100644 index c72afa4c3..000000000 Binary files a/files/20_0397_example.mp3 and /dev/null differ diff --git a/files/20_0397_meaning.mp3 b/files/20_0397_meaning.mp3 deleted file mode 100644 index 6e992df60..000000000 Binary files a/files/20_0397_meaning.mp3 and /dev/null differ diff --git a/files/20_0398.jpg b/files/20_0398.jpg deleted file mode 100644 index 322fe34b4..000000000 Binary files a/files/20_0398.jpg and /dev/null differ diff --git a/files/20_0398.mp3 b/files/20_0398.mp3 deleted file mode 100644 index 05e28b507..000000000 Binary files a/files/20_0398.mp3 and /dev/null differ diff --git a/files/20_0398_example.mp3 b/files/20_0398_example.mp3 deleted file mode 100644 index 9d519fdcf..000000000 Binary files a/files/20_0398_example.mp3 and /dev/null differ diff --git a/files/20_0398_meaning.mp3 b/files/20_0398_meaning.mp3 deleted file mode 100644 index f86b82a74..000000000 Binary files a/files/20_0398_meaning.mp3 and /dev/null differ diff --git a/files/20_0399.jpg b/files/20_0399.jpg deleted file mode 100644 index 57e7c1675..000000000 Binary files a/files/20_0399.jpg and /dev/null differ diff --git a/files/20_0399.mp3 b/files/20_0399.mp3 deleted file mode 100644 index fb01af05a..000000000 Binary files a/files/20_0399.mp3 and /dev/null differ diff --git a/files/20_0399_example.mp3 b/files/20_0399_example.mp3 deleted file mode 100644 index 92ff2e7d1..000000000 Binary files a/files/20_0399_example.mp3 and /dev/null differ diff --git a/files/20_0399_meaning.mp3 b/files/20_0399_meaning.mp3 deleted file mode 100644 index 51f18f3f1..000000000 Binary files a/files/20_0399_meaning.mp3 and /dev/null differ diff --git a/files/20_0400.jpg b/files/20_0400.jpg deleted file mode 100644 index 6808499fb..000000000 Binary files a/files/20_0400.jpg and /dev/null differ diff --git a/files/20_0400.mp3 b/files/20_0400.mp3 deleted file mode 100644 index ada87f7d6..000000000 Binary files a/files/20_0400.mp3 and /dev/null differ diff --git a/files/20_0400_example.mp3 b/files/20_0400_example.mp3 deleted file mode 100644 index 9d59f4380..000000000 Binary files a/files/20_0400_example.mp3 and /dev/null differ diff --git a/files/20_0400_meaning.mp3 b/files/20_0400_meaning.mp3 deleted file mode 100644 index 260fc23ee..000000000 Binary files a/files/20_0400_meaning.mp3 and /dev/null differ diff --git a/files/20_0981.jpg b/files/20_0981.jpg deleted file mode 100644 index 3a5a7b084..000000000 Binary files a/files/20_0981.jpg and /dev/null differ diff --git a/files/20_0981.mp3 b/files/20_0981.mp3 deleted file mode 100644 index 3059a056a..000000000 Binary files a/files/20_0981.mp3 and /dev/null differ diff --git a/files/20_0981_example.mp3 b/files/20_0981_example.mp3 deleted file mode 100644 index 01eda9ee4..000000000 Binary files a/files/20_0981_example.mp3 and /dev/null differ diff --git a/files/20_0981_meaning.mp3 b/files/20_0981_meaning.mp3 deleted file mode 100644 index 55bf421a5..000000000 Binary files a/files/20_0981_meaning.mp3 and /dev/null differ diff --git a/files/20_0982.jpg b/files/20_0982.jpg deleted file mode 100644 index aaabad872..000000000 Binary files a/files/20_0982.jpg and /dev/null differ diff --git a/files/20_0982.mp3 b/files/20_0982.mp3 deleted file mode 100644 index b7dcac80c..000000000 Binary files a/files/20_0982.mp3 and /dev/null differ diff --git a/files/20_0982_example.mp3 b/files/20_0982_example.mp3 deleted file mode 100644 index 7a653816a..000000000 Binary files a/files/20_0982_example.mp3 and /dev/null differ diff --git a/files/20_0982_meaning.mp3 b/files/20_0982_meaning.mp3 deleted file mode 100644 index 97c3b7d6a..000000000 Binary files a/files/20_0982_meaning.mp3 and /dev/null differ diff --git a/files/20_0983.jpg b/files/20_0983.jpg deleted file mode 100644 index b2199456f..000000000 Binary files a/files/20_0983.jpg and /dev/null differ diff --git a/files/20_0983.mp3 b/files/20_0983.mp3 deleted file mode 100644 index 0d8602f7c..000000000 Binary files a/files/20_0983.mp3 and /dev/null differ diff --git a/files/20_0983_example.mp3 b/files/20_0983_example.mp3 deleted file mode 100644 index 7e54a82b0..000000000 Binary files a/files/20_0983_example.mp3 and /dev/null differ diff --git a/files/20_0983_meaning.mp3 b/files/20_0983_meaning.mp3 deleted file mode 100644 index d3dcec8c4..000000000 Binary files a/files/20_0983_meaning.mp3 and /dev/null differ diff --git a/files/20_0984.jpg b/files/20_0984.jpg deleted file mode 100644 index 880e9ad57..000000000 Binary files a/files/20_0984.jpg and /dev/null differ diff --git a/files/20_0984.mp3 b/files/20_0984.mp3 deleted file mode 100644 index c467930c1..000000000 Binary files a/files/20_0984.mp3 and /dev/null differ diff --git a/files/20_0984_example.mp3 b/files/20_0984_example.mp3 deleted file mode 100644 index 51ca7a1bf..000000000 Binary files a/files/20_0984_example.mp3 and /dev/null differ diff --git a/files/20_0984_meaning.mp3 b/files/20_0984_meaning.mp3 deleted file mode 100644 index cd588b6d3..000000000 Binary files a/files/20_0984_meaning.mp3 and /dev/null differ diff --git a/files/20_0985.jpg b/files/20_0985.jpg deleted file mode 100644 index 4c5432acf..000000000 Binary files a/files/20_0985.jpg and /dev/null differ diff --git a/files/20_0985.mp3 b/files/20_0985.mp3 deleted file mode 100644 index fefa02c20..000000000 Binary files a/files/20_0985.mp3 and /dev/null differ diff --git a/files/20_0985_example.mp3 b/files/20_0985_example.mp3 deleted file mode 100644 index 17f0650d8..000000000 Binary files a/files/20_0985_example.mp3 and /dev/null differ diff --git a/files/20_0985_meaning.mp3 b/files/20_0985_meaning.mp3 deleted file mode 100644 index b853273db..000000000 Binary files a/files/20_0985_meaning.mp3 and /dev/null differ diff --git a/files/20_0986.jpg b/files/20_0986.jpg deleted file mode 100644 index 75c8399bd..000000000 Binary files a/files/20_0986.jpg and /dev/null differ diff --git a/files/20_0986.mp3 b/files/20_0986.mp3 deleted file mode 100644 index 9bf02698b..000000000 Binary files a/files/20_0986.mp3 and /dev/null differ diff --git a/files/20_0986_example.mp3 b/files/20_0986_example.mp3 deleted file mode 100644 index a03c14048..000000000 Binary files a/files/20_0986_example.mp3 and /dev/null differ diff --git a/files/20_0986_meaning.mp3 b/files/20_0986_meaning.mp3 deleted file mode 100644 index a2f181dcd..000000000 Binary files a/files/20_0986_meaning.mp3 and /dev/null differ diff --git a/files/20_0987.jpg b/files/20_0987.jpg deleted file mode 100644 index e04342d2f..000000000 Binary files a/files/20_0987.jpg and /dev/null differ diff --git a/files/20_0987.mp3 b/files/20_0987.mp3 deleted file mode 100644 index 0aab6b0fb..000000000 Binary files a/files/20_0987.mp3 and /dev/null differ diff --git a/files/20_0987_example.mp3 b/files/20_0987_example.mp3 deleted file mode 100644 index 3784f2725..000000000 Binary files a/files/20_0987_example.mp3 and /dev/null differ diff --git a/files/20_0987_meaning.mp3 b/files/20_0987_meaning.mp3 deleted file mode 100644 index fc3be17b7..000000000 Binary files a/files/20_0987_meaning.mp3 and /dev/null differ diff --git a/files/20_0988.jpg b/files/20_0988.jpg deleted file mode 100644 index 47e97ec80..000000000 Binary files a/files/20_0988.jpg and /dev/null differ diff --git a/files/20_0988.mp3 b/files/20_0988.mp3 deleted file mode 100644 index 809404f5b..000000000 Binary files a/files/20_0988.mp3 and /dev/null differ diff --git a/files/20_0988_example.mp3 b/files/20_0988_example.mp3 deleted file mode 100644 index d3d19ec2e..000000000 Binary files a/files/20_0988_example.mp3 and /dev/null differ diff --git a/files/20_0988_meaning.mp3 b/files/20_0988_meaning.mp3 deleted file mode 100644 index cae868462..000000000 Binary files a/files/20_0988_meaning.mp3 and /dev/null differ diff --git a/files/20_0989.jpg b/files/20_0989.jpg deleted file mode 100644 index d97ea7a66..000000000 Binary files a/files/20_0989.jpg and /dev/null differ diff --git a/files/20_0989.mp3 b/files/20_0989.mp3 deleted file mode 100644 index 12a4b55a5..000000000 Binary files a/files/20_0989.mp3 and /dev/null differ diff --git a/files/20_0989_example.mp3 b/files/20_0989_example.mp3 deleted file mode 100644 index 7e381ea9d..000000000 Binary files a/files/20_0989_example.mp3 and /dev/null differ diff --git a/files/20_0989_meaning.mp3 b/files/20_0989_meaning.mp3 deleted file mode 100644 index 9e0b894be..000000000 Binary files a/files/20_0989_meaning.mp3 and /dev/null differ diff --git a/files/20_0990.jpg b/files/20_0990.jpg deleted file mode 100644 index 50b57021c..000000000 Binary files a/files/20_0990.jpg and /dev/null differ diff --git a/files/20_0990.mp3 b/files/20_0990.mp3 deleted file mode 100644 index 7390c89b7..000000000 Binary files a/files/20_0990.mp3 and /dev/null differ diff --git a/files/20_0990_example.mp3 b/files/20_0990_example.mp3 deleted file mode 100644 index 3da6b775c..000000000 Binary files a/files/20_0990_example.mp3 and /dev/null differ diff --git a/files/20_0990_meaning.mp3 b/files/20_0990_meaning.mp3 deleted file mode 100644 index 3053cb473..000000000 Binary files a/files/20_0990_meaning.mp3 and /dev/null differ diff --git a/files/20_0991.jpg b/files/20_0991.jpg deleted file mode 100644 index 1664708e4..000000000 Binary files a/files/20_0991.jpg and /dev/null differ diff --git a/files/20_0991.mp3 b/files/20_0991.mp3 deleted file mode 100644 index 26da70393..000000000 Binary files a/files/20_0991.mp3 and /dev/null differ diff --git a/files/20_0991_example.mp3 b/files/20_0991_example.mp3 deleted file mode 100644 index 61a8f690c..000000000 Binary files a/files/20_0991_example.mp3 and /dev/null differ diff --git a/files/20_0991_meaning.mp3 b/files/20_0991_meaning.mp3 deleted file mode 100644 index ea5f8bd76..000000000 Binary files a/files/20_0991_meaning.mp3 and /dev/null differ diff --git a/files/20_0992.jpg b/files/20_0992.jpg deleted file mode 100644 index 65d38d97e..000000000 Binary files a/files/20_0992.jpg and /dev/null differ diff --git a/files/20_0992.mp3 b/files/20_0992.mp3 deleted file mode 100644 index b66aceaa4..000000000 Binary files a/files/20_0992.mp3 and /dev/null differ diff --git a/files/20_0992_example.mp3 b/files/20_0992_example.mp3 deleted file mode 100644 index 2c366ce68..000000000 Binary files a/files/20_0992_example.mp3 and /dev/null differ diff --git a/files/20_0992_meaning.mp3 b/files/20_0992_meaning.mp3 deleted file mode 100644 index b9ed81bfb..000000000 Binary files a/files/20_0992_meaning.mp3 and /dev/null differ diff --git a/files/20_0993.jpg b/files/20_0993.jpg deleted file mode 100644 index 33ebb8230..000000000 Binary files a/files/20_0993.jpg and /dev/null differ diff --git a/files/20_0993.mp3 b/files/20_0993.mp3 deleted file mode 100644 index ba2edb0eb..000000000 Binary files a/files/20_0993.mp3 and /dev/null differ diff --git a/files/20_0993_example.mp3 b/files/20_0993_example.mp3 deleted file mode 100644 index 9bfc788ff..000000000 Binary files a/files/20_0993_example.mp3 and /dev/null differ diff --git a/files/20_0993_meaning.mp3 b/files/20_0993_meaning.mp3 deleted file mode 100644 index 28f183997..000000000 Binary files a/files/20_0993_meaning.mp3 and /dev/null differ diff --git a/files/20_0994.jpg b/files/20_0994.jpg deleted file mode 100644 index cea32500d..000000000 Binary files a/files/20_0994.jpg and /dev/null differ diff --git a/files/20_0994.mp3 b/files/20_0994.mp3 deleted file mode 100644 index 7b07c2058..000000000 Binary files a/files/20_0994.mp3 and /dev/null differ diff --git a/files/20_0994_example.mp3 b/files/20_0994_example.mp3 deleted file mode 100644 index dfd781215..000000000 Binary files a/files/20_0994_example.mp3 and /dev/null differ diff --git a/files/20_0994_meaning.mp3 b/files/20_0994_meaning.mp3 deleted file mode 100644 index 218481bd7..000000000 Binary files a/files/20_0994_meaning.mp3 and /dev/null differ diff --git a/files/20_0995.jpg b/files/20_0995.jpg deleted file mode 100644 index dd51ba934..000000000 Binary files a/files/20_0995.jpg and /dev/null differ diff --git a/files/20_0995.mp3 b/files/20_0995.mp3 deleted file mode 100644 index 1a3a23ba6..000000000 Binary files a/files/20_0995.mp3 and /dev/null differ diff --git a/files/20_0995_example.mp3 b/files/20_0995_example.mp3 deleted file mode 100644 index c29d2c234..000000000 Binary files a/files/20_0995_example.mp3 and /dev/null differ diff --git a/files/20_0995_meaning.mp3 b/files/20_0995_meaning.mp3 deleted file mode 100644 index 1ea765404..000000000 Binary files a/files/20_0995_meaning.mp3 and /dev/null differ diff --git a/files/20_0996.jpg b/files/20_0996.jpg deleted file mode 100644 index b601a562e..000000000 Binary files a/files/20_0996.jpg and /dev/null differ diff --git a/files/20_0996.mp3 b/files/20_0996.mp3 deleted file mode 100644 index 77174bed3..000000000 Binary files a/files/20_0996.mp3 and /dev/null differ diff --git a/files/20_0996_example.mp3 b/files/20_0996_example.mp3 deleted file mode 100644 index f2e488249..000000000 Binary files a/files/20_0996_example.mp3 and /dev/null differ diff --git a/files/20_0996_meaning.mp3 b/files/20_0996_meaning.mp3 deleted file mode 100644 index 7e9f904f0..000000000 Binary files a/files/20_0996_meaning.mp3 and /dev/null differ diff --git a/files/20_0997.jpg b/files/20_0997.jpg deleted file mode 100644 index d66a8b019..000000000 Binary files a/files/20_0997.jpg and /dev/null differ diff --git a/files/20_0997.mp3 b/files/20_0997.mp3 deleted file mode 100644 index 575982975..000000000 Binary files a/files/20_0997.mp3 and /dev/null differ diff --git a/files/20_0997_example.mp3 b/files/20_0997_example.mp3 deleted file mode 100644 index 534539e92..000000000 Binary files a/files/20_0997_example.mp3 and /dev/null differ diff --git a/files/20_0997_meaning.mp3 b/files/20_0997_meaning.mp3 deleted file mode 100644 index 20dec55d9..000000000 Binary files a/files/20_0997_meaning.mp3 and /dev/null differ diff --git a/files/20_0998.jpg b/files/20_0998.jpg deleted file mode 100644 index 75903ae93..000000000 Binary files a/files/20_0998.jpg and /dev/null differ diff --git a/files/20_0998.mp3 b/files/20_0998.mp3 deleted file mode 100644 index bfc2eeaaf..000000000 Binary files a/files/20_0998.mp3 and /dev/null differ diff --git a/files/20_0998_example.mp3 b/files/20_0998_example.mp3 deleted file mode 100644 index 43a2d9d50..000000000 Binary files a/files/20_0998_example.mp3 and /dev/null differ diff --git a/files/20_0998_meaning.mp3 b/files/20_0998_meaning.mp3 deleted file mode 100644 index 689d0ef01..000000000 Binary files a/files/20_0998_meaning.mp3 and /dev/null differ diff --git a/files/20_0999.jpg b/files/20_0999.jpg deleted file mode 100644 index 1d4de9de5..000000000 Binary files a/files/20_0999.jpg and /dev/null differ diff --git a/files/20_0999.mp3 b/files/20_0999.mp3 deleted file mode 100644 index 76cc79629..000000000 Binary files a/files/20_0999.mp3 and /dev/null differ diff --git a/files/20_0999_example.mp3 b/files/20_0999_example.mp3 deleted file mode 100644 index f8747c124..000000000 Binary files a/files/20_0999_example.mp3 and /dev/null differ diff --git a/files/20_0999_meaning.mp3 b/files/20_0999_meaning.mp3 deleted file mode 100644 index 956e2a586..000000000 Binary files a/files/20_0999_meaning.mp3 and /dev/null differ diff --git a/files/20_1000.jpg b/files/20_1000.jpg deleted file mode 100644 index 8f8957c10..000000000 Binary files a/files/20_1000.jpg and /dev/null differ diff --git a/files/20_1000.mp3 b/files/20_1000.mp3 deleted file mode 100644 index e26b1c336..000000000 Binary files a/files/20_1000.mp3 and /dev/null differ diff --git a/files/20_1000_example.mp3 b/files/20_1000_example.mp3 deleted file mode 100644 index 8eacfc75e..000000000 Binary files a/files/20_1000_example.mp3 and /dev/null differ diff --git a/files/20_1000_meaning.mp3 b/files/20_1000_meaning.mp3 deleted file mode 100644 index 5386954c5..000000000 Binary files a/files/20_1000_meaning.mp3 and /dev/null differ diff --git a/files/20_1581.jpg b/files/20_1581.jpg deleted file mode 100644 index e1ed67939..000000000 Binary files a/files/20_1581.jpg and /dev/null differ diff --git a/files/20_1581.mp3 b/files/20_1581.mp3 deleted file mode 100644 index 23af9e26a..000000000 Binary files a/files/20_1581.mp3 and /dev/null differ diff --git a/files/20_1581_example.mp3 b/files/20_1581_example.mp3 deleted file mode 100644 index a9e415e3c..000000000 Binary files a/files/20_1581_example.mp3 and /dev/null differ diff --git a/files/20_1581_meaning.mp3 b/files/20_1581_meaning.mp3 deleted file mode 100644 index 425824131..000000000 Binary files a/files/20_1581_meaning.mp3 and /dev/null differ diff --git a/files/20_1582.jpg b/files/20_1582.jpg deleted file mode 100644 index 10297aa5e..000000000 Binary files a/files/20_1582.jpg and /dev/null differ diff --git a/files/20_1582.mp3 b/files/20_1582.mp3 deleted file mode 100644 index 65fc4af41..000000000 Binary files a/files/20_1582.mp3 and /dev/null differ diff --git a/files/20_1582_example.mp3 b/files/20_1582_example.mp3 deleted file mode 100644 index dc88a937d..000000000 Binary files a/files/20_1582_example.mp3 and /dev/null differ diff --git a/files/20_1582_meaning.mp3 b/files/20_1582_meaning.mp3 deleted file mode 100644 index 22e189a28..000000000 Binary files a/files/20_1582_meaning.mp3 and /dev/null differ diff --git a/files/20_1583.jpg b/files/20_1583.jpg deleted file mode 100644 index f8427763e..000000000 Binary files a/files/20_1583.jpg and /dev/null differ diff --git a/files/20_1583.mp3 b/files/20_1583.mp3 deleted file mode 100644 index 22a6718b8..000000000 Binary files a/files/20_1583.mp3 and /dev/null differ diff --git a/files/20_1583_example.mp3 b/files/20_1583_example.mp3 deleted file mode 100644 index 26d7c36db..000000000 Binary files a/files/20_1583_example.mp3 and /dev/null differ diff --git a/files/20_1583_meaning.mp3 b/files/20_1583_meaning.mp3 deleted file mode 100644 index eec21df6f..000000000 Binary files a/files/20_1583_meaning.mp3 and /dev/null differ diff --git a/files/20_1584.jpg b/files/20_1584.jpg deleted file mode 100644 index 388fb2848..000000000 Binary files a/files/20_1584.jpg and /dev/null differ diff --git a/files/20_1584.mp3 b/files/20_1584.mp3 deleted file mode 100644 index 89d86916b..000000000 Binary files a/files/20_1584.mp3 and /dev/null differ diff --git a/files/20_1584_example.mp3 b/files/20_1584_example.mp3 deleted file mode 100644 index 29a5511bd..000000000 Binary files a/files/20_1584_example.mp3 and /dev/null differ diff --git a/files/20_1584_meaning.mp3 b/files/20_1584_meaning.mp3 deleted file mode 100644 index 7aeb86b11..000000000 Binary files a/files/20_1584_meaning.mp3 and /dev/null differ diff --git a/files/20_1585.jpg b/files/20_1585.jpg deleted file mode 100644 index 72140bbf7..000000000 Binary files a/files/20_1585.jpg and /dev/null differ diff --git a/files/20_1585.mp3 b/files/20_1585.mp3 deleted file mode 100644 index 5e4269e2c..000000000 Binary files a/files/20_1585.mp3 and /dev/null differ diff --git a/files/20_1585_example.mp3 b/files/20_1585_example.mp3 deleted file mode 100644 index a89a620a3..000000000 Binary files a/files/20_1585_example.mp3 and /dev/null differ diff --git a/files/20_1585_meaning.mp3 b/files/20_1585_meaning.mp3 deleted file mode 100644 index af0b95a27..000000000 Binary files a/files/20_1585_meaning.mp3 and /dev/null differ diff --git a/files/20_1586.jpg b/files/20_1586.jpg deleted file mode 100644 index 7bf734c07..000000000 Binary files a/files/20_1586.jpg and /dev/null differ diff --git a/files/20_1586.mp3 b/files/20_1586.mp3 deleted file mode 100644 index 97deca4cd..000000000 Binary files a/files/20_1586.mp3 and /dev/null differ diff --git a/files/20_1586_example.mp3 b/files/20_1586_example.mp3 deleted file mode 100644 index f2d7b9439..000000000 Binary files a/files/20_1586_example.mp3 and /dev/null differ diff --git a/files/20_1586_meaning.mp3 b/files/20_1586_meaning.mp3 deleted file mode 100644 index 580fed93a..000000000 Binary files a/files/20_1586_meaning.mp3 and /dev/null differ diff --git a/files/20_1587.jpg b/files/20_1587.jpg deleted file mode 100644 index 062c2cb58..000000000 Binary files a/files/20_1587.jpg and /dev/null differ diff --git a/files/20_1587.mp3 b/files/20_1587.mp3 deleted file mode 100644 index 3edbb9260..000000000 Binary files a/files/20_1587.mp3 and /dev/null differ diff --git a/files/20_1587_example.mp3 b/files/20_1587_example.mp3 deleted file mode 100644 index c844dd9d0..000000000 Binary files a/files/20_1587_example.mp3 and /dev/null differ diff --git a/files/20_1587_meaning.mp3 b/files/20_1587_meaning.mp3 deleted file mode 100644 index 94bad3976..000000000 Binary files a/files/20_1587_meaning.mp3 and /dev/null differ diff --git a/files/20_1588.jpg b/files/20_1588.jpg deleted file mode 100644 index 16c0511fd..000000000 Binary files a/files/20_1588.jpg and /dev/null differ diff --git a/files/20_1588.mp3 b/files/20_1588.mp3 deleted file mode 100644 index 989555cb7..000000000 Binary files a/files/20_1588.mp3 and /dev/null differ diff --git a/files/20_1588_example.mp3 b/files/20_1588_example.mp3 deleted file mode 100644 index 43176b9df..000000000 Binary files a/files/20_1588_example.mp3 and /dev/null differ diff --git a/files/20_1588_meaning.mp3 b/files/20_1588_meaning.mp3 deleted file mode 100644 index c3ddcc8a3..000000000 Binary files a/files/20_1588_meaning.mp3 and /dev/null differ diff --git a/files/20_1589.jpg b/files/20_1589.jpg deleted file mode 100644 index 79da59d2f..000000000 Binary files a/files/20_1589.jpg and /dev/null differ diff --git a/files/20_1589.mp3 b/files/20_1589.mp3 deleted file mode 100644 index 5481a7f64..000000000 Binary files a/files/20_1589.mp3 and /dev/null differ diff --git a/files/20_1589_example.mp3 b/files/20_1589_example.mp3 deleted file mode 100644 index f36d851e3..000000000 Binary files a/files/20_1589_example.mp3 and /dev/null differ diff --git a/files/20_1589_meaning.mp3 b/files/20_1589_meaning.mp3 deleted file mode 100644 index 8063475d3..000000000 Binary files a/files/20_1589_meaning.mp3 and /dev/null differ diff --git a/files/20_1590.jpg b/files/20_1590.jpg deleted file mode 100644 index c08107ca4..000000000 Binary files a/files/20_1590.jpg and /dev/null differ diff --git a/files/20_1590.mp3 b/files/20_1590.mp3 deleted file mode 100644 index 6860ce64f..000000000 Binary files a/files/20_1590.mp3 and /dev/null differ diff --git a/files/20_1590_example.mp3 b/files/20_1590_example.mp3 deleted file mode 100644 index a8c640966..000000000 Binary files a/files/20_1590_example.mp3 and /dev/null differ diff --git a/files/20_1590_meaning.mp3 b/files/20_1590_meaning.mp3 deleted file mode 100644 index a431e16de..000000000 Binary files a/files/20_1590_meaning.mp3 and /dev/null differ diff --git a/files/20_1591.jpg b/files/20_1591.jpg deleted file mode 100644 index 8a109bee2..000000000 Binary files a/files/20_1591.jpg and /dev/null differ diff --git a/files/20_1591.mp3 b/files/20_1591.mp3 deleted file mode 100644 index da03ed2fc..000000000 Binary files a/files/20_1591.mp3 and /dev/null differ diff --git a/files/20_1591_example.mp3 b/files/20_1591_example.mp3 deleted file mode 100644 index 91e39f86b..000000000 Binary files a/files/20_1591_example.mp3 and /dev/null differ diff --git a/files/20_1591_meaning.mp3 b/files/20_1591_meaning.mp3 deleted file mode 100644 index 0b848b634..000000000 Binary files a/files/20_1591_meaning.mp3 and /dev/null differ diff --git a/files/20_1592.jpg b/files/20_1592.jpg deleted file mode 100644 index f9ba30730..000000000 Binary files a/files/20_1592.jpg and /dev/null differ diff --git a/files/20_1592.mp3 b/files/20_1592.mp3 deleted file mode 100644 index 846147fd8..000000000 Binary files a/files/20_1592.mp3 and /dev/null differ diff --git a/files/20_1592_example.mp3 b/files/20_1592_example.mp3 deleted file mode 100644 index 4e25de38a..000000000 Binary files a/files/20_1592_example.mp3 and /dev/null differ diff --git a/files/20_1592_meaning.mp3 b/files/20_1592_meaning.mp3 deleted file mode 100644 index 8b2ea9557..000000000 Binary files a/files/20_1592_meaning.mp3 and /dev/null differ diff --git a/files/20_1593.jpg b/files/20_1593.jpg deleted file mode 100644 index 6e495d553..000000000 Binary files a/files/20_1593.jpg and /dev/null differ diff --git a/files/20_1593.mp3 b/files/20_1593.mp3 deleted file mode 100644 index 725bcc16f..000000000 Binary files a/files/20_1593.mp3 and /dev/null differ diff --git a/files/20_1593_example.mp3 b/files/20_1593_example.mp3 deleted file mode 100644 index 5e32a1c9f..000000000 Binary files a/files/20_1593_example.mp3 and /dev/null differ diff --git a/files/20_1593_meaning.mp3 b/files/20_1593_meaning.mp3 deleted file mode 100644 index 380947736..000000000 Binary files a/files/20_1593_meaning.mp3 and /dev/null differ diff --git a/files/20_1594.jpg b/files/20_1594.jpg deleted file mode 100644 index b0ee97935..000000000 Binary files a/files/20_1594.jpg and /dev/null differ diff --git a/files/20_1594.mp3 b/files/20_1594.mp3 deleted file mode 100644 index 171a620b9..000000000 Binary files a/files/20_1594.mp3 and /dev/null differ diff --git a/files/20_1594_example.mp3 b/files/20_1594_example.mp3 deleted file mode 100644 index b9a1998f3..000000000 Binary files a/files/20_1594_example.mp3 and /dev/null differ diff --git a/files/20_1594_meaning.mp3 b/files/20_1594_meaning.mp3 deleted file mode 100644 index 55be2e518..000000000 Binary files a/files/20_1594_meaning.mp3 and /dev/null differ diff --git a/files/20_1595.jpg b/files/20_1595.jpg deleted file mode 100644 index 918c98d36..000000000 Binary files a/files/20_1595.jpg and /dev/null differ diff --git a/files/20_1595.mp3 b/files/20_1595.mp3 deleted file mode 100644 index 1392ee260..000000000 Binary files a/files/20_1595.mp3 and /dev/null differ diff --git a/files/20_1595_example.mp3 b/files/20_1595_example.mp3 deleted file mode 100644 index f13cb62fd..000000000 Binary files a/files/20_1595_example.mp3 and /dev/null differ diff --git a/files/20_1595_meaning.mp3 b/files/20_1595_meaning.mp3 deleted file mode 100644 index ad948edf3..000000000 Binary files a/files/20_1595_meaning.mp3 and /dev/null differ diff --git a/files/20_1596.jpg b/files/20_1596.jpg deleted file mode 100644 index f3cd81c37..000000000 Binary files a/files/20_1596.jpg and /dev/null differ diff --git a/files/20_1596.mp3 b/files/20_1596.mp3 deleted file mode 100644 index 54aab118f..000000000 Binary files a/files/20_1596.mp3 and /dev/null differ diff --git a/files/20_1596_example.mp3 b/files/20_1596_example.mp3 deleted file mode 100644 index 465600a57..000000000 Binary files a/files/20_1596_example.mp3 and /dev/null differ diff --git a/files/20_1596_meaning.mp3 b/files/20_1596_meaning.mp3 deleted file mode 100644 index 833466697..000000000 Binary files a/files/20_1596_meaning.mp3 and /dev/null differ diff --git a/files/20_1597.jpg b/files/20_1597.jpg deleted file mode 100644 index 509584194..000000000 Binary files a/files/20_1597.jpg and /dev/null differ diff --git a/files/20_1597.mp3 b/files/20_1597.mp3 deleted file mode 100644 index bc2517f51..000000000 Binary files a/files/20_1597.mp3 and /dev/null differ diff --git a/files/20_1597_example.mp3 b/files/20_1597_example.mp3 deleted file mode 100644 index 9f08df5b9..000000000 Binary files a/files/20_1597_example.mp3 and /dev/null differ diff --git a/files/20_1597_meaning.mp3 b/files/20_1597_meaning.mp3 deleted file mode 100644 index f48650399..000000000 Binary files a/files/20_1597_meaning.mp3 and /dev/null differ diff --git a/files/20_1598.jpg b/files/20_1598.jpg deleted file mode 100644 index b77ea8ead..000000000 Binary files a/files/20_1598.jpg and /dev/null differ diff --git a/files/20_1598.mp3 b/files/20_1598.mp3 deleted file mode 100644 index 30038af4e..000000000 Binary files a/files/20_1598.mp3 and /dev/null differ diff --git a/files/20_1598_example.mp3 b/files/20_1598_example.mp3 deleted file mode 100644 index 158b18d83..000000000 Binary files a/files/20_1598_example.mp3 and /dev/null differ diff --git a/files/20_1598_meaning.mp3 b/files/20_1598_meaning.mp3 deleted file mode 100644 index 9c3e99a13..000000000 Binary files a/files/20_1598_meaning.mp3 and /dev/null differ diff --git a/files/20_1599.jpg b/files/20_1599.jpg deleted file mode 100644 index 28a20cd28..000000000 Binary files a/files/20_1599.jpg and /dev/null differ diff --git a/files/20_1599.mp3 b/files/20_1599.mp3 deleted file mode 100644 index 768856bb2..000000000 Binary files a/files/20_1599.mp3 and /dev/null differ diff --git a/files/20_1599_example.mp3 b/files/20_1599_example.mp3 deleted file mode 100644 index b5c9cf271..000000000 Binary files a/files/20_1599_example.mp3 and /dev/null differ diff --git a/files/20_1599_meaning.mp3 b/files/20_1599_meaning.mp3 deleted file mode 100644 index e75460a08..000000000 Binary files a/files/20_1599_meaning.mp3 and /dev/null differ diff --git a/files/20_1600.jpg b/files/20_1600.jpg deleted file mode 100644 index e89eebbd6..000000000 Binary files a/files/20_1600.jpg and /dev/null differ diff --git a/files/20_1600.mp3 b/files/20_1600.mp3 deleted file mode 100644 index ff8b7ef14..000000000 Binary files a/files/20_1600.mp3 and /dev/null differ diff --git a/files/20_1600_example.mp3 b/files/20_1600_example.mp3 deleted file mode 100644 index c8b62f66a..000000000 Binary files a/files/20_1600_example.mp3 and /dev/null differ diff --git a/files/20_1600_meaning.mp3 b/files/20_1600_meaning.mp3 deleted file mode 100644 index 2415bcd58..000000000 Binary files a/files/20_1600_meaning.mp3 and /dev/null differ diff --git a/files/20_2181.jpg b/files/20_2181.jpg deleted file mode 100644 index 33d189cd6..000000000 Binary files a/files/20_2181.jpg and /dev/null differ diff --git a/files/20_2181.mp3 b/files/20_2181.mp3 deleted file mode 100644 index 79a075623..000000000 Binary files a/files/20_2181.mp3 and /dev/null differ diff --git a/files/20_2181_example.mp3 b/files/20_2181_example.mp3 deleted file mode 100644 index ed1457f34..000000000 Binary files a/files/20_2181_example.mp3 and /dev/null differ diff --git a/files/20_2181_meaning.mp3 b/files/20_2181_meaning.mp3 deleted file mode 100644 index 8d0de8859..000000000 Binary files a/files/20_2181_meaning.mp3 and /dev/null differ diff --git a/files/20_2182.jpg b/files/20_2182.jpg deleted file mode 100644 index 15a9bde15..000000000 Binary files a/files/20_2182.jpg and /dev/null differ diff --git a/files/20_2182.mp3 b/files/20_2182.mp3 deleted file mode 100644 index 9b30dfd53..000000000 Binary files a/files/20_2182.mp3 and /dev/null differ diff --git a/files/20_2182_example.mp3 b/files/20_2182_example.mp3 deleted file mode 100644 index c2f0d3e9b..000000000 Binary files a/files/20_2182_example.mp3 and /dev/null differ diff --git a/files/20_2182_meaning.mp3 b/files/20_2182_meaning.mp3 deleted file mode 100644 index d8b077853..000000000 Binary files a/files/20_2182_meaning.mp3 and /dev/null differ diff --git a/files/20_2183.jpg b/files/20_2183.jpg deleted file mode 100644 index acc6c6556..000000000 Binary files a/files/20_2183.jpg and /dev/null differ diff --git a/files/20_2183.mp3 b/files/20_2183.mp3 deleted file mode 100644 index 5074671a3..000000000 Binary files a/files/20_2183.mp3 and /dev/null differ diff --git a/files/20_2183_example.mp3 b/files/20_2183_example.mp3 deleted file mode 100644 index 4b4a6e6c1..000000000 Binary files a/files/20_2183_example.mp3 and /dev/null differ diff --git a/files/20_2183_meaning.mp3 b/files/20_2183_meaning.mp3 deleted file mode 100644 index 30817471e..000000000 Binary files a/files/20_2183_meaning.mp3 and /dev/null differ diff --git a/files/20_2184.jpg b/files/20_2184.jpg deleted file mode 100644 index e6c047fb6..000000000 Binary files a/files/20_2184.jpg and /dev/null differ diff --git a/files/20_2184.mp3 b/files/20_2184.mp3 deleted file mode 100644 index ec4c20984..000000000 Binary files a/files/20_2184.mp3 and /dev/null differ diff --git a/files/20_2184_example.mp3 b/files/20_2184_example.mp3 deleted file mode 100644 index 09d7f6366..000000000 Binary files a/files/20_2184_example.mp3 and /dev/null differ diff --git a/files/20_2184_meaning.mp3 b/files/20_2184_meaning.mp3 deleted file mode 100644 index 15e8a52f4..000000000 Binary files a/files/20_2184_meaning.mp3 and /dev/null differ diff --git a/files/20_2185.jpg b/files/20_2185.jpg deleted file mode 100644 index b2643afc5..000000000 Binary files a/files/20_2185.jpg and /dev/null differ diff --git a/files/20_2185.mp3 b/files/20_2185.mp3 deleted file mode 100644 index a126b43a9..000000000 Binary files a/files/20_2185.mp3 and /dev/null differ diff --git a/files/20_2185_example.mp3 b/files/20_2185_example.mp3 deleted file mode 100644 index 1fe477401..000000000 Binary files a/files/20_2185_example.mp3 and /dev/null differ diff --git a/files/20_2185_meaning.mp3 b/files/20_2185_meaning.mp3 deleted file mode 100644 index 60c944c29..000000000 Binary files a/files/20_2185_meaning.mp3 and /dev/null differ diff --git a/files/20_2186.jpg b/files/20_2186.jpg deleted file mode 100644 index 9a8c2c50e..000000000 Binary files a/files/20_2186.jpg and /dev/null differ diff --git a/files/20_2186.mp3 b/files/20_2186.mp3 deleted file mode 100644 index d92c73868..000000000 Binary files a/files/20_2186.mp3 and /dev/null differ diff --git a/files/20_2186_example.mp3 b/files/20_2186_example.mp3 deleted file mode 100644 index 1f2e07784..000000000 Binary files a/files/20_2186_example.mp3 and /dev/null differ diff --git a/files/20_2186_meaning.mp3 b/files/20_2186_meaning.mp3 deleted file mode 100644 index d042862c7..000000000 Binary files a/files/20_2186_meaning.mp3 and /dev/null differ diff --git a/files/20_2187.jpg b/files/20_2187.jpg deleted file mode 100644 index 6c202ae0f..000000000 Binary files a/files/20_2187.jpg and /dev/null differ diff --git a/files/20_2187.mp3 b/files/20_2187.mp3 deleted file mode 100644 index 86e328e96..000000000 Binary files a/files/20_2187.mp3 and /dev/null differ diff --git a/files/20_2187_example.mp3 b/files/20_2187_example.mp3 deleted file mode 100644 index f9cc6d430..000000000 Binary files a/files/20_2187_example.mp3 and /dev/null differ diff --git a/files/20_2187_meaning.mp3 b/files/20_2187_meaning.mp3 deleted file mode 100644 index 5cd30bf00..000000000 Binary files a/files/20_2187_meaning.mp3 and /dev/null differ diff --git a/files/20_2188.jpg b/files/20_2188.jpg deleted file mode 100644 index 676cd37ff..000000000 Binary files a/files/20_2188.jpg and /dev/null differ diff --git a/files/20_2188.mp3 b/files/20_2188.mp3 deleted file mode 100644 index b5f639aa4..000000000 Binary files a/files/20_2188.mp3 and /dev/null differ diff --git a/files/20_2188_example.mp3 b/files/20_2188_example.mp3 deleted file mode 100644 index c306b72ec..000000000 Binary files a/files/20_2188_example.mp3 and /dev/null differ diff --git a/files/20_2188_meaning.mp3 b/files/20_2188_meaning.mp3 deleted file mode 100644 index ebb3cb9cd..000000000 Binary files a/files/20_2188_meaning.mp3 and /dev/null differ diff --git a/files/20_2189.jpg b/files/20_2189.jpg deleted file mode 100644 index 66a2f108b..000000000 Binary files a/files/20_2189.jpg and /dev/null differ diff --git a/files/20_2189.mp3 b/files/20_2189.mp3 deleted file mode 100644 index e11a3b516..000000000 Binary files a/files/20_2189.mp3 and /dev/null differ diff --git a/files/20_2189_example.mp3 b/files/20_2189_example.mp3 deleted file mode 100644 index 208142dc2..000000000 Binary files a/files/20_2189_example.mp3 and /dev/null differ diff --git a/files/20_2189_meaning.mp3 b/files/20_2189_meaning.mp3 deleted file mode 100644 index 67fea135d..000000000 Binary files a/files/20_2189_meaning.mp3 and /dev/null differ diff --git a/files/20_2190.jpg b/files/20_2190.jpg deleted file mode 100644 index 14474e6bb..000000000 Binary files a/files/20_2190.jpg and /dev/null differ diff --git a/files/20_2190.mp3 b/files/20_2190.mp3 deleted file mode 100644 index b2cb8082c..000000000 Binary files a/files/20_2190.mp3 and /dev/null differ diff --git a/files/20_2190_example.mp3 b/files/20_2190_example.mp3 deleted file mode 100644 index 3703eae59..000000000 Binary files a/files/20_2190_example.mp3 and /dev/null differ diff --git a/files/20_2190_meaning.mp3 b/files/20_2190_meaning.mp3 deleted file mode 100644 index ccc1f5977..000000000 Binary files a/files/20_2190_meaning.mp3 and /dev/null differ diff --git a/files/20_2191.jpg b/files/20_2191.jpg deleted file mode 100644 index bf4208f9a..000000000 Binary files a/files/20_2191.jpg and /dev/null differ diff --git a/files/20_2191.mp3 b/files/20_2191.mp3 deleted file mode 100644 index 979cae0e0..000000000 Binary files a/files/20_2191.mp3 and /dev/null differ diff --git a/files/20_2191_example.mp3 b/files/20_2191_example.mp3 deleted file mode 100644 index c1e993625..000000000 Binary files a/files/20_2191_example.mp3 and /dev/null differ diff --git a/files/20_2191_meaning.mp3 b/files/20_2191_meaning.mp3 deleted file mode 100644 index 18c182e3d..000000000 Binary files a/files/20_2191_meaning.mp3 and /dev/null differ diff --git a/files/20_2192.jpg b/files/20_2192.jpg deleted file mode 100644 index d598b98b9..000000000 Binary files a/files/20_2192.jpg and /dev/null differ diff --git a/files/20_2192.mp3 b/files/20_2192.mp3 deleted file mode 100644 index e1c1c68fd..000000000 Binary files a/files/20_2192.mp3 and /dev/null differ diff --git a/files/20_2192_example.mp3 b/files/20_2192_example.mp3 deleted file mode 100644 index 6c3d0771f..000000000 Binary files a/files/20_2192_example.mp3 and /dev/null differ diff --git a/files/20_2192_meaning.mp3 b/files/20_2192_meaning.mp3 deleted file mode 100644 index 31371743e..000000000 Binary files a/files/20_2192_meaning.mp3 and /dev/null differ diff --git a/files/20_2193.jpg b/files/20_2193.jpg deleted file mode 100644 index b7566590f..000000000 Binary files a/files/20_2193.jpg and /dev/null differ diff --git a/files/20_2193.mp3 b/files/20_2193.mp3 deleted file mode 100644 index a82f7b4ec..000000000 Binary files a/files/20_2193.mp3 and /dev/null differ diff --git a/files/20_2193_example.mp3 b/files/20_2193_example.mp3 deleted file mode 100644 index 6a0d98547..000000000 Binary files a/files/20_2193_example.mp3 and /dev/null differ diff --git a/files/20_2193_meaning.mp3 b/files/20_2193_meaning.mp3 deleted file mode 100644 index 794c7f311..000000000 Binary files a/files/20_2193_meaning.mp3 and /dev/null differ diff --git a/files/20_2194.jpg b/files/20_2194.jpg deleted file mode 100644 index cc5a5b6e6..000000000 Binary files a/files/20_2194.jpg and /dev/null differ diff --git a/files/20_2194.mp3 b/files/20_2194.mp3 deleted file mode 100644 index 0e9e6be95..000000000 Binary files a/files/20_2194.mp3 and /dev/null differ diff --git a/files/20_2194_example.mp3 b/files/20_2194_example.mp3 deleted file mode 100644 index 6408a0503..000000000 Binary files a/files/20_2194_example.mp3 and /dev/null differ diff --git a/files/20_2194_meaning.mp3 b/files/20_2194_meaning.mp3 deleted file mode 100644 index 4398857a7..000000000 Binary files a/files/20_2194_meaning.mp3 and /dev/null differ diff --git a/files/20_2195.jpg b/files/20_2195.jpg deleted file mode 100644 index a84b55ded..000000000 Binary files a/files/20_2195.jpg and /dev/null differ diff --git a/files/20_2195.mp3 b/files/20_2195.mp3 deleted file mode 100644 index 93e3408dd..000000000 Binary files a/files/20_2195.mp3 and /dev/null differ diff --git a/files/20_2195_example.mp3 b/files/20_2195_example.mp3 deleted file mode 100644 index ac683e919..000000000 Binary files a/files/20_2195_example.mp3 and /dev/null differ diff --git a/files/20_2195_meaning.mp3 b/files/20_2195_meaning.mp3 deleted file mode 100644 index 01d561ba2..000000000 Binary files a/files/20_2195_meaning.mp3 and /dev/null differ diff --git a/files/20_2196.jpg b/files/20_2196.jpg deleted file mode 100644 index 8fc9e89db..000000000 Binary files a/files/20_2196.jpg and /dev/null differ diff --git a/files/20_2196.mp3 b/files/20_2196.mp3 deleted file mode 100644 index e02a729c5..000000000 Binary files a/files/20_2196.mp3 and /dev/null differ diff --git a/files/20_2196_example.mp3 b/files/20_2196_example.mp3 deleted file mode 100644 index 7bd6991e3..000000000 Binary files a/files/20_2196_example.mp3 and /dev/null differ diff --git a/files/20_2196_meaning.mp3 b/files/20_2196_meaning.mp3 deleted file mode 100644 index 7a861295a..000000000 Binary files a/files/20_2196_meaning.mp3 and /dev/null differ diff --git a/files/20_2197.jpg b/files/20_2197.jpg deleted file mode 100644 index ac5be22f0..000000000 Binary files a/files/20_2197.jpg and /dev/null differ diff --git a/files/20_2197.mp3 b/files/20_2197.mp3 deleted file mode 100644 index 9fe9beaa8..000000000 Binary files a/files/20_2197.mp3 and /dev/null differ diff --git a/files/20_2197_example.mp3 b/files/20_2197_example.mp3 deleted file mode 100644 index 6d47c7df8..000000000 Binary files a/files/20_2197_example.mp3 and /dev/null differ diff --git a/files/20_2197_meaning.mp3 b/files/20_2197_meaning.mp3 deleted file mode 100644 index 57a4883cc..000000000 Binary files a/files/20_2197_meaning.mp3 and /dev/null differ diff --git a/files/20_2198.jpg b/files/20_2198.jpg deleted file mode 100644 index 6894a5b52..000000000 Binary files a/files/20_2198.jpg and /dev/null differ diff --git a/files/20_2198.mp3 b/files/20_2198.mp3 deleted file mode 100644 index 4bc7e8b32..000000000 Binary files a/files/20_2198.mp3 and /dev/null differ diff --git a/files/20_2198_example.mp3 b/files/20_2198_example.mp3 deleted file mode 100644 index b9a4eee45..000000000 Binary files a/files/20_2198_example.mp3 and /dev/null differ diff --git a/files/20_2198_meaning.mp3 b/files/20_2198_meaning.mp3 deleted file mode 100644 index 86a51a5c9..000000000 Binary files a/files/20_2198_meaning.mp3 and /dev/null differ diff --git a/files/20_2199.jpg b/files/20_2199.jpg deleted file mode 100644 index e42abcb49..000000000 Binary files a/files/20_2199.jpg and /dev/null differ diff --git a/files/20_2199.mp3 b/files/20_2199.mp3 deleted file mode 100644 index 3f6400f17..000000000 Binary files a/files/20_2199.mp3 and /dev/null differ diff --git a/files/20_2199_example.mp3 b/files/20_2199_example.mp3 deleted file mode 100644 index fd4186e25..000000000 Binary files a/files/20_2199_example.mp3 and /dev/null differ diff --git a/files/20_2199_meaning.mp3 b/files/20_2199_meaning.mp3 deleted file mode 100644 index 958226679..000000000 Binary files a/files/20_2199_meaning.mp3 and /dev/null differ diff --git a/files/20_2200.jpg b/files/20_2200.jpg deleted file mode 100644 index d6f50f259..000000000 Binary files a/files/20_2200.jpg and /dev/null differ diff --git a/files/20_2200.mp3 b/files/20_2200.mp3 deleted file mode 100644 index ef3efa858..000000000 Binary files a/files/20_2200.mp3 and /dev/null differ diff --git a/files/20_2200_example.mp3 b/files/20_2200_example.mp3 deleted file mode 100644 index b9543c31e..000000000 Binary files a/files/20_2200_example.mp3 and /dev/null differ diff --git a/files/20_2200_meaning.mp3 b/files/20_2200_meaning.mp3 deleted file mode 100644 index 0a032090e..000000000 Binary files a/files/20_2200_meaning.mp3 and /dev/null differ diff --git a/files/20_2781.jpg b/files/20_2781.jpg deleted file mode 100644 index 0c1fa38be..000000000 Binary files a/files/20_2781.jpg and /dev/null differ diff --git a/files/20_2781.mp3 b/files/20_2781.mp3 deleted file mode 100644 index c715863d9..000000000 Binary files a/files/20_2781.mp3 and /dev/null differ diff --git a/files/20_2781_example.mp3 b/files/20_2781_example.mp3 deleted file mode 100644 index 0c591ea49..000000000 Binary files a/files/20_2781_example.mp3 and /dev/null differ diff --git a/files/20_2781_meaning.mp3 b/files/20_2781_meaning.mp3 deleted file mode 100644 index 8bb653aa3..000000000 Binary files a/files/20_2781_meaning.mp3 and /dev/null differ diff --git a/files/20_2782.jpg b/files/20_2782.jpg deleted file mode 100644 index 7e9322aaf..000000000 Binary files a/files/20_2782.jpg and /dev/null differ diff --git a/files/20_2782.mp3 b/files/20_2782.mp3 deleted file mode 100644 index fe9296072..000000000 Binary files a/files/20_2782.mp3 and /dev/null differ diff --git a/files/20_2782_example.mp3 b/files/20_2782_example.mp3 deleted file mode 100644 index 876ae6cf4..000000000 Binary files a/files/20_2782_example.mp3 and /dev/null differ diff --git a/files/20_2782_meaning.mp3 b/files/20_2782_meaning.mp3 deleted file mode 100644 index 77238de50..000000000 Binary files a/files/20_2782_meaning.mp3 and /dev/null differ diff --git a/files/20_2783.jpg b/files/20_2783.jpg deleted file mode 100644 index d12971c05..000000000 Binary files a/files/20_2783.jpg and /dev/null differ diff --git a/files/20_2783.mp3 b/files/20_2783.mp3 deleted file mode 100644 index 25f4e6c8a..000000000 Binary files a/files/20_2783.mp3 and /dev/null differ diff --git a/files/20_2783_example.mp3 b/files/20_2783_example.mp3 deleted file mode 100644 index 80089d6c2..000000000 Binary files a/files/20_2783_example.mp3 and /dev/null differ diff --git a/files/20_2783_meaning.mp3 b/files/20_2783_meaning.mp3 deleted file mode 100644 index 919cf5316..000000000 Binary files a/files/20_2783_meaning.mp3 and /dev/null differ diff --git a/files/20_2784.jpg b/files/20_2784.jpg deleted file mode 100644 index d94fc5b98..000000000 Binary files a/files/20_2784.jpg and /dev/null differ diff --git a/files/20_2784.mp3 b/files/20_2784.mp3 deleted file mode 100644 index 51e54615b..000000000 Binary files a/files/20_2784.mp3 and /dev/null differ diff --git a/files/20_2784_example.mp3 b/files/20_2784_example.mp3 deleted file mode 100644 index c7e6d47f4..000000000 Binary files a/files/20_2784_example.mp3 and /dev/null differ diff --git a/files/20_2784_meaning.mp3 b/files/20_2784_meaning.mp3 deleted file mode 100644 index 6345d707a..000000000 Binary files a/files/20_2784_meaning.mp3 and /dev/null differ diff --git a/files/20_2785.jpg b/files/20_2785.jpg deleted file mode 100644 index 7b7507f33..000000000 Binary files a/files/20_2785.jpg and /dev/null differ diff --git a/files/20_2785.mp3 b/files/20_2785.mp3 deleted file mode 100644 index 53a021547..000000000 Binary files a/files/20_2785.mp3 and /dev/null differ diff --git a/files/20_2785_example.mp3 b/files/20_2785_example.mp3 deleted file mode 100644 index 42f4cca8f..000000000 Binary files a/files/20_2785_example.mp3 and /dev/null differ diff --git a/files/20_2785_meaning.mp3 b/files/20_2785_meaning.mp3 deleted file mode 100644 index 8d7993219..000000000 Binary files a/files/20_2785_meaning.mp3 and /dev/null differ diff --git a/files/20_2786.jpg b/files/20_2786.jpg deleted file mode 100644 index 2bf1b6aba..000000000 Binary files a/files/20_2786.jpg and /dev/null differ diff --git a/files/20_2786.mp3 b/files/20_2786.mp3 deleted file mode 100644 index 2dd7859b8..000000000 Binary files a/files/20_2786.mp3 and /dev/null differ diff --git a/files/20_2786_example.mp3 b/files/20_2786_example.mp3 deleted file mode 100644 index 140816951..000000000 Binary files a/files/20_2786_example.mp3 and /dev/null differ diff --git a/files/20_2786_meaning.mp3 b/files/20_2786_meaning.mp3 deleted file mode 100644 index 71a23868f..000000000 Binary files a/files/20_2786_meaning.mp3 and /dev/null differ diff --git a/files/20_2787.jpg b/files/20_2787.jpg deleted file mode 100644 index 5b7ec86b6..000000000 Binary files a/files/20_2787.jpg and /dev/null differ diff --git a/files/20_2787.mp3 b/files/20_2787.mp3 deleted file mode 100644 index f2a045f5f..000000000 Binary files a/files/20_2787.mp3 and /dev/null differ diff --git a/files/20_2787_example.mp3 b/files/20_2787_example.mp3 deleted file mode 100644 index a05802053..000000000 Binary files a/files/20_2787_example.mp3 and /dev/null differ diff --git a/files/20_2787_meaning.mp3 b/files/20_2787_meaning.mp3 deleted file mode 100644 index 77bce7ad2..000000000 Binary files a/files/20_2787_meaning.mp3 and /dev/null differ diff --git a/files/20_2788.jpg b/files/20_2788.jpg deleted file mode 100644 index a60cdcbfa..000000000 Binary files a/files/20_2788.jpg and /dev/null differ diff --git a/files/20_2788.mp3 b/files/20_2788.mp3 deleted file mode 100644 index 0068e631a..000000000 Binary files a/files/20_2788.mp3 and /dev/null differ diff --git a/files/20_2788_example.mp3 b/files/20_2788_example.mp3 deleted file mode 100644 index c9427e7c9..000000000 Binary files a/files/20_2788_example.mp3 and /dev/null differ diff --git a/files/20_2788_meaning.mp3 b/files/20_2788_meaning.mp3 deleted file mode 100644 index 2048317aa..000000000 Binary files a/files/20_2788_meaning.mp3 and /dev/null differ diff --git a/files/20_2789.jpg b/files/20_2789.jpg deleted file mode 100644 index 5e1ffcbcd..000000000 Binary files a/files/20_2789.jpg and /dev/null differ diff --git a/files/20_2789.mp3 b/files/20_2789.mp3 deleted file mode 100644 index 9bea3d5fe..000000000 Binary files a/files/20_2789.mp3 and /dev/null differ diff --git a/files/20_2789_example.mp3 b/files/20_2789_example.mp3 deleted file mode 100644 index 74ddf8978..000000000 Binary files a/files/20_2789_example.mp3 and /dev/null differ diff --git a/files/20_2789_meaning.mp3 b/files/20_2789_meaning.mp3 deleted file mode 100644 index 7a58db81c..000000000 Binary files a/files/20_2789_meaning.mp3 and /dev/null differ diff --git a/files/20_2790.jpg b/files/20_2790.jpg deleted file mode 100644 index 0d061a155..000000000 Binary files a/files/20_2790.jpg and /dev/null differ diff --git a/files/20_2790.mp3 b/files/20_2790.mp3 deleted file mode 100644 index 7d5baed11..000000000 Binary files a/files/20_2790.mp3 and /dev/null differ diff --git a/files/20_2790_example.mp3 b/files/20_2790_example.mp3 deleted file mode 100644 index 77fefdda5..000000000 Binary files a/files/20_2790_example.mp3 and /dev/null differ diff --git a/files/20_2790_meaning.mp3 b/files/20_2790_meaning.mp3 deleted file mode 100644 index 22c2a51f9..000000000 Binary files a/files/20_2790_meaning.mp3 and /dev/null differ diff --git a/files/20_2791.jpg b/files/20_2791.jpg deleted file mode 100644 index ba3cde59e..000000000 Binary files a/files/20_2791.jpg and /dev/null differ diff --git a/files/20_2791.mp3 b/files/20_2791.mp3 deleted file mode 100644 index f6616d832..000000000 Binary files a/files/20_2791.mp3 and /dev/null differ diff --git a/files/20_2791_example.mp3 b/files/20_2791_example.mp3 deleted file mode 100644 index 135318bd0..000000000 Binary files a/files/20_2791_example.mp3 and /dev/null differ diff --git a/files/20_2791_meaning.mp3 b/files/20_2791_meaning.mp3 deleted file mode 100644 index efb90b572..000000000 Binary files a/files/20_2791_meaning.mp3 and /dev/null differ diff --git a/files/20_2792.jpg b/files/20_2792.jpg deleted file mode 100644 index b933c67f6..000000000 Binary files a/files/20_2792.jpg and /dev/null differ diff --git a/files/20_2792.mp3 b/files/20_2792.mp3 deleted file mode 100644 index 58de9a45b..000000000 Binary files a/files/20_2792.mp3 and /dev/null differ diff --git a/files/20_2792_example.mp3 b/files/20_2792_example.mp3 deleted file mode 100644 index 4966ec462..000000000 Binary files a/files/20_2792_example.mp3 and /dev/null differ diff --git a/files/20_2792_meaning.mp3 b/files/20_2792_meaning.mp3 deleted file mode 100644 index 583775706..000000000 Binary files a/files/20_2792_meaning.mp3 and /dev/null differ diff --git a/files/20_2793.jpg b/files/20_2793.jpg deleted file mode 100644 index 17d55d26d..000000000 Binary files a/files/20_2793.jpg and /dev/null differ diff --git a/files/20_2793.mp3 b/files/20_2793.mp3 deleted file mode 100644 index 3973cd1bc..000000000 Binary files a/files/20_2793.mp3 and /dev/null differ diff --git a/files/20_2793_example.mp3 b/files/20_2793_example.mp3 deleted file mode 100644 index a67d95190..000000000 Binary files a/files/20_2793_example.mp3 and /dev/null differ diff --git a/files/20_2793_meaning.mp3 b/files/20_2793_meaning.mp3 deleted file mode 100644 index 6ca6b6fa3..000000000 Binary files a/files/20_2793_meaning.mp3 and /dev/null differ diff --git a/files/20_2794.jpg b/files/20_2794.jpg deleted file mode 100644 index 6735ca1d6..000000000 Binary files a/files/20_2794.jpg and /dev/null differ diff --git a/files/20_2794.mp3 b/files/20_2794.mp3 deleted file mode 100644 index f3dc42c90..000000000 Binary files a/files/20_2794.mp3 and /dev/null differ diff --git a/files/20_2794_example.mp3 b/files/20_2794_example.mp3 deleted file mode 100644 index fc456c959..000000000 Binary files a/files/20_2794_example.mp3 and /dev/null differ diff --git a/files/20_2794_meaning.mp3 b/files/20_2794_meaning.mp3 deleted file mode 100644 index 72f93239b..000000000 Binary files a/files/20_2794_meaning.mp3 and /dev/null differ diff --git a/files/20_2795.jpg b/files/20_2795.jpg deleted file mode 100644 index 9d409834b..000000000 Binary files a/files/20_2795.jpg and /dev/null differ diff --git a/files/20_2795.mp3 b/files/20_2795.mp3 deleted file mode 100644 index 1d6a1537b..000000000 Binary files a/files/20_2795.mp3 and /dev/null differ diff --git a/files/20_2795_example.mp3 b/files/20_2795_example.mp3 deleted file mode 100644 index 9431ecc5e..000000000 Binary files a/files/20_2795_example.mp3 and /dev/null differ diff --git a/files/20_2795_meaning.mp3 b/files/20_2795_meaning.mp3 deleted file mode 100644 index 4c4b08e9f..000000000 Binary files a/files/20_2795_meaning.mp3 and /dev/null differ diff --git a/files/20_2796.jpg b/files/20_2796.jpg deleted file mode 100644 index d74615522..000000000 Binary files a/files/20_2796.jpg and /dev/null differ diff --git a/files/20_2796.mp3 b/files/20_2796.mp3 deleted file mode 100644 index 74aca146c..000000000 Binary files a/files/20_2796.mp3 and /dev/null differ diff --git a/files/20_2796_example.mp3 b/files/20_2796_example.mp3 deleted file mode 100644 index 5397598ad..000000000 Binary files a/files/20_2796_example.mp3 and /dev/null differ diff --git a/files/20_2796_meaning.mp3 b/files/20_2796_meaning.mp3 deleted file mode 100644 index 361180a6d..000000000 Binary files a/files/20_2796_meaning.mp3 and /dev/null differ diff --git a/files/20_2797.jpg b/files/20_2797.jpg deleted file mode 100644 index 5e26da348..000000000 Binary files a/files/20_2797.jpg and /dev/null differ diff --git a/files/20_2797.mp3 b/files/20_2797.mp3 deleted file mode 100644 index 3828fd577..000000000 Binary files a/files/20_2797.mp3 and /dev/null differ diff --git a/files/20_2797_example.mp3 b/files/20_2797_example.mp3 deleted file mode 100644 index 0e44fa669..000000000 Binary files a/files/20_2797_example.mp3 and /dev/null differ diff --git a/files/20_2797_meaning.mp3 b/files/20_2797_meaning.mp3 deleted file mode 100644 index 589dc84e4..000000000 Binary files a/files/20_2797_meaning.mp3 and /dev/null differ diff --git a/files/20_2798.jpg b/files/20_2798.jpg deleted file mode 100644 index 4744e5210..000000000 Binary files a/files/20_2798.jpg and /dev/null differ diff --git a/files/20_2798.mp3 b/files/20_2798.mp3 deleted file mode 100644 index 26f0d10cc..000000000 Binary files a/files/20_2798.mp3 and /dev/null differ diff --git a/files/20_2798_example.mp3 b/files/20_2798_example.mp3 deleted file mode 100644 index 6c3afd387..000000000 Binary files a/files/20_2798_example.mp3 and /dev/null differ diff --git a/files/20_2798_meaning.mp3 b/files/20_2798_meaning.mp3 deleted file mode 100644 index 24c8a4715..000000000 Binary files a/files/20_2798_meaning.mp3 and /dev/null differ diff --git a/files/20_2799.jpg b/files/20_2799.jpg deleted file mode 100644 index 7458bfe5b..000000000 Binary files a/files/20_2799.jpg and /dev/null differ diff --git a/files/20_2799.mp3 b/files/20_2799.mp3 deleted file mode 100644 index 50869272c..000000000 Binary files a/files/20_2799.mp3 and /dev/null differ diff --git a/files/20_2799_example.mp3 b/files/20_2799_example.mp3 deleted file mode 100644 index f816ae97a..000000000 Binary files a/files/20_2799_example.mp3 and /dev/null differ diff --git a/files/20_2799_meaning.mp3 b/files/20_2799_meaning.mp3 deleted file mode 100644 index 9f852545d..000000000 Binary files a/files/20_2799_meaning.mp3 and /dev/null differ diff --git a/files/20_2800.jpg b/files/20_2800.jpg deleted file mode 100644 index f638c0c83..000000000 Binary files a/files/20_2800.jpg and /dev/null differ diff --git a/files/20_2800.mp3 b/files/20_2800.mp3 deleted file mode 100644 index 734b3423a..000000000 Binary files a/files/20_2800.mp3 and /dev/null differ diff --git a/files/20_2800_example.mp3 b/files/20_2800_example.mp3 deleted file mode 100644 index a98a1ff9d..000000000 Binary files a/files/20_2800_example.mp3 and /dev/null differ diff --git a/files/20_2800_meaning.mp3 b/files/20_2800_meaning.mp3 deleted file mode 100644 index c60a96e4a..000000000 Binary files a/files/20_2800_meaning.mp3 and /dev/null differ diff --git a/files/20_3381.jpg b/files/20_3381.jpg deleted file mode 100644 index 91515fc67..000000000 Binary files a/files/20_3381.jpg and /dev/null differ diff --git a/files/20_3381.mp3 b/files/20_3381.mp3 deleted file mode 100644 index 4cb8f1b1e..000000000 Binary files a/files/20_3381.mp3 and /dev/null differ diff --git a/files/20_3381_example.mp3 b/files/20_3381_example.mp3 deleted file mode 100644 index cd8f11959..000000000 Binary files a/files/20_3381_example.mp3 and /dev/null differ diff --git a/files/20_3381_meaning.mp3 b/files/20_3381_meaning.mp3 deleted file mode 100644 index 0b09709d4..000000000 Binary files a/files/20_3381_meaning.mp3 and /dev/null differ diff --git a/files/20_3382.jpg b/files/20_3382.jpg deleted file mode 100644 index eff52d432..000000000 Binary files a/files/20_3382.jpg and /dev/null differ diff --git a/files/20_3382.mp3 b/files/20_3382.mp3 deleted file mode 100644 index 29e1c2159..000000000 Binary files a/files/20_3382.mp3 and /dev/null differ diff --git a/files/20_3382_example.mp3 b/files/20_3382_example.mp3 deleted file mode 100644 index f8016c24a..000000000 Binary files a/files/20_3382_example.mp3 and /dev/null differ diff --git a/files/20_3382_meaning.mp3 b/files/20_3382_meaning.mp3 deleted file mode 100644 index 15e186f01..000000000 Binary files a/files/20_3382_meaning.mp3 and /dev/null differ diff --git a/files/20_3383.jpg b/files/20_3383.jpg deleted file mode 100644 index 6d13851c2..000000000 Binary files a/files/20_3383.jpg and /dev/null differ diff --git a/files/20_3383.mp3 b/files/20_3383.mp3 deleted file mode 100644 index 8a0cf59fc..000000000 Binary files a/files/20_3383.mp3 and /dev/null differ diff --git a/files/20_3383_example.mp3 b/files/20_3383_example.mp3 deleted file mode 100644 index 2d4838587..000000000 Binary files a/files/20_3383_example.mp3 and /dev/null differ diff --git a/files/20_3383_meaning.mp3 b/files/20_3383_meaning.mp3 deleted file mode 100644 index fbaa28c6a..000000000 Binary files a/files/20_3383_meaning.mp3 and /dev/null differ diff --git a/files/20_3384.jpg b/files/20_3384.jpg deleted file mode 100644 index 8b8a20c1b..000000000 Binary files a/files/20_3384.jpg and /dev/null differ diff --git a/files/20_3384.mp3 b/files/20_3384.mp3 deleted file mode 100644 index 19eff43c9..000000000 Binary files a/files/20_3384.mp3 and /dev/null differ diff --git a/files/20_3384_example.mp3 b/files/20_3384_example.mp3 deleted file mode 100644 index a1fc5abd9..000000000 Binary files a/files/20_3384_example.mp3 and /dev/null differ diff --git a/files/20_3384_meaning.mp3 b/files/20_3384_meaning.mp3 deleted file mode 100644 index 6a6bfb388..000000000 Binary files a/files/20_3384_meaning.mp3 and /dev/null differ diff --git a/files/20_3385.jpg b/files/20_3385.jpg deleted file mode 100644 index 2ad0d123b..000000000 Binary files a/files/20_3385.jpg and /dev/null differ diff --git a/files/20_3385.mp3 b/files/20_3385.mp3 deleted file mode 100644 index bddff7367..000000000 Binary files a/files/20_3385.mp3 and /dev/null differ diff --git a/files/20_3385_example.mp3 b/files/20_3385_example.mp3 deleted file mode 100644 index 64604c121..000000000 Binary files a/files/20_3385_example.mp3 and /dev/null differ diff --git a/files/20_3385_meaning.mp3 b/files/20_3385_meaning.mp3 deleted file mode 100644 index 8449128aa..000000000 Binary files a/files/20_3385_meaning.mp3 and /dev/null differ diff --git a/files/20_3386.jpg b/files/20_3386.jpg deleted file mode 100644 index 3f65b0f83..000000000 Binary files a/files/20_3386.jpg and /dev/null differ diff --git a/files/20_3386.mp3 b/files/20_3386.mp3 deleted file mode 100644 index 437cac187..000000000 Binary files a/files/20_3386.mp3 and /dev/null differ diff --git a/files/20_3386_example.mp3 b/files/20_3386_example.mp3 deleted file mode 100644 index f81b0f256..000000000 Binary files a/files/20_3386_example.mp3 and /dev/null differ diff --git a/files/20_3386_meaning.mp3 b/files/20_3386_meaning.mp3 deleted file mode 100644 index 2f4231914..000000000 Binary files a/files/20_3386_meaning.mp3 and /dev/null differ diff --git a/files/20_3387.jpg b/files/20_3387.jpg deleted file mode 100644 index 28120ae10..000000000 Binary files a/files/20_3387.jpg and /dev/null differ diff --git a/files/20_3387.mp3 b/files/20_3387.mp3 deleted file mode 100644 index 40cbd13c6..000000000 Binary files a/files/20_3387.mp3 and /dev/null differ diff --git a/files/20_3387_example.mp3 b/files/20_3387_example.mp3 deleted file mode 100644 index 5df2d73ee..000000000 Binary files a/files/20_3387_example.mp3 and /dev/null differ diff --git a/files/20_3387_meaning.mp3 b/files/20_3387_meaning.mp3 deleted file mode 100644 index c296ab702..000000000 Binary files a/files/20_3387_meaning.mp3 and /dev/null differ diff --git a/files/20_3388.jpg b/files/20_3388.jpg deleted file mode 100644 index 0b7b838f2..000000000 Binary files a/files/20_3388.jpg and /dev/null differ diff --git a/files/20_3388.mp3 b/files/20_3388.mp3 deleted file mode 100644 index b6765aa59..000000000 Binary files a/files/20_3388.mp3 and /dev/null differ diff --git a/files/20_3388_example.mp3 b/files/20_3388_example.mp3 deleted file mode 100644 index 0bcafb89d..000000000 Binary files a/files/20_3388_example.mp3 and /dev/null differ diff --git a/files/20_3388_meaning.mp3 b/files/20_3388_meaning.mp3 deleted file mode 100644 index 67d3c3479..000000000 Binary files a/files/20_3388_meaning.mp3 and /dev/null differ diff --git a/files/20_3389.jpg b/files/20_3389.jpg deleted file mode 100644 index 1651ce295..000000000 Binary files a/files/20_3389.jpg and /dev/null differ diff --git a/files/20_3389.mp3 b/files/20_3389.mp3 deleted file mode 100644 index c1d52d9f1..000000000 Binary files a/files/20_3389.mp3 and /dev/null differ diff --git a/files/20_3389_example.mp3 b/files/20_3389_example.mp3 deleted file mode 100644 index 1e058c5e4..000000000 Binary files a/files/20_3389_example.mp3 and /dev/null differ diff --git a/files/20_3389_meaning.mp3 b/files/20_3389_meaning.mp3 deleted file mode 100644 index 567831162..000000000 Binary files a/files/20_3389_meaning.mp3 and /dev/null differ diff --git a/files/20_3390.jpg b/files/20_3390.jpg deleted file mode 100644 index 1492e48f5..000000000 Binary files a/files/20_3390.jpg and /dev/null differ diff --git a/files/20_3390.mp3 b/files/20_3390.mp3 deleted file mode 100644 index 8c751d5be..000000000 Binary files a/files/20_3390.mp3 and /dev/null differ diff --git a/files/20_3390_example.mp3 b/files/20_3390_example.mp3 deleted file mode 100644 index 61ab5c716..000000000 Binary files a/files/20_3390_example.mp3 and /dev/null differ diff --git a/files/20_3390_meaning.mp3 b/files/20_3390_meaning.mp3 deleted file mode 100644 index ffa1f0dd8..000000000 Binary files a/files/20_3390_meaning.mp3 and /dev/null differ diff --git a/files/20_3391.jpg b/files/20_3391.jpg deleted file mode 100644 index 76c9f8e1a..000000000 Binary files a/files/20_3391.jpg and /dev/null differ diff --git a/files/20_3391.mp3 b/files/20_3391.mp3 deleted file mode 100644 index 2ad51b6fa..000000000 Binary files a/files/20_3391.mp3 and /dev/null differ diff --git a/files/20_3391_example.mp3 b/files/20_3391_example.mp3 deleted file mode 100644 index 3b164f8e6..000000000 Binary files a/files/20_3391_example.mp3 and /dev/null differ diff --git a/files/20_3391_meaning.mp3 b/files/20_3391_meaning.mp3 deleted file mode 100644 index 5288e2897..000000000 Binary files a/files/20_3391_meaning.mp3 and /dev/null differ diff --git a/files/20_3392.jpg b/files/20_3392.jpg deleted file mode 100644 index 0b881f1ce..000000000 Binary files a/files/20_3392.jpg and /dev/null differ diff --git a/files/20_3392.mp3 b/files/20_3392.mp3 deleted file mode 100644 index 22111cac2..000000000 Binary files a/files/20_3392.mp3 and /dev/null differ diff --git a/files/20_3392_example.mp3 b/files/20_3392_example.mp3 deleted file mode 100644 index 68809d999..000000000 Binary files a/files/20_3392_example.mp3 and /dev/null differ diff --git a/files/20_3392_meaning.mp3 b/files/20_3392_meaning.mp3 deleted file mode 100644 index 49525fd21..000000000 Binary files a/files/20_3392_meaning.mp3 and /dev/null differ diff --git a/files/20_3393.jpg b/files/20_3393.jpg deleted file mode 100644 index 982f716f9..000000000 Binary files a/files/20_3393.jpg and /dev/null differ diff --git a/files/20_3393.mp3 b/files/20_3393.mp3 deleted file mode 100644 index 09d07b306..000000000 Binary files a/files/20_3393.mp3 and /dev/null differ diff --git a/files/20_3393_example.mp3 b/files/20_3393_example.mp3 deleted file mode 100644 index a306e7579..000000000 Binary files a/files/20_3393_example.mp3 and /dev/null differ diff --git a/files/20_3393_meaning.mp3 b/files/20_3393_meaning.mp3 deleted file mode 100644 index f94521521..000000000 Binary files a/files/20_3393_meaning.mp3 and /dev/null differ diff --git a/files/20_3394.jpg b/files/20_3394.jpg deleted file mode 100644 index ce56864f3..000000000 Binary files a/files/20_3394.jpg and /dev/null differ diff --git a/files/20_3394.mp3 b/files/20_3394.mp3 deleted file mode 100644 index 0c22c5448..000000000 Binary files a/files/20_3394.mp3 and /dev/null differ diff --git a/files/20_3394_example.mp3 b/files/20_3394_example.mp3 deleted file mode 100644 index abe4d0dcd..000000000 Binary files a/files/20_3394_example.mp3 and /dev/null differ diff --git a/files/20_3394_meaning.mp3 b/files/20_3394_meaning.mp3 deleted file mode 100644 index de476dca4..000000000 Binary files a/files/20_3394_meaning.mp3 and /dev/null differ diff --git a/files/20_3395.jpg b/files/20_3395.jpg deleted file mode 100644 index b7fdd5d3f..000000000 Binary files a/files/20_3395.jpg and /dev/null differ diff --git a/files/20_3395.mp3 b/files/20_3395.mp3 deleted file mode 100644 index 6266ca638..000000000 Binary files a/files/20_3395.mp3 and /dev/null differ diff --git a/files/20_3395_example.mp3 b/files/20_3395_example.mp3 deleted file mode 100644 index aea2771fa..000000000 Binary files a/files/20_3395_example.mp3 and /dev/null differ diff --git a/files/20_3395_meaning.mp3 b/files/20_3395_meaning.mp3 deleted file mode 100644 index 47943504e..000000000 Binary files a/files/20_3395_meaning.mp3 and /dev/null differ diff --git a/files/20_3396.jpg b/files/20_3396.jpg deleted file mode 100644 index f757408b5..000000000 Binary files a/files/20_3396.jpg and /dev/null differ diff --git a/files/20_3396.mp3 b/files/20_3396.mp3 deleted file mode 100644 index 0f9204309..000000000 Binary files a/files/20_3396.mp3 and /dev/null differ diff --git a/files/20_3396_example.mp3 b/files/20_3396_example.mp3 deleted file mode 100644 index 70762f2d9..000000000 Binary files a/files/20_3396_example.mp3 and /dev/null differ diff --git a/files/20_3396_meaning.mp3 b/files/20_3396_meaning.mp3 deleted file mode 100644 index cce46c5bb..000000000 Binary files a/files/20_3396_meaning.mp3 and /dev/null differ diff --git a/files/20_3397.jpg b/files/20_3397.jpg deleted file mode 100644 index 73b99fcb9..000000000 Binary files a/files/20_3397.jpg and /dev/null differ diff --git a/files/20_3397.mp3 b/files/20_3397.mp3 deleted file mode 100644 index 5ad6c2b36..000000000 Binary files a/files/20_3397.mp3 and /dev/null differ diff --git a/files/20_3397_example.mp3 b/files/20_3397_example.mp3 deleted file mode 100644 index 06d034cf3..000000000 Binary files a/files/20_3397_example.mp3 and /dev/null differ diff --git a/files/20_3397_meaning.mp3 b/files/20_3397_meaning.mp3 deleted file mode 100644 index ad2032541..000000000 Binary files a/files/20_3397_meaning.mp3 and /dev/null differ diff --git a/files/20_3398.jpg b/files/20_3398.jpg deleted file mode 100644 index 9bdfdfdea..000000000 Binary files a/files/20_3398.jpg and /dev/null differ diff --git a/files/20_3398.mp3 b/files/20_3398.mp3 deleted file mode 100644 index d1cdd9835..000000000 Binary files a/files/20_3398.mp3 and /dev/null differ diff --git a/files/20_3398_example.mp3 b/files/20_3398_example.mp3 deleted file mode 100644 index f61ac0766..000000000 Binary files a/files/20_3398_example.mp3 and /dev/null differ diff --git a/files/20_3398_meaning.mp3 b/files/20_3398_meaning.mp3 deleted file mode 100644 index 5f50463fe..000000000 Binary files a/files/20_3398_meaning.mp3 and /dev/null differ diff --git a/files/20_3399.jpg b/files/20_3399.jpg deleted file mode 100644 index 6d62fbd1c..000000000 Binary files a/files/20_3399.jpg and /dev/null differ diff --git a/files/20_3399.mp3 b/files/20_3399.mp3 deleted file mode 100644 index e3dad5a8d..000000000 Binary files a/files/20_3399.mp3 and /dev/null differ diff --git a/files/20_3399_example.mp3 b/files/20_3399_example.mp3 deleted file mode 100644 index 07550a588..000000000 Binary files a/files/20_3399_example.mp3 and /dev/null differ diff --git a/files/20_3399_meaning.mp3 b/files/20_3399_meaning.mp3 deleted file mode 100644 index 898633482..000000000 Binary files a/files/20_3399_meaning.mp3 and /dev/null differ diff --git a/files/20_3400.jpg b/files/20_3400.jpg deleted file mode 100644 index 05e941282..000000000 Binary files a/files/20_3400.jpg and /dev/null differ diff --git a/files/20_3400.mp3 b/files/20_3400.mp3 deleted file mode 100644 index 855b6a804..000000000 Binary files a/files/20_3400.mp3 and /dev/null differ diff --git a/files/20_3400_example.mp3 b/files/20_3400_example.mp3 deleted file mode 100644 index 6fb92991d..000000000 Binary files a/files/20_3400_example.mp3 and /dev/null differ diff --git a/files/20_3400_meaning.mp3 b/files/20_3400_meaning.mp3 deleted file mode 100644 index 0b77e76d4..000000000 Binary files a/files/20_3400_meaning.mp3 and /dev/null differ diff --git a/files/21_0401.jpg b/files/21_0401.jpg deleted file mode 100644 index 2ae813445..000000000 Binary files a/files/21_0401.jpg and /dev/null differ diff --git a/files/21_0401.mp3 b/files/21_0401.mp3 deleted file mode 100644 index b2f0f956f..000000000 Binary files a/files/21_0401.mp3 and /dev/null differ diff --git a/files/21_0401_example.mp3 b/files/21_0401_example.mp3 deleted file mode 100644 index 3b9e620b8..000000000 Binary files a/files/21_0401_example.mp3 and /dev/null differ diff --git a/files/21_0401_meaning.mp3 b/files/21_0401_meaning.mp3 deleted file mode 100644 index 87ea82487..000000000 Binary files a/files/21_0401_meaning.mp3 and /dev/null differ diff --git a/files/21_0402.jpg b/files/21_0402.jpg deleted file mode 100644 index 53d9a19d4..000000000 Binary files a/files/21_0402.jpg and /dev/null differ diff --git a/files/21_0402.mp3 b/files/21_0402.mp3 deleted file mode 100644 index cc406b147..000000000 Binary files a/files/21_0402.mp3 and /dev/null differ diff --git a/files/21_0402_example.mp3 b/files/21_0402_example.mp3 deleted file mode 100644 index 8f67cae08..000000000 Binary files a/files/21_0402_example.mp3 and /dev/null differ diff --git a/files/21_0402_meaning.mp3 b/files/21_0402_meaning.mp3 deleted file mode 100644 index 31ebb18dd..000000000 Binary files a/files/21_0402_meaning.mp3 and /dev/null differ diff --git a/files/21_0403.jpg b/files/21_0403.jpg deleted file mode 100644 index a70cbc76d..000000000 Binary files a/files/21_0403.jpg and /dev/null differ diff --git a/files/21_0403.mp3 b/files/21_0403.mp3 deleted file mode 100644 index a9d3afd93..000000000 Binary files a/files/21_0403.mp3 and /dev/null differ diff --git a/files/21_0403_example.mp3 b/files/21_0403_example.mp3 deleted file mode 100644 index 73c5a816d..000000000 Binary files a/files/21_0403_example.mp3 and /dev/null differ diff --git a/files/21_0403_meaning.mp3 b/files/21_0403_meaning.mp3 deleted file mode 100644 index a7965ccc4..000000000 Binary files a/files/21_0403_meaning.mp3 and /dev/null differ diff --git a/files/21_0404.jpg b/files/21_0404.jpg deleted file mode 100644 index 7f0a8677c..000000000 Binary files a/files/21_0404.jpg and /dev/null differ diff --git a/files/21_0404.mp3 b/files/21_0404.mp3 deleted file mode 100644 index 6059a24a7..000000000 Binary files a/files/21_0404.mp3 and /dev/null differ diff --git a/files/21_0404_example.mp3 b/files/21_0404_example.mp3 deleted file mode 100644 index c174f6557..000000000 Binary files a/files/21_0404_example.mp3 and /dev/null differ diff --git a/files/21_0404_meaning.mp3 b/files/21_0404_meaning.mp3 deleted file mode 100644 index d542d92a1..000000000 Binary files a/files/21_0404_meaning.mp3 and /dev/null differ diff --git a/files/21_0405.jpg b/files/21_0405.jpg deleted file mode 100644 index e7ff8c8e1..000000000 Binary files a/files/21_0405.jpg and /dev/null differ diff --git a/files/21_0405.mp3 b/files/21_0405.mp3 deleted file mode 100644 index 64fe63350..000000000 Binary files a/files/21_0405.mp3 and /dev/null differ diff --git a/files/21_0405_example.mp3 b/files/21_0405_example.mp3 deleted file mode 100644 index fc2800bc9..000000000 Binary files a/files/21_0405_example.mp3 and /dev/null differ diff --git a/files/21_0405_meaning.mp3 b/files/21_0405_meaning.mp3 deleted file mode 100644 index 9da155eda..000000000 Binary files a/files/21_0405_meaning.mp3 and /dev/null differ diff --git a/files/21_0406.jpg b/files/21_0406.jpg deleted file mode 100644 index 00852ae38..000000000 Binary files a/files/21_0406.jpg and /dev/null differ diff --git a/files/21_0406.mp3 b/files/21_0406.mp3 deleted file mode 100644 index d3022b102..000000000 Binary files a/files/21_0406.mp3 and /dev/null differ diff --git a/files/21_0406_example.mp3 b/files/21_0406_example.mp3 deleted file mode 100644 index 83061eb66..000000000 Binary files a/files/21_0406_example.mp3 and /dev/null differ diff --git a/files/21_0406_meaning.mp3 b/files/21_0406_meaning.mp3 deleted file mode 100644 index bffc75fe4..000000000 Binary files a/files/21_0406_meaning.mp3 and /dev/null differ diff --git a/files/21_0407.jpg b/files/21_0407.jpg deleted file mode 100644 index 8286a7aa5..000000000 Binary files a/files/21_0407.jpg and /dev/null differ diff --git a/files/21_0407.mp3 b/files/21_0407.mp3 deleted file mode 100644 index 9852e2581..000000000 Binary files a/files/21_0407.mp3 and /dev/null differ diff --git a/files/21_0407_example.mp3 b/files/21_0407_example.mp3 deleted file mode 100644 index 7adb3929c..000000000 Binary files a/files/21_0407_example.mp3 and /dev/null differ diff --git a/files/21_0407_meaning.mp3 b/files/21_0407_meaning.mp3 deleted file mode 100644 index 9be41fffa..000000000 Binary files a/files/21_0407_meaning.mp3 and /dev/null differ diff --git a/files/21_0408.jpg b/files/21_0408.jpg deleted file mode 100644 index bc319a76a..000000000 Binary files a/files/21_0408.jpg and /dev/null differ diff --git a/files/21_0408.mp3 b/files/21_0408.mp3 deleted file mode 100644 index a8894f7b3..000000000 Binary files a/files/21_0408.mp3 and /dev/null differ diff --git a/files/21_0408_example.mp3 b/files/21_0408_example.mp3 deleted file mode 100644 index d60a1e23d..000000000 Binary files a/files/21_0408_example.mp3 and /dev/null differ diff --git a/files/21_0408_meaning.mp3 b/files/21_0408_meaning.mp3 deleted file mode 100644 index 8d3c9de9f..000000000 Binary files a/files/21_0408_meaning.mp3 and /dev/null differ diff --git a/files/21_0409.jpg b/files/21_0409.jpg deleted file mode 100644 index ab1668c8c..000000000 Binary files a/files/21_0409.jpg and /dev/null differ diff --git a/files/21_0409.mp3 b/files/21_0409.mp3 deleted file mode 100644 index 1cf6adf6e..000000000 Binary files a/files/21_0409.mp3 and /dev/null differ diff --git a/files/21_0409_example.mp3 b/files/21_0409_example.mp3 deleted file mode 100644 index 6941ef399..000000000 Binary files a/files/21_0409_example.mp3 and /dev/null differ diff --git a/files/21_0409_meaning.mp3 b/files/21_0409_meaning.mp3 deleted file mode 100644 index 9be39b4dc..000000000 Binary files a/files/21_0409_meaning.mp3 and /dev/null differ diff --git a/files/21_0410.jpg b/files/21_0410.jpg deleted file mode 100644 index 85268bcb7..000000000 Binary files a/files/21_0410.jpg and /dev/null differ diff --git a/files/21_0410.mp3 b/files/21_0410.mp3 deleted file mode 100644 index a47624118..000000000 Binary files a/files/21_0410.mp3 and /dev/null differ diff --git a/files/21_0410_example.mp3 b/files/21_0410_example.mp3 deleted file mode 100644 index 8fb0839e8..000000000 Binary files a/files/21_0410_example.mp3 and /dev/null differ diff --git a/files/21_0410_meaning.mp3 b/files/21_0410_meaning.mp3 deleted file mode 100644 index 9dc89d241..000000000 Binary files a/files/21_0410_meaning.mp3 and /dev/null differ diff --git a/files/21_0411.jpg b/files/21_0411.jpg deleted file mode 100644 index be83f9756..000000000 Binary files a/files/21_0411.jpg and /dev/null differ diff --git a/files/21_0411.mp3 b/files/21_0411.mp3 deleted file mode 100644 index e6a333fe2..000000000 Binary files a/files/21_0411.mp3 and /dev/null differ diff --git a/files/21_0411_example.mp3 b/files/21_0411_example.mp3 deleted file mode 100644 index 5b2291a78..000000000 Binary files a/files/21_0411_example.mp3 and /dev/null differ diff --git a/files/21_0411_meaning.mp3 b/files/21_0411_meaning.mp3 deleted file mode 100644 index c3d0a12aa..000000000 Binary files a/files/21_0411_meaning.mp3 and /dev/null differ diff --git a/files/21_0412.jpg b/files/21_0412.jpg deleted file mode 100644 index 68c8d7980..000000000 Binary files a/files/21_0412.jpg and /dev/null differ diff --git a/files/21_0412.mp3 b/files/21_0412.mp3 deleted file mode 100644 index 70fd52037..000000000 Binary files a/files/21_0412.mp3 and /dev/null differ diff --git a/files/21_0412_example.mp3 b/files/21_0412_example.mp3 deleted file mode 100644 index 348e71be8..000000000 Binary files a/files/21_0412_example.mp3 and /dev/null differ diff --git a/files/21_0412_meaning.mp3 b/files/21_0412_meaning.mp3 deleted file mode 100644 index cab396c36..000000000 Binary files a/files/21_0412_meaning.mp3 and /dev/null differ diff --git a/files/21_0413.jpg b/files/21_0413.jpg deleted file mode 100644 index 0593cb0b7..000000000 Binary files a/files/21_0413.jpg and /dev/null differ diff --git a/files/21_0413.mp3 b/files/21_0413.mp3 deleted file mode 100644 index d242bd064..000000000 Binary files a/files/21_0413.mp3 and /dev/null differ diff --git a/files/21_0413_example.mp3 b/files/21_0413_example.mp3 deleted file mode 100644 index e5519016c..000000000 Binary files a/files/21_0413_example.mp3 and /dev/null differ diff --git a/files/21_0413_meaning.mp3 b/files/21_0413_meaning.mp3 deleted file mode 100644 index c381373e0..000000000 Binary files a/files/21_0413_meaning.mp3 and /dev/null differ diff --git a/files/21_0414.jpg b/files/21_0414.jpg deleted file mode 100644 index 3a928a2c4..000000000 Binary files a/files/21_0414.jpg and /dev/null differ diff --git a/files/21_0414.mp3 b/files/21_0414.mp3 deleted file mode 100644 index 3782e605c..000000000 Binary files a/files/21_0414.mp3 and /dev/null differ diff --git a/files/21_0414_example.mp3 b/files/21_0414_example.mp3 deleted file mode 100644 index 44818b831..000000000 Binary files a/files/21_0414_example.mp3 and /dev/null differ diff --git a/files/21_0414_meaning.mp3 b/files/21_0414_meaning.mp3 deleted file mode 100644 index 53f3f0ce0..000000000 Binary files a/files/21_0414_meaning.mp3 and /dev/null differ diff --git a/files/21_0415.jpg b/files/21_0415.jpg deleted file mode 100644 index 3cd9ea87c..000000000 Binary files a/files/21_0415.jpg and /dev/null differ diff --git a/files/21_0415.mp3 b/files/21_0415.mp3 deleted file mode 100644 index ea8d8f64c..000000000 Binary files a/files/21_0415.mp3 and /dev/null differ diff --git a/files/21_0415_example.mp3 b/files/21_0415_example.mp3 deleted file mode 100644 index 01ee0d18b..000000000 Binary files a/files/21_0415_example.mp3 and /dev/null differ diff --git a/files/21_0415_meaning.mp3 b/files/21_0415_meaning.mp3 deleted file mode 100644 index 461e45242..000000000 Binary files a/files/21_0415_meaning.mp3 and /dev/null differ diff --git a/files/21_0416.jpg b/files/21_0416.jpg deleted file mode 100644 index 0d66a8fc8..000000000 Binary files a/files/21_0416.jpg and /dev/null differ diff --git a/files/21_0416.mp3 b/files/21_0416.mp3 deleted file mode 100644 index aa14cac42..000000000 Binary files a/files/21_0416.mp3 and /dev/null differ diff --git a/files/21_0416_example.mp3 b/files/21_0416_example.mp3 deleted file mode 100644 index 7425b172c..000000000 Binary files a/files/21_0416_example.mp3 and /dev/null differ diff --git a/files/21_0416_meaning.mp3 b/files/21_0416_meaning.mp3 deleted file mode 100644 index 6259bc4d8..000000000 Binary files a/files/21_0416_meaning.mp3 and /dev/null differ diff --git a/files/21_0417.jpg b/files/21_0417.jpg deleted file mode 100644 index d3272e678..000000000 Binary files a/files/21_0417.jpg and /dev/null differ diff --git a/files/21_0417.mp3 b/files/21_0417.mp3 deleted file mode 100644 index 8a0660c6e..000000000 Binary files a/files/21_0417.mp3 and /dev/null differ diff --git a/files/21_0417_example.mp3 b/files/21_0417_example.mp3 deleted file mode 100644 index 3c937e70a..000000000 Binary files a/files/21_0417_example.mp3 and /dev/null differ diff --git a/files/21_0417_meaning.mp3 b/files/21_0417_meaning.mp3 deleted file mode 100644 index e68548dc6..000000000 Binary files a/files/21_0417_meaning.mp3 and /dev/null differ diff --git a/files/21_0418.jpg b/files/21_0418.jpg deleted file mode 100644 index 6620b5d7c..000000000 Binary files a/files/21_0418.jpg and /dev/null differ diff --git a/files/21_0418.mp3 b/files/21_0418.mp3 deleted file mode 100644 index 9af684799..000000000 Binary files a/files/21_0418.mp3 and /dev/null differ diff --git a/files/21_0418_example.mp3 b/files/21_0418_example.mp3 deleted file mode 100644 index 0db663625..000000000 Binary files a/files/21_0418_example.mp3 and /dev/null differ diff --git a/files/21_0418_meaning.mp3 b/files/21_0418_meaning.mp3 deleted file mode 100644 index 3cb4b13db..000000000 Binary files a/files/21_0418_meaning.mp3 and /dev/null differ diff --git a/files/21_0419.jpg b/files/21_0419.jpg deleted file mode 100644 index ac29f202d..000000000 Binary files a/files/21_0419.jpg and /dev/null differ diff --git a/files/21_0419.mp3 b/files/21_0419.mp3 deleted file mode 100644 index f38046ee4..000000000 Binary files a/files/21_0419.mp3 and /dev/null differ diff --git a/files/21_0419_example.mp3 b/files/21_0419_example.mp3 deleted file mode 100644 index bba84618d..000000000 Binary files a/files/21_0419_example.mp3 and /dev/null differ diff --git a/files/21_0419_meaning.mp3 b/files/21_0419_meaning.mp3 deleted file mode 100644 index ef755accc..000000000 Binary files a/files/21_0419_meaning.mp3 and /dev/null differ diff --git a/files/21_0420.jpg b/files/21_0420.jpg deleted file mode 100644 index 9fb8c161b..000000000 Binary files a/files/21_0420.jpg and /dev/null differ diff --git a/files/21_0420.mp3 b/files/21_0420.mp3 deleted file mode 100644 index e9aff2427..000000000 Binary files a/files/21_0420.mp3 and /dev/null differ diff --git a/files/21_0420_example.mp3 b/files/21_0420_example.mp3 deleted file mode 100644 index 7b93173ed..000000000 Binary files a/files/21_0420_example.mp3 and /dev/null differ diff --git a/files/21_0420_meaning.mp3 b/files/21_0420_meaning.mp3 deleted file mode 100644 index dd912d121..000000000 Binary files a/files/21_0420_meaning.mp3 and /dev/null differ diff --git a/files/21_1001.jpg b/files/21_1001.jpg deleted file mode 100644 index 12a546d45..000000000 Binary files a/files/21_1001.jpg and /dev/null differ diff --git a/files/21_1001.mp3 b/files/21_1001.mp3 deleted file mode 100644 index 11da492d5..000000000 Binary files a/files/21_1001.mp3 and /dev/null differ diff --git a/files/21_1001_example.mp3 b/files/21_1001_example.mp3 deleted file mode 100644 index dd0f15e7d..000000000 Binary files a/files/21_1001_example.mp3 and /dev/null differ diff --git a/files/21_1001_meaning.mp3 b/files/21_1001_meaning.mp3 deleted file mode 100644 index e4c6c4e46..000000000 Binary files a/files/21_1001_meaning.mp3 and /dev/null differ diff --git a/files/21_1002.jpg b/files/21_1002.jpg deleted file mode 100644 index cb6446230..000000000 Binary files a/files/21_1002.jpg and /dev/null differ diff --git a/files/21_1002.mp3 b/files/21_1002.mp3 deleted file mode 100644 index 1b9fc3e8d..000000000 Binary files a/files/21_1002.mp3 and /dev/null differ diff --git a/files/21_1002_example.mp3 b/files/21_1002_example.mp3 deleted file mode 100644 index 3c3a9af50..000000000 Binary files a/files/21_1002_example.mp3 and /dev/null differ diff --git a/files/21_1002_meaning.mp3 b/files/21_1002_meaning.mp3 deleted file mode 100644 index 515592cf1..000000000 Binary files a/files/21_1002_meaning.mp3 and /dev/null differ diff --git a/files/21_1003.jpg b/files/21_1003.jpg deleted file mode 100644 index 38b0518a3..000000000 Binary files a/files/21_1003.jpg and /dev/null differ diff --git a/files/21_1003.mp3 b/files/21_1003.mp3 deleted file mode 100644 index 80ea7ddfd..000000000 Binary files a/files/21_1003.mp3 and /dev/null differ diff --git a/files/21_1003_example.mp3 b/files/21_1003_example.mp3 deleted file mode 100644 index d6438414c..000000000 Binary files a/files/21_1003_example.mp3 and /dev/null differ diff --git a/files/21_1003_meaning.mp3 b/files/21_1003_meaning.mp3 deleted file mode 100644 index 6ec1da616..000000000 Binary files a/files/21_1003_meaning.mp3 and /dev/null differ diff --git a/files/21_1004.jpg b/files/21_1004.jpg deleted file mode 100644 index 13de4e31a..000000000 Binary files a/files/21_1004.jpg and /dev/null differ diff --git a/files/21_1004.mp3 b/files/21_1004.mp3 deleted file mode 100644 index 15186a2d9..000000000 Binary files a/files/21_1004.mp3 and /dev/null differ diff --git a/files/21_1004_example.mp3 b/files/21_1004_example.mp3 deleted file mode 100644 index 5f5a32f24..000000000 Binary files a/files/21_1004_example.mp3 and /dev/null differ diff --git a/files/21_1004_meaning.mp3 b/files/21_1004_meaning.mp3 deleted file mode 100644 index 239ab849a..000000000 Binary files a/files/21_1004_meaning.mp3 and /dev/null differ diff --git a/files/21_1005.jpg b/files/21_1005.jpg deleted file mode 100644 index 1ed0a6e82..000000000 Binary files a/files/21_1005.jpg and /dev/null differ diff --git a/files/21_1005.mp3 b/files/21_1005.mp3 deleted file mode 100644 index e11eaa558..000000000 Binary files a/files/21_1005.mp3 and /dev/null differ diff --git a/files/21_1005_example.mp3 b/files/21_1005_example.mp3 deleted file mode 100644 index 9644b3889..000000000 Binary files a/files/21_1005_example.mp3 and /dev/null differ diff --git a/files/21_1005_meaning.mp3 b/files/21_1005_meaning.mp3 deleted file mode 100644 index 9eeb43150..000000000 Binary files a/files/21_1005_meaning.mp3 and /dev/null differ diff --git a/files/21_1006.jpg b/files/21_1006.jpg deleted file mode 100644 index bbe1aedef..000000000 Binary files a/files/21_1006.jpg and /dev/null differ diff --git a/files/21_1006.mp3 b/files/21_1006.mp3 deleted file mode 100644 index 57e11b781..000000000 Binary files a/files/21_1006.mp3 and /dev/null differ diff --git a/files/21_1006_example.mp3 b/files/21_1006_example.mp3 deleted file mode 100644 index 6282a47af..000000000 Binary files a/files/21_1006_example.mp3 and /dev/null differ diff --git a/files/21_1006_meaning.mp3 b/files/21_1006_meaning.mp3 deleted file mode 100644 index aabae9424..000000000 Binary files a/files/21_1006_meaning.mp3 and /dev/null differ diff --git a/files/21_1007.jpg b/files/21_1007.jpg deleted file mode 100644 index c6f4d20a7..000000000 Binary files a/files/21_1007.jpg and /dev/null differ diff --git a/files/21_1007.mp3 b/files/21_1007.mp3 deleted file mode 100644 index 9604d82ac..000000000 Binary files a/files/21_1007.mp3 and /dev/null differ diff --git a/files/21_1007_example.mp3 b/files/21_1007_example.mp3 deleted file mode 100644 index d51de05b0..000000000 Binary files a/files/21_1007_example.mp3 and /dev/null differ diff --git a/files/21_1007_meaning.mp3 b/files/21_1007_meaning.mp3 deleted file mode 100644 index d48cc9c52..000000000 Binary files a/files/21_1007_meaning.mp3 and /dev/null differ diff --git a/files/21_1008.jpg b/files/21_1008.jpg deleted file mode 100644 index ba2190ecd..000000000 Binary files a/files/21_1008.jpg and /dev/null differ diff --git a/files/21_1008.mp3 b/files/21_1008.mp3 deleted file mode 100644 index e948447db..000000000 Binary files a/files/21_1008.mp3 and /dev/null differ diff --git a/files/21_1008_example.mp3 b/files/21_1008_example.mp3 deleted file mode 100644 index 24ae99b0a..000000000 Binary files a/files/21_1008_example.mp3 and /dev/null differ diff --git a/files/21_1008_meaning.mp3 b/files/21_1008_meaning.mp3 deleted file mode 100644 index b1a1eb0f4..000000000 Binary files a/files/21_1008_meaning.mp3 and /dev/null differ diff --git a/files/21_1009.jpg b/files/21_1009.jpg deleted file mode 100644 index a0177487b..000000000 Binary files a/files/21_1009.jpg and /dev/null differ diff --git a/files/21_1009.mp3 b/files/21_1009.mp3 deleted file mode 100644 index 81048469c..000000000 Binary files a/files/21_1009.mp3 and /dev/null differ diff --git a/files/21_1009_example.mp3 b/files/21_1009_example.mp3 deleted file mode 100644 index c74721eb3..000000000 Binary files a/files/21_1009_example.mp3 and /dev/null differ diff --git a/files/21_1009_meaning.mp3 b/files/21_1009_meaning.mp3 deleted file mode 100644 index 73afc33b5..000000000 Binary files a/files/21_1009_meaning.mp3 and /dev/null differ diff --git a/files/21_1010.jpg b/files/21_1010.jpg deleted file mode 100644 index dba61bc6f..000000000 Binary files a/files/21_1010.jpg and /dev/null differ diff --git a/files/21_1010.mp3 b/files/21_1010.mp3 deleted file mode 100644 index c4555a64c..000000000 Binary files a/files/21_1010.mp3 and /dev/null differ diff --git a/files/21_1010_example.mp3 b/files/21_1010_example.mp3 deleted file mode 100644 index acaec4741..000000000 Binary files a/files/21_1010_example.mp3 and /dev/null differ diff --git a/files/21_1010_meaning.mp3 b/files/21_1010_meaning.mp3 deleted file mode 100644 index f71622ea2..000000000 Binary files a/files/21_1010_meaning.mp3 and /dev/null differ diff --git a/files/21_1011.jpg b/files/21_1011.jpg deleted file mode 100644 index 1cf342345..000000000 Binary files a/files/21_1011.jpg and /dev/null differ diff --git a/files/21_1011.mp3 b/files/21_1011.mp3 deleted file mode 100644 index 2f29084d9..000000000 Binary files a/files/21_1011.mp3 and /dev/null differ diff --git a/files/21_1011_example.mp3 b/files/21_1011_example.mp3 deleted file mode 100644 index 17eff23c5..000000000 Binary files a/files/21_1011_example.mp3 and /dev/null differ diff --git a/files/21_1011_meaning.mp3 b/files/21_1011_meaning.mp3 deleted file mode 100644 index 1db4ee8d1..000000000 Binary files a/files/21_1011_meaning.mp3 and /dev/null differ diff --git a/files/21_1012.jpg b/files/21_1012.jpg deleted file mode 100644 index 964069fd4..000000000 Binary files a/files/21_1012.jpg and /dev/null differ diff --git a/files/21_1012.mp3 b/files/21_1012.mp3 deleted file mode 100644 index d97f6532e..000000000 Binary files a/files/21_1012.mp3 and /dev/null differ diff --git a/files/21_1012_example.mp3 b/files/21_1012_example.mp3 deleted file mode 100644 index 65e0bddfe..000000000 Binary files a/files/21_1012_example.mp3 and /dev/null differ diff --git a/files/21_1012_meaning.mp3 b/files/21_1012_meaning.mp3 deleted file mode 100644 index b2727d213..000000000 Binary files a/files/21_1012_meaning.mp3 and /dev/null differ diff --git a/files/21_1013.jpg b/files/21_1013.jpg deleted file mode 100644 index 8779558b7..000000000 Binary files a/files/21_1013.jpg and /dev/null differ diff --git a/files/21_1013.mp3 b/files/21_1013.mp3 deleted file mode 100644 index 7047fe1d3..000000000 Binary files a/files/21_1013.mp3 and /dev/null differ diff --git a/files/21_1013_example.mp3 b/files/21_1013_example.mp3 deleted file mode 100644 index 7eaf3b5bc..000000000 Binary files a/files/21_1013_example.mp3 and /dev/null differ diff --git a/files/21_1013_meaning.mp3 b/files/21_1013_meaning.mp3 deleted file mode 100644 index e32a1426f..000000000 Binary files a/files/21_1013_meaning.mp3 and /dev/null differ diff --git a/files/21_1014.jpg b/files/21_1014.jpg deleted file mode 100644 index 065abafa2..000000000 Binary files a/files/21_1014.jpg and /dev/null differ diff --git a/files/21_1014.mp3 b/files/21_1014.mp3 deleted file mode 100644 index c1e54d5a4..000000000 Binary files a/files/21_1014.mp3 and /dev/null differ diff --git a/files/21_1014_example.mp3 b/files/21_1014_example.mp3 deleted file mode 100644 index edefb6256..000000000 Binary files a/files/21_1014_example.mp3 and /dev/null differ diff --git a/files/21_1014_meaning.mp3 b/files/21_1014_meaning.mp3 deleted file mode 100644 index 73d168246..000000000 Binary files a/files/21_1014_meaning.mp3 and /dev/null differ diff --git a/files/21_1015.jpg b/files/21_1015.jpg deleted file mode 100644 index ff280f58a..000000000 Binary files a/files/21_1015.jpg and /dev/null differ diff --git a/files/21_1015.mp3 b/files/21_1015.mp3 deleted file mode 100644 index f9da690d3..000000000 Binary files a/files/21_1015.mp3 and /dev/null differ diff --git a/files/21_1015_example.mp3 b/files/21_1015_example.mp3 deleted file mode 100644 index fdfa3aaf6..000000000 Binary files a/files/21_1015_example.mp3 and /dev/null differ diff --git a/files/21_1015_meaning.mp3 b/files/21_1015_meaning.mp3 deleted file mode 100644 index ccec58285..000000000 Binary files a/files/21_1015_meaning.mp3 and /dev/null differ diff --git a/files/21_1016.jpg b/files/21_1016.jpg deleted file mode 100644 index 69abb6a7f..000000000 Binary files a/files/21_1016.jpg and /dev/null differ diff --git a/files/21_1016.mp3 b/files/21_1016.mp3 deleted file mode 100644 index f7fad2686..000000000 Binary files a/files/21_1016.mp3 and /dev/null differ diff --git a/files/21_1016_example.mp3 b/files/21_1016_example.mp3 deleted file mode 100644 index 79da9d50e..000000000 Binary files a/files/21_1016_example.mp3 and /dev/null differ diff --git a/files/21_1016_meaning.mp3 b/files/21_1016_meaning.mp3 deleted file mode 100644 index 71b0ad1cd..000000000 Binary files a/files/21_1016_meaning.mp3 and /dev/null differ diff --git a/files/21_1017.jpg b/files/21_1017.jpg deleted file mode 100644 index 052f700d6..000000000 Binary files a/files/21_1017.jpg and /dev/null differ diff --git a/files/21_1017.mp3 b/files/21_1017.mp3 deleted file mode 100644 index 7fc77ba29..000000000 Binary files a/files/21_1017.mp3 and /dev/null differ diff --git a/files/21_1017_example.mp3 b/files/21_1017_example.mp3 deleted file mode 100644 index 470f9c8cc..000000000 Binary files a/files/21_1017_example.mp3 and /dev/null differ diff --git a/files/21_1017_meaning.mp3 b/files/21_1017_meaning.mp3 deleted file mode 100644 index 51d832a81..000000000 Binary files a/files/21_1017_meaning.mp3 and /dev/null differ diff --git a/files/21_1018.jpg b/files/21_1018.jpg deleted file mode 100644 index af6187854..000000000 Binary files a/files/21_1018.jpg and /dev/null differ diff --git a/files/21_1018.mp3 b/files/21_1018.mp3 deleted file mode 100644 index 46915a51e..000000000 Binary files a/files/21_1018.mp3 and /dev/null differ diff --git a/files/21_1018_example.mp3 b/files/21_1018_example.mp3 deleted file mode 100644 index 07557e4f4..000000000 Binary files a/files/21_1018_example.mp3 and /dev/null differ diff --git a/files/21_1018_meaning.mp3 b/files/21_1018_meaning.mp3 deleted file mode 100644 index 31290d52f..000000000 Binary files a/files/21_1018_meaning.mp3 and /dev/null differ diff --git a/files/21_1019.jpg b/files/21_1019.jpg deleted file mode 100644 index c6201b707..000000000 Binary files a/files/21_1019.jpg and /dev/null differ diff --git a/files/21_1019.mp3 b/files/21_1019.mp3 deleted file mode 100644 index 1b29782b5..000000000 Binary files a/files/21_1019.mp3 and /dev/null differ diff --git a/files/21_1019_example.mp3 b/files/21_1019_example.mp3 deleted file mode 100644 index 7bfc80fcb..000000000 Binary files a/files/21_1019_example.mp3 and /dev/null differ diff --git a/files/21_1019_meaning.mp3 b/files/21_1019_meaning.mp3 deleted file mode 100644 index 16462d0ec..000000000 Binary files a/files/21_1019_meaning.mp3 and /dev/null differ diff --git a/files/21_1020.jpg b/files/21_1020.jpg deleted file mode 100644 index 70b8263d1..000000000 Binary files a/files/21_1020.jpg and /dev/null differ diff --git a/files/21_1020.mp3 b/files/21_1020.mp3 deleted file mode 100644 index fa279b3a8..000000000 Binary files a/files/21_1020.mp3 and /dev/null differ diff --git a/files/21_1020_example.mp3 b/files/21_1020_example.mp3 deleted file mode 100644 index 734a41142..000000000 Binary files a/files/21_1020_example.mp3 and /dev/null differ diff --git a/files/21_1020_meaning.mp3 b/files/21_1020_meaning.mp3 deleted file mode 100644 index 4b39f58c7..000000000 Binary files a/files/21_1020_meaning.mp3 and /dev/null differ diff --git a/files/21_1601.jpg b/files/21_1601.jpg deleted file mode 100644 index 5c344f86b..000000000 Binary files a/files/21_1601.jpg and /dev/null differ diff --git a/files/21_1601.mp3 b/files/21_1601.mp3 deleted file mode 100644 index b3c7e8c18..000000000 Binary files a/files/21_1601.mp3 and /dev/null differ diff --git a/files/21_1601_example.mp3 b/files/21_1601_example.mp3 deleted file mode 100644 index 50051697f..000000000 Binary files a/files/21_1601_example.mp3 and /dev/null differ diff --git a/files/21_1601_meaning.mp3 b/files/21_1601_meaning.mp3 deleted file mode 100644 index 82c615e12..000000000 Binary files a/files/21_1601_meaning.mp3 and /dev/null differ diff --git a/files/21_1602.jpg b/files/21_1602.jpg deleted file mode 100644 index 0539d42d0..000000000 Binary files a/files/21_1602.jpg and /dev/null differ diff --git a/files/21_1602.mp3 b/files/21_1602.mp3 deleted file mode 100644 index 0e56a4fc8..000000000 Binary files a/files/21_1602.mp3 and /dev/null differ diff --git a/files/21_1602_example.mp3 b/files/21_1602_example.mp3 deleted file mode 100644 index e817e2e36..000000000 Binary files a/files/21_1602_example.mp3 and /dev/null differ diff --git a/files/21_1602_meaning.mp3 b/files/21_1602_meaning.mp3 deleted file mode 100644 index 70b68ad16..000000000 Binary files a/files/21_1602_meaning.mp3 and /dev/null differ diff --git a/files/21_1603.jpg b/files/21_1603.jpg deleted file mode 100644 index a29b23764..000000000 Binary files a/files/21_1603.jpg and /dev/null differ diff --git a/files/21_1603.mp3 b/files/21_1603.mp3 deleted file mode 100644 index 2e7140533..000000000 Binary files a/files/21_1603.mp3 and /dev/null differ diff --git a/files/21_1603_example.mp3 b/files/21_1603_example.mp3 deleted file mode 100644 index e6dbd5f32..000000000 Binary files a/files/21_1603_example.mp3 and /dev/null differ diff --git a/files/21_1603_meaning.mp3 b/files/21_1603_meaning.mp3 deleted file mode 100644 index 780a31074..000000000 Binary files a/files/21_1603_meaning.mp3 and /dev/null differ diff --git a/files/21_1604.jpg b/files/21_1604.jpg deleted file mode 100644 index d0daa6b62..000000000 Binary files a/files/21_1604.jpg and /dev/null differ diff --git a/files/21_1604.mp3 b/files/21_1604.mp3 deleted file mode 100644 index 490828ac1..000000000 Binary files a/files/21_1604.mp3 and /dev/null differ diff --git a/files/21_1604_example.mp3 b/files/21_1604_example.mp3 deleted file mode 100644 index 01aecee5f..000000000 Binary files a/files/21_1604_example.mp3 and /dev/null differ diff --git a/files/21_1604_meaning.mp3 b/files/21_1604_meaning.mp3 deleted file mode 100644 index a42b2b042..000000000 Binary files a/files/21_1604_meaning.mp3 and /dev/null differ diff --git a/files/21_1605.jpg b/files/21_1605.jpg deleted file mode 100644 index dc0330f2b..000000000 Binary files a/files/21_1605.jpg and /dev/null differ diff --git a/files/21_1605.mp3 b/files/21_1605.mp3 deleted file mode 100644 index 086d53313..000000000 Binary files a/files/21_1605.mp3 and /dev/null differ diff --git a/files/21_1605_example.mp3 b/files/21_1605_example.mp3 deleted file mode 100644 index 7dbe27dbf..000000000 Binary files a/files/21_1605_example.mp3 and /dev/null differ diff --git a/files/21_1605_meaning.mp3 b/files/21_1605_meaning.mp3 deleted file mode 100644 index 7b515ac41..000000000 Binary files a/files/21_1605_meaning.mp3 and /dev/null differ diff --git a/files/21_1606.jpg b/files/21_1606.jpg deleted file mode 100644 index fc2fef636..000000000 Binary files a/files/21_1606.jpg and /dev/null differ diff --git a/files/21_1606.mp3 b/files/21_1606.mp3 deleted file mode 100644 index 8b63920ec..000000000 Binary files a/files/21_1606.mp3 and /dev/null differ diff --git a/files/21_1606_example.mp3 b/files/21_1606_example.mp3 deleted file mode 100644 index 67817f822..000000000 Binary files a/files/21_1606_example.mp3 and /dev/null differ diff --git a/files/21_1606_meaning.mp3 b/files/21_1606_meaning.mp3 deleted file mode 100644 index e0064bdfa..000000000 Binary files a/files/21_1606_meaning.mp3 and /dev/null differ diff --git a/files/21_1607.jpg b/files/21_1607.jpg deleted file mode 100644 index 39470b098..000000000 Binary files a/files/21_1607.jpg and /dev/null differ diff --git a/files/21_1607.mp3 b/files/21_1607.mp3 deleted file mode 100644 index b3ad4fc46..000000000 Binary files a/files/21_1607.mp3 and /dev/null differ diff --git a/files/21_1607_example.mp3 b/files/21_1607_example.mp3 deleted file mode 100644 index 77164cd15..000000000 Binary files a/files/21_1607_example.mp3 and /dev/null differ diff --git a/files/21_1607_meaning.mp3 b/files/21_1607_meaning.mp3 deleted file mode 100644 index 717200a26..000000000 Binary files a/files/21_1607_meaning.mp3 and /dev/null differ diff --git a/files/21_1608.jpg b/files/21_1608.jpg deleted file mode 100644 index 989135f5a..000000000 Binary files a/files/21_1608.jpg and /dev/null differ diff --git a/files/21_1608.mp3 b/files/21_1608.mp3 deleted file mode 100644 index 3906a2699..000000000 Binary files a/files/21_1608.mp3 and /dev/null differ diff --git a/files/21_1608_example.mp3 b/files/21_1608_example.mp3 deleted file mode 100644 index fe95b2478..000000000 Binary files a/files/21_1608_example.mp3 and /dev/null differ diff --git a/files/21_1608_meaning.mp3 b/files/21_1608_meaning.mp3 deleted file mode 100644 index f8a2bdd21..000000000 Binary files a/files/21_1608_meaning.mp3 and /dev/null differ diff --git a/files/21_1609.jpg b/files/21_1609.jpg deleted file mode 100644 index cb6d59b30..000000000 Binary files a/files/21_1609.jpg and /dev/null differ diff --git a/files/21_1609.mp3 b/files/21_1609.mp3 deleted file mode 100644 index 7a5b7bc7f..000000000 Binary files a/files/21_1609.mp3 and /dev/null differ diff --git a/files/21_1609_example.mp3 b/files/21_1609_example.mp3 deleted file mode 100644 index 7af480903..000000000 Binary files a/files/21_1609_example.mp3 and /dev/null differ diff --git a/files/21_1609_meaning.mp3 b/files/21_1609_meaning.mp3 deleted file mode 100644 index 2cf17f63c..000000000 Binary files a/files/21_1609_meaning.mp3 and /dev/null differ diff --git a/files/21_1610.jpg b/files/21_1610.jpg deleted file mode 100644 index 014f3be4e..000000000 Binary files a/files/21_1610.jpg and /dev/null differ diff --git a/files/21_1610.mp3 b/files/21_1610.mp3 deleted file mode 100644 index 59b848610..000000000 Binary files a/files/21_1610.mp3 and /dev/null differ diff --git a/files/21_1610_example.mp3 b/files/21_1610_example.mp3 deleted file mode 100644 index 689ef8355..000000000 Binary files a/files/21_1610_example.mp3 and /dev/null differ diff --git a/files/21_1610_meaning.mp3 b/files/21_1610_meaning.mp3 deleted file mode 100644 index 8a7a0f4de..000000000 Binary files a/files/21_1610_meaning.mp3 and /dev/null differ diff --git a/files/21_1611.jpg b/files/21_1611.jpg deleted file mode 100644 index ce111723c..000000000 Binary files a/files/21_1611.jpg and /dev/null differ diff --git a/files/21_1611.mp3 b/files/21_1611.mp3 deleted file mode 100644 index dfbb41a2d..000000000 Binary files a/files/21_1611.mp3 and /dev/null differ diff --git a/files/21_1611_example.mp3 b/files/21_1611_example.mp3 deleted file mode 100644 index 16e1314f9..000000000 Binary files a/files/21_1611_example.mp3 and /dev/null differ diff --git a/files/21_1611_meaning.mp3 b/files/21_1611_meaning.mp3 deleted file mode 100644 index 1ddcf7850..000000000 Binary files a/files/21_1611_meaning.mp3 and /dev/null differ diff --git a/files/21_1612.jpg b/files/21_1612.jpg deleted file mode 100644 index 94464099b..000000000 Binary files a/files/21_1612.jpg and /dev/null differ diff --git a/files/21_1612.mp3 b/files/21_1612.mp3 deleted file mode 100644 index 34119a8b3..000000000 Binary files a/files/21_1612.mp3 and /dev/null differ diff --git a/files/21_1612_example.mp3 b/files/21_1612_example.mp3 deleted file mode 100644 index fadf3f7d8..000000000 Binary files a/files/21_1612_example.mp3 and /dev/null differ diff --git a/files/21_1612_meaning.mp3 b/files/21_1612_meaning.mp3 deleted file mode 100644 index c76f88714..000000000 Binary files a/files/21_1612_meaning.mp3 and /dev/null differ diff --git a/files/21_1613.jpg b/files/21_1613.jpg deleted file mode 100644 index a58883c06..000000000 Binary files a/files/21_1613.jpg and /dev/null differ diff --git a/files/21_1613.mp3 b/files/21_1613.mp3 deleted file mode 100644 index 2e6b8d325..000000000 Binary files a/files/21_1613.mp3 and /dev/null differ diff --git a/files/21_1613_example.mp3 b/files/21_1613_example.mp3 deleted file mode 100644 index 5b12e4539..000000000 Binary files a/files/21_1613_example.mp3 and /dev/null differ diff --git a/files/21_1613_meaning.mp3 b/files/21_1613_meaning.mp3 deleted file mode 100644 index 3b58956d1..000000000 Binary files a/files/21_1613_meaning.mp3 and /dev/null differ diff --git a/files/21_1614.jpg b/files/21_1614.jpg deleted file mode 100644 index ddce2125c..000000000 Binary files a/files/21_1614.jpg and /dev/null differ diff --git a/files/21_1614.mp3 b/files/21_1614.mp3 deleted file mode 100644 index 955367425..000000000 Binary files a/files/21_1614.mp3 and /dev/null differ diff --git a/files/21_1614_example.mp3 b/files/21_1614_example.mp3 deleted file mode 100644 index 6c2b4495a..000000000 Binary files a/files/21_1614_example.mp3 and /dev/null differ diff --git a/files/21_1614_meaning.mp3 b/files/21_1614_meaning.mp3 deleted file mode 100644 index 205b825eb..000000000 Binary files a/files/21_1614_meaning.mp3 and /dev/null differ diff --git a/files/21_1615.jpg b/files/21_1615.jpg deleted file mode 100644 index 1b2ef35b1..000000000 Binary files a/files/21_1615.jpg and /dev/null differ diff --git a/files/21_1615.mp3 b/files/21_1615.mp3 deleted file mode 100644 index 4f31bb96b..000000000 Binary files a/files/21_1615.mp3 and /dev/null differ diff --git a/files/21_1615_example.mp3 b/files/21_1615_example.mp3 deleted file mode 100644 index 403c2275e..000000000 Binary files a/files/21_1615_example.mp3 and /dev/null differ diff --git a/files/21_1615_meaning.mp3 b/files/21_1615_meaning.mp3 deleted file mode 100644 index 702a6340f..000000000 Binary files a/files/21_1615_meaning.mp3 and /dev/null differ diff --git a/files/21_1616.jpg b/files/21_1616.jpg deleted file mode 100644 index 700b38d41..000000000 Binary files a/files/21_1616.jpg and /dev/null differ diff --git a/files/21_1616.mp3 b/files/21_1616.mp3 deleted file mode 100644 index 19a12ffe4..000000000 Binary files a/files/21_1616.mp3 and /dev/null differ diff --git a/files/21_1616_example.mp3 b/files/21_1616_example.mp3 deleted file mode 100644 index db5cd5db6..000000000 Binary files a/files/21_1616_example.mp3 and /dev/null differ diff --git a/files/21_1616_meaning.mp3 b/files/21_1616_meaning.mp3 deleted file mode 100644 index c968a18fc..000000000 Binary files a/files/21_1616_meaning.mp3 and /dev/null differ diff --git a/files/21_1617.jpg b/files/21_1617.jpg deleted file mode 100644 index fe3712f7d..000000000 Binary files a/files/21_1617.jpg and /dev/null differ diff --git a/files/21_1617.mp3 b/files/21_1617.mp3 deleted file mode 100644 index 6ac240a1e..000000000 Binary files a/files/21_1617.mp3 and /dev/null differ diff --git a/files/21_1617_example.mp3 b/files/21_1617_example.mp3 deleted file mode 100644 index 2b0e690d6..000000000 Binary files a/files/21_1617_example.mp3 and /dev/null differ diff --git a/files/21_1617_meaning.mp3 b/files/21_1617_meaning.mp3 deleted file mode 100644 index 741b0d7b6..000000000 Binary files a/files/21_1617_meaning.mp3 and /dev/null differ diff --git a/files/21_1618.jpg b/files/21_1618.jpg deleted file mode 100644 index 090c1c023..000000000 Binary files a/files/21_1618.jpg and /dev/null differ diff --git a/files/21_1618.mp3 b/files/21_1618.mp3 deleted file mode 100644 index 13b431ced..000000000 Binary files a/files/21_1618.mp3 and /dev/null differ diff --git a/files/21_1618_example.mp3 b/files/21_1618_example.mp3 deleted file mode 100644 index 0c9a0a496..000000000 Binary files a/files/21_1618_example.mp3 and /dev/null differ diff --git a/files/21_1618_meaning.mp3 b/files/21_1618_meaning.mp3 deleted file mode 100644 index 1e7310752..000000000 Binary files a/files/21_1618_meaning.mp3 and /dev/null differ diff --git a/files/21_1619.jpg b/files/21_1619.jpg deleted file mode 100644 index 9ff514f2d..000000000 Binary files a/files/21_1619.jpg and /dev/null differ diff --git a/files/21_1619.mp3 b/files/21_1619.mp3 deleted file mode 100644 index b006d232f..000000000 Binary files a/files/21_1619.mp3 and /dev/null differ diff --git a/files/21_1619_example.mp3 b/files/21_1619_example.mp3 deleted file mode 100644 index 3a07d9f98..000000000 Binary files a/files/21_1619_example.mp3 and /dev/null differ diff --git a/files/21_1619_meaning.mp3 b/files/21_1619_meaning.mp3 deleted file mode 100644 index 3f34e873b..000000000 Binary files a/files/21_1619_meaning.mp3 and /dev/null differ diff --git a/files/21_1620.jpg b/files/21_1620.jpg deleted file mode 100644 index 432903762..000000000 Binary files a/files/21_1620.jpg and /dev/null differ diff --git a/files/21_1620.mp3 b/files/21_1620.mp3 deleted file mode 100644 index 5c75b62a7..000000000 Binary files a/files/21_1620.mp3 and /dev/null differ diff --git a/files/21_1620_example.mp3 b/files/21_1620_example.mp3 deleted file mode 100644 index 4d6023a82..000000000 Binary files a/files/21_1620_example.mp3 and /dev/null differ diff --git a/files/21_1620_meaning.mp3 b/files/21_1620_meaning.mp3 deleted file mode 100644 index a68490749..000000000 Binary files a/files/21_1620_meaning.mp3 and /dev/null differ diff --git a/files/21_2201.jpg b/files/21_2201.jpg deleted file mode 100644 index 416abeaba..000000000 Binary files a/files/21_2201.jpg and /dev/null differ diff --git a/files/21_2201.mp3 b/files/21_2201.mp3 deleted file mode 100644 index 13a6c1780..000000000 Binary files a/files/21_2201.mp3 and /dev/null differ diff --git a/files/21_2201_example.mp3 b/files/21_2201_example.mp3 deleted file mode 100644 index f713d7f27..000000000 Binary files a/files/21_2201_example.mp3 and /dev/null differ diff --git a/files/21_2201_meaning.mp3 b/files/21_2201_meaning.mp3 deleted file mode 100644 index dc20d8644..000000000 Binary files a/files/21_2201_meaning.mp3 and /dev/null differ diff --git a/files/21_2202.jpg b/files/21_2202.jpg deleted file mode 100644 index cdc922166..000000000 Binary files a/files/21_2202.jpg and /dev/null differ diff --git a/files/21_2202.mp3 b/files/21_2202.mp3 deleted file mode 100644 index 400d7fd2d..000000000 Binary files a/files/21_2202.mp3 and /dev/null differ diff --git a/files/21_2202_example.mp3 b/files/21_2202_example.mp3 deleted file mode 100644 index 153a135bb..000000000 Binary files a/files/21_2202_example.mp3 and /dev/null differ diff --git a/files/21_2202_meaning.mp3 b/files/21_2202_meaning.mp3 deleted file mode 100644 index 53dd80b37..000000000 Binary files a/files/21_2202_meaning.mp3 and /dev/null differ diff --git a/files/21_2203.jpg b/files/21_2203.jpg deleted file mode 100644 index 594db51b5..000000000 Binary files a/files/21_2203.jpg and /dev/null differ diff --git a/files/21_2203.mp3 b/files/21_2203.mp3 deleted file mode 100644 index 899c7561d..000000000 Binary files a/files/21_2203.mp3 and /dev/null differ diff --git a/files/21_2203_example.mp3 b/files/21_2203_example.mp3 deleted file mode 100644 index cf370a890..000000000 Binary files a/files/21_2203_example.mp3 and /dev/null differ diff --git a/files/21_2203_meaning.mp3 b/files/21_2203_meaning.mp3 deleted file mode 100644 index 58e5881d1..000000000 Binary files a/files/21_2203_meaning.mp3 and /dev/null differ diff --git a/files/21_2204.jpg b/files/21_2204.jpg deleted file mode 100644 index 6afca195c..000000000 Binary files a/files/21_2204.jpg and /dev/null differ diff --git a/files/21_2204.mp3 b/files/21_2204.mp3 deleted file mode 100644 index 4cc53ec8b..000000000 Binary files a/files/21_2204.mp3 and /dev/null differ diff --git a/files/21_2204_example.mp3 b/files/21_2204_example.mp3 deleted file mode 100644 index d158c627e..000000000 Binary files a/files/21_2204_example.mp3 and /dev/null differ diff --git a/files/21_2204_meaning.mp3 b/files/21_2204_meaning.mp3 deleted file mode 100644 index 8327fb43b..000000000 Binary files a/files/21_2204_meaning.mp3 and /dev/null differ diff --git a/files/21_2205.jpg b/files/21_2205.jpg deleted file mode 100644 index 437027445..000000000 Binary files a/files/21_2205.jpg and /dev/null differ diff --git a/files/21_2205.mp3 b/files/21_2205.mp3 deleted file mode 100644 index f870a8650..000000000 Binary files a/files/21_2205.mp3 and /dev/null differ diff --git a/files/21_2205_example.mp3 b/files/21_2205_example.mp3 deleted file mode 100644 index 06a95b3c7..000000000 Binary files a/files/21_2205_example.mp3 and /dev/null differ diff --git a/files/21_2205_meaning.mp3 b/files/21_2205_meaning.mp3 deleted file mode 100644 index 5834141cd..000000000 Binary files a/files/21_2205_meaning.mp3 and /dev/null differ diff --git a/files/21_2206.jpg b/files/21_2206.jpg deleted file mode 100644 index ad61b2adb..000000000 Binary files a/files/21_2206.jpg and /dev/null differ diff --git a/files/21_2206.mp3 b/files/21_2206.mp3 deleted file mode 100644 index 5694e75ad..000000000 Binary files a/files/21_2206.mp3 and /dev/null differ diff --git a/files/21_2206_example.mp3 b/files/21_2206_example.mp3 deleted file mode 100644 index c31fe8005..000000000 Binary files a/files/21_2206_example.mp3 and /dev/null differ diff --git a/files/21_2206_meaning.mp3 b/files/21_2206_meaning.mp3 deleted file mode 100644 index f560e86fd..000000000 Binary files a/files/21_2206_meaning.mp3 and /dev/null differ diff --git a/files/21_2207.jpg b/files/21_2207.jpg deleted file mode 100644 index f4f9d9c0a..000000000 Binary files a/files/21_2207.jpg and /dev/null differ diff --git a/files/21_2207.mp3 b/files/21_2207.mp3 deleted file mode 100644 index 9647fa27b..000000000 Binary files a/files/21_2207.mp3 and /dev/null differ diff --git a/files/21_2207_example.mp3 b/files/21_2207_example.mp3 deleted file mode 100644 index ae9b0701c..000000000 Binary files a/files/21_2207_example.mp3 and /dev/null differ diff --git a/files/21_2207_meaning.mp3 b/files/21_2207_meaning.mp3 deleted file mode 100644 index b2e308ec3..000000000 Binary files a/files/21_2207_meaning.mp3 and /dev/null differ diff --git a/files/21_2208.jpg b/files/21_2208.jpg deleted file mode 100644 index 60f7fe97b..000000000 Binary files a/files/21_2208.jpg and /dev/null differ diff --git a/files/21_2208.mp3 b/files/21_2208.mp3 deleted file mode 100644 index a4df0f7bb..000000000 Binary files a/files/21_2208.mp3 and /dev/null differ diff --git a/files/21_2208_example.mp3 b/files/21_2208_example.mp3 deleted file mode 100644 index 54a809fe0..000000000 Binary files a/files/21_2208_example.mp3 and /dev/null differ diff --git a/files/21_2208_meaning.mp3 b/files/21_2208_meaning.mp3 deleted file mode 100644 index 4f18af227..000000000 Binary files a/files/21_2208_meaning.mp3 and /dev/null differ diff --git a/files/21_2209.jpg b/files/21_2209.jpg deleted file mode 100644 index b6ed415dd..000000000 Binary files a/files/21_2209.jpg and /dev/null differ diff --git a/files/21_2209.mp3 b/files/21_2209.mp3 deleted file mode 100644 index 367d4d40c..000000000 Binary files a/files/21_2209.mp3 and /dev/null differ diff --git a/files/21_2209_example.mp3 b/files/21_2209_example.mp3 deleted file mode 100644 index 2a72fdecd..000000000 Binary files a/files/21_2209_example.mp3 and /dev/null differ diff --git a/files/21_2209_meaning.mp3 b/files/21_2209_meaning.mp3 deleted file mode 100644 index 91495fc47..000000000 Binary files a/files/21_2209_meaning.mp3 and /dev/null differ diff --git a/files/21_2210.jpg b/files/21_2210.jpg deleted file mode 100644 index 782f83c52..000000000 Binary files a/files/21_2210.jpg and /dev/null differ diff --git a/files/21_2210.mp3 b/files/21_2210.mp3 deleted file mode 100644 index 9c3a6a23a..000000000 Binary files a/files/21_2210.mp3 and /dev/null differ diff --git a/files/21_2210_example.mp3 b/files/21_2210_example.mp3 deleted file mode 100644 index 7feec4641..000000000 Binary files a/files/21_2210_example.mp3 and /dev/null differ diff --git a/files/21_2210_meaning.mp3 b/files/21_2210_meaning.mp3 deleted file mode 100644 index b35973d08..000000000 Binary files a/files/21_2210_meaning.mp3 and /dev/null differ diff --git a/files/21_2211.jpg b/files/21_2211.jpg deleted file mode 100644 index 1ec0ebcb1..000000000 Binary files a/files/21_2211.jpg and /dev/null differ diff --git a/files/21_2211.mp3 b/files/21_2211.mp3 deleted file mode 100644 index b4cd5ee80..000000000 Binary files a/files/21_2211.mp3 and /dev/null differ diff --git a/files/21_2211_example.mp3 b/files/21_2211_example.mp3 deleted file mode 100644 index 81c46fbc6..000000000 Binary files a/files/21_2211_example.mp3 and /dev/null differ diff --git a/files/21_2211_meaning.mp3 b/files/21_2211_meaning.mp3 deleted file mode 100644 index d5a4b0c43..000000000 Binary files a/files/21_2211_meaning.mp3 and /dev/null differ diff --git a/files/21_2212.jpg b/files/21_2212.jpg deleted file mode 100644 index 53d4cdd66..000000000 Binary files a/files/21_2212.jpg and /dev/null differ diff --git a/files/21_2212.mp3 b/files/21_2212.mp3 deleted file mode 100644 index 3a732c0a3..000000000 Binary files a/files/21_2212.mp3 and /dev/null differ diff --git a/files/21_2212_example.mp3 b/files/21_2212_example.mp3 deleted file mode 100644 index 26a36186f..000000000 Binary files a/files/21_2212_example.mp3 and /dev/null differ diff --git a/files/21_2212_meaning.mp3 b/files/21_2212_meaning.mp3 deleted file mode 100644 index ba8d453cb..000000000 Binary files a/files/21_2212_meaning.mp3 and /dev/null differ diff --git a/files/21_2213.jpg b/files/21_2213.jpg deleted file mode 100644 index 02fce9260..000000000 Binary files a/files/21_2213.jpg and /dev/null differ diff --git a/files/21_2213.mp3 b/files/21_2213.mp3 deleted file mode 100644 index e20c11a25..000000000 Binary files a/files/21_2213.mp3 and /dev/null differ diff --git a/files/21_2213_example.mp3 b/files/21_2213_example.mp3 deleted file mode 100644 index 2f149aaf7..000000000 Binary files a/files/21_2213_example.mp3 and /dev/null differ diff --git a/files/21_2213_meaning.mp3 b/files/21_2213_meaning.mp3 deleted file mode 100644 index 6943bdcb2..000000000 Binary files a/files/21_2213_meaning.mp3 and /dev/null differ diff --git a/files/21_2214.jpg b/files/21_2214.jpg deleted file mode 100644 index a1e601bbe..000000000 Binary files a/files/21_2214.jpg and /dev/null differ diff --git a/files/21_2214.mp3 b/files/21_2214.mp3 deleted file mode 100644 index 150149357..000000000 Binary files a/files/21_2214.mp3 and /dev/null differ diff --git a/files/21_2214_example.mp3 b/files/21_2214_example.mp3 deleted file mode 100644 index 7487c6c80..000000000 Binary files a/files/21_2214_example.mp3 and /dev/null differ diff --git a/files/21_2214_meaning.mp3 b/files/21_2214_meaning.mp3 deleted file mode 100644 index db821264c..000000000 Binary files a/files/21_2214_meaning.mp3 and /dev/null differ diff --git a/files/21_2215.jpg b/files/21_2215.jpg deleted file mode 100644 index 40e18d741..000000000 Binary files a/files/21_2215.jpg and /dev/null differ diff --git a/files/21_2215.mp3 b/files/21_2215.mp3 deleted file mode 100644 index b782994bf..000000000 Binary files a/files/21_2215.mp3 and /dev/null differ diff --git a/files/21_2215_example.mp3 b/files/21_2215_example.mp3 deleted file mode 100644 index 957d59e08..000000000 Binary files a/files/21_2215_example.mp3 and /dev/null differ diff --git a/files/21_2215_meaning.mp3 b/files/21_2215_meaning.mp3 deleted file mode 100644 index b282bfb89..000000000 Binary files a/files/21_2215_meaning.mp3 and /dev/null differ diff --git a/files/21_2216.jpg b/files/21_2216.jpg deleted file mode 100644 index f6013fa07..000000000 Binary files a/files/21_2216.jpg and /dev/null differ diff --git a/files/21_2216.mp3 b/files/21_2216.mp3 deleted file mode 100644 index 335d48991..000000000 Binary files a/files/21_2216.mp3 and /dev/null differ diff --git a/files/21_2216_example.mp3 b/files/21_2216_example.mp3 deleted file mode 100644 index 97729283d..000000000 Binary files a/files/21_2216_example.mp3 and /dev/null differ diff --git a/files/21_2216_meaning.mp3 b/files/21_2216_meaning.mp3 deleted file mode 100644 index fabd7e8c0..000000000 Binary files a/files/21_2216_meaning.mp3 and /dev/null differ diff --git a/files/21_2217.jpg b/files/21_2217.jpg deleted file mode 100644 index 3c8af8b28..000000000 Binary files a/files/21_2217.jpg and /dev/null differ diff --git a/files/21_2217.mp3 b/files/21_2217.mp3 deleted file mode 100644 index 51f845e2c..000000000 Binary files a/files/21_2217.mp3 and /dev/null differ diff --git a/files/21_2217_example.mp3 b/files/21_2217_example.mp3 deleted file mode 100644 index 9ab41cf6d..000000000 Binary files a/files/21_2217_example.mp3 and /dev/null differ diff --git a/files/21_2217_meaning.mp3 b/files/21_2217_meaning.mp3 deleted file mode 100644 index d5d8f78f7..000000000 Binary files a/files/21_2217_meaning.mp3 and /dev/null differ diff --git a/files/21_2218.jpg b/files/21_2218.jpg deleted file mode 100644 index c00a9c86f..000000000 Binary files a/files/21_2218.jpg and /dev/null differ diff --git a/files/21_2218.mp3 b/files/21_2218.mp3 deleted file mode 100644 index 062ff629d..000000000 Binary files a/files/21_2218.mp3 and /dev/null differ diff --git a/files/21_2218_example.mp3 b/files/21_2218_example.mp3 deleted file mode 100644 index 2def96f4a..000000000 Binary files a/files/21_2218_example.mp3 and /dev/null differ diff --git a/files/21_2218_meaning.mp3 b/files/21_2218_meaning.mp3 deleted file mode 100644 index 794b8918f..000000000 Binary files a/files/21_2218_meaning.mp3 and /dev/null differ diff --git a/files/21_2219.jpg b/files/21_2219.jpg deleted file mode 100644 index 4a0e933e3..000000000 Binary files a/files/21_2219.jpg and /dev/null differ diff --git a/files/21_2219.mp3 b/files/21_2219.mp3 deleted file mode 100644 index 611d55437..000000000 Binary files a/files/21_2219.mp3 and /dev/null differ diff --git a/files/21_2219_example.mp3 b/files/21_2219_example.mp3 deleted file mode 100644 index ef586e3e8..000000000 Binary files a/files/21_2219_example.mp3 and /dev/null differ diff --git a/files/21_2219_meaning.mp3 b/files/21_2219_meaning.mp3 deleted file mode 100644 index 0ab954920..000000000 Binary files a/files/21_2219_meaning.mp3 and /dev/null differ diff --git a/files/21_2220.jpg b/files/21_2220.jpg deleted file mode 100644 index d8274f69e..000000000 Binary files a/files/21_2220.jpg and /dev/null differ diff --git a/files/21_2220.mp3 b/files/21_2220.mp3 deleted file mode 100644 index df596619f..000000000 Binary files a/files/21_2220.mp3 and /dev/null differ diff --git a/files/21_2220_example.mp3 b/files/21_2220_example.mp3 deleted file mode 100644 index e2f86ccde..000000000 Binary files a/files/21_2220_example.mp3 and /dev/null differ diff --git a/files/21_2220_meaning.mp3 b/files/21_2220_meaning.mp3 deleted file mode 100644 index b722ce78c..000000000 Binary files a/files/21_2220_meaning.mp3 and /dev/null differ diff --git a/files/21_2801.jpg b/files/21_2801.jpg deleted file mode 100644 index db59caa22..000000000 Binary files a/files/21_2801.jpg and /dev/null differ diff --git a/files/21_2801.mp3 b/files/21_2801.mp3 deleted file mode 100644 index b81f87144..000000000 Binary files a/files/21_2801.mp3 and /dev/null differ diff --git a/files/21_2801_example.mp3 b/files/21_2801_example.mp3 deleted file mode 100644 index 3bc420a4a..000000000 Binary files a/files/21_2801_example.mp3 and /dev/null differ diff --git a/files/21_2801_meaning.mp3 b/files/21_2801_meaning.mp3 deleted file mode 100644 index 7fe247a81..000000000 Binary files a/files/21_2801_meaning.mp3 and /dev/null differ diff --git a/files/21_2802.jpg b/files/21_2802.jpg deleted file mode 100644 index f1cc9600d..000000000 Binary files a/files/21_2802.jpg and /dev/null differ diff --git a/files/21_2802.mp3 b/files/21_2802.mp3 deleted file mode 100644 index 4447f9401..000000000 Binary files a/files/21_2802.mp3 and /dev/null differ diff --git a/files/21_2802_example.mp3 b/files/21_2802_example.mp3 deleted file mode 100644 index 39cf2ce0a..000000000 Binary files a/files/21_2802_example.mp3 and /dev/null differ diff --git a/files/21_2802_meaning.mp3 b/files/21_2802_meaning.mp3 deleted file mode 100644 index 2bc23c805..000000000 Binary files a/files/21_2802_meaning.mp3 and /dev/null differ diff --git a/files/21_2803.jpg b/files/21_2803.jpg deleted file mode 100644 index f98fd67fb..000000000 Binary files a/files/21_2803.jpg and /dev/null differ diff --git a/files/21_2803.mp3 b/files/21_2803.mp3 deleted file mode 100644 index 5a3ad500a..000000000 Binary files a/files/21_2803.mp3 and /dev/null differ diff --git a/files/21_2803_example.mp3 b/files/21_2803_example.mp3 deleted file mode 100644 index 56869a136..000000000 Binary files a/files/21_2803_example.mp3 and /dev/null differ diff --git a/files/21_2803_meaning.mp3 b/files/21_2803_meaning.mp3 deleted file mode 100644 index 2451d0087..000000000 Binary files a/files/21_2803_meaning.mp3 and /dev/null differ diff --git a/files/21_2804.jpg b/files/21_2804.jpg deleted file mode 100644 index ab2440aa0..000000000 Binary files a/files/21_2804.jpg and /dev/null differ diff --git a/files/21_2804.mp3 b/files/21_2804.mp3 deleted file mode 100644 index d2b8d5d11..000000000 Binary files a/files/21_2804.mp3 and /dev/null differ diff --git a/files/21_2804_example.mp3 b/files/21_2804_example.mp3 deleted file mode 100644 index 24f975af2..000000000 Binary files a/files/21_2804_example.mp3 and /dev/null differ diff --git a/files/21_2804_meaning.mp3 b/files/21_2804_meaning.mp3 deleted file mode 100644 index 38af3ab1e..000000000 Binary files a/files/21_2804_meaning.mp3 and /dev/null differ diff --git a/files/21_2805.jpg b/files/21_2805.jpg deleted file mode 100644 index ff93823a9..000000000 Binary files a/files/21_2805.jpg and /dev/null differ diff --git a/files/21_2805.mp3 b/files/21_2805.mp3 deleted file mode 100644 index bed409404..000000000 Binary files a/files/21_2805.mp3 and /dev/null differ diff --git a/files/21_2805_example.mp3 b/files/21_2805_example.mp3 deleted file mode 100644 index 55a42f6e6..000000000 Binary files a/files/21_2805_example.mp3 and /dev/null differ diff --git a/files/21_2805_meaning.mp3 b/files/21_2805_meaning.mp3 deleted file mode 100644 index 8460dc44a..000000000 Binary files a/files/21_2805_meaning.mp3 and /dev/null differ diff --git a/files/21_2806.jpg b/files/21_2806.jpg deleted file mode 100644 index 82b8755a3..000000000 Binary files a/files/21_2806.jpg and /dev/null differ diff --git a/files/21_2806.mp3 b/files/21_2806.mp3 deleted file mode 100644 index 36bedd330..000000000 Binary files a/files/21_2806.mp3 and /dev/null differ diff --git a/files/21_2806_example.mp3 b/files/21_2806_example.mp3 deleted file mode 100644 index c6e6ba089..000000000 Binary files a/files/21_2806_example.mp3 and /dev/null differ diff --git a/files/21_2806_meaning.mp3 b/files/21_2806_meaning.mp3 deleted file mode 100644 index d84f377d1..000000000 Binary files a/files/21_2806_meaning.mp3 and /dev/null differ diff --git a/files/21_2807.jpg b/files/21_2807.jpg deleted file mode 100644 index 3861e2e9e..000000000 Binary files a/files/21_2807.jpg and /dev/null differ diff --git a/files/21_2807.mp3 b/files/21_2807.mp3 deleted file mode 100644 index 6e2445f0a..000000000 Binary files a/files/21_2807.mp3 and /dev/null differ diff --git a/files/21_2807_example.mp3 b/files/21_2807_example.mp3 deleted file mode 100644 index 82c71660b..000000000 Binary files a/files/21_2807_example.mp3 and /dev/null differ diff --git a/files/21_2807_meaning.mp3 b/files/21_2807_meaning.mp3 deleted file mode 100644 index 6a556d1e9..000000000 Binary files a/files/21_2807_meaning.mp3 and /dev/null differ diff --git a/files/21_2808.jpg b/files/21_2808.jpg deleted file mode 100644 index 83a2cab5a..000000000 Binary files a/files/21_2808.jpg and /dev/null differ diff --git a/files/21_2808.mp3 b/files/21_2808.mp3 deleted file mode 100644 index e21f5b23f..000000000 Binary files a/files/21_2808.mp3 and /dev/null differ diff --git a/files/21_2808_example.mp3 b/files/21_2808_example.mp3 deleted file mode 100644 index bc7278220..000000000 Binary files a/files/21_2808_example.mp3 and /dev/null differ diff --git a/files/21_2808_meaning.mp3 b/files/21_2808_meaning.mp3 deleted file mode 100644 index b2d75073e..000000000 Binary files a/files/21_2808_meaning.mp3 and /dev/null differ diff --git a/files/21_2809.jpg b/files/21_2809.jpg deleted file mode 100644 index b28897a1c..000000000 Binary files a/files/21_2809.jpg and /dev/null differ diff --git a/files/21_2809.mp3 b/files/21_2809.mp3 deleted file mode 100644 index 518dc0cba..000000000 Binary files a/files/21_2809.mp3 and /dev/null differ diff --git a/files/21_2809_example.mp3 b/files/21_2809_example.mp3 deleted file mode 100644 index 3ae7e1cbe..000000000 Binary files a/files/21_2809_example.mp3 and /dev/null differ diff --git a/files/21_2809_meaning.mp3 b/files/21_2809_meaning.mp3 deleted file mode 100644 index d38e74c90..000000000 Binary files a/files/21_2809_meaning.mp3 and /dev/null differ diff --git a/files/21_2810.jpg b/files/21_2810.jpg deleted file mode 100644 index ec4baa231..000000000 Binary files a/files/21_2810.jpg and /dev/null differ diff --git a/files/21_2810.mp3 b/files/21_2810.mp3 deleted file mode 100644 index 989fca96b..000000000 Binary files a/files/21_2810.mp3 and /dev/null differ diff --git a/files/21_2810_example.mp3 b/files/21_2810_example.mp3 deleted file mode 100644 index 8b68df83e..000000000 Binary files a/files/21_2810_example.mp3 and /dev/null differ diff --git a/files/21_2810_meaning.mp3 b/files/21_2810_meaning.mp3 deleted file mode 100644 index 1c69fe9f9..000000000 Binary files a/files/21_2810_meaning.mp3 and /dev/null differ diff --git a/files/21_2811.jpg b/files/21_2811.jpg deleted file mode 100644 index 36c9fdaa5..000000000 Binary files a/files/21_2811.jpg and /dev/null differ diff --git a/files/21_2811.mp3 b/files/21_2811.mp3 deleted file mode 100644 index 88b17c8c8..000000000 Binary files a/files/21_2811.mp3 and /dev/null differ diff --git a/files/21_2811_example.mp3 b/files/21_2811_example.mp3 deleted file mode 100644 index 73a8c3ef7..000000000 Binary files a/files/21_2811_example.mp3 and /dev/null differ diff --git a/files/21_2811_meaning.mp3 b/files/21_2811_meaning.mp3 deleted file mode 100644 index 7865a8ce5..000000000 Binary files a/files/21_2811_meaning.mp3 and /dev/null differ diff --git a/files/21_2812.jpg b/files/21_2812.jpg deleted file mode 100644 index d05d0c248..000000000 Binary files a/files/21_2812.jpg and /dev/null differ diff --git a/files/21_2812.mp3 b/files/21_2812.mp3 deleted file mode 100644 index 13c1ed08f..000000000 Binary files a/files/21_2812.mp3 and /dev/null differ diff --git a/files/21_2812_example.mp3 b/files/21_2812_example.mp3 deleted file mode 100644 index 67a892b16..000000000 Binary files a/files/21_2812_example.mp3 and /dev/null differ diff --git a/files/21_2812_meaning.mp3 b/files/21_2812_meaning.mp3 deleted file mode 100644 index 0f0bca466..000000000 Binary files a/files/21_2812_meaning.mp3 and /dev/null differ diff --git a/files/21_2813.jpg b/files/21_2813.jpg deleted file mode 100644 index 313df1749..000000000 Binary files a/files/21_2813.jpg and /dev/null differ diff --git a/files/21_2813.mp3 b/files/21_2813.mp3 deleted file mode 100644 index d856d084c..000000000 Binary files a/files/21_2813.mp3 and /dev/null differ diff --git a/files/21_2813_example.mp3 b/files/21_2813_example.mp3 deleted file mode 100644 index c6dbde6a7..000000000 Binary files a/files/21_2813_example.mp3 and /dev/null differ diff --git a/files/21_2813_meaning.mp3 b/files/21_2813_meaning.mp3 deleted file mode 100644 index 94a8d734b..000000000 Binary files a/files/21_2813_meaning.mp3 and /dev/null differ diff --git a/files/21_2814.jpg b/files/21_2814.jpg deleted file mode 100644 index 25500259c..000000000 Binary files a/files/21_2814.jpg and /dev/null differ diff --git a/files/21_2814.mp3 b/files/21_2814.mp3 deleted file mode 100644 index 70ec12bd3..000000000 Binary files a/files/21_2814.mp3 and /dev/null differ diff --git a/files/21_2814_example.mp3 b/files/21_2814_example.mp3 deleted file mode 100644 index 6b485778b..000000000 Binary files a/files/21_2814_example.mp3 and /dev/null differ diff --git a/files/21_2814_meaning.mp3 b/files/21_2814_meaning.mp3 deleted file mode 100644 index 337bf15d9..000000000 Binary files a/files/21_2814_meaning.mp3 and /dev/null differ diff --git a/files/21_2815.jpg b/files/21_2815.jpg deleted file mode 100644 index 32eafa97d..000000000 Binary files a/files/21_2815.jpg and /dev/null differ diff --git a/files/21_2815.mp3 b/files/21_2815.mp3 deleted file mode 100644 index 08b1413ac..000000000 Binary files a/files/21_2815.mp3 and /dev/null differ diff --git a/files/21_2815_example.mp3 b/files/21_2815_example.mp3 deleted file mode 100644 index 646c6f639..000000000 Binary files a/files/21_2815_example.mp3 and /dev/null differ diff --git a/files/21_2815_meaning.mp3 b/files/21_2815_meaning.mp3 deleted file mode 100644 index b9b73bf2c..000000000 Binary files a/files/21_2815_meaning.mp3 and /dev/null differ diff --git a/files/21_2816.jpg b/files/21_2816.jpg deleted file mode 100644 index bb5357bfa..000000000 Binary files a/files/21_2816.jpg and /dev/null differ diff --git a/files/21_2816.mp3 b/files/21_2816.mp3 deleted file mode 100644 index 085634d14..000000000 Binary files a/files/21_2816.mp3 and /dev/null differ diff --git a/files/21_2816_example.mp3 b/files/21_2816_example.mp3 deleted file mode 100644 index bb6ccb94f..000000000 Binary files a/files/21_2816_example.mp3 and /dev/null differ diff --git a/files/21_2816_meaning.mp3 b/files/21_2816_meaning.mp3 deleted file mode 100644 index 1c460f6b9..000000000 Binary files a/files/21_2816_meaning.mp3 and /dev/null differ diff --git a/files/21_2817.jpg b/files/21_2817.jpg deleted file mode 100644 index 463d91b71..000000000 Binary files a/files/21_2817.jpg and /dev/null differ diff --git a/files/21_2817.mp3 b/files/21_2817.mp3 deleted file mode 100644 index addc5aa54..000000000 Binary files a/files/21_2817.mp3 and /dev/null differ diff --git a/files/21_2817_example.mp3 b/files/21_2817_example.mp3 deleted file mode 100644 index 0adc0d54a..000000000 Binary files a/files/21_2817_example.mp3 and /dev/null differ diff --git a/files/21_2817_meaning.mp3 b/files/21_2817_meaning.mp3 deleted file mode 100644 index def189733..000000000 Binary files a/files/21_2817_meaning.mp3 and /dev/null differ diff --git a/files/21_2818.jpg b/files/21_2818.jpg deleted file mode 100644 index 2ec7b8522..000000000 Binary files a/files/21_2818.jpg and /dev/null differ diff --git a/files/21_2818.mp3 b/files/21_2818.mp3 deleted file mode 100644 index ec4dc226c..000000000 Binary files a/files/21_2818.mp3 and /dev/null differ diff --git a/files/21_2818_example.mp3 b/files/21_2818_example.mp3 deleted file mode 100644 index a7d746d37..000000000 Binary files a/files/21_2818_example.mp3 and /dev/null differ diff --git a/files/21_2818_meaning.mp3 b/files/21_2818_meaning.mp3 deleted file mode 100644 index 1c96cac26..000000000 Binary files a/files/21_2818_meaning.mp3 and /dev/null differ diff --git a/files/21_2819.jpg b/files/21_2819.jpg deleted file mode 100644 index 0847a7721..000000000 Binary files a/files/21_2819.jpg and /dev/null differ diff --git a/files/21_2819.mp3 b/files/21_2819.mp3 deleted file mode 100644 index 7fcea1c4a..000000000 Binary files a/files/21_2819.mp3 and /dev/null differ diff --git a/files/21_2819_example.mp3 b/files/21_2819_example.mp3 deleted file mode 100644 index 061bb9e1b..000000000 Binary files a/files/21_2819_example.mp3 and /dev/null differ diff --git a/files/21_2819_meaning.mp3 b/files/21_2819_meaning.mp3 deleted file mode 100644 index 944dcfcb2..000000000 Binary files a/files/21_2819_meaning.mp3 and /dev/null differ diff --git a/files/21_2820.jpg b/files/21_2820.jpg deleted file mode 100644 index 2d653cabe..000000000 Binary files a/files/21_2820.jpg and /dev/null differ diff --git a/files/21_2820.mp3 b/files/21_2820.mp3 deleted file mode 100644 index b5b2ec035..000000000 Binary files a/files/21_2820.mp3 and /dev/null differ diff --git a/files/21_2820_example.mp3 b/files/21_2820_example.mp3 deleted file mode 100644 index 6d5ec12bf..000000000 Binary files a/files/21_2820_example.mp3 and /dev/null differ diff --git a/files/21_2820_meaning.mp3 b/files/21_2820_meaning.mp3 deleted file mode 100644 index 32e94e7a4..000000000 Binary files a/files/21_2820_meaning.mp3 and /dev/null differ diff --git a/files/21_3401.jpg b/files/21_3401.jpg deleted file mode 100644 index 83469b404..000000000 Binary files a/files/21_3401.jpg and /dev/null differ diff --git a/files/21_3401.mp3 b/files/21_3401.mp3 deleted file mode 100644 index e48015871..000000000 Binary files a/files/21_3401.mp3 and /dev/null differ diff --git a/files/21_3401_example.mp3 b/files/21_3401_example.mp3 deleted file mode 100644 index c90a692cd..000000000 Binary files a/files/21_3401_example.mp3 and /dev/null differ diff --git a/files/21_3401_meaning.mp3 b/files/21_3401_meaning.mp3 deleted file mode 100644 index 2c1ce38b2..000000000 Binary files a/files/21_3401_meaning.mp3 and /dev/null differ diff --git a/files/21_3402.jpg b/files/21_3402.jpg deleted file mode 100644 index 551a3cdde..000000000 Binary files a/files/21_3402.jpg and /dev/null differ diff --git a/files/21_3402.mp3 b/files/21_3402.mp3 deleted file mode 100644 index 0c5ded2c7..000000000 Binary files a/files/21_3402.mp3 and /dev/null differ diff --git a/files/21_3402_example.mp3 b/files/21_3402_example.mp3 deleted file mode 100644 index ea9763d97..000000000 Binary files a/files/21_3402_example.mp3 and /dev/null differ diff --git a/files/21_3402_meaning.mp3 b/files/21_3402_meaning.mp3 deleted file mode 100644 index 114295438..000000000 Binary files a/files/21_3402_meaning.mp3 and /dev/null differ diff --git a/files/21_3403.jpg b/files/21_3403.jpg deleted file mode 100644 index 7b24bf06b..000000000 Binary files a/files/21_3403.jpg and /dev/null differ diff --git a/files/21_3403.mp3 b/files/21_3403.mp3 deleted file mode 100644 index ad79661de..000000000 Binary files a/files/21_3403.mp3 and /dev/null differ diff --git a/files/21_3403_example.mp3 b/files/21_3403_example.mp3 deleted file mode 100644 index 726a0c4f3..000000000 Binary files a/files/21_3403_example.mp3 and /dev/null differ diff --git a/files/21_3403_meaning.mp3 b/files/21_3403_meaning.mp3 deleted file mode 100644 index 56d6ee26c..000000000 Binary files a/files/21_3403_meaning.mp3 and /dev/null differ diff --git a/files/21_3404.jpg b/files/21_3404.jpg deleted file mode 100644 index 08da89f3f..000000000 Binary files a/files/21_3404.jpg and /dev/null differ diff --git a/files/21_3404.mp3 b/files/21_3404.mp3 deleted file mode 100644 index b76e4b21e..000000000 Binary files a/files/21_3404.mp3 and /dev/null differ diff --git a/files/21_3404_example.mp3 b/files/21_3404_example.mp3 deleted file mode 100644 index 7eebb4041..000000000 Binary files a/files/21_3404_example.mp3 and /dev/null differ diff --git a/files/21_3404_meaning.mp3 b/files/21_3404_meaning.mp3 deleted file mode 100644 index 8d3fbe234..000000000 Binary files a/files/21_3404_meaning.mp3 and /dev/null differ diff --git a/files/21_3405.jpg b/files/21_3405.jpg deleted file mode 100644 index b51aaef61..000000000 Binary files a/files/21_3405.jpg and /dev/null differ diff --git a/files/21_3405.mp3 b/files/21_3405.mp3 deleted file mode 100644 index 847fc0d52..000000000 Binary files a/files/21_3405.mp3 and /dev/null differ diff --git a/files/21_3405_example.mp3 b/files/21_3405_example.mp3 deleted file mode 100644 index 9010a5700..000000000 Binary files a/files/21_3405_example.mp3 and /dev/null differ diff --git a/files/21_3405_meaning.mp3 b/files/21_3405_meaning.mp3 deleted file mode 100644 index c91799ac5..000000000 Binary files a/files/21_3405_meaning.mp3 and /dev/null differ diff --git a/files/21_3406.jpg b/files/21_3406.jpg deleted file mode 100644 index c61e890ae..000000000 Binary files a/files/21_3406.jpg and /dev/null differ diff --git a/files/21_3406.mp3 b/files/21_3406.mp3 deleted file mode 100644 index 22d46136c..000000000 Binary files a/files/21_3406.mp3 and /dev/null differ diff --git a/files/21_3406_example.mp3 b/files/21_3406_example.mp3 deleted file mode 100644 index dad0c3fbe..000000000 Binary files a/files/21_3406_example.mp3 and /dev/null differ diff --git a/files/21_3406_meaning.mp3 b/files/21_3406_meaning.mp3 deleted file mode 100644 index 9437a0255..000000000 Binary files a/files/21_3406_meaning.mp3 and /dev/null differ diff --git a/files/21_3407.jpg b/files/21_3407.jpg deleted file mode 100644 index d835945c8..000000000 Binary files a/files/21_3407.jpg and /dev/null differ diff --git a/files/21_3407.mp3 b/files/21_3407.mp3 deleted file mode 100644 index e6eee64e1..000000000 Binary files a/files/21_3407.mp3 and /dev/null differ diff --git a/files/21_3407_example.mp3 b/files/21_3407_example.mp3 deleted file mode 100644 index 414034ac5..000000000 Binary files a/files/21_3407_example.mp3 and /dev/null differ diff --git a/files/21_3407_meaning.mp3 b/files/21_3407_meaning.mp3 deleted file mode 100644 index bbb06ba47..000000000 Binary files a/files/21_3407_meaning.mp3 and /dev/null differ diff --git a/files/21_3408.jpg b/files/21_3408.jpg deleted file mode 100644 index 32a2ee5e7..000000000 Binary files a/files/21_3408.jpg and /dev/null differ diff --git a/files/21_3408.mp3 b/files/21_3408.mp3 deleted file mode 100644 index e510dfd2f..000000000 Binary files a/files/21_3408.mp3 and /dev/null differ diff --git a/files/21_3408_example.mp3 b/files/21_3408_example.mp3 deleted file mode 100644 index 2bcf69cd0..000000000 Binary files a/files/21_3408_example.mp3 and /dev/null differ diff --git a/files/21_3408_meaning.mp3 b/files/21_3408_meaning.mp3 deleted file mode 100644 index 1dc8b825c..000000000 Binary files a/files/21_3408_meaning.mp3 and /dev/null differ diff --git a/files/21_3409.jpg b/files/21_3409.jpg deleted file mode 100644 index e2a40cea2..000000000 Binary files a/files/21_3409.jpg and /dev/null differ diff --git a/files/21_3409.mp3 b/files/21_3409.mp3 deleted file mode 100644 index 0c8bc2370..000000000 Binary files a/files/21_3409.mp3 and /dev/null differ diff --git a/files/21_3409_example.mp3 b/files/21_3409_example.mp3 deleted file mode 100644 index 64686245a..000000000 Binary files a/files/21_3409_example.mp3 and /dev/null differ diff --git a/files/21_3409_meaning.mp3 b/files/21_3409_meaning.mp3 deleted file mode 100644 index 6b49f1465..000000000 Binary files a/files/21_3409_meaning.mp3 and /dev/null differ diff --git a/files/21_3410.jpg b/files/21_3410.jpg deleted file mode 100644 index daf89d206..000000000 Binary files a/files/21_3410.jpg and /dev/null differ diff --git a/files/21_3410.mp3 b/files/21_3410.mp3 deleted file mode 100644 index 01fcd31f1..000000000 Binary files a/files/21_3410.mp3 and /dev/null differ diff --git a/files/21_3410_example.mp3 b/files/21_3410_example.mp3 deleted file mode 100644 index 6a9b1febd..000000000 Binary files a/files/21_3410_example.mp3 and /dev/null differ diff --git a/files/21_3410_meaning.mp3 b/files/21_3410_meaning.mp3 deleted file mode 100644 index 2557a35b8..000000000 Binary files a/files/21_3410_meaning.mp3 and /dev/null differ diff --git a/files/21_3411.jpg b/files/21_3411.jpg deleted file mode 100644 index 15e2aa588..000000000 Binary files a/files/21_3411.jpg and /dev/null differ diff --git a/files/21_3411.mp3 b/files/21_3411.mp3 deleted file mode 100644 index db249ef1d..000000000 Binary files a/files/21_3411.mp3 and /dev/null differ diff --git a/files/21_3411_example.mp3 b/files/21_3411_example.mp3 deleted file mode 100644 index 5e705c905..000000000 Binary files a/files/21_3411_example.mp3 and /dev/null differ diff --git a/files/21_3411_meaning.mp3 b/files/21_3411_meaning.mp3 deleted file mode 100644 index ce52f9227..000000000 Binary files a/files/21_3411_meaning.mp3 and /dev/null differ diff --git a/files/21_3412.jpg b/files/21_3412.jpg deleted file mode 100644 index 50371a359..000000000 Binary files a/files/21_3412.jpg and /dev/null differ diff --git a/files/21_3412.mp3 b/files/21_3412.mp3 deleted file mode 100644 index 71942eaf7..000000000 Binary files a/files/21_3412.mp3 and /dev/null differ diff --git a/files/21_3412_example.mp3 b/files/21_3412_example.mp3 deleted file mode 100644 index 903c2a72b..000000000 Binary files a/files/21_3412_example.mp3 and /dev/null differ diff --git a/files/21_3412_meaning.mp3 b/files/21_3412_meaning.mp3 deleted file mode 100644 index d1a170d00..000000000 Binary files a/files/21_3412_meaning.mp3 and /dev/null differ diff --git a/files/21_3413.jpg b/files/21_3413.jpg deleted file mode 100644 index e24c8c139..000000000 Binary files a/files/21_3413.jpg and /dev/null differ diff --git a/files/21_3413.mp3 b/files/21_3413.mp3 deleted file mode 100644 index b7f776dbe..000000000 Binary files a/files/21_3413.mp3 and /dev/null differ diff --git a/files/21_3413_example.mp3 b/files/21_3413_example.mp3 deleted file mode 100644 index fa1b9cd7b..000000000 Binary files a/files/21_3413_example.mp3 and /dev/null differ diff --git a/files/21_3413_meaning.mp3 b/files/21_3413_meaning.mp3 deleted file mode 100644 index edd417b49..000000000 Binary files a/files/21_3413_meaning.mp3 and /dev/null differ diff --git a/files/21_3414.jpg b/files/21_3414.jpg deleted file mode 100644 index b4b3f22b4..000000000 Binary files a/files/21_3414.jpg and /dev/null differ diff --git a/files/21_3414.mp3 b/files/21_3414.mp3 deleted file mode 100644 index 3f0199724..000000000 Binary files a/files/21_3414.mp3 and /dev/null differ diff --git a/files/21_3414_example.mp3 b/files/21_3414_example.mp3 deleted file mode 100644 index def7c2edc..000000000 Binary files a/files/21_3414_example.mp3 and /dev/null differ diff --git a/files/21_3414_meaning.mp3 b/files/21_3414_meaning.mp3 deleted file mode 100644 index 030a7d0a2..000000000 Binary files a/files/21_3414_meaning.mp3 and /dev/null differ diff --git a/files/21_3415.jpg b/files/21_3415.jpg deleted file mode 100644 index 3fb043e4c..000000000 Binary files a/files/21_3415.jpg and /dev/null differ diff --git a/files/21_3415.mp3 b/files/21_3415.mp3 deleted file mode 100644 index 5cc99500a..000000000 Binary files a/files/21_3415.mp3 and /dev/null differ diff --git a/files/21_3415_example.mp3 b/files/21_3415_example.mp3 deleted file mode 100644 index 899670ac9..000000000 Binary files a/files/21_3415_example.mp3 and /dev/null differ diff --git a/files/21_3415_meaning.mp3 b/files/21_3415_meaning.mp3 deleted file mode 100644 index 805c20d37..000000000 Binary files a/files/21_3415_meaning.mp3 and /dev/null differ diff --git a/files/21_3416.jpg b/files/21_3416.jpg deleted file mode 100644 index 16ba8b880..000000000 Binary files a/files/21_3416.jpg and /dev/null differ diff --git a/files/21_3416.mp3 b/files/21_3416.mp3 deleted file mode 100644 index 0181450b9..000000000 Binary files a/files/21_3416.mp3 and /dev/null differ diff --git a/files/21_3416_example.mp3 b/files/21_3416_example.mp3 deleted file mode 100644 index 8709f458c..000000000 Binary files a/files/21_3416_example.mp3 and /dev/null differ diff --git a/files/21_3416_meaning.mp3 b/files/21_3416_meaning.mp3 deleted file mode 100644 index 283f6e67b..000000000 Binary files a/files/21_3416_meaning.mp3 and /dev/null differ diff --git a/files/21_3417.jpg b/files/21_3417.jpg deleted file mode 100644 index a5f1b0af8..000000000 Binary files a/files/21_3417.jpg and /dev/null differ diff --git a/files/21_3417.mp3 b/files/21_3417.mp3 deleted file mode 100644 index 03b638bb7..000000000 Binary files a/files/21_3417.mp3 and /dev/null differ diff --git a/files/21_3417_example.mp3 b/files/21_3417_example.mp3 deleted file mode 100644 index c5ded0042..000000000 Binary files a/files/21_3417_example.mp3 and /dev/null differ diff --git a/files/21_3417_meaning.mp3 b/files/21_3417_meaning.mp3 deleted file mode 100644 index 153bc5d71..000000000 Binary files a/files/21_3417_meaning.mp3 and /dev/null differ diff --git a/files/21_3418.jpg b/files/21_3418.jpg deleted file mode 100644 index 47d35f7f5..000000000 Binary files a/files/21_3418.jpg and /dev/null differ diff --git a/files/21_3418.mp3 b/files/21_3418.mp3 deleted file mode 100644 index bf69702f7..000000000 Binary files a/files/21_3418.mp3 and /dev/null differ diff --git a/files/21_3418_example.mp3 b/files/21_3418_example.mp3 deleted file mode 100644 index bfbb8fbf8..000000000 Binary files a/files/21_3418_example.mp3 and /dev/null differ diff --git a/files/21_3418_meaning.mp3 b/files/21_3418_meaning.mp3 deleted file mode 100644 index cd10ead5e..000000000 Binary files a/files/21_3418_meaning.mp3 and /dev/null differ diff --git a/files/21_3419.jpg b/files/21_3419.jpg deleted file mode 100644 index b3945fe90..000000000 Binary files a/files/21_3419.jpg and /dev/null differ diff --git a/files/21_3419.mp3 b/files/21_3419.mp3 deleted file mode 100644 index 1fe9b77da..000000000 Binary files a/files/21_3419.mp3 and /dev/null differ diff --git a/files/21_3419_example.mp3 b/files/21_3419_example.mp3 deleted file mode 100644 index e74b45e1f..000000000 Binary files a/files/21_3419_example.mp3 and /dev/null differ diff --git a/files/21_3419_meaning.mp3 b/files/21_3419_meaning.mp3 deleted file mode 100644 index fea53de7a..000000000 Binary files a/files/21_3419_meaning.mp3 and /dev/null differ diff --git a/files/21_3420.jpg b/files/21_3420.jpg deleted file mode 100644 index bc5c54bf3..000000000 Binary files a/files/21_3420.jpg and /dev/null differ diff --git a/files/21_3420.mp3 b/files/21_3420.mp3 deleted file mode 100644 index 32a116ecb..000000000 Binary files a/files/21_3420.mp3 and /dev/null differ diff --git a/files/21_3420_example.mp3 b/files/21_3420_example.mp3 deleted file mode 100644 index cb9ec6646..000000000 Binary files a/files/21_3420_example.mp3 and /dev/null differ diff --git a/files/21_3420_meaning.mp3 b/files/21_3420_meaning.mp3 deleted file mode 100644 index 99be74033..000000000 Binary files a/files/21_3420_meaning.mp3 and /dev/null differ diff --git a/files/22_0421.jpg b/files/22_0421.jpg deleted file mode 100644 index 5193920e4..000000000 Binary files a/files/22_0421.jpg and /dev/null differ diff --git a/files/22_0421.mp3 b/files/22_0421.mp3 deleted file mode 100644 index 8fb47d6de..000000000 Binary files a/files/22_0421.mp3 and /dev/null differ diff --git a/files/22_0421_example.mp3 b/files/22_0421_example.mp3 deleted file mode 100644 index 4414b522a..000000000 Binary files a/files/22_0421_example.mp3 and /dev/null differ diff --git a/files/22_0421_meaning.mp3 b/files/22_0421_meaning.mp3 deleted file mode 100644 index 5166e35c1..000000000 Binary files a/files/22_0421_meaning.mp3 and /dev/null differ diff --git a/files/22_0422.jpg b/files/22_0422.jpg deleted file mode 100644 index 63cb817b6..000000000 Binary files a/files/22_0422.jpg and /dev/null differ diff --git a/files/22_0422.mp3 b/files/22_0422.mp3 deleted file mode 100644 index 09d280d42..000000000 Binary files a/files/22_0422.mp3 and /dev/null differ diff --git a/files/22_0422_example.mp3 b/files/22_0422_example.mp3 deleted file mode 100644 index d156f4b96..000000000 Binary files a/files/22_0422_example.mp3 and /dev/null differ diff --git a/files/22_0422_meaning.mp3 b/files/22_0422_meaning.mp3 deleted file mode 100644 index a86320522..000000000 Binary files a/files/22_0422_meaning.mp3 and /dev/null differ diff --git a/files/22_0423.jpg b/files/22_0423.jpg deleted file mode 100644 index 755a61053..000000000 Binary files a/files/22_0423.jpg and /dev/null differ diff --git a/files/22_0423.mp3 b/files/22_0423.mp3 deleted file mode 100644 index ded888b55..000000000 Binary files a/files/22_0423.mp3 and /dev/null differ diff --git a/files/22_0423_example.mp3 b/files/22_0423_example.mp3 deleted file mode 100644 index 96e1bd865..000000000 Binary files a/files/22_0423_example.mp3 and /dev/null differ diff --git a/files/22_0423_meaning.mp3 b/files/22_0423_meaning.mp3 deleted file mode 100644 index a278be19a..000000000 Binary files a/files/22_0423_meaning.mp3 and /dev/null differ diff --git a/files/22_0424.jpg b/files/22_0424.jpg deleted file mode 100644 index ca9387d2f..000000000 Binary files a/files/22_0424.jpg and /dev/null differ diff --git a/files/22_0424.mp3 b/files/22_0424.mp3 deleted file mode 100644 index 1498fd8cb..000000000 Binary files a/files/22_0424.mp3 and /dev/null differ diff --git a/files/22_0424_example.mp3 b/files/22_0424_example.mp3 deleted file mode 100644 index cebb5d324..000000000 Binary files a/files/22_0424_example.mp3 and /dev/null differ diff --git a/files/22_0424_meaning.mp3 b/files/22_0424_meaning.mp3 deleted file mode 100644 index 4c176ac7e..000000000 Binary files a/files/22_0424_meaning.mp3 and /dev/null differ diff --git a/files/22_0425.jpg b/files/22_0425.jpg deleted file mode 100644 index 9e023af32..000000000 Binary files a/files/22_0425.jpg and /dev/null differ diff --git a/files/22_0425.mp3 b/files/22_0425.mp3 deleted file mode 100644 index 5d93f7f29..000000000 Binary files a/files/22_0425.mp3 and /dev/null differ diff --git a/files/22_0425_example.mp3 b/files/22_0425_example.mp3 deleted file mode 100644 index acf63f1da..000000000 Binary files a/files/22_0425_example.mp3 and /dev/null differ diff --git a/files/22_0425_meaning.mp3 b/files/22_0425_meaning.mp3 deleted file mode 100644 index da06e1795..000000000 Binary files a/files/22_0425_meaning.mp3 and /dev/null differ diff --git a/files/22_0426.jpg b/files/22_0426.jpg deleted file mode 100644 index c975db8cb..000000000 Binary files a/files/22_0426.jpg and /dev/null differ diff --git a/files/22_0426.mp3 b/files/22_0426.mp3 deleted file mode 100644 index e3557aae0..000000000 Binary files a/files/22_0426.mp3 and /dev/null differ diff --git a/files/22_0426_example.mp3 b/files/22_0426_example.mp3 deleted file mode 100644 index 3da2dfc5c..000000000 Binary files a/files/22_0426_example.mp3 and /dev/null differ diff --git a/files/22_0426_meaning.mp3 b/files/22_0426_meaning.mp3 deleted file mode 100644 index fc1c38aed..000000000 Binary files a/files/22_0426_meaning.mp3 and /dev/null differ diff --git a/files/22_0427.jpg b/files/22_0427.jpg deleted file mode 100644 index 8ccf67e2d..000000000 Binary files a/files/22_0427.jpg and /dev/null differ diff --git a/files/22_0427.mp3 b/files/22_0427.mp3 deleted file mode 100644 index fcd4d89db..000000000 Binary files a/files/22_0427.mp3 and /dev/null differ diff --git a/files/22_0427_example.mp3 b/files/22_0427_example.mp3 deleted file mode 100644 index aa88c3789..000000000 Binary files a/files/22_0427_example.mp3 and /dev/null differ diff --git a/files/22_0427_meaning.mp3 b/files/22_0427_meaning.mp3 deleted file mode 100644 index df3d7ddac..000000000 Binary files a/files/22_0427_meaning.mp3 and /dev/null differ diff --git a/files/22_0428.jpg b/files/22_0428.jpg deleted file mode 100644 index acd4fb875..000000000 Binary files a/files/22_0428.jpg and /dev/null differ diff --git a/files/22_0428.mp3 b/files/22_0428.mp3 deleted file mode 100644 index fb316d21e..000000000 Binary files a/files/22_0428.mp3 and /dev/null differ diff --git a/files/22_0428_example.mp3 b/files/22_0428_example.mp3 deleted file mode 100644 index eaaa7e0a2..000000000 Binary files a/files/22_0428_example.mp3 and /dev/null differ diff --git a/files/22_0428_meaning.mp3 b/files/22_0428_meaning.mp3 deleted file mode 100644 index 03e278b18..000000000 Binary files a/files/22_0428_meaning.mp3 and /dev/null differ diff --git a/files/22_0429.jpg b/files/22_0429.jpg deleted file mode 100644 index 0cc5fa2f1..000000000 Binary files a/files/22_0429.jpg and /dev/null differ diff --git a/files/22_0429.mp3 b/files/22_0429.mp3 deleted file mode 100644 index 8fe0c5b97..000000000 Binary files a/files/22_0429.mp3 and /dev/null differ diff --git a/files/22_0429_example.mp3 b/files/22_0429_example.mp3 deleted file mode 100644 index 27f06b65e..000000000 Binary files a/files/22_0429_example.mp3 and /dev/null differ diff --git a/files/22_0429_meaning.mp3 b/files/22_0429_meaning.mp3 deleted file mode 100644 index e5957c675..000000000 Binary files a/files/22_0429_meaning.mp3 and /dev/null differ diff --git a/files/22_0430.jpg b/files/22_0430.jpg deleted file mode 100644 index 95e4a0c1e..000000000 Binary files a/files/22_0430.jpg and /dev/null differ diff --git a/files/22_0430.mp3 b/files/22_0430.mp3 deleted file mode 100644 index acc2c87cc..000000000 Binary files a/files/22_0430.mp3 and /dev/null differ diff --git a/files/22_0430_example.mp3 b/files/22_0430_example.mp3 deleted file mode 100644 index d99d43c47..000000000 Binary files a/files/22_0430_example.mp3 and /dev/null differ diff --git a/files/22_0430_meaning.mp3 b/files/22_0430_meaning.mp3 deleted file mode 100644 index 6151111b0..000000000 Binary files a/files/22_0430_meaning.mp3 and /dev/null differ diff --git a/files/22_0431.jpg b/files/22_0431.jpg deleted file mode 100644 index 1a748e60a..000000000 Binary files a/files/22_0431.jpg and /dev/null differ diff --git a/files/22_0431.mp3 b/files/22_0431.mp3 deleted file mode 100644 index 5137b4356..000000000 Binary files a/files/22_0431.mp3 and /dev/null differ diff --git a/files/22_0431_example.mp3 b/files/22_0431_example.mp3 deleted file mode 100644 index b722acc64..000000000 Binary files a/files/22_0431_example.mp3 and /dev/null differ diff --git a/files/22_0431_meaning.mp3 b/files/22_0431_meaning.mp3 deleted file mode 100644 index 5519c37e6..000000000 Binary files a/files/22_0431_meaning.mp3 and /dev/null differ diff --git a/files/22_0432.jpg b/files/22_0432.jpg deleted file mode 100644 index f9015eccb..000000000 Binary files a/files/22_0432.jpg and /dev/null differ diff --git a/files/22_0432.mp3 b/files/22_0432.mp3 deleted file mode 100644 index 0a40db869..000000000 Binary files a/files/22_0432.mp3 and /dev/null differ diff --git a/files/22_0432_example.mp3 b/files/22_0432_example.mp3 deleted file mode 100644 index 2addca9be..000000000 Binary files a/files/22_0432_example.mp3 and /dev/null differ diff --git a/files/22_0432_meaning.mp3 b/files/22_0432_meaning.mp3 deleted file mode 100644 index 0bbb24882..000000000 Binary files a/files/22_0432_meaning.mp3 and /dev/null differ diff --git a/files/22_0433.jpg b/files/22_0433.jpg deleted file mode 100644 index 7abbea970..000000000 Binary files a/files/22_0433.jpg and /dev/null differ diff --git a/files/22_0433.mp3 b/files/22_0433.mp3 deleted file mode 100644 index 627744cdd..000000000 Binary files a/files/22_0433.mp3 and /dev/null differ diff --git a/files/22_0433_example.mp3 b/files/22_0433_example.mp3 deleted file mode 100644 index 8a22375be..000000000 Binary files a/files/22_0433_example.mp3 and /dev/null differ diff --git a/files/22_0433_meaning.mp3 b/files/22_0433_meaning.mp3 deleted file mode 100644 index 45ae3e411..000000000 Binary files a/files/22_0433_meaning.mp3 and /dev/null differ diff --git a/files/22_0434.jpg b/files/22_0434.jpg deleted file mode 100644 index 966bdaa8c..000000000 Binary files a/files/22_0434.jpg and /dev/null differ diff --git a/files/22_0434.mp3 b/files/22_0434.mp3 deleted file mode 100644 index cb2ff93ec..000000000 Binary files a/files/22_0434.mp3 and /dev/null differ diff --git a/files/22_0434_example.mp3 b/files/22_0434_example.mp3 deleted file mode 100644 index c98c02f58..000000000 Binary files a/files/22_0434_example.mp3 and /dev/null differ diff --git a/files/22_0434_meaning.mp3 b/files/22_0434_meaning.mp3 deleted file mode 100644 index 546bde552..000000000 Binary files a/files/22_0434_meaning.mp3 and /dev/null differ diff --git a/files/22_0435.jpg b/files/22_0435.jpg deleted file mode 100644 index cdd53556b..000000000 Binary files a/files/22_0435.jpg and /dev/null differ diff --git a/files/22_0435.mp3 b/files/22_0435.mp3 deleted file mode 100644 index 52490ea28..000000000 Binary files a/files/22_0435.mp3 and /dev/null differ diff --git a/files/22_0435_example.mp3 b/files/22_0435_example.mp3 deleted file mode 100644 index 976408aa1..000000000 Binary files a/files/22_0435_example.mp3 and /dev/null differ diff --git a/files/22_0435_meaning.mp3 b/files/22_0435_meaning.mp3 deleted file mode 100644 index ff2a454bf..000000000 Binary files a/files/22_0435_meaning.mp3 and /dev/null differ diff --git a/files/22_0436.jpg b/files/22_0436.jpg deleted file mode 100644 index b0d4ca477..000000000 Binary files a/files/22_0436.jpg and /dev/null differ diff --git a/files/22_0436.mp3 b/files/22_0436.mp3 deleted file mode 100644 index 425c8f8e5..000000000 Binary files a/files/22_0436.mp3 and /dev/null differ diff --git a/files/22_0436_example.mp3 b/files/22_0436_example.mp3 deleted file mode 100644 index 7f4df8613..000000000 Binary files a/files/22_0436_example.mp3 and /dev/null differ diff --git a/files/22_0436_meaning.mp3 b/files/22_0436_meaning.mp3 deleted file mode 100644 index 7a3d02ba1..000000000 Binary files a/files/22_0436_meaning.mp3 and /dev/null differ diff --git a/files/22_0437.jpg b/files/22_0437.jpg deleted file mode 100644 index 67652c92c..000000000 Binary files a/files/22_0437.jpg and /dev/null differ diff --git a/files/22_0437.mp3 b/files/22_0437.mp3 deleted file mode 100644 index 4b12c5835..000000000 Binary files a/files/22_0437.mp3 and /dev/null differ diff --git a/files/22_0437_example.mp3 b/files/22_0437_example.mp3 deleted file mode 100644 index bfb2c6946..000000000 Binary files a/files/22_0437_example.mp3 and /dev/null differ diff --git a/files/22_0437_meaning.mp3 b/files/22_0437_meaning.mp3 deleted file mode 100644 index f6f2b4595..000000000 Binary files a/files/22_0437_meaning.mp3 and /dev/null differ diff --git a/files/22_0438.jpg b/files/22_0438.jpg deleted file mode 100644 index 39d41b8e1..000000000 Binary files a/files/22_0438.jpg and /dev/null differ diff --git a/files/22_0438.mp3 b/files/22_0438.mp3 deleted file mode 100644 index 9dc279367..000000000 Binary files a/files/22_0438.mp3 and /dev/null differ diff --git a/files/22_0438_example.mp3 b/files/22_0438_example.mp3 deleted file mode 100644 index fd7d99f8a..000000000 Binary files a/files/22_0438_example.mp3 and /dev/null differ diff --git a/files/22_0438_meaning.mp3 b/files/22_0438_meaning.mp3 deleted file mode 100644 index 0d099006e..000000000 Binary files a/files/22_0438_meaning.mp3 and /dev/null differ diff --git a/files/22_0439.jpg b/files/22_0439.jpg deleted file mode 100644 index b1b8ec1e5..000000000 Binary files a/files/22_0439.jpg and /dev/null differ diff --git a/files/22_0439.mp3 b/files/22_0439.mp3 deleted file mode 100644 index 83af64964..000000000 Binary files a/files/22_0439.mp3 and /dev/null differ diff --git a/files/22_0439_example.mp3 b/files/22_0439_example.mp3 deleted file mode 100644 index f75ef1d1b..000000000 Binary files a/files/22_0439_example.mp3 and /dev/null differ diff --git a/files/22_0439_meaning.mp3 b/files/22_0439_meaning.mp3 deleted file mode 100644 index 5bee21fbc..000000000 Binary files a/files/22_0439_meaning.mp3 and /dev/null differ diff --git a/files/22_0440.jpg b/files/22_0440.jpg deleted file mode 100644 index 821a5d270..000000000 Binary files a/files/22_0440.jpg and /dev/null differ diff --git a/files/22_0440.mp3 b/files/22_0440.mp3 deleted file mode 100644 index a8125732e..000000000 Binary files a/files/22_0440.mp3 and /dev/null differ diff --git a/files/22_0440_example.mp3 b/files/22_0440_example.mp3 deleted file mode 100644 index 2827813b9..000000000 Binary files a/files/22_0440_example.mp3 and /dev/null differ diff --git a/files/22_0440_meaning.mp3 b/files/22_0440_meaning.mp3 deleted file mode 100644 index c395ce4d9..000000000 Binary files a/files/22_0440_meaning.mp3 and /dev/null differ diff --git a/files/22_1021.jpg b/files/22_1021.jpg deleted file mode 100644 index bb23a6075..000000000 Binary files a/files/22_1021.jpg and /dev/null differ diff --git a/files/22_1021.mp3 b/files/22_1021.mp3 deleted file mode 100644 index 71b93a663..000000000 Binary files a/files/22_1021.mp3 and /dev/null differ diff --git a/files/22_1021_example.mp3 b/files/22_1021_example.mp3 deleted file mode 100644 index 1abd11153..000000000 Binary files a/files/22_1021_example.mp3 and /dev/null differ diff --git a/files/22_1021_meaning.mp3 b/files/22_1021_meaning.mp3 deleted file mode 100644 index 90858d65a..000000000 Binary files a/files/22_1021_meaning.mp3 and /dev/null differ diff --git a/files/22_1022.jpg b/files/22_1022.jpg deleted file mode 100644 index 6d3fb2d48..000000000 Binary files a/files/22_1022.jpg and /dev/null differ diff --git a/files/22_1022.mp3 b/files/22_1022.mp3 deleted file mode 100644 index aff773763..000000000 Binary files a/files/22_1022.mp3 and /dev/null differ diff --git a/files/22_1022_example.mp3 b/files/22_1022_example.mp3 deleted file mode 100644 index f2e68fab3..000000000 Binary files a/files/22_1022_example.mp3 and /dev/null differ diff --git a/files/22_1022_meaning.mp3 b/files/22_1022_meaning.mp3 deleted file mode 100644 index f73b8bc25..000000000 Binary files a/files/22_1022_meaning.mp3 and /dev/null differ diff --git a/files/22_1023.jpg b/files/22_1023.jpg deleted file mode 100644 index ad665cf9e..000000000 Binary files a/files/22_1023.jpg and /dev/null differ diff --git a/files/22_1023.mp3 b/files/22_1023.mp3 deleted file mode 100644 index 24c75ada0..000000000 Binary files a/files/22_1023.mp3 and /dev/null differ diff --git a/files/22_1023_example.mp3 b/files/22_1023_example.mp3 deleted file mode 100644 index 4509d55fe..000000000 Binary files a/files/22_1023_example.mp3 and /dev/null differ diff --git a/files/22_1023_meaning.mp3 b/files/22_1023_meaning.mp3 deleted file mode 100644 index d91460410..000000000 Binary files a/files/22_1023_meaning.mp3 and /dev/null differ diff --git a/files/22_1024.jpg b/files/22_1024.jpg deleted file mode 100644 index aa3db0ddc..000000000 Binary files a/files/22_1024.jpg and /dev/null differ diff --git a/files/22_1024.mp3 b/files/22_1024.mp3 deleted file mode 100644 index ff585b494..000000000 Binary files a/files/22_1024.mp3 and /dev/null differ diff --git a/files/22_1024_example.mp3 b/files/22_1024_example.mp3 deleted file mode 100644 index 134e5a9f1..000000000 Binary files a/files/22_1024_example.mp3 and /dev/null differ diff --git a/files/22_1024_meaning.mp3 b/files/22_1024_meaning.mp3 deleted file mode 100644 index 1c43bf3e6..000000000 Binary files a/files/22_1024_meaning.mp3 and /dev/null differ diff --git a/files/22_1025.jpg b/files/22_1025.jpg deleted file mode 100644 index 2bf22c2a1..000000000 Binary files a/files/22_1025.jpg and /dev/null differ diff --git a/files/22_1025.mp3 b/files/22_1025.mp3 deleted file mode 100644 index f6ecd6673..000000000 Binary files a/files/22_1025.mp3 and /dev/null differ diff --git a/files/22_1025_example.mp3 b/files/22_1025_example.mp3 deleted file mode 100644 index 090c19844..000000000 Binary files a/files/22_1025_example.mp3 and /dev/null differ diff --git a/files/22_1025_meaning.mp3 b/files/22_1025_meaning.mp3 deleted file mode 100644 index 64af3ce7c..000000000 Binary files a/files/22_1025_meaning.mp3 and /dev/null differ diff --git a/files/22_1026.jpg b/files/22_1026.jpg deleted file mode 100644 index a7c298e7a..000000000 Binary files a/files/22_1026.jpg and /dev/null differ diff --git a/files/22_1026.mp3 b/files/22_1026.mp3 deleted file mode 100644 index f3006d88e..000000000 Binary files a/files/22_1026.mp3 and /dev/null differ diff --git a/files/22_1026_example.mp3 b/files/22_1026_example.mp3 deleted file mode 100644 index 323b3f861..000000000 Binary files a/files/22_1026_example.mp3 and /dev/null differ diff --git a/files/22_1026_meaning.mp3 b/files/22_1026_meaning.mp3 deleted file mode 100644 index cbede7196..000000000 Binary files a/files/22_1026_meaning.mp3 and /dev/null differ diff --git a/files/22_1027.jpg b/files/22_1027.jpg deleted file mode 100644 index 172c2a6a9..000000000 Binary files a/files/22_1027.jpg and /dev/null differ diff --git a/files/22_1027.mp3 b/files/22_1027.mp3 deleted file mode 100644 index c9a68c6a3..000000000 Binary files a/files/22_1027.mp3 and /dev/null differ diff --git a/files/22_1027_example.mp3 b/files/22_1027_example.mp3 deleted file mode 100644 index 4004e2fac..000000000 Binary files a/files/22_1027_example.mp3 and /dev/null differ diff --git a/files/22_1027_meaning.mp3 b/files/22_1027_meaning.mp3 deleted file mode 100644 index f7b6e54b2..000000000 Binary files a/files/22_1027_meaning.mp3 and /dev/null differ diff --git a/files/22_1028.jpg b/files/22_1028.jpg deleted file mode 100644 index 7b5c7b14d..000000000 Binary files a/files/22_1028.jpg and /dev/null differ diff --git a/files/22_1028.mp3 b/files/22_1028.mp3 deleted file mode 100644 index d06085d53..000000000 Binary files a/files/22_1028.mp3 and /dev/null differ diff --git a/files/22_1028_example.mp3 b/files/22_1028_example.mp3 deleted file mode 100644 index 592c2ab42..000000000 Binary files a/files/22_1028_example.mp3 and /dev/null differ diff --git a/files/22_1028_meaning.mp3 b/files/22_1028_meaning.mp3 deleted file mode 100644 index bfaf83992..000000000 Binary files a/files/22_1028_meaning.mp3 and /dev/null differ diff --git a/files/22_1029.jpg b/files/22_1029.jpg deleted file mode 100644 index 76057fee3..000000000 Binary files a/files/22_1029.jpg and /dev/null differ diff --git a/files/22_1029.mp3 b/files/22_1029.mp3 deleted file mode 100644 index 280e1df70..000000000 Binary files a/files/22_1029.mp3 and /dev/null differ diff --git a/files/22_1029_example.mp3 b/files/22_1029_example.mp3 deleted file mode 100644 index 05f2b9214..000000000 Binary files a/files/22_1029_example.mp3 and /dev/null differ diff --git a/files/22_1029_meaning.mp3 b/files/22_1029_meaning.mp3 deleted file mode 100644 index f5596eb81..000000000 Binary files a/files/22_1029_meaning.mp3 and /dev/null differ diff --git a/files/22_1030.jpg b/files/22_1030.jpg deleted file mode 100644 index 78bb2e161..000000000 Binary files a/files/22_1030.jpg and /dev/null differ diff --git a/files/22_1030.mp3 b/files/22_1030.mp3 deleted file mode 100644 index f0168e80c..000000000 Binary files a/files/22_1030.mp3 and /dev/null differ diff --git a/files/22_1030_example.mp3 b/files/22_1030_example.mp3 deleted file mode 100644 index a7cc9d611..000000000 Binary files a/files/22_1030_example.mp3 and /dev/null differ diff --git a/files/22_1030_meaning.mp3 b/files/22_1030_meaning.mp3 deleted file mode 100644 index 34d54316f..000000000 Binary files a/files/22_1030_meaning.mp3 and /dev/null differ diff --git a/files/22_1031.jpg b/files/22_1031.jpg deleted file mode 100644 index d86cb1a8a..000000000 Binary files a/files/22_1031.jpg and /dev/null differ diff --git a/files/22_1031.mp3 b/files/22_1031.mp3 deleted file mode 100644 index 1ac803a78..000000000 Binary files a/files/22_1031.mp3 and /dev/null differ diff --git a/files/22_1031_example.mp3 b/files/22_1031_example.mp3 deleted file mode 100644 index f3aa83b03..000000000 Binary files a/files/22_1031_example.mp3 and /dev/null differ diff --git a/files/22_1031_meaning.mp3 b/files/22_1031_meaning.mp3 deleted file mode 100644 index 5db0f2028..000000000 Binary files a/files/22_1031_meaning.mp3 and /dev/null differ diff --git a/files/22_1032.jpg b/files/22_1032.jpg deleted file mode 100644 index db03921b5..000000000 Binary files a/files/22_1032.jpg and /dev/null differ diff --git a/files/22_1032.mp3 b/files/22_1032.mp3 deleted file mode 100644 index c94104245..000000000 Binary files a/files/22_1032.mp3 and /dev/null differ diff --git a/files/22_1032_example.mp3 b/files/22_1032_example.mp3 deleted file mode 100644 index bba4750f6..000000000 Binary files a/files/22_1032_example.mp3 and /dev/null differ diff --git a/files/22_1032_meaning.mp3 b/files/22_1032_meaning.mp3 deleted file mode 100644 index f3baffb64..000000000 Binary files a/files/22_1032_meaning.mp3 and /dev/null differ diff --git a/files/22_1033.jpg b/files/22_1033.jpg deleted file mode 100644 index 65a6fa07c..000000000 Binary files a/files/22_1033.jpg and /dev/null differ diff --git a/files/22_1033.mp3 b/files/22_1033.mp3 deleted file mode 100644 index e62048207..000000000 Binary files a/files/22_1033.mp3 and /dev/null differ diff --git a/files/22_1033_example.mp3 b/files/22_1033_example.mp3 deleted file mode 100644 index dc08b4a37..000000000 Binary files a/files/22_1033_example.mp3 and /dev/null differ diff --git a/files/22_1033_meaning.mp3 b/files/22_1033_meaning.mp3 deleted file mode 100644 index 0bd65895f..000000000 Binary files a/files/22_1033_meaning.mp3 and /dev/null differ diff --git a/files/22_1034.jpg b/files/22_1034.jpg deleted file mode 100644 index ed5a190c3..000000000 Binary files a/files/22_1034.jpg and /dev/null differ diff --git a/files/22_1034.mp3 b/files/22_1034.mp3 deleted file mode 100644 index 37029790b..000000000 Binary files a/files/22_1034.mp3 and /dev/null differ diff --git a/files/22_1034_example.mp3 b/files/22_1034_example.mp3 deleted file mode 100644 index 097e8717b..000000000 Binary files a/files/22_1034_example.mp3 and /dev/null differ diff --git a/files/22_1034_meaning.mp3 b/files/22_1034_meaning.mp3 deleted file mode 100644 index 95769d169..000000000 Binary files a/files/22_1034_meaning.mp3 and /dev/null differ diff --git a/files/22_1035.jpg b/files/22_1035.jpg deleted file mode 100644 index 4d244f63b..000000000 Binary files a/files/22_1035.jpg and /dev/null differ diff --git a/files/22_1035.mp3 b/files/22_1035.mp3 deleted file mode 100644 index 005e6f97a..000000000 Binary files a/files/22_1035.mp3 and /dev/null differ diff --git a/files/22_1035_example.mp3 b/files/22_1035_example.mp3 deleted file mode 100644 index 1a1d4b656..000000000 Binary files a/files/22_1035_example.mp3 and /dev/null differ diff --git a/files/22_1035_meaning.mp3 b/files/22_1035_meaning.mp3 deleted file mode 100644 index 97f6c3897..000000000 Binary files a/files/22_1035_meaning.mp3 and /dev/null differ diff --git a/files/22_1036.jpg b/files/22_1036.jpg deleted file mode 100644 index bba56ee9f..000000000 Binary files a/files/22_1036.jpg and /dev/null differ diff --git a/files/22_1036.mp3 b/files/22_1036.mp3 deleted file mode 100644 index 7a94edf82..000000000 Binary files a/files/22_1036.mp3 and /dev/null differ diff --git a/files/22_1036_example.mp3 b/files/22_1036_example.mp3 deleted file mode 100644 index ecd4317a9..000000000 Binary files a/files/22_1036_example.mp3 and /dev/null differ diff --git a/files/22_1036_meaning.mp3 b/files/22_1036_meaning.mp3 deleted file mode 100644 index e4d41dad2..000000000 Binary files a/files/22_1036_meaning.mp3 and /dev/null differ diff --git a/files/22_1037.jpg b/files/22_1037.jpg deleted file mode 100644 index f348b0da3..000000000 Binary files a/files/22_1037.jpg and /dev/null differ diff --git a/files/22_1037.mp3 b/files/22_1037.mp3 deleted file mode 100644 index cae2a7704..000000000 Binary files a/files/22_1037.mp3 and /dev/null differ diff --git a/files/22_1037_example.mp3 b/files/22_1037_example.mp3 deleted file mode 100644 index 290f0b777..000000000 Binary files a/files/22_1037_example.mp3 and /dev/null differ diff --git a/files/22_1037_meaning.mp3 b/files/22_1037_meaning.mp3 deleted file mode 100644 index f17c940ca..000000000 Binary files a/files/22_1037_meaning.mp3 and /dev/null differ diff --git a/files/22_1038.jpg b/files/22_1038.jpg deleted file mode 100644 index d3cc06464..000000000 Binary files a/files/22_1038.jpg and /dev/null differ diff --git a/files/22_1038.mp3 b/files/22_1038.mp3 deleted file mode 100644 index 7a4634858..000000000 Binary files a/files/22_1038.mp3 and /dev/null differ diff --git a/files/22_1038_example.mp3 b/files/22_1038_example.mp3 deleted file mode 100644 index ca8b60a5d..000000000 Binary files a/files/22_1038_example.mp3 and /dev/null differ diff --git a/files/22_1038_meaning.mp3 b/files/22_1038_meaning.mp3 deleted file mode 100644 index 717cddfdb..000000000 Binary files a/files/22_1038_meaning.mp3 and /dev/null differ diff --git a/files/22_1039.jpg b/files/22_1039.jpg deleted file mode 100644 index aa8ac2dc1..000000000 Binary files a/files/22_1039.jpg and /dev/null differ diff --git a/files/22_1039.mp3 b/files/22_1039.mp3 deleted file mode 100644 index 72e0b5759..000000000 Binary files a/files/22_1039.mp3 and /dev/null differ diff --git a/files/22_1039_example.mp3 b/files/22_1039_example.mp3 deleted file mode 100644 index bb6599946..000000000 Binary files a/files/22_1039_example.mp3 and /dev/null differ diff --git a/files/22_1039_meaning.mp3 b/files/22_1039_meaning.mp3 deleted file mode 100644 index 09db92d11..000000000 Binary files a/files/22_1039_meaning.mp3 and /dev/null differ diff --git a/files/22_1040.jpg b/files/22_1040.jpg deleted file mode 100644 index 65627cf96..000000000 Binary files a/files/22_1040.jpg and /dev/null differ diff --git a/files/22_1040.mp3 b/files/22_1040.mp3 deleted file mode 100644 index e513ee4f8..000000000 Binary files a/files/22_1040.mp3 and /dev/null differ diff --git a/files/22_1040_example.mp3 b/files/22_1040_example.mp3 deleted file mode 100644 index c5fb821ba..000000000 Binary files a/files/22_1040_example.mp3 and /dev/null differ diff --git a/files/22_1040_meaning.mp3 b/files/22_1040_meaning.mp3 deleted file mode 100644 index 7d791b3f8..000000000 Binary files a/files/22_1040_meaning.mp3 and /dev/null differ diff --git a/files/22_1621.jpg b/files/22_1621.jpg deleted file mode 100644 index 46f41e865..000000000 Binary files a/files/22_1621.jpg and /dev/null differ diff --git a/files/22_1621.mp3 b/files/22_1621.mp3 deleted file mode 100644 index 964800543..000000000 Binary files a/files/22_1621.mp3 and /dev/null differ diff --git a/files/22_1621_example.mp3 b/files/22_1621_example.mp3 deleted file mode 100644 index a68220cfe..000000000 Binary files a/files/22_1621_example.mp3 and /dev/null differ diff --git a/files/22_1621_meaning.mp3 b/files/22_1621_meaning.mp3 deleted file mode 100644 index 63918eb19..000000000 Binary files a/files/22_1621_meaning.mp3 and /dev/null differ diff --git a/files/22_1622.jpg b/files/22_1622.jpg deleted file mode 100644 index 63a85c21d..000000000 Binary files a/files/22_1622.jpg and /dev/null differ diff --git a/files/22_1622.mp3 b/files/22_1622.mp3 deleted file mode 100644 index fd7b5e4cb..000000000 Binary files a/files/22_1622.mp3 and /dev/null differ diff --git a/files/22_1622_example.mp3 b/files/22_1622_example.mp3 deleted file mode 100644 index c17970ee7..000000000 Binary files a/files/22_1622_example.mp3 and /dev/null differ diff --git a/files/22_1622_meaning.mp3 b/files/22_1622_meaning.mp3 deleted file mode 100644 index 297af69b5..000000000 Binary files a/files/22_1622_meaning.mp3 and /dev/null differ diff --git a/files/22_1623.jpg b/files/22_1623.jpg deleted file mode 100644 index 16cd574c3..000000000 Binary files a/files/22_1623.jpg and /dev/null differ diff --git a/files/22_1623.mp3 b/files/22_1623.mp3 deleted file mode 100644 index 3306962e3..000000000 Binary files a/files/22_1623.mp3 and /dev/null differ diff --git a/files/22_1623_example.mp3 b/files/22_1623_example.mp3 deleted file mode 100644 index 80ea176e5..000000000 Binary files a/files/22_1623_example.mp3 and /dev/null differ diff --git a/files/22_1623_meaning.mp3 b/files/22_1623_meaning.mp3 deleted file mode 100644 index e61e8e00e..000000000 Binary files a/files/22_1623_meaning.mp3 and /dev/null differ diff --git a/files/22_1624.jpg b/files/22_1624.jpg deleted file mode 100644 index 129e8f43f..000000000 Binary files a/files/22_1624.jpg and /dev/null differ diff --git a/files/22_1624.mp3 b/files/22_1624.mp3 deleted file mode 100644 index 6dbb283db..000000000 Binary files a/files/22_1624.mp3 and /dev/null differ diff --git a/files/22_1624_example.mp3 b/files/22_1624_example.mp3 deleted file mode 100644 index c9ccf3280..000000000 Binary files a/files/22_1624_example.mp3 and /dev/null differ diff --git a/files/22_1624_meaning.mp3 b/files/22_1624_meaning.mp3 deleted file mode 100644 index d3154d468..000000000 Binary files a/files/22_1624_meaning.mp3 and /dev/null differ diff --git a/files/22_1625.jpg b/files/22_1625.jpg deleted file mode 100644 index cbb7dc5e9..000000000 Binary files a/files/22_1625.jpg and /dev/null differ diff --git a/files/22_1625.mp3 b/files/22_1625.mp3 deleted file mode 100644 index 48f2af03a..000000000 Binary files a/files/22_1625.mp3 and /dev/null differ diff --git a/files/22_1625_example.mp3 b/files/22_1625_example.mp3 deleted file mode 100644 index 4d0a05807..000000000 Binary files a/files/22_1625_example.mp3 and /dev/null differ diff --git a/files/22_1625_meaning.mp3 b/files/22_1625_meaning.mp3 deleted file mode 100644 index c8746643a..000000000 Binary files a/files/22_1625_meaning.mp3 and /dev/null differ diff --git a/files/22_1626.jpg b/files/22_1626.jpg deleted file mode 100644 index 0b6614c33..000000000 Binary files a/files/22_1626.jpg and /dev/null differ diff --git a/files/22_1626.mp3 b/files/22_1626.mp3 deleted file mode 100644 index c0c44d104..000000000 Binary files a/files/22_1626.mp3 and /dev/null differ diff --git a/files/22_1626_example.mp3 b/files/22_1626_example.mp3 deleted file mode 100644 index e994c91c3..000000000 Binary files a/files/22_1626_example.mp3 and /dev/null differ diff --git a/files/22_1626_meaning.mp3 b/files/22_1626_meaning.mp3 deleted file mode 100644 index 6d548067d..000000000 Binary files a/files/22_1626_meaning.mp3 and /dev/null differ diff --git a/files/22_1627.jpg b/files/22_1627.jpg deleted file mode 100644 index a29205b82..000000000 Binary files a/files/22_1627.jpg and /dev/null differ diff --git a/files/22_1627.mp3 b/files/22_1627.mp3 deleted file mode 100644 index 6acc4d154..000000000 Binary files a/files/22_1627.mp3 and /dev/null differ diff --git a/files/22_1627_example.mp3 b/files/22_1627_example.mp3 deleted file mode 100644 index 2890deda5..000000000 Binary files a/files/22_1627_example.mp3 and /dev/null differ diff --git a/files/22_1627_meaning.mp3 b/files/22_1627_meaning.mp3 deleted file mode 100644 index 695c24dfb..000000000 Binary files a/files/22_1627_meaning.mp3 and /dev/null differ diff --git a/files/22_1628.jpg b/files/22_1628.jpg deleted file mode 100644 index 3953ddcd4..000000000 Binary files a/files/22_1628.jpg and /dev/null differ diff --git a/files/22_1628.mp3 b/files/22_1628.mp3 deleted file mode 100644 index 8e6f34c8e..000000000 Binary files a/files/22_1628.mp3 and /dev/null differ diff --git a/files/22_1628_example.mp3 b/files/22_1628_example.mp3 deleted file mode 100644 index c6010eaed..000000000 Binary files a/files/22_1628_example.mp3 and /dev/null differ diff --git a/files/22_1628_meaning.mp3 b/files/22_1628_meaning.mp3 deleted file mode 100644 index 8ea02110f..000000000 Binary files a/files/22_1628_meaning.mp3 and /dev/null differ diff --git a/files/22_1629.jpg b/files/22_1629.jpg deleted file mode 100644 index fde514af7..000000000 Binary files a/files/22_1629.jpg and /dev/null differ diff --git a/files/22_1629.mp3 b/files/22_1629.mp3 deleted file mode 100644 index dc01b699c..000000000 Binary files a/files/22_1629.mp3 and /dev/null differ diff --git a/files/22_1629_example.mp3 b/files/22_1629_example.mp3 deleted file mode 100644 index ab0b07824..000000000 Binary files a/files/22_1629_example.mp3 and /dev/null differ diff --git a/files/22_1629_meaning.mp3 b/files/22_1629_meaning.mp3 deleted file mode 100644 index 5d672a590..000000000 Binary files a/files/22_1629_meaning.mp3 and /dev/null differ diff --git a/files/22_1630.jpg b/files/22_1630.jpg deleted file mode 100644 index 63ec2fe16..000000000 Binary files a/files/22_1630.jpg and /dev/null differ diff --git a/files/22_1630.mp3 b/files/22_1630.mp3 deleted file mode 100644 index ea0240287..000000000 Binary files a/files/22_1630.mp3 and /dev/null differ diff --git a/files/22_1630_example.mp3 b/files/22_1630_example.mp3 deleted file mode 100644 index 411b83ca4..000000000 Binary files a/files/22_1630_example.mp3 and /dev/null differ diff --git a/files/22_1630_meaning.mp3 b/files/22_1630_meaning.mp3 deleted file mode 100644 index 3b8ae1ea0..000000000 Binary files a/files/22_1630_meaning.mp3 and /dev/null differ diff --git a/files/22_1631.jpg b/files/22_1631.jpg deleted file mode 100644 index e400f26f6..000000000 Binary files a/files/22_1631.jpg and /dev/null differ diff --git a/files/22_1631.mp3 b/files/22_1631.mp3 deleted file mode 100644 index 5120522ab..000000000 Binary files a/files/22_1631.mp3 and /dev/null differ diff --git a/files/22_1631_example.mp3 b/files/22_1631_example.mp3 deleted file mode 100644 index afea5c7a1..000000000 Binary files a/files/22_1631_example.mp3 and /dev/null differ diff --git a/files/22_1631_meaning.mp3 b/files/22_1631_meaning.mp3 deleted file mode 100644 index 37f718ef7..000000000 Binary files a/files/22_1631_meaning.mp3 and /dev/null differ diff --git a/files/22_1632.jpg b/files/22_1632.jpg deleted file mode 100644 index fa93cc51e..000000000 Binary files a/files/22_1632.jpg and /dev/null differ diff --git a/files/22_1632.mp3 b/files/22_1632.mp3 deleted file mode 100644 index 0b38d208a..000000000 Binary files a/files/22_1632.mp3 and /dev/null differ diff --git a/files/22_1632_example.mp3 b/files/22_1632_example.mp3 deleted file mode 100644 index 58744830c..000000000 Binary files a/files/22_1632_example.mp3 and /dev/null differ diff --git a/files/22_1632_meaning.mp3 b/files/22_1632_meaning.mp3 deleted file mode 100644 index 03eaa23eb..000000000 Binary files a/files/22_1632_meaning.mp3 and /dev/null differ diff --git a/files/22_1633.jpg b/files/22_1633.jpg deleted file mode 100644 index 558bcad25..000000000 Binary files a/files/22_1633.jpg and /dev/null differ diff --git a/files/22_1633.mp3 b/files/22_1633.mp3 deleted file mode 100644 index 740a0c321..000000000 Binary files a/files/22_1633.mp3 and /dev/null differ diff --git a/files/22_1633_example.mp3 b/files/22_1633_example.mp3 deleted file mode 100644 index 95e1eceeb..000000000 Binary files a/files/22_1633_example.mp3 and /dev/null differ diff --git a/files/22_1633_meaning.mp3 b/files/22_1633_meaning.mp3 deleted file mode 100644 index 0bc0b03a9..000000000 Binary files a/files/22_1633_meaning.mp3 and /dev/null differ diff --git a/files/22_1634.jpg b/files/22_1634.jpg deleted file mode 100644 index 4a0d378c7..000000000 Binary files a/files/22_1634.jpg and /dev/null differ diff --git a/files/22_1634.mp3 b/files/22_1634.mp3 deleted file mode 100644 index 791df2f5b..000000000 Binary files a/files/22_1634.mp3 and /dev/null differ diff --git a/files/22_1634_example.mp3 b/files/22_1634_example.mp3 deleted file mode 100644 index c17462f8a..000000000 Binary files a/files/22_1634_example.mp3 and /dev/null differ diff --git a/files/22_1634_meaning.mp3 b/files/22_1634_meaning.mp3 deleted file mode 100644 index 7365b1204..000000000 Binary files a/files/22_1634_meaning.mp3 and /dev/null differ diff --git a/files/22_1635.jpg b/files/22_1635.jpg deleted file mode 100644 index 1cb7b8b8b..000000000 Binary files a/files/22_1635.jpg and /dev/null differ diff --git a/files/22_1635.mp3 b/files/22_1635.mp3 deleted file mode 100644 index ef26fe0d3..000000000 Binary files a/files/22_1635.mp3 and /dev/null differ diff --git a/files/22_1635_example.mp3 b/files/22_1635_example.mp3 deleted file mode 100644 index 715a9ccba..000000000 Binary files a/files/22_1635_example.mp3 and /dev/null differ diff --git a/files/22_1635_meaning.mp3 b/files/22_1635_meaning.mp3 deleted file mode 100644 index d0e791783..000000000 Binary files a/files/22_1635_meaning.mp3 and /dev/null differ diff --git a/files/22_1636.jpg b/files/22_1636.jpg deleted file mode 100644 index 7547f7be8..000000000 Binary files a/files/22_1636.jpg and /dev/null differ diff --git a/files/22_1636.mp3 b/files/22_1636.mp3 deleted file mode 100644 index 7d7400bde..000000000 Binary files a/files/22_1636.mp3 and /dev/null differ diff --git a/files/22_1636_example.mp3 b/files/22_1636_example.mp3 deleted file mode 100644 index 05decf8a5..000000000 Binary files a/files/22_1636_example.mp3 and /dev/null differ diff --git a/files/22_1636_meaning.mp3 b/files/22_1636_meaning.mp3 deleted file mode 100644 index 6bc96ce5a..000000000 Binary files a/files/22_1636_meaning.mp3 and /dev/null differ diff --git a/files/22_1637.jpg b/files/22_1637.jpg deleted file mode 100644 index 310a3b247..000000000 Binary files a/files/22_1637.jpg and /dev/null differ diff --git a/files/22_1637.mp3 b/files/22_1637.mp3 deleted file mode 100644 index 91139142f..000000000 Binary files a/files/22_1637.mp3 and /dev/null differ diff --git a/files/22_1637_example.mp3 b/files/22_1637_example.mp3 deleted file mode 100644 index 02a63b3ed..000000000 Binary files a/files/22_1637_example.mp3 and /dev/null differ diff --git a/files/22_1637_meaning.mp3 b/files/22_1637_meaning.mp3 deleted file mode 100644 index 0b581ba7d..000000000 Binary files a/files/22_1637_meaning.mp3 and /dev/null differ diff --git a/files/22_1638.jpg b/files/22_1638.jpg deleted file mode 100644 index 55fedf3cf..000000000 Binary files a/files/22_1638.jpg and /dev/null differ diff --git a/files/22_1638.mp3 b/files/22_1638.mp3 deleted file mode 100644 index 1f22b54d6..000000000 Binary files a/files/22_1638.mp3 and /dev/null differ diff --git a/files/22_1638_example.mp3 b/files/22_1638_example.mp3 deleted file mode 100644 index a572f7a93..000000000 Binary files a/files/22_1638_example.mp3 and /dev/null differ diff --git a/files/22_1638_meaning.mp3 b/files/22_1638_meaning.mp3 deleted file mode 100644 index 5466839d0..000000000 Binary files a/files/22_1638_meaning.mp3 and /dev/null differ diff --git a/files/22_1639.jpg b/files/22_1639.jpg deleted file mode 100644 index 13b2582fd..000000000 Binary files a/files/22_1639.jpg and /dev/null differ diff --git a/files/22_1639.mp3 b/files/22_1639.mp3 deleted file mode 100644 index 8f1d53fbf..000000000 Binary files a/files/22_1639.mp3 and /dev/null differ diff --git a/files/22_1639_example.mp3 b/files/22_1639_example.mp3 deleted file mode 100644 index 12d66e661..000000000 Binary files a/files/22_1639_example.mp3 and /dev/null differ diff --git a/files/22_1639_meaning.mp3 b/files/22_1639_meaning.mp3 deleted file mode 100644 index 2fabc9ff3..000000000 Binary files a/files/22_1639_meaning.mp3 and /dev/null differ diff --git a/files/22_1640.jpg b/files/22_1640.jpg deleted file mode 100644 index 5d3a15502..000000000 Binary files a/files/22_1640.jpg and /dev/null differ diff --git a/files/22_1640.mp3 b/files/22_1640.mp3 deleted file mode 100644 index 6f61c0a82..000000000 Binary files a/files/22_1640.mp3 and /dev/null differ diff --git a/files/22_1640_example.mp3 b/files/22_1640_example.mp3 deleted file mode 100644 index fa2ac3941..000000000 Binary files a/files/22_1640_example.mp3 and /dev/null differ diff --git a/files/22_1640_meaning.mp3 b/files/22_1640_meaning.mp3 deleted file mode 100644 index 77ecd8d2c..000000000 Binary files a/files/22_1640_meaning.mp3 and /dev/null differ diff --git a/files/22_2221.jpg b/files/22_2221.jpg deleted file mode 100644 index 11a4879b4..000000000 Binary files a/files/22_2221.jpg and /dev/null differ diff --git a/files/22_2221.mp3 b/files/22_2221.mp3 deleted file mode 100644 index 29a0b7571..000000000 Binary files a/files/22_2221.mp3 and /dev/null differ diff --git a/files/22_2221_example.mp3 b/files/22_2221_example.mp3 deleted file mode 100644 index 03c97d688..000000000 Binary files a/files/22_2221_example.mp3 and /dev/null differ diff --git a/files/22_2221_meaning.mp3 b/files/22_2221_meaning.mp3 deleted file mode 100644 index f0405754b..000000000 Binary files a/files/22_2221_meaning.mp3 and /dev/null differ diff --git a/files/22_2222.jpg b/files/22_2222.jpg deleted file mode 100644 index 24e1e8b60..000000000 Binary files a/files/22_2222.jpg and /dev/null differ diff --git a/files/22_2222.mp3 b/files/22_2222.mp3 deleted file mode 100644 index 5f2c69f06..000000000 Binary files a/files/22_2222.mp3 and /dev/null differ diff --git a/files/22_2222_example.mp3 b/files/22_2222_example.mp3 deleted file mode 100644 index b4ba5b885..000000000 Binary files a/files/22_2222_example.mp3 and /dev/null differ diff --git a/files/22_2222_meaning.mp3 b/files/22_2222_meaning.mp3 deleted file mode 100644 index e96028533..000000000 Binary files a/files/22_2222_meaning.mp3 and /dev/null differ diff --git a/files/22_2223.jpg b/files/22_2223.jpg deleted file mode 100644 index 8c6b9eee3..000000000 Binary files a/files/22_2223.jpg and /dev/null differ diff --git a/files/22_2223.mp3 b/files/22_2223.mp3 deleted file mode 100644 index 092582ce1..000000000 Binary files a/files/22_2223.mp3 and /dev/null differ diff --git a/files/22_2223_example.mp3 b/files/22_2223_example.mp3 deleted file mode 100644 index e569cf629..000000000 Binary files a/files/22_2223_example.mp3 and /dev/null differ diff --git a/files/22_2223_meaning.mp3 b/files/22_2223_meaning.mp3 deleted file mode 100644 index 262245ed7..000000000 Binary files a/files/22_2223_meaning.mp3 and /dev/null differ diff --git a/files/22_2224.jpg b/files/22_2224.jpg deleted file mode 100644 index b80316217..000000000 Binary files a/files/22_2224.jpg and /dev/null differ diff --git a/files/22_2224.mp3 b/files/22_2224.mp3 deleted file mode 100644 index 550246ce6..000000000 Binary files a/files/22_2224.mp3 and /dev/null differ diff --git a/files/22_2224_example.mp3 b/files/22_2224_example.mp3 deleted file mode 100644 index 223c5efa7..000000000 Binary files a/files/22_2224_example.mp3 and /dev/null differ diff --git a/files/22_2224_meaning.mp3 b/files/22_2224_meaning.mp3 deleted file mode 100644 index 4bbc9bdca..000000000 Binary files a/files/22_2224_meaning.mp3 and /dev/null differ diff --git a/files/22_2225.jpg b/files/22_2225.jpg deleted file mode 100644 index 83686d285..000000000 Binary files a/files/22_2225.jpg and /dev/null differ diff --git a/files/22_2225.mp3 b/files/22_2225.mp3 deleted file mode 100644 index 94d8a9d2f..000000000 Binary files a/files/22_2225.mp3 and /dev/null differ diff --git a/files/22_2225_example.mp3 b/files/22_2225_example.mp3 deleted file mode 100644 index 5b2b6e0d8..000000000 Binary files a/files/22_2225_example.mp3 and /dev/null differ diff --git a/files/22_2225_meaning.mp3 b/files/22_2225_meaning.mp3 deleted file mode 100644 index bb6e35643..000000000 Binary files a/files/22_2225_meaning.mp3 and /dev/null differ diff --git a/files/22_2226.jpg b/files/22_2226.jpg deleted file mode 100644 index f1d92b4f1..000000000 Binary files a/files/22_2226.jpg and /dev/null differ diff --git a/files/22_2226.mp3 b/files/22_2226.mp3 deleted file mode 100644 index 857d2fa02..000000000 Binary files a/files/22_2226.mp3 and /dev/null differ diff --git a/files/22_2226_example.mp3 b/files/22_2226_example.mp3 deleted file mode 100644 index 61e8a5096..000000000 Binary files a/files/22_2226_example.mp3 and /dev/null differ diff --git a/files/22_2226_meaning.mp3 b/files/22_2226_meaning.mp3 deleted file mode 100644 index cc2cfd6e0..000000000 Binary files a/files/22_2226_meaning.mp3 and /dev/null differ diff --git a/files/22_2227.jpg b/files/22_2227.jpg deleted file mode 100644 index a3e680fc4..000000000 Binary files a/files/22_2227.jpg and /dev/null differ diff --git a/files/22_2227.mp3 b/files/22_2227.mp3 deleted file mode 100644 index 76d237177..000000000 Binary files a/files/22_2227.mp3 and /dev/null differ diff --git a/files/22_2227_example.mp3 b/files/22_2227_example.mp3 deleted file mode 100644 index 5ee14f5b6..000000000 Binary files a/files/22_2227_example.mp3 and /dev/null differ diff --git a/files/22_2227_meaning.mp3 b/files/22_2227_meaning.mp3 deleted file mode 100644 index 667c4fbb1..000000000 Binary files a/files/22_2227_meaning.mp3 and /dev/null differ diff --git a/files/22_2228.jpg b/files/22_2228.jpg deleted file mode 100644 index 6115159be..000000000 Binary files a/files/22_2228.jpg and /dev/null differ diff --git a/files/22_2228.mp3 b/files/22_2228.mp3 deleted file mode 100644 index 9bf06387e..000000000 Binary files a/files/22_2228.mp3 and /dev/null differ diff --git a/files/22_2228_example.mp3 b/files/22_2228_example.mp3 deleted file mode 100644 index aa4c60af6..000000000 Binary files a/files/22_2228_example.mp3 and /dev/null differ diff --git a/files/22_2228_meaning.mp3 b/files/22_2228_meaning.mp3 deleted file mode 100644 index afda40689..000000000 Binary files a/files/22_2228_meaning.mp3 and /dev/null differ diff --git a/files/22_2229.jpg b/files/22_2229.jpg deleted file mode 100644 index 47370cd74..000000000 Binary files a/files/22_2229.jpg and /dev/null differ diff --git a/files/22_2229.mp3 b/files/22_2229.mp3 deleted file mode 100644 index c6e799969..000000000 Binary files a/files/22_2229.mp3 and /dev/null differ diff --git a/files/22_2229_example.mp3 b/files/22_2229_example.mp3 deleted file mode 100644 index 559b70e34..000000000 Binary files a/files/22_2229_example.mp3 and /dev/null differ diff --git a/files/22_2229_meaning.mp3 b/files/22_2229_meaning.mp3 deleted file mode 100644 index 9fc03c2a2..000000000 Binary files a/files/22_2229_meaning.mp3 and /dev/null differ diff --git a/files/22_2230.jpg b/files/22_2230.jpg deleted file mode 100644 index 0faaca6c2..000000000 Binary files a/files/22_2230.jpg and /dev/null differ diff --git a/files/22_2230.mp3 b/files/22_2230.mp3 deleted file mode 100644 index 008a100bc..000000000 Binary files a/files/22_2230.mp3 and /dev/null differ diff --git a/files/22_2230_example.mp3 b/files/22_2230_example.mp3 deleted file mode 100644 index d55c39754..000000000 Binary files a/files/22_2230_example.mp3 and /dev/null differ diff --git a/files/22_2230_meaning.mp3 b/files/22_2230_meaning.mp3 deleted file mode 100644 index 7b5a42bac..000000000 Binary files a/files/22_2230_meaning.mp3 and /dev/null differ diff --git a/files/22_2231.jpg b/files/22_2231.jpg deleted file mode 100644 index 050b89e32..000000000 Binary files a/files/22_2231.jpg and /dev/null differ diff --git a/files/22_2231.mp3 b/files/22_2231.mp3 deleted file mode 100644 index 579beefa4..000000000 Binary files a/files/22_2231.mp3 and /dev/null differ diff --git a/files/22_2231_example.mp3 b/files/22_2231_example.mp3 deleted file mode 100644 index c56663dcd..000000000 Binary files a/files/22_2231_example.mp3 and /dev/null differ diff --git a/files/22_2231_meaning.mp3 b/files/22_2231_meaning.mp3 deleted file mode 100644 index c8b82cbb2..000000000 Binary files a/files/22_2231_meaning.mp3 and /dev/null differ diff --git a/files/22_2232.jpg b/files/22_2232.jpg deleted file mode 100644 index fa60532ea..000000000 Binary files a/files/22_2232.jpg and /dev/null differ diff --git a/files/22_2232.mp3 b/files/22_2232.mp3 deleted file mode 100644 index d2477cc1f..000000000 Binary files a/files/22_2232.mp3 and /dev/null differ diff --git a/files/22_2232_example.mp3 b/files/22_2232_example.mp3 deleted file mode 100644 index 52af26202..000000000 Binary files a/files/22_2232_example.mp3 and /dev/null differ diff --git a/files/22_2232_meaning.mp3 b/files/22_2232_meaning.mp3 deleted file mode 100644 index 58ad7e181..000000000 Binary files a/files/22_2232_meaning.mp3 and /dev/null differ diff --git a/files/22_2233.jpg b/files/22_2233.jpg deleted file mode 100644 index 0647ee20f..000000000 Binary files a/files/22_2233.jpg and /dev/null differ diff --git a/files/22_2233.mp3 b/files/22_2233.mp3 deleted file mode 100644 index e4c940151..000000000 Binary files a/files/22_2233.mp3 and /dev/null differ diff --git a/files/22_2233_example.mp3 b/files/22_2233_example.mp3 deleted file mode 100644 index 116ca4db8..000000000 Binary files a/files/22_2233_example.mp3 and /dev/null differ diff --git a/files/22_2233_meaning.mp3 b/files/22_2233_meaning.mp3 deleted file mode 100644 index eb3c94f2f..000000000 Binary files a/files/22_2233_meaning.mp3 and /dev/null differ diff --git a/files/22_2234.jpg b/files/22_2234.jpg deleted file mode 100644 index c0ca21df9..000000000 Binary files a/files/22_2234.jpg and /dev/null differ diff --git a/files/22_2234.mp3 b/files/22_2234.mp3 deleted file mode 100644 index 254f7f874..000000000 Binary files a/files/22_2234.mp3 and /dev/null differ diff --git a/files/22_2234_example.mp3 b/files/22_2234_example.mp3 deleted file mode 100644 index 67050d2e2..000000000 Binary files a/files/22_2234_example.mp3 and /dev/null differ diff --git a/files/22_2234_meaning.mp3 b/files/22_2234_meaning.mp3 deleted file mode 100644 index f46bcce36..000000000 Binary files a/files/22_2234_meaning.mp3 and /dev/null differ diff --git a/files/22_2235.jpg b/files/22_2235.jpg deleted file mode 100644 index 009308b08..000000000 Binary files a/files/22_2235.jpg and /dev/null differ diff --git a/files/22_2235.mp3 b/files/22_2235.mp3 deleted file mode 100644 index 1a33709ce..000000000 Binary files a/files/22_2235.mp3 and /dev/null differ diff --git a/files/22_2235_example.mp3 b/files/22_2235_example.mp3 deleted file mode 100644 index 6e8d40fdb..000000000 Binary files a/files/22_2235_example.mp3 and /dev/null differ diff --git a/files/22_2235_meaning.mp3 b/files/22_2235_meaning.mp3 deleted file mode 100644 index c1da25975..000000000 Binary files a/files/22_2235_meaning.mp3 and /dev/null differ diff --git a/files/22_2236.jpg b/files/22_2236.jpg deleted file mode 100644 index e273ffc0b..000000000 Binary files a/files/22_2236.jpg and /dev/null differ diff --git a/files/22_2236.mp3 b/files/22_2236.mp3 deleted file mode 100644 index 6b8476dc8..000000000 Binary files a/files/22_2236.mp3 and /dev/null differ diff --git a/files/22_2236_example.mp3 b/files/22_2236_example.mp3 deleted file mode 100644 index c97b8c082..000000000 Binary files a/files/22_2236_example.mp3 and /dev/null differ diff --git a/files/22_2236_meaning.mp3 b/files/22_2236_meaning.mp3 deleted file mode 100644 index a86e251c0..000000000 Binary files a/files/22_2236_meaning.mp3 and /dev/null differ diff --git a/files/22_2237.jpg b/files/22_2237.jpg deleted file mode 100644 index 90e965eb1..000000000 Binary files a/files/22_2237.jpg and /dev/null differ diff --git a/files/22_2237.mp3 b/files/22_2237.mp3 deleted file mode 100644 index a2f745379..000000000 Binary files a/files/22_2237.mp3 and /dev/null differ diff --git a/files/22_2237_example.mp3 b/files/22_2237_example.mp3 deleted file mode 100644 index 5fd06c44c..000000000 Binary files a/files/22_2237_example.mp3 and /dev/null differ diff --git a/files/22_2237_meaning.mp3 b/files/22_2237_meaning.mp3 deleted file mode 100644 index 00b8efecf..000000000 Binary files a/files/22_2237_meaning.mp3 and /dev/null differ diff --git a/files/22_2238.jpg b/files/22_2238.jpg deleted file mode 100644 index 802cde786..000000000 Binary files a/files/22_2238.jpg and /dev/null differ diff --git a/files/22_2238.mp3 b/files/22_2238.mp3 deleted file mode 100644 index bc3c419b1..000000000 Binary files a/files/22_2238.mp3 and /dev/null differ diff --git a/files/22_2238_example.mp3 b/files/22_2238_example.mp3 deleted file mode 100644 index 1d5e2dc70..000000000 Binary files a/files/22_2238_example.mp3 and /dev/null differ diff --git a/files/22_2238_meaning.mp3 b/files/22_2238_meaning.mp3 deleted file mode 100644 index f60c26884..000000000 Binary files a/files/22_2238_meaning.mp3 and /dev/null differ diff --git a/files/22_2239.jpg b/files/22_2239.jpg deleted file mode 100644 index 0f49d03da..000000000 Binary files a/files/22_2239.jpg and /dev/null differ diff --git a/files/22_2239.mp3 b/files/22_2239.mp3 deleted file mode 100644 index 9277eda61..000000000 Binary files a/files/22_2239.mp3 and /dev/null differ diff --git a/files/22_2239_example.mp3 b/files/22_2239_example.mp3 deleted file mode 100644 index d58861702..000000000 Binary files a/files/22_2239_example.mp3 and /dev/null differ diff --git a/files/22_2239_meaning.mp3 b/files/22_2239_meaning.mp3 deleted file mode 100644 index d264b59d7..000000000 Binary files a/files/22_2239_meaning.mp3 and /dev/null differ diff --git a/files/22_2240.jpg b/files/22_2240.jpg deleted file mode 100644 index 563c22e59..000000000 Binary files a/files/22_2240.jpg and /dev/null differ diff --git a/files/22_2240.mp3 b/files/22_2240.mp3 deleted file mode 100644 index ffe399351..000000000 Binary files a/files/22_2240.mp3 and /dev/null differ diff --git a/files/22_2240_example.mp3 b/files/22_2240_example.mp3 deleted file mode 100644 index f18bff0b7..000000000 Binary files a/files/22_2240_example.mp3 and /dev/null differ diff --git a/files/22_2240_meaning.mp3 b/files/22_2240_meaning.mp3 deleted file mode 100644 index e44bdd0c9..000000000 Binary files a/files/22_2240_meaning.mp3 and /dev/null differ diff --git a/files/22_2821.jpg b/files/22_2821.jpg deleted file mode 100644 index 496c22a06..000000000 Binary files a/files/22_2821.jpg and /dev/null differ diff --git a/files/22_2821.mp3 b/files/22_2821.mp3 deleted file mode 100644 index 6f6e4ea8e..000000000 Binary files a/files/22_2821.mp3 and /dev/null differ diff --git a/files/22_2821_example.mp3 b/files/22_2821_example.mp3 deleted file mode 100644 index b5d32f0f3..000000000 Binary files a/files/22_2821_example.mp3 and /dev/null differ diff --git a/files/22_2821_meaning.mp3 b/files/22_2821_meaning.mp3 deleted file mode 100644 index 81afb53be..000000000 Binary files a/files/22_2821_meaning.mp3 and /dev/null differ diff --git a/files/22_2822.jpg b/files/22_2822.jpg deleted file mode 100644 index 00c6331c6..000000000 Binary files a/files/22_2822.jpg and /dev/null differ diff --git a/files/22_2822.mp3 b/files/22_2822.mp3 deleted file mode 100644 index 85d681926..000000000 Binary files a/files/22_2822.mp3 and /dev/null differ diff --git a/files/22_2822_example.mp3 b/files/22_2822_example.mp3 deleted file mode 100644 index 14497d2a9..000000000 Binary files a/files/22_2822_example.mp3 and /dev/null differ diff --git a/files/22_2822_meaning.mp3 b/files/22_2822_meaning.mp3 deleted file mode 100644 index 1c9b40463..000000000 Binary files a/files/22_2822_meaning.mp3 and /dev/null differ diff --git a/files/22_2823.jpg b/files/22_2823.jpg deleted file mode 100644 index d89e6abea..000000000 Binary files a/files/22_2823.jpg and /dev/null differ diff --git a/files/22_2823.mp3 b/files/22_2823.mp3 deleted file mode 100644 index 0b5f9989d..000000000 Binary files a/files/22_2823.mp3 and /dev/null differ diff --git a/files/22_2823_example.mp3 b/files/22_2823_example.mp3 deleted file mode 100644 index 493676504..000000000 Binary files a/files/22_2823_example.mp3 and /dev/null differ diff --git a/files/22_2823_meaning.mp3 b/files/22_2823_meaning.mp3 deleted file mode 100644 index 29a68b640..000000000 Binary files a/files/22_2823_meaning.mp3 and /dev/null differ diff --git a/files/22_2824.jpg b/files/22_2824.jpg deleted file mode 100644 index 7a4847de6..000000000 Binary files a/files/22_2824.jpg and /dev/null differ diff --git a/files/22_2824.mp3 b/files/22_2824.mp3 deleted file mode 100644 index c67047300..000000000 Binary files a/files/22_2824.mp3 and /dev/null differ diff --git a/files/22_2824_example.mp3 b/files/22_2824_example.mp3 deleted file mode 100644 index 5f3f51987..000000000 Binary files a/files/22_2824_example.mp3 and /dev/null differ diff --git a/files/22_2824_meaning.mp3 b/files/22_2824_meaning.mp3 deleted file mode 100644 index 5aea554b9..000000000 Binary files a/files/22_2824_meaning.mp3 and /dev/null differ diff --git a/files/22_2825.jpg b/files/22_2825.jpg deleted file mode 100644 index f0d07a3f8..000000000 Binary files a/files/22_2825.jpg and /dev/null differ diff --git a/files/22_2825.mp3 b/files/22_2825.mp3 deleted file mode 100644 index 2008407b7..000000000 Binary files a/files/22_2825.mp3 and /dev/null differ diff --git a/files/22_2825_example.mp3 b/files/22_2825_example.mp3 deleted file mode 100644 index 3196a3e28..000000000 Binary files a/files/22_2825_example.mp3 and /dev/null differ diff --git a/files/22_2825_meaning.mp3 b/files/22_2825_meaning.mp3 deleted file mode 100644 index 97fb82205..000000000 Binary files a/files/22_2825_meaning.mp3 and /dev/null differ diff --git a/files/22_2826.jpg b/files/22_2826.jpg deleted file mode 100644 index a9bdfbdbf..000000000 Binary files a/files/22_2826.jpg and /dev/null differ diff --git a/files/22_2826.mp3 b/files/22_2826.mp3 deleted file mode 100644 index df2eedc3c..000000000 Binary files a/files/22_2826.mp3 and /dev/null differ diff --git a/files/22_2826_example.mp3 b/files/22_2826_example.mp3 deleted file mode 100644 index 165e8c77b..000000000 Binary files a/files/22_2826_example.mp3 and /dev/null differ diff --git a/files/22_2826_meaning.mp3 b/files/22_2826_meaning.mp3 deleted file mode 100644 index dde2e34d3..000000000 Binary files a/files/22_2826_meaning.mp3 and /dev/null differ diff --git a/files/22_2827.jpg b/files/22_2827.jpg deleted file mode 100644 index 910453a37..000000000 Binary files a/files/22_2827.jpg and /dev/null differ diff --git a/files/22_2827.mp3 b/files/22_2827.mp3 deleted file mode 100644 index 67d73f0bb..000000000 Binary files a/files/22_2827.mp3 and /dev/null differ diff --git a/files/22_2827_example.mp3 b/files/22_2827_example.mp3 deleted file mode 100644 index b18053384..000000000 Binary files a/files/22_2827_example.mp3 and /dev/null differ diff --git a/files/22_2827_meaning.mp3 b/files/22_2827_meaning.mp3 deleted file mode 100644 index ee059dc6e..000000000 Binary files a/files/22_2827_meaning.mp3 and /dev/null differ diff --git a/files/22_2828.jpg b/files/22_2828.jpg deleted file mode 100644 index e1ca30b99..000000000 Binary files a/files/22_2828.jpg and /dev/null differ diff --git a/files/22_2828.mp3 b/files/22_2828.mp3 deleted file mode 100644 index 2d939125a..000000000 Binary files a/files/22_2828.mp3 and /dev/null differ diff --git a/files/22_2828_example.mp3 b/files/22_2828_example.mp3 deleted file mode 100644 index 5552425c2..000000000 Binary files a/files/22_2828_example.mp3 and /dev/null differ diff --git a/files/22_2828_meaning.mp3 b/files/22_2828_meaning.mp3 deleted file mode 100644 index d8472c5ef..000000000 Binary files a/files/22_2828_meaning.mp3 and /dev/null differ diff --git a/files/22_2829.jpg b/files/22_2829.jpg deleted file mode 100644 index 8249d7499..000000000 Binary files a/files/22_2829.jpg and /dev/null differ diff --git a/files/22_2829.mp3 b/files/22_2829.mp3 deleted file mode 100644 index fa976f9a9..000000000 Binary files a/files/22_2829.mp3 and /dev/null differ diff --git a/files/22_2829_example.mp3 b/files/22_2829_example.mp3 deleted file mode 100644 index fe8a9e14a..000000000 Binary files a/files/22_2829_example.mp3 and /dev/null differ diff --git a/files/22_2829_meaning.mp3 b/files/22_2829_meaning.mp3 deleted file mode 100644 index 48f9aea0f..000000000 Binary files a/files/22_2829_meaning.mp3 and /dev/null differ diff --git a/files/22_2830.jpg b/files/22_2830.jpg deleted file mode 100644 index 6711ca834..000000000 Binary files a/files/22_2830.jpg and /dev/null differ diff --git a/files/22_2830.mp3 b/files/22_2830.mp3 deleted file mode 100644 index 05d3dd6ce..000000000 Binary files a/files/22_2830.mp3 and /dev/null differ diff --git a/files/22_2830_example.mp3 b/files/22_2830_example.mp3 deleted file mode 100644 index 50d1cdd8f..000000000 Binary files a/files/22_2830_example.mp3 and /dev/null differ diff --git a/files/22_2830_meaning.mp3 b/files/22_2830_meaning.mp3 deleted file mode 100644 index cd776e361..000000000 Binary files a/files/22_2830_meaning.mp3 and /dev/null differ diff --git a/files/22_2831.jpg b/files/22_2831.jpg deleted file mode 100644 index 870c52ed1..000000000 Binary files a/files/22_2831.jpg and /dev/null differ diff --git a/files/22_2831.mp3 b/files/22_2831.mp3 deleted file mode 100644 index 258e046d4..000000000 Binary files a/files/22_2831.mp3 and /dev/null differ diff --git a/files/22_2831_example.mp3 b/files/22_2831_example.mp3 deleted file mode 100644 index 0612e9629..000000000 Binary files a/files/22_2831_example.mp3 and /dev/null differ diff --git a/files/22_2831_meaning.mp3 b/files/22_2831_meaning.mp3 deleted file mode 100644 index 776a53637..000000000 Binary files a/files/22_2831_meaning.mp3 and /dev/null differ diff --git a/files/22_2832.jpg b/files/22_2832.jpg deleted file mode 100644 index 8ccc4c7ea..000000000 Binary files a/files/22_2832.jpg and /dev/null differ diff --git a/files/22_2832.mp3 b/files/22_2832.mp3 deleted file mode 100644 index 953042fb1..000000000 Binary files a/files/22_2832.mp3 and /dev/null differ diff --git a/files/22_2832_example.mp3 b/files/22_2832_example.mp3 deleted file mode 100644 index 78f2e5c90..000000000 Binary files a/files/22_2832_example.mp3 and /dev/null differ diff --git a/files/22_2832_meaning.mp3 b/files/22_2832_meaning.mp3 deleted file mode 100644 index 6da891b9c..000000000 Binary files a/files/22_2832_meaning.mp3 and /dev/null differ diff --git a/files/22_2833.jpg b/files/22_2833.jpg deleted file mode 100644 index 9ed1f7a32..000000000 Binary files a/files/22_2833.jpg and /dev/null differ diff --git a/files/22_2833.mp3 b/files/22_2833.mp3 deleted file mode 100644 index 332b79a3c..000000000 Binary files a/files/22_2833.mp3 and /dev/null differ diff --git a/files/22_2833_example.mp3 b/files/22_2833_example.mp3 deleted file mode 100644 index 0634f7cf8..000000000 Binary files a/files/22_2833_example.mp3 and /dev/null differ diff --git a/files/22_2833_meaning.mp3 b/files/22_2833_meaning.mp3 deleted file mode 100644 index 379a7ebca..000000000 Binary files a/files/22_2833_meaning.mp3 and /dev/null differ diff --git a/files/22_2834.jpg b/files/22_2834.jpg deleted file mode 100644 index c41d29dc8..000000000 Binary files a/files/22_2834.jpg and /dev/null differ diff --git a/files/22_2834.mp3 b/files/22_2834.mp3 deleted file mode 100644 index 7af2ba9f2..000000000 Binary files a/files/22_2834.mp3 and /dev/null differ diff --git a/files/22_2834_example.mp3 b/files/22_2834_example.mp3 deleted file mode 100644 index e67eb04ea..000000000 Binary files a/files/22_2834_example.mp3 and /dev/null differ diff --git a/files/22_2834_meaning.mp3 b/files/22_2834_meaning.mp3 deleted file mode 100644 index d84861791..000000000 Binary files a/files/22_2834_meaning.mp3 and /dev/null differ diff --git a/files/22_2835.jpg b/files/22_2835.jpg deleted file mode 100644 index 54ab205aa..000000000 Binary files a/files/22_2835.jpg and /dev/null differ diff --git a/files/22_2835.mp3 b/files/22_2835.mp3 deleted file mode 100644 index 9e472cfcb..000000000 Binary files a/files/22_2835.mp3 and /dev/null differ diff --git a/files/22_2835_example.mp3 b/files/22_2835_example.mp3 deleted file mode 100644 index 31b3aa038..000000000 Binary files a/files/22_2835_example.mp3 and /dev/null differ diff --git a/files/22_2835_meaning.mp3 b/files/22_2835_meaning.mp3 deleted file mode 100644 index be05c7f54..000000000 Binary files a/files/22_2835_meaning.mp3 and /dev/null differ diff --git a/files/22_2836.jpg b/files/22_2836.jpg deleted file mode 100644 index 5be7e4c50..000000000 Binary files a/files/22_2836.jpg and /dev/null differ diff --git a/files/22_2836.mp3 b/files/22_2836.mp3 deleted file mode 100644 index f30e0eb14..000000000 Binary files a/files/22_2836.mp3 and /dev/null differ diff --git a/files/22_2836_example.mp3 b/files/22_2836_example.mp3 deleted file mode 100644 index b60f1153f..000000000 Binary files a/files/22_2836_example.mp3 and /dev/null differ diff --git a/files/22_2836_meaning.mp3 b/files/22_2836_meaning.mp3 deleted file mode 100644 index 3870cf9a3..000000000 Binary files a/files/22_2836_meaning.mp3 and /dev/null differ diff --git a/files/22_2837.jpg b/files/22_2837.jpg deleted file mode 100644 index b7e71e529..000000000 Binary files a/files/22_2837.jpg and /dev/null differ diff --git a/files/22_2837.mp3 b/files/22_2837.mp3 deleted file mode 100644 index 11f822cc4..000000000 Binary files a/files/22_2837.mp3 and /dev/null differ diff --git a/files/22_2837_example.mp3 b/files/22_2837_example.mp3 deleted file mode 100644 index 0bc5ed012..000000000 Binary files a/files/22_2837_example.mp3 and /dev/null differ diff --git a/files/22_2837_meaning.mp3 b/files/22_2837_meaning.mp3 deleted file mode 100644 index eed11e1e2..000000000 Binary files a/files/22_2837_meaning.mp3 and /dev/null differ diff --git a/files/22_2838.jpg b/files/22_2838.jpg deleted file mode 100644 index 6ef478e4d..000000000 Binary files a/files/22_2838.jpg and /dev/null differ diff --git a/files/22_2838.mp3 b/files/22_2838.mp3 deleted file mode 100644 index 2df673564..000000000 Binary files a/files/22_2838.mp3 and /dev/null differ diff --git a/files/22_2838_example.mp3 b/files/22_2838_example.mp3 deleted file mode 100644 index 16b8027f2..000000000 Binary files a/files/22_2838_example.mp3 and /dev/null differ diff --git a/files/22_2838_meaning.mp3 b/files/22_2838_meaning.mp3 deleted file mode 100644 index 5bcff67e8..000000000 Binary files a/files/22_2838_meaning.mp3 and /dev/null differ diff --git a/files/22_2839.jpg b/files/22_2839.jpg deleted file mode 100644 index 5a5c2c745..000000000 Binary files a/files/22_2839.jpg and /dev/null differ diff --git a/files/22_2839.mp3 b/files/22_2839.mp3 deleted file mode 100644 index 7f5219aa8..000000000 Binary files a/files/22_2839.mp3 and /dev/null differ diff --git a/files/22_2839_example.mp3 b/files/22_2839_example.mp3 deleted file mode 100644 index 32df9faaa..000000000 Binary files a/files/22_2839_example.mp3 and /dev/null differ diff --git a/files/22_2839_meaning.mp3 b/files/22_2839_meaning.mp3 deleted file mode 100644 index a4826dab4..000000000 Binary files a/files/22_2839_meaning.mp3 and /dev/null differ diff --git a/files/22_2840.jpg b/files/22_2840.jpg deleted file mode 100644 index b3a9fb431..000000000 Binary files a/files/22_2840.jpg and /dev/null differ diff --git a/files/22_2840.mp3 b/files/22_2840.mp3 deleted file mode 100644 index 2162d3637..000000000 Binary files a/files/22_2840.mp3 and /dev/null differ diff --git a/files/22_2840_example.mp3 b/files/22_2840_example.mp3 deleted file mode 100644 index 13d26011a..000000000 Binary files a/files/22_2840_example.mp3 and /dev/null differ diff --git a/files/22_2840_meaning.mp3 b/files/22_2840_meaning.mp3 deleted file mode 100644 index 72ef38b30..000000000 Binary files a/files/22_2840_meaning.mp3 and /dev/null differ diff --git a/files/22_3421.jpg b/files/22_3421.jpg deleted file mode 100644 index b978bcdbd..000000000 Binary files a/files/22_3421.jpg and /dev/null differ diff --git a/files/22_3421.mp3 b/files/22_3421.mp3 deleted file mode 100644 index 79d4d6eb7..000000000 Binary files a/files/22_3421.mp3 and /dev/null differ diff --git a/files/22_3421_example.mp3 b/files/22_3421_example.mp3 deleted file mode 100644 index 8cc35f6d8..000000000 Binary files a/files/22_3421_example.mp3 and /dev/null differ diff --git a/files/22_3421_meaning.mp3 b/files/22_3421_meaning.mp3 deleted file mode 100644 index e8a81ee1a..000000000 Binary files a/files/22_3421_meaning.mp3 and /dev/null differ diff --git a/files/22_3422.jpg b/files/22_3422.jpg deleted file mode 100644 index 751b0c508..000000000 Binary files a/files/22_3422.jpg and /dev/null differ diff --git a/files/22_3422.mp3 b/files/22_3422.mp3 deleted file mode 100644 index 05a5e11e4..000000000 Binary files a/files/22_3422.mp3 and /dev/null differ diff --git a/files/22_3422_example.mp3 b/files/22_3422_example.mp3 deleted file mode 100644 index 95a3eb4db..000000000 Binary files a/files/22_3422_example.mp3 and /dev/null differ diff --git a/files/22_3422_meaning.mp3 b/files/22_3422_meaning.mp3 deleted file mode 100644 index 33980e69a..000000000 Binary files a/files/22_3422_meaning.mp3 and /dev/null differ diff --git a/files/22_3423.jpg b/files/22_3423.jpg deleted file mode 100644 index c04ed70b7..000000000 Binary files a/files/22_3423.jpg and /dev/null differ diff --git a/files/22_3423.mp3 b/files/22_3423.mp3 deleted file mode 100644 index 45b48f84b..000000000 Binary files a/files/22_3423.mp3 and /dev/null differ diff --git a/files/22_3423_example.mp3 b/files/22_3423_example.mp3 deleted file mode 100644 index 5e99732ef..000000000 Binary files a/files/22_3423_example.mp3 and /dev/null differ diff --git a/files/22_3423_meaning.mp3 b/files/22_3423_meaning.mp3 deleted file mode 100644 index 1be4917e2..000000000 Binary files a/files/22_3423_meaning.mp3 and /dev/null differ diff --git a/files/22_3424.jpg b/files/22_3424.jpg deleted file mode 100644 index f4ba1a13c..000000000 Binary files a/files/22_3424.jpg and /dev/null differ diff --git a/files/22_3424.mp3 b/files/22_3424.mp3 deleted file mode 100644 index dd066184b..000000000 Binary files a/files/22_3424.mp3 and /dev/null differ diff --git a/files/22_3424_example.mp3 b/files/22_3424_example.mp3 deleted file mode 100644 index 717e1898a..000000000 Binary files a/files/22_3424_example.mp3 and /dev/null differ diff --git a/files/22_3424_meaning.mp3 b/files/22_3424_meaning.mp3 deleted file mode 100644 index 9f67b3484..000000000 Binary files a/files/22_3424_meaning.mp3 and /dev/null differ diff --git a/files/22_3425.jpg b/files/22_3425.jpg deleted file mode 100644 index 97e2fa735..000000000 Binary files a/files/22_3425.jpg and /dev/null differ diff --git a/files/22_3425.mp3 b/files/22_3425.mp3 deleted file mode 100644 index 711598703..000000000 Binary files a/files/22_3425.mp3 and /dev/null differ diff --git a/files/22_3425_example.mp3 b/files/22_3425_example.mp3 deleted file mode 100644 index ecb3b4f17..000000000 Binary files a/files/22_3425_example.mp3 and /dev/null differ diff --git a/files/22_3425_meaning.mp3 b/files/22_3425_meaning.mp3 deleted file mode 100644 index 2c45cfe2c..000000000 Binary files a/files/22_3425_meaning.mp3 and /dev/null differ diff --git a/files/22_3426.jpg b/files/22_3426.jpg deleted file mode 100644 index a1073eb73..000000000 Binary files a/files/22_3426.jpg and /dev/null differ diff --git a/files/22_3426.mp3 b/files/22_3426.mp3 deleted file mode 100644 index 7face4a02..000000000 Binary files a/files/22_3426.mp3 and /dev/null differ diff --git a/files/22_3426_example.mp3 b/files/22_3426_example.mp3 deleted file mode 100644 index 4d970a4db..000000000 Binary files a/files/22_3426_example.mp3 and /dev/null differ diff --git a/files/22_3426_meaning.mp3 b/files/22_3426_meaning.mp3 deleted file mode 100644 index ace32cdd5..000000000 Binary files a/files/22_3426_meaning.mp3 and /dev/null differ diff --git a/files/22_3427.jpg b/files/22_3427.jpg deleted file mode 100644 index 55cfa5851..000000000 Binary files a/files/22_3427.jpg and /dev/null differ diff --git a/files/22_3427.mp3 b/files/22_3427.mp3 deleted file mode 100644 index d38ebc78b..000000000 Binary files a/files/22_3427.mp3 and /dev/null differ diff --git a/files/22_3427_example.mp3 b/files/22_3427_example.mp3 deleted file mode 100644 index ba62aa354..000000000 Binary files a/files/22_3427_example.mp3 and /dev/null differ diff --git a/files/22_3427_meaning.mp3 b/files/22_3427_meaning.mp3 deleted file mode 100644 index fea936569..000000000 Binary files a/files/22_3427_meaning.mp3 and /dev/null differ diff --git a/files/22_3428.jpg b/files/22_3428.jpg deleted file mode 100644 index 968de8f48..000000000 Binary files a/files/22_3428.jpg and /dev/null differ diff --git a/files/22_3428.mp3 b/files/22_3428.mp3 deleted file mode 100644 index ad4415038..000000000 Binary files a/files/22_3428.mp3 and /dev/null differ diff --git a/files/22_3428_example.mp3 b/files/22_3428_example.mp3 deleted file mode 100644 index 2ec82b995..000000000 Binary files a/files/22_3428_example.mp3 and /dev/null differ diff --git a/files/22_3428_meaning.mp3 b/files/22_3428_meaning.mp3 deleted file mode 100644 index d76e410be..000000000 Binary files a/files/22_3428_meaning.mp3 and /dev/null differ diff --git a/files/22_3429.jpg b/files/22_3429.jpg deleted file mode 100644 index 9fe2995e2..000000000 Binary files a/files/22_3429.jpg and /dev/null differ diff --git a/files/22_3429.mp3 b/files/22_3429.mp3 deleted file mode 100644 index 025200b27..000000000 Binary files a/files/22_3429.mp3 and /dev/null differ diff --git a/files/22_3429_example.mp3 b/files/22_3429_example.mp3 deleted file mode 100644 index 0a81f6eb7..000000000 Binary files a/files/22_3429_example.mp3 and /dev/null differ diff --git a/files/22_3429_meaning.mp3 b/files/22_3429_meaning.mp3 deleted file mode 100644 index 1651443f7..000000000 Binary files a/files/22_3429_meaning.mp3 and /dev/null differ diff --git a/files/22_3430.jpg b/files/22_3430.jpg deleted file mode 100644 index c3853fe04..000000000 Binary files a/files/22_3430.jpg and /dev/null differ diff --git a/files/22_3430.mp3 b/files/22_3430.mp3 deleted file mode 100644 index f025a3c9f..000000000 Binary files a/files/22_3430.mp3 and /dev/null differ diff --git a/files/22_3430_example.mp3 b/files/22_3430_example.mp3 deleted file mode 100644 index 3457fee26..000000000 Binary files a/files/22_3430_example.mp3 and /dev/null differ diff --git a/files/22_3430_meaning.mp3 b/files/22_3430_meaning.mp3 deleted file mode 100644 index fe29ec4f7..000000000 Binary files a/files/22_3430_meaning.mp3 and /dev/null differ diff --git a/files/22_3431.jpg b/files/22_3431.jpg deleted file mode 100644 index 65f2fce90..000000000 Binary files a/files/22_3431.jpg and /dev/null differ diff --git a/files/22_3431.mp3 b/files/22_3431.mp3 deleted file mode 100644 index 9e1dddd02..000000000 Binary files a/files/22_3431.mp3 and /dev/null differ diff --git a/files/22_3431_example.mp3 b/files/22_3431_example.mp3 deleted file mode 100644 index 6bc7b4651..000000000 Binary files a/files/22_3431_example.mp3 and /dev/null differ diff --git a/files/22_3431_meaning.mp3 b/files/22_3431_meaning.mp3 deleted file mode 100644 index c98d98e02..000000000 Binary files a/files/22_3431_meaning.mp3 and /dev/null differ diff --git a/files/22_3432.jpg b/files/22_3432.jpg deleted file mode 100644 index 61c20bb75..000000000 Binary files a/files/22_3432.jpg and /dev/null differ diff --git a/files/22_3432.mp3 b/files/22_3432.mp3 deleted file mode 100644 index 3a3fb5c93..000000000 Binary files a/files/22_3432.mp3 and /dev/null differ diff --git a/files/22_3432_example.mp3 b/files/22_3432_example.mp3 deleted file mode 100644 index e7351711c..000000000 Binary files a/files/22_3432_example.mp3 and /dev/null differ diff --git a/files/22_3432_meaning.mp3 b/files/22_3432_meaning.mp3 deleted file mode 100644 index dd50cee7b..000000000 Binary files a/files/22_3432_meaning.mp3 and /dev/null differ diff --git a/files/22_3433.jpg b/files/22_3433.jpg deleted file mode 100644 index 50140c782..000000000 Binary files a/files/22_3433.jpg and /dev/null differ diff --git a/files/22_3433.mp3 b/files/22_3433.mp3 deleted file mode 100644 index 6c9b2a33e..000000000 Binary files a/files/22_3433.mp3 and /dev/null differ diff --git a/files/22_3433_example.mp3 b/files/22_3433_example.mp3 deleted file mode 100644 index 8f0c3e6b6..000000000 Binary files a/files/22_3433_example.mp3 and /dev/null differ diff --git a/files/22_3433_meaning.mp3 b/files/22_3433_meaning.mp3 deleted file mode 100644 index c1bb567c9..000000000 Binary files a/files/22_3433_meaning.mp3 and /dev/null differ diff --git a/files/22_3434.jpg b/files/22_3434.jpg deleted file mode 100644 index 4dfea92fe..000000000 Binary files a/files/22_3434.jpg and /dev/null differ diff --git a/files/22_3434.mp3 b/files/22_3434.mp3 deleted file mode 100644 index edb8e438a..000000000 Binary files a/files/22_3434.mp3 and /dev/null differ diff --git a/files/22_3434_example.mp3 b/files/22_3434_example.mp3 deleted file mode 100644 index 8699ccaf6..000000000 Binary files a/files/22_3434_example.mp3 and /dev/null differ diff --git a/files/22_3434_meaning.mp3 b/files/22_3434_meaning.mp3 deleted file mode 100644 index 4a6fd0273..000000000 Binary files a/files/22_3434_meaning.mp3 and /dev/null differ diff --git a/files/22_3435.jpg b/files/22_3435.jpg deleted file mode 100644 index f30088020..000000000 Binary files a/files/22_3435.jpg and /dev/null differ diff --git a/files/22_3435.mp3 b/files/22_3435.mp3 deleted file mode 100644 index aa05a0c86..000000000 Binary files a/files/22_3435.mp3 and /dev/null differ diff --git a/files/22_3435_example.mp3 b/files/22_3435_example.mp3 deleted file mode 100644 index 3c8a5cae9..000000000 Binary files a/files/22_3435_example.mp3 and /dev/null differ diff --git a/files/22_3435_meaning.mp3 b/files/22_3435_meaning.mp3 deleted file mode 100644 index feb65e42e..000000000 Binary files a/files/22_3435_meaning.mp3 and /dev/null differ diff --git a/files/22_3436.jpg b/files/22_3436.jpg deleted file mode 100644 index a4d11e5f0..000000000 Binary files a/files/22_3436.jpg and /dev/null differ diff --git a/files/22_3436.mp3 b/files/22_3436.mp3 deleted file mode 100644 index 33eafca14..000000000 Binary files a/files/22_3436.mp3 and /dev/null differ diff --git a/files/22_3436_example.mp3 b/files/22_3436_example.mp3 deleted file mode 100644 index 2124b64d1..000000000 Binary files a/files/22_3436_example.mp3 and /dev/null differ diff --git a/files/22_3436_meaning.mp3 b/files/22_3436_meaning.mp3 deleted file mode 100644 index 38d7bb91d..000000000 Binary files a/files/22_3436_meaning.mp3 and /dev/null differ diff --git a/files/22_3437.jpg b/files/22_3437.jpg deleted file mode 100644 index af72c52b2..000000000 Binary files a/files/22_3437.jpg and /dev/null differ diff --git a/files/22_3437.mp3 b/files/22_3437.mp3 deleted file mode 100644 index e823fd8f6..000000000 Binary files a/files/22_3437.mp3 and /dev/null differ diff --git a/files/22_3437_example.mp3 b/files/22_3437_example.mp3 deleted file mode 100644 index 908deddb9..000000000 Binary files a/files/22_3437_example.mp3 and /dev/null differ diff --git a/files/22_3437_meaning.mp3 b/files/22_3437_meaning.mp3 deleted file mode 100644 index 578f35002..000000000 Binary files a/files/22_3437_meaning.mp3 and /dev/null differ diff --git a/files/22_3438.jpg b/files/22_3438.jpg deleted file mode 100644 index 7030513a3..000000000 Binary files a/files/22_3438.jpg and /dev/null differ diff --git a/files/22_3438.mp3 b/files/22_3438.mp3 deleted file mode 100644 index 1df6522dc..000000000 Binary files a/files/22_3438.mp3 and /dev/null differ diff --git a/files/22_3438_example.mp3 b/files/22_3438_example.mp3 deleted file mode 100644 index 6c8a2a266..000000000 Binary files a/files/22_3438_example.mp3 and /dev/null differ diff --git a/files/22_3438_meaning.mp3 b/files/22_3438_meaning.mp3 deleted file mode 100644 index 82c81332d..000000000 Binary files a/files/22_3438_meaning.mp3 and /dev/null differ diff --git a/files/22_3439.jpg b/files/22_3439.jpg deleted file mode 100644 index efaa73da7..000000000 Binary files a/files/22_3439.jpg and /dev/null differ diff --git a/files/22_3439.mp3 b/files/22_3439.mp3 deleted file mode 100644 index 7de5fba39..000000000 Binary files a/files/22_3439.mp3 and /dev/null differ diff --git a/files/22_3439_example.mp3 b/files/22_3439_example.mp3 deleted file mode 100644 index f57047bb7..000000000 Binary files a/files/22_3439_example.mp3 and /dev/null differ diff --git a/files/22_3439_meaning.mp3 b/files/22_3439_meaning.mp3 deleted file mode 100644 index 4c9d7e0d9..000000000 Binary files a/files/22_3439_meaning.mp3 and /dev/null differ diff --git a/files/22_3440.jpg b/files/22_3440.jpg deleted file mode 100644 index 1901bfefb..000000000 Binary files a/files/22_3440.jpg and /dev/null differ diff --git a/files/22_3440.mp3 b/files/22_3440.mp3 deleted file mode 100644 index 0ae00231a..000000000 Binary files a/files/22_3440.mp3 and /dev/null differ diff --git a/files/22_3440_example.mp3 b/files/22_3440_example.mp3 deleted file mode 100644 index 6aa0856d8..000000000 Binary files a/files/22_3440_example.mp3 and /dev/null differ diff --git a/files/22_3440_meaning.mp3 b/files/22_3440_meaning.mp3 deleted file mode 100644 index cf05d1d79..000000000 Binary files a/files/22_3440_meaning.mp3 and /dev/null differ diff --git a/files/23_0441.jpg b/files/23_0441.jpg deleted file mode 100644 index 5fa54a27e..000000000 Binary files a/files/23_0441.jpg and /dev/null differ diff --git a/files/23_0441.mp3 b/files/23_0441.mp3 deleted file mode 100644 index 930b276f0..000000000 Binary files a/files/23_0441.mp3 and /dev/null differ diff --git a/files/23_0441_example.mp3 b/files/23_0441_example.mp3 deleted file mode 100644 index 67df842b4..000000000 Binary files a/files/23_0441_example.mp3 and /dev/null differ diff --git a/files/23_0441_meaning.mp3 b/files/23_0441_meaning.mp3 deleted file mode 100644 index 1a6ceb180..000000000 Binary files a/files/23_0441_meaning.mp3 and /dev/null differ diff --git a/files/23_0442.jpg b/files/23_0442.jpg deleted file mode 100644 index 2b2ead58c..000000000 Binary files a/files/23_0442.jpg and /dev/null differ diff --git a/files/23_0442.mp3 b/files/23_0442.mp3 deleted file mode 100644 index 08014e54b..000000000 Binary files a/files/23_0442.mp3 and /dev/null differ diff --git a/files/23_0442_example.mp3 b/files/23_0442_example.mp3 deleted file mode 100644 index 968b4025c..000000000 Binary files a/files/23_0442_example.mp3 and /dev/null differ diff --git a/files/23_0442_meaning.mp3 b/files/23_0442_meaning.mp3 deleted file mode 100644 index bbceb17b3..000000000 Binary files a/files/23_0442_meaning.mp3 and /dev/null differ diff --git a/files/23_0443.jpg b/files/23_0443.jpg deleted file mode 100644 index f127796d9..000000000 Binary files a/files/23_0443.jpg and /dev/null differ diff --git a/files/23_0443.mp3 b/files/23_0443.mp3 deleted file mode 100644 index 6b35c96a3..000000000 Binary files a/files/23_0443.mp3 and /dev/null differ diff --git a/files/23_0443_example.mp3 b/files/23_0443_example.mp3 deleted file mode 100644 index 495d00e45..000000000 Binary files a/files/23_0443_example.mp3 and /dev/null differ diff --git a/files/23_0443_meaning.mp3 b/files/23_0443_meaning.mp3 deleted file mode 100644 index a6d3904c1..000000000 Binary files a/files/23_0443_meaning.mp3 and /dev/null differ diff --git a/files/23_0444.jpg b/files/23_0444.jpg deleted file mode 100644 index 3300b0fce..000000000 Binary files a/files/23_0444.jpg and /dev/null differ diff --git a/files/23_0444.mp3 b/files/23_0444.mp3 deleted file mode 100644 index 293294fe0..000000000 Binary files a/files/23_0444.mp3 and /dev/null differ diff --git a/files/23_0444_example.mp3 b/files/23_0444_example.mp3 deleted file mode 100644 index 6fabe71e6..000000000 Binary files a/files/23_0444_example.mp3 and /dev/null differ diff --git a/files/23_0444_meaning.mp3 b/files/23_0444_meaning.mp3 deleted file mode 100644 index 4c3ffbe30..000000000 Binary files a/files/23_0444_meaning.mp3 and /dev/null differ diff --git a/files/23_0445.jpg b/files/23_0445.jpg deleted file mode 100644 index 8f6f8f3bd..000000000 Binary files a/files/23_0445.jpg and /dev/null differ diff --git a/files/23_0445.mp3 b/files/23_0445.mp3 deleted file mode 100644 index 802686f3d..000000000 Binary files a/files/23_0445.mp3 and /dev/null differ diff --git a/files/23_0445_example.mp3 b/files/23_0445_example.mp3 deleted file mode 100644 index a10535352..000000000 Binary files a/files/23_0445_example.mp3 and /dev/null differ diff --git a/files/23_0445_meaning.mp3 b/files/23_0445_meaning.mp3 deleted file mode 100644 index c343c5825..000000000 Binary files a/files/23_0445_meaning.mp3 and /dev/null differ diff --git a/files/23_0446.jpg b/files/23_0446.jpg deleted file mode 100644 index 838088b92..000000000 Binary files a/files/23_0446.jpg and /dev/null differ diff --git a/files/23_0446.mp3 b/files/23_0446.mp3 deleted file mode 100644 index bc1c044d7..000000000 Binary files a/files/23_0446.mp3 and /dev/null differ diff --git a/files/23_0446_example.mp3 b/files/23_0446_example.mp3 deleted file mode 100644 index dee01e56a..000000000 Binary files a/files/23_0446_example.mp3 and /dev/null differ diff --git a/files/23_0446_meaning.mp3 b/files/23_0446_meaning.mp3 deleted file mode 100644 index 2755624db..000000000 Binary files a/files/23_0446_meaning.mp3 and /dev/null differ diff --git a/files/23_0447.jpg b/files/23_0447.jpg deleted file mode 100644 index 12b26b703..000000000 Binary files a/files/23_0447.jpg and /dev/null differ diff --git a/files/23_0447.mp3 b/files/23_0447.mp3 deleted file mode 100644 index 7c47deb93..000000000 Binary files a/files/23_0447.mp3 and /dev/null differ diff --git a/files/23_0447_example.mp3 b/files/23_0447_example.mp3 deleted file mode 100644 index e5fc4e02a..000000000 Binary files a/files/23_0447_example.mp3 and /dev/null differ diff --git a/files/23_0447_meaning.mp3 b/files/23_0447_meaning.mp3 deleted file mode 100644 index 86fdaaf65..000000000 Binary files a/files/23_0447_meaning.mp3 and /dev/null differ diff --git a/files/23_0448.jpg b/files/23_0448.jpg deleted file mode 100644 index a78e89d18..000000000 Binary files a/files/23_0448.jpg and /dev/null differ diff --git a/files/23_0448.mp3 b/files/23_0448.mp3 deleted file mode 100644 index 736de3d6b..000000000 Binary files a/files/23_0448.mp3 and /dev/null differ diff --git a/files/23_0448_example.mp3 b/files/23_0448_example.mp3 deleted file mode 100644 index 2aa36a386..000000000 Binary files a/files/23_0448_example.mp3 and /dev/null differ diff --git a/files/23_0448_meaning.mp3 b/files/23_0448_meaning.mp3 deleted file mode 100644 index 3e35f3b3c..000000000 Binary files a/files/23_0448_meaning.mp3 and /dev/null differ diff --git a/files/23_0449.jpg b/files/23_0449.jpg deleted file mode 100644 index 57d284b31..000000000 Binary files a/files/23_0449.jpg and /dev/null differ diff --git a/files/23_0449.mp3 b/files/23_0449.mp3 deleted file mode 100644 index 4c32ce667..000000000 Binary files a/files/23_0449.mp3 and /dev/null differ diff --git a/files/23_0449_example.mp3 b/files/23_0449_example.mp3 deleted file mode 100644 index 041c426d0..000000000 Binary files a/files/23_0449_example.mp3 and /dev/null differ diff --git a/files/23_0449_meaning.mp3 b/files/23_0449_meaning.mp3 deleted file mode 100644 index 73b8e0f7e..000000000 Binary files a/files/23_0449_meaning.mp3 and /dev/null differ diff --git a/files/23_0450.jpg b/files/23_0450.jpg deleted file mode 100644 index e48c0b8e2..000000000 Binary files a/files/23_0450.jpg and /dev/null differ diff --git a/files/23_0450.mp3 b/files/23_0450.mp3 deleted file mode 100644 index bf2ba8878..000000000 Binary files a/files/23_0450.mp3 and /dev/null differ diff --git a/files/23_0450_example.mp3 b/files/23_0450_example.mp3 deleted file mode 100644 index ec43f3f01..000000000 Binary files a/files/23_0450_example.mp3 and /dev/null differ diff --git a/files/23_0450_meaning.mp3 b/files/23_0450_meaning.mp3 deleted file mode 100644 index 6cf8ba03f..000000000 Binary files a/files/23_0450_meaning.mp3 and /dev/null differ diff --git a/files/23_0451.jpg b/files/23_0451.jpg deleted file mode 100644 index aee77503f..000000000 Binary files a/files/23_0451.jpg and /dev/null differ diff --git a/files/23_0451.mp3 b/files/23_0451.mp3 deleted file mode 100644 index 6832d37fc..000000000 Binary files a/files/23_0451.mp3 and /dev/null differ diff --git a/files/23_0451_example.mp3 b/files/23_0451_example.mp3 deleted file mode 100644 index bc74fa86e..000000000 Binary files a/files/23_0451_example.mp3 and /dev/null differ diff --git a/files/23_0451_meaning.mp3 b/files/23_0451_meaning.mp3 deleted file mode 100644 index a601605d5..000000000 Binary files a/files/23_0451_meaning.mp3 and /dev/null differ diff --git a/files/23_0452.jpg b/files/23_0452.jpg deleted file mode 100644 index e20ce3677..000000000 Binary files a/files/23_0452.jpg and /dev/null differ diff --git a/files/23_0452.mp3 b/files/23_0452.mp3 deleted file mode 100644 index b0da61667..000000000 Binary files a/files/23_0452.mp3 and /dev/null differ diff --git a/files/23_0452_example.mp3 b/files/23_0452_example.mp3 deleted file mode 100644 index 6060869e6..000000000 Binary files a/files/23_0452_example.mp3 and /dev/null differ diff --git a/files/23_0452_meaning.mp3 b/files/23_0452_meaning.mp3 deleted file mode 100644 index a363ca239..000000000 Binary files a/files/23_0452_meaning.mp3 and /dev/null differ diff --git a/files/23_0453.jpg b/files/23_0453.jpg deleted file mode 100644 index c6f49ce16..000000000 Binary files a/files/23_0453.jpg and /dev/null differ diff --git a/files/23_0453.mp3 b/files/23_0453.mp3 deleted file mode 100644 index 63c0a63f7..000000000 Binary files a/files/23_0453.mp3 and /dev/null differ diff --git a/files/23_0453_example.mp3 b/files/23_0453_example.mp3 deleted file mode 100644 index d612b4bb5..000000000 Binary files a/files/23_0453_example.mp3 and /dev/null differ diff --git a/files/23_0453_meaning.mp3 b/files/23_0453_meaning.mp3 deleted file mode 100644 index bf4f0ff5c..000000000 Binary files a/files/23_0453_meaning.mp3 and /dev/null differ diff --git a/files/23_0454.jpg b/files/23_0454.jpg deleted file mode 100644 index 6359e3261..000000000 Binary files a/files/23_0454.jpg and /dev/null differ diff --git a/files/23_0454.mp3 b/files/23_0454.mp3 deleted file mode 100644 index 3e26868e3..000000000 Binary files a/files/23_0454.mp3 and /dev/null differ diff --git a/files/23_0454_example.mp3 b/files/23_0454_example.mp3 deleted file mode 100644 index 0be259f9b..000000000 Binary files a/files/23_0454_example.mp3 and /dev/null differ diff --git a/files/23_0454_meaning.mp3 b/files/23_0454_meaning.mp3 deleted file mode 100644 index fbc87b5d2..000000000 Binary files a/files/23_0454_meaning.mp3 and /dev/null differ diff --git a/files/23_0455.jpg b/files/23_0455.jpg deleted file mode 100644 index f443f608a..000000000 Binary files a/files/23_0455.jpg and /dev/null differ diff --git a/files/23_0455.mp3 b/files/23_0455.mp3 deleted file mode 100644 index 855777604..000000000 Binary files a/files/23_0455.mp3 and /dev/null differ diff --git a/files/23_0455_example.mp3 b/files/23_0455_example.mp3 deleted file mode 100644 index 13e5aa306..000000000 Binary files a/files/23_0455_example.mp3 and /dev/null differ diff --git a/files/23_0455_meaning.mp3 b/files/23_0455_meaning.mp3 deleted file mode 100644 index fc49a1e08..000000000 Binary files a/files/23_0455_meaning.mp3 and /dev/null differ diff --git a/files/23_0456.jpg b/files/23_0456.jpg deleted file mode 100644 index 18e39ccd8..000000000 Binary files a/files/23_0456.jpg and /dev/null differ diff --git a/files/23_0456.mp3 b/files/23_0456.mp3 deleted file mode 100644 index 9abc89732..000000000 Binary files a/files/23_0456.mp3 and /dev/null differ diff --git a/files/23_0456_example.mp3 b/files/23_0456_example.mp3 deleted file mode 100644 index 36f61bbc7..000000000 Binary files a/files/23_0456_example.mp3 and /dev/null differ diff --git a/files/23_0456_meaning.mp3 b/files/23_0456_meaning.mp3 deleted file mode 100644 index e676acead..000000000 Binary files a/files/23_0456_meaning.mp3 and /dev/null differ diff --git a/files/23_0457.jpg b/files/23_0457.jpg deleted file mode 100644 index a5dd7412f..000000000 Binary files a/files/23_0457.jpg and /dev/null differ diff --git a/files/23_0457.mp3 b/files/23_0457.mp3 deleted file mode 100644 index f87368af3..000000000 Binary files a/files/23_0457.mp3 and /dev/null differ diff --git a/files/23_0457_example.mp3 b/files/23_0457_example.mp3 deleted file mode 100644 index 8a3446e8f..000000000 Binary files a/files/23_0457_example.mp3 and /dev/null differ diff --git a/files/23_0457_meaning.mp3 b/files/23_0457_meaning.mp3 deleted file mode 100644 index a72e85855..000000000 Binary files a/files/23_0457_meaning.mp3 and /dev/null differ diff --git a/files/23_0458.jpg b/files/23_0458.jpg deleted file mode 100644 index 1c57e5dd9..000000000 Binary files a/files/23_0458.jpg and /dev/null differ diff --git a/files/23_0458.mp3 b/files/23_0458.mp3 deleted file mode 100644 index 2c5b507d5..000000000 Binary files a/files/23_0458.mp3 and /dev/null differ diff --git a/files/23_0458_example.mp3 b/files/23_0458_example.mp3 deleted file mode 100644 index 20cb643dc..000000000 Binary files a/files/23_0458_example.mp3 and /dev/null differ diff --git a/files/23_0458_meaning.mp3 b/files/23_0458_meaning.mp3 deleted file mode 100644 index 2ed78765f..000000000 Binary files a/files/23_0458_meaning.mp3 and /dev/null differ diff --git a/files/23_0459.jpg b/files/23_0459.jpg deleted file mode 100644 index 472e650c2..000000000 Binary files a/files/23_0459.jpg and /dev/null differ diff --git a/files/23_0459.mp3 b/files/23_0459.mp3 deleted file mode 100644 index 7da610e55..000000000 Binary files a/files/23_0459.mp3 and /dev/null differ diff --git a/files/23_0459_example.mp3 b/files/23_0459_example.mp3 deleted file mode 100644 index 5c4b58509..000000000 Binary files a/files/23_0459_example.mp3 and /dev/null differ diff --git a/files/23_0459_meaning.mp3 b/files/23_0459_meaning.mp3 deleted file mode 100644 index fd899cb15..000000000 Binary files a/files/23_0459_meaning.mp3 and /dev/null differ diff --git a/files/23_0460.jpg b/files/23_0460.jpg deleted file mode 100644 index 92b55d6a5..000000000 Binary files a/files/23_0460.jpg and /dev/null differ diff --git a/files/23_0460.mp3 b/files/23_0460.mp3 deleted file mode 100644 index d7d507054..000000000 Binary files a/files/23_0460.mp3 and /dev/null differ diff --git a/files/23_0460_example.mp3 b/files/23_0460_example.mp3 deleted file mode 100644 index d3862cb12..000000000 Binary files a/files/23_0460_example.mp3 and /dev/null differ diff --git a/files/23_0460_meaning.mp3 b/files/23_0460_meaning.mp3 deleted file mode 100644 index caf891394..000000000 Binary files a/files/23_0460_meaning.mp3 and /dev/null differ diff --git a/files/23_1041.jpg b/files/23_1041.jpg deleted file mode 100644 index a3635f5c5..000000000 Binary files a/files/23_1041.jpg and /dev/null differ diff --git a/files/23_1041.mp3 b/files/23_1041.mp3 deleted file mode 100644 index 5be2ee8b0..000000000 Binary files a/files/23_1041.mp3 and /dev/null differ diff --git a/files/23_1041_example.mp3 b/files/23_1041_example.mp3 deleted file mode 100644 index e1178fdd0..000000000 Binary files a/files/23_1041_example.mp3 and /dev/null differ diff --git a/files/23_1041_meaning.mp3 b/files/23_1041_meaning.mp3 deleted file mode 100644 index e97b4a1c3..000000000 Binary files a/files/23_1041_meaning.mp3 and /dev/null differ diff --git a/files/23_1042.jpg b/files/23_1042.jpg deleted file mode 100644 index 22b209ba1..000000000 Binary files a/files/23_1042.jpg and /dev/null differ diff --git a/files/23_1042.mp3 b/files/23_1042.mp3 deleted file mode 100644 index 2e8c274c9..000000000 Binary files a/files/23_1042.mp3 and /dev/null differ diff --git a/files/23_1042_example.mp3 b/files/23_1042_example.mp3 deleted file mode 100644 index 63179e219..000000000 Binary files a/files/23_1042_example.mp3 and /dev/null differ diff --git a/files/23_1042_meaning.mp3 b/files/23_1042_meaning.mp3 deleted file mode 100644 index cf488d17a..000000000 Binary files a/files/23_1042_meaning.mp3 and /dev/null differ diff --git a/files/23_1043.jpg b/files/23_1043.jpg deleted file mode 100644 index 96d1dd299..000000000 Binary files a/files/23_1043.jpg and /dev/null differ diff --git a/files/23_1043.mp3 b/files/23_1043.mp3 deleted file mode 100644 index 8b968883b..000000000 Binary files a/files/23_1043.mp3 and /dev/null differ diff --git a/files/23_1043_example.mp3 b/files/23_1043_example.mp3 deleted file mode 100644 index cc1836d10..000000000 Binary files a/files/23_1043_example.mp3 and /dev/null differ diff --git a/files/23_1043_meaning.mp3 b/files/23_1043_meaning.mp3 deleted file mode 100644 index d2b0f45d8..000000000 Binary files a/files/23_1043_meaning.mp3 and /dev/null differ diff --git a/files/23_1044.jpg b/files/23_1044.jpg deleted file mode 100644 index 466c6ce41..000000000 Binary files a/files/23_1044.jpg and /dev/null differ diff --git a/files/23_1044.mp3 b/files/23_1044.mp3 deleted file mode 100644 index 29b03ff21..000000000 Binary files a/files/23_1044.mp3 and /dev/null differ diff --git a/files/23_1044_example.mp3 b/files/23_1044_example.mp3 deleted file mode 100644 index 318fc86af..000000000 Binary files a/files/23_1044_example.mp3 and /dev/null differ diff --git a/files/23_1044_meaning.mp3 b/files/23_1044_meaning.mp3 deleted file mode 100644 index 1895257f9..000000000 Binary files a/files/23_1044_meaning.mp3 and /dev/null differ diff --git a/files/23_1045.jpg b/files/23_1045.jpg deleted file mode 100644 index 90ee6956b..000000000 Binary files a/files/23_1045.jpg and /dev/null differ diff --git a/files/23_1045.mp3 b/files/23_1045.mp3 deleted file mode 100644 index 327730df8..000000000 Binary files a/files/23_1045.mp3 and /dev/null differ diff --git a/files/23_1045_example.mp3 b/files/23_1045_example.mp3 deleted file mode 100644 index 977d82028..000000000 Binary files a/files/23_1045_example.mp3 and /dev/null differ diff --git a/files/23_1045_meaning.mp3 b/files/23_1045_meaning.mp3 deleted file mode 100644 index da1831b51..000000000 Binary files a/files/23_1045_meaning.mp3 and /dev/null differ diff --git a/files/23_1046.jpg b/files/23_1046.jpg deleted file mode 100644 index 738f1ab60..000000000 Binary files a/files/23_1046.jpg and /dev/null differ diff --git a/files/23_1046.mp3 b/files/23_1046.mp3 deleted file mode 100644 index 9880ee5ef..000000000 Binary files a/files/23_1046.mp3 and /dev/null differ diff --git a/files/23_1046_example.mp3 b/files/23_1046_example.mp3 deleted file mode 100644 index bd35d8693..000000000 Binary files a/files/23_1046_example.mp3 and /dev/null differ diff --git a/files/23_1046_meaning.mp3 b/files/23_1046_meaning.mp3 deleted file mode 100644 index 226372855..000000000 Binary files a/files/23_1046_meaning.mp3 and /dev/null differ diff --git a/files/23_1047.jpg b/files/23_1047.jpg deleted file mode 100644 index bf2076c00..000000000 Binary files a/files/23_1047.jpg and /dev/null differ diff --git a/files/23_1047.mp3 b/files/23_1047.mp3 deleted file mode 100644 index 1f988a21d..000000000 Binary files a/files/23_1047.mp3 and /dev/null differ diff --git a/files/23_1047_example.mp3 b/files/23_1047_example.mp3 deleted file mode 100644 index 58bf81922..000000000 Binary files a/files/23_1047_example.mp3 and /dev/null differ diff --git a/files/23_1047_meaning.mp3 b/files/23_1047_meaning.mp3 deleted file mode 100644 index e73e38a88..000000000 Binary files a/files/23_1047_meaning.mp3 and /dev/null differ diff --git a/files/23_1048.jpg b/files/23_1048.jpg deleted file mode 100644 index 5e7377b00..000000000 Binary files a/files/23_1048.jpg and /dev/null differ diff --git a/files/23_1048.mp3 b/files/23_1048.mp3 deleted file mode 100644 index 756832958..000000000 Binary files a/files/23_1048.mp3 and /dev/null differ diff --git a/files/23_1048_example.mp3 b/files/23_1048_example.mp3 deleted file mode 100644 index 92488a2b5..000000000 Binary files a/files/23_1048_example.mp3 and /dev/null differ diff --git a/files/23_1048_meaning.mp3 b/files/23_1048_meaning.mp3 deleted file mode 100644 index ad3a59c74..000000000 Binary files a/files/23_1048_meaning.mp3 and /dev/null differ diff --git a/files/23_1049.jpg b/files/23_1049.jpg deleted file mode 100644 index a4b32f478..000000000 Binary files a/files/23_1049.jpg and /dev/null differ diff --git a/files/23_1049.mp3 b/files/23_1049.mp3 deleted file mode 100644 index 543ebff4b..000000000 Binary files a/files/23_1049.mp3 and /dev/null differ diff --git a/files/23_1049_example.mp3 b/files/23_1049_example.mp3 deleted file mode 100644 index ccba049b4..000000000 Binary files a/files/23_1049_example.mp3 and /dev/null differ diff --git a/files/23_1049_meaning.mp3 b/files/23_1049_meaning.mp3 deleted file mode 100644 index 2678e6219..000000000 Binary files a/files/23_1049_meaning.mp3 and /dev/null differ diff --git a/files/23_1050.jpg b/files/23_1050.jpg deleted file mode 100644 index 67fbd528d..000000000 Binary files a/files/23_1050.jpg and /dev/null differ diff --git a/files/23_1050.mp3 b/files/23_1050.mp3 deleted file mode 100644 index a8acd3ac7..000000000 Binary files a/files/23_1050.mp3 and /dev/null differ diff --git a/files/23_1050_example.mp3 b/files/23_1050_example.mp3 deleted file mode 100644 index 943cd9720..000000000 Binary files a/files/23_1050_example.mp3 and /dev/null differ diff --git a/files/23_1050_meaning.mp3 b/files/23_1050_meaning.mp3 deleted file mode 100644 index ef491739d..000000000 Binary files a/files/23_1050_meaning.mp3 and /dev/null differ diff --git a/files/23_1051.jpg b/files/23_1051.jpg deleted file mode 100644 index 1cc93baf5..000000000 Binary files a/files/23_1051.jpg and /dev/null differ diff --git a/files/23_1051.mp3 b/files/23_1051.mp3 deleted file mode 100644 index 7b59a4029..000000000 Binary files a/files/23_1051.mp3 and /dev/null differ diff --git a/files/23_1051_example.mp3 b/files/23_1051_example.mp3 deleted file mode 100644 index cd8f08028..000000000 Binary files a/files/23_1051_example.mp3 and /dev/null differ diff --git a/files/23_1051_meaning.mp3 b/files/23_1051_meaning.mp3 deleted file mode 100644 index c38983adb..000000000 Binary files a/files/23_1051_meaning.mp3 and /dev/null differ diff --git a/files/23_1052.jpg b/files/23_1052.jpg deleted file mode 100644 index 076783b5c..000000000 Binary files a/files/23_1052.jpg and /dev/null differ diff --git a/files/23_1052.mp3 b/files/23_1052.mp3 deleted file mode 100644 index c0e2314ea..000000000 Binary files a/files/23_1052.mp3 and /dev/null differ diff --git a/files/23_1052_example.mp3 b/files/23_1052_example.mp3 deleted file mode 100644 index c3b136492..000000000 Binary files a/files/23_1052_example.mp3 and /dev/null differ diff --git a/files/23_1052_meaning.mp3 b/files/23_1052_meaning.mp3 deleted file mode 100644 index fb2919229..000000000 Binary files a/files/23_1052_meaning.mp3 and /dev/null differ diff --git a/files/23_1053.jpg b/files/23_1053.jpg deleted file mode 100644 index 07c6e5845..000000000 Binary files a/files/23_1053.jpg and /dev/null differ diff --git a/files/23_1053.mp3 b/files/23_1053.mp3 deleted file mode 100644 index d8d13f25f..000000000 Binary files a/files/23_1053.mp3 and /dev/null differ diff --git a/files/23_1053_example.mp3 b/files/23_1053_example.mp3 deleted file mode 100644 index 29924da9b..000000000 Binary files a/files/23_1053_example.mp3 and /dev/null differ diff --git a/files/23_1053_meaning.mp3 b/files/23_1053_meaning.mp3 deleted file mode 100644 index 4e36e33b7..000000000 Binary files a/files/23_1053_meaning.mp3 and /dev/null differ diff --git a/files/23_1054.jpg b/files/23_1054.jpg deleted file mode 100644 index 1f94d0208..000000000 Binary files a/files/23_1054.jpg and /dev/null differ diff --git a/files/23_1054.mp3 b/files/23_1054.mp3 deleted file mode 100644 index 2d633dc63..000000000 Binary files a/files/23_1054.mp3 and /dev/null differ diff --git a/files/23_1054_example.mp3 b/files/23_1054_example.mp3 deleted file mode 100644 index 00c3d5f69..000000000 Binary files a/files/23_1054_example.mp3 and /dev/null differ diff --git a/files/23_1054_meaning.mp3 b/files/23_1054_meaning.mp3 deleted file mode 100644 index ed98b3bae..000000000 Binary files a/files/23_1054_meaning.mp3 and /dev/null differ diff --git a/files/23_1055.jpg b/files/23_1055.jpg deleted file mode 100644 index 0568db9b8..000000000 Binary files a/files/23_1055.jpg and /dev/null differ diff --git a/files/23_1055.mp3 b/files/23_1055.mp3 deleted file mode 100644 index b29262410..000000000 Binary files a/files/23_1055.mp3 and /dev/null differ diff --git a/files/23_1055_example.mp3 b/files/23_1055_example.mp3 deleted file mode 100644 index add568dac..000000000 Binary files a/files/23_1055_example.mp3 and /dev/null differ diff --git a/files/23_1055_meaning.mp3 b/files/23_1055_meaning.mp3 deleted file mode 100644 index c5cf9f207..000000000 Binary files a/files/23_1055_meaning.mp3 and /dev/null differ diff --git a/files/23_1056.jpg b/files/23_1056.jpg deleted file mode 100644 index ffde741f3..000000000 Binary files a/files/23_1056.jpg and /dev/null differ diff --git a/files/23_1056.mp3 b/files/23_1056.mp3 deleted file mode 100644 index 554a134d9..000000000 Binary files a/files/23_1056.mp3 and /dev/null differ diff --git a/files/23_1056_example.mp3 b/files/23_1056_example.mp3 deleted file mode 100644 index 03c63ea8d..000000000 Binary files a/files/23_1056_example.mp3 and /dev/null differ diff --git a/files/23_1056_meaning.mp3 b/files/23_1056_meaning.mp3 deleted file mode 100644 index 40796c9f7..000000000 Binary files a/files/23_1056_meaning.mp3 and /dev/null differ diff --git a/files/23_1057.jpg b/files/23_1057.jpg deleted file mode 100644 index d92548136..000000000 Binary files a/files/23_1057.jpg and /dev/null differ diff --git a/files/23_1057.mp3 b/files/23_1057.mp3 deleted file mode 100644 index ce68ec01c..000000000 Binary files a/files/23_1057.mp3 and /dev/null differ diff --git a/files/23_1057_example.mp3 b/files/23_1057_example.mp3 deleted file mode 100644 index 53d079e32..000000000 Binary files a/files/23_1057_example.mp3 and /dev/null differ diff --git a/files/23_1057_meaning.mp3 b/files/23_1057_meaning.mp3 deleted file mode 100644 index 57ce6f9c1..000000000 Binary files a/files/23_1057_meaning.mp3 and /dev/null differ diff --git a/files/23_1058.jpg b/files/23_1058.jpg deleted file mode 100644 index 3014cafc3..000000000 Binary files a/files/23_1058.jpg and /dev/null differ diff --git a/files/23_1058.mp3 b/files/23_1058.mp3 deleted file mode 100644 index ccb53b84f..000000000 Binary files a/files/23_1058.mp3 and /dev/null differ diff --git a/files/23_1058_example.mp3 b/files/23_1058_example.mp3 deleted file mode 100644 index 8e55adcb9..000000000 Binary files a/files/23_1058_example.mp3 and /dev/null differ diff --git a/files/23_1058_meaning.mp3 b/files/23_1058_meaning.mp3 deleted file mode 100644 index 41fc5e0c2..000000000 Binary files a/files/23_1058_meaning.mp3 and /dev/null differ diff --git a/files/23_1059.jpg b/files/23_1059.jpg deleted file mode 100644 index 636c335ac..000000000 Binary files a/files/23_1059.jpg and /dev/null differ diff --git a/files/23_1059.mp3 b/files/23_1059.mp3 deleted file mode 100644 index 3b1791f48..000000000 Binary files a/files/23_1059.mp3 and /dev/null differ diff --git a/files/23_1059_example.mp3 b/files/23_1059_example.mp3 deleted file mode 100644 index b74052386..000000000 Binary files a/files/23_1059_example.mp3 and /dev/null differ diff --git a/files/23_1059_meaning.mp3 b/files/23_1059_meaning.mp3 deleted file mode 100644 index 6ce1a1f4a..000000000 Binary files a/files/23_1059_meaning.mp3 and /dev/null differ diff --git a/files/23_1060.jpg b/files/23_1060.jpg deleted file mode 100644 index 9aee61bdb..000000000 Binary files a/files/23_1060.jpg and /dev/null differ diff --git a/files/23_1060.mp3 b/files/23_1060.mp3 deleted file mode 100644 index 752ca0fb2..000000000 Binary files a/files/23_1060.mp3 and /dev/null differ diff --git a/files/23_1060_example.mp3 b/files/23_1060_example.mp3 deleted file mode 100644 index bef0e7c05..000000000 Binary files a/files/23_1060_example.mp3 and /dev/null differ diff --git a/files/23_1060_meaning.mp3 b/files/23_1060_meaning.mp3 deleted file mode 100644 index 7e7ec8b4e..000000000 Binary files a/files/23_1060_meaning.mp3 and /dev/null differ diff --git a/files/23_1641.jpg b/files/23_1641.jpg deleted file mode 100644 index 6bc30b03d..000000000 Binary files a/files/23_1641.jpg and /dev/null differ diff --git a/files/23_1641.mp3 b/files/23_1641.mp3 deleted file mode 100644 index 5c2801c87..000000000 Binary files a/files/23_1641.mp3 and /dev/null differ diff --git a/files/23_1641_example.mp3 b/files/23_1641_example.mp3 deleted file mode 100644 index 56ccb9e84..000000000 Binary files a/files/23_1641_example.mp3 and /dev/null differ diff --git a/files/23_1641_meaning.mp3 b/files/23_1641_meaning.mp3 deleted file mode 100644 index e4198540b..000000000 Binary files a/files/23_1641_meaning.mp3 and /dev/null differ diff --git a/files/23_1642.jpg b/files/23_1642.jpg deleted file mode 100644 index 924139de4..000000000 Binary files a/files/23_1642.jpg and /dev/null differ diff --git a/files/23_1642.mp3 b/files/23_1642.mp3 deleted file mode 100644 index 4954270b9..000000000 Binary files a/files/23_1642.mp3 and /dev/null differ diff --git a/files/23_1642_example.mp3 b/files/23_1642_example.mp3 deleted file mode 100644 index 93da67425..000000000 Binary files a/files/23_1642_example.mp3 and /dev/null differ diff --git a/files/23_1642_meaning.mp3 b/files/23_1642_meaning.mp3 deleted file mode 100644 index d52fddf95..000000000 Binary files a/files/23_1642_meaning.mp3 and /dev/null differ diff --git a/files/23_1643.jpg b/files/23_1643.jpg deleted file mode 100644 index 4fe132107..000000000 Binary files a/files/23_1643.jpg and /dev/null differ diff --git a/files/23_1643.mp3 b/files/23_1643.mp3 deleted file mode 100644 index 088fcc1d8..000000000 Binary files a/files/23_1643.mp3 and /dev/null differ diff --git a/files/23_1643_example.mp3 b/files/23_1643_example.mp3 deleted file mode 100644 index cd07a6f52..000000000 Binary files a/files/23_1643_example.mp3 and /dev/null differ diff --git a/files/23_1643_meaning.mp3 b/files/23_1643_meaning.mp3 deleted file mode 100644 index c32ac3029..000000000 Binary files a/files/23_1643_meaning.mp3 and /dev/null differ diff --git a/files/23_1644.jpg b/files/23_1644.jpg deleted file mode 100644 index ee5aff9f6..000000000 Binary files a/files/23_1644.jpg and /dev/null differ diff --git a/files/23_1644.mp3 b/files/23_1644.mp3 deleted file mode 100644 index 51f4cf043..000000000 Binary files a/files/23_1644.mp3 and /dev/null differ diff --git a/files/23_1644_example.mp3 b/files/23_1644_example.mp3 deleted file mode 100644 index 8b9b469bd..000000000 Binary files a/files/23_1644_example.mp3 and /dev/null differ diff --git a/files/23_1644_meaning.mp3 b/files/23_1644_meaning.mp3 deleted file mode 100644 index 312a4ef55..000000000 Binary files a/files/23_1644_meaning.mp3 and /dev/null differ diff --git a/files/23_1645.jpg b/files/23_1645.jpg deleted file mode 100644 index e16f53e1b..000000000 Binary files a/files/23_1645.jpg and /dev/null differ diff --git a/files/23_1645.mp3 b/files/23_1645.mp3 deleted file mode 100644 index 74f7fb9a0..000000000 Binary files a/files/23_1645.mp3 and /dev/null differ diff --git a/files/23_1645_example.mp3 b/files/23_1645_example.mp3 deleted file mode 100644 index aa5abddb4..000000000 Binary files a/files/23_1645_example.mp3 and /dev/null differ diff --git a/files/23_1645_meaning.mp3 b/files/23_1645_meaning.mp3 deleted file mode 100644 index 469a662cb..000000000 Binary files a/files/23_1645_meaning.mp3 and /dev/null differ diff --git a/files/23_1646.jpg b/files/23_1646.jpg deleted file mode 100644 index 7f193124f..000000000 Binary files a/files/23_1646.jpg and /dev/null differ diff --git a/files/23_1646.mp3 b/files/23_1646.mp3 deleted file mode 100644 index 4bfaef1b7..000000000 Binary files a/files/23_1646.mp3 and /dev/null differ diff --git a/files/23_1646_example.mp3 b/files/23_1646_example.mp3 deleted file mode 100644 index a6d88c653..000000000 Binary files a/files/23_1646_example.mp3 and /dev/null differ diff --git a/files/23_1646_meaning.mp3 b/files/23_1646_meaning.mp3 deleted file mode 100644 index 4b39a01f2..000000000 Binary files a/files/23_1646_meaning.mp3 and /dev/null differ diff --git a/files/23_1647.jpg b/files/23_1647.jpg deleted file mode 100644 index 1dcbe0095..000000000 Binary files a/files/23_1647.jpg and /dev/null differ diff --git a/files/23_1647.mp3 b/files/23_1647.mp3 deleted file mode 100644 index d47a67873..000000000 Binary files a/files/23_1647.mp3 and /dev/null differ diff --git a/files/23_1647_example.mp3 b/files/23_1647_example.mp3 deleted file mode 100644 index b3a17fe88..000000000 Binary files a/files/23_1647_example.mp3 and /dev/null differ diff --git a/files/23_1647_meaning.mp3 b/files/23_1647_meaning.mp3 deleted file mode 100644 index 78d7e4f4a..000000000 Binary files a/files/23_1647_meaning.mp3 and /dev/null differ diff --git a/files/23_1648.jpg b/files/23_1648.jpg deleted file mode 100644 index 3285f5350..000000000 Binary files a/files/23_1648.jpg and /dev/null differ diff --git a/files/23_1648.mp3 b/files/23_1648.mp3 deleted file mode 100644 index 2203ae6b4..000000000 Binary files a/files/23_1648.mp3 and /dev/null differ diff --git a/files/23_1648_example.mp3 b/files/23_1648_example.mp3 deleted file mode 100644 index 5dbf254b4..000000000 Binary files a/files/23_1648_example.mp3 and /dev/null differ diff --git a/files/23_1648_meaning.mp3 b/files/23_1648_meaning.mp3 deleted file mode 100644 index c6a0636f5..000000000 Binary files a/files/23_1648_meaning.mp3 and /dev/null differ diff --git a/files/23_1649.jpg b/files/23_1649.jpg deleted file mode 100644 index 77a6633f5..000000000 Binary files a/files/23_1649.jpg and /dev/null differ diff --git a/files/23_1649.mp3 b/files/23_1649.mp3 deleted file mode 100644 index 92f60a7ed..000000000 Binary files a/files/23_1649.mp3 and /dev/null differ diff --git a/files/23_1649_example.mp3 b/files/23_1649_example.mp3 deleted file mode 100644 index 9e6d0085c..000000000 Binary files a/files/23_1649_example.mp3 and /dev/null differ diff --git a/files/23_1649_meaning.mp3 b/files/23_1649_meaning.mp3 deleted file mode 100644 index ca1cbc7e6..000000000 Binary files a/files/23_1649_meaning.mp3 and /dev/null differ diff --git a/files/23_1650.jpg b/files/23_1650.jpg deleted file mode 100644 index aa8d5c30d..000000000 Binary files a/files/23_1650.jpg and /dev/null differ diff --git a/files/23_1650.mp3 b/files/23_1650.mp3 deleted file mode 100644 index 8b66fe405..000000000 Binary files a/files/23_1650.mp3 and /dev/null differ diff --git a/files/23_1650_example.mp3 b/files/23_1650_example.mp3 deleted file mode 100644 index 59faa11d0..000000000 Binary files a/files/23_1650_example.mp3 and /dev/null differ diff --git a/files/23_1650_meaning.mp3 b/files/23_1650_meaning.mp3 deleted file mode 100644 index 455034c9a..000000000 Binary files a/files/23_1650_meaning.mp3 and /dev/null differ diff --git a/files/23_1651.jpg b/files/23_1651.jpg deleted file mode 100644 index 6a2446cb6..000000000 Binary files a/files/23_1651.jpg and /dev/null differ diff --git a/files/23_1651.mp3 b/files/23_1651.mp3 deleted file mode 100644 index 10049ae02..000000000 Binary files a/files/23_1651.mp3 and /dev/null differ diff --git a/files/23_1651_example.mp3 b/files/23_1651_example.mp3 deleted file mode 100644 index 85ecd4598..000000000 Binary files a/files/23_1651_example.mp3 and /dev/null differ diff --git a/files/23_1651_meaning.mp3 b/files/23_1651_meaning.mp3 deleted file mode 100644 index 8cb9b5354..000000000 Binary files a/files/23_1651_meaning.mp3 and /dev/null differ diff --git a/files/23_1652.jpg b/files/23_1652.jpg deleted file mode 100644 index 7e21f529a..000000000 Binary files a/files/23_1652.jpg and /dev/null differ diff --git a/files/23_1652.mp3 b/files/23_1652.mp3 deleted file mode 100644 index 79c7b4ab3..000000000 Binary files a/files/23_1652.mp3 and /dev/null differ diff --git a/files/23_1652_example.mp3 b/files/23_1652_example.mp3 deleted file mode 100644 index 87a5e4932..000000000 Binary files a/files/23_1652_example.mp3 and /dev/null differ diff --git a/files/23_1652_meaning.mp3 b/files/23_1652_meaning.mp3 deleted file mode 100644 index 05f89c061..000000000 Binary files a/files/23_1652_meaning.mp3 and /dev/null differ diff --git a/files/23_1653.jpg b/files/23_1653.jpg deleted file mode 100644 index 5e53db22f..000000000 Binary files a/files/23_1653.jpg and /dev/null differ diff --git a/files/23_1653.mp3 b/files/23_1653.mp3 deleted file mode 100644 index daa383f9e..000000000 Binary files a/files/23_1653.mp3 and /dev/null differ diff --git a/files/23_1653_example.mp3 b/files/23_1653_example.mp3 deleted file mode 100644 index 1515f59ed..000000000 Binary files a/files/23_1653_example.mp3 and /dev/null differ diff --git a/files/23_1653_meaning.mp3 b/files/23_1653_meaning.mp3 deleted file mode 100644 index 8119dc1ab..000000000 Binary files a/files/23_1653_meaning.mp3 and /dev/null differ diff --git a/files/23_1654.jpg b/files/23_1654.jpg deleted file mode 100644 index 03aa8ad27..000000000 Binary files a/files/23_1654.jpg and /dev/null differ diff --git a/files/23_1654.mp3 b/files/23_1654.mp3 deleted file mode 100644 index dd03ff417..000000000 Binary files a/files/23_1654.mp3 and /dev/null differ diff --git a/files/23_1654_example.mp3 b/files/23_1654_example.mp3 deleted file mode 100644 index 85fcde7e5..000000000 Binary files a/files/23_1654_example.mp3 and /dev/null differ diff --git a/files/23_1654_meaning.mp3 b/files/23_1654_meaning.mp3 deleted file mode 100644 index 838feaa4c..000000000 Binary files a/files/23_1654_meaning.mp3 and /dev/null differ diff --git a/files/23_1655.jpg b/files/23_1655.jpg deleted file mode 100644 index d0b3efcaf..000000000 Binary files a/files/23_1655.jpg and /dev/null differ diff --git a/files/23_1655.mp3 b/files/23_1655.mp3 deleted file mode 100644 index bde92ae03..000000000 Binary files a/files/23_1655.mp3 and /dev/null differ diff --git a/files/23_1655_example.mp3 b/files/23_1655_example.mp3 deleted file mode 100644 index 9f50957b3..000000000 Binary files a/files/23_1655_example.mp3 and /dev/null differ diff --git a/files/23_1655_meaning.mp3 b/files/23_1655_meaning.mp3 deleted file mode 100644 index 4e44aa443..000000000 Binary files a/files/23_1655_meaning.mp3 and /dev/null differ diff --git a/files/23_1656.jpg b/files/23_1656.jpg deleted file mode 100644 index 2faa55840..000000000 Binary files a/files/23_1656.jpg and /dev/null differ diff --git a/files/23_1656.mp3 b/files/23_1656.mp3 deleted file mode 100644 index 9f3a118f4..000000000 Binary files a/files/23_1656.mp3 and /dev/null differ diff --git a/files/23_1656_example.mp3 b/files/23_1656_example.mp3 deleted file mode 100644 index 9c2cc791e..000000000 Binary files a/files/23_1656_example.mp3 and /dev/null differ diff --git a/files/23_1656_meaning.mp3 b/files/23_1656_meaning.mp3 deleted file mode 100644 index 28683e5e6..000000000 Binary files a/files/23_1656_meaning.mp3 and /dev/null differ diff --git a/files/23_1657.jpg b/files/23_1657.jpg deleted file mode 100644 index 91dbf354c..000000000 Binary files a/files/23_1657.jpg and /dev/null differ diff --git a/files/23_1657.mp3 b/files/23_1657.mp3 deleted file mode 100644 index 0cd54835d..000000000 Binary files a/files/23_1657.mp3 and /dev/null differ diff --git a/files/23_1657_example.mp3 b/files/23_1657_example.mp3 deleted file mode 100644 index 0fbd24327..000000000 Binary files a/files/23_1657_example.mp3 and /dev/null differ diff --git a/files/23_1657_meaning.mp3 b/files/23_1657_meaning.mp3 deleted file mode 100644 index 6c5f99679..000000000 Binary files a/files/23_1657_meaning.mp3 and /dev/null differ diff --git a/files/23_1658.jpg b/files/23_1658.jpg deleted file mode 100644 index 274ca91b8..000000000 Binary files a/files/23_1658.jpg and /dev/null differ diff --git a/files/23_1658.mp3 b/files/23_1658.mp3 deleted file mode 100644 index d57c1672d..000000000 Binary files a/files/23_1658.mp3 and /dev/null differ diff --git a/files/23_1658_example.mp3 b/files/23_1658_example.mp3 deleted file mode 100644 index 8d9c32a76..000000000 Binary files a/files/23_1658_example.mp3 and /dev/null differ diff --git a/files/23_1658_meaning.mp3 b/files/23_1658_meaning.mp3 deleted file mode 100644 index a2031f9ca..000000000 Binary files a/files/23_1658_meaning.mp3 and /dev/null differ diff --git a/files/23_1659.jpg b/files/23_1659.jpg deleted file mode 100644 index ee575031a..000000000 Binary files a/files/23_1659.jpg and /dev/null differ diff --git a/files/23_1659.mp3 b/files/23_1659.mp3 deleted file mode 100644 index c0b2fdb6f..000000000 Binary files a/files/23_1659.mp3 and /dev/null differ diff --git a/files/23_1659_example.mp3 b/files/23_1659_example.mp3 deleted file mode 100644 index 38eb2ddd3..000000000 Binary files a/files/23_1659_example.mp3 and /dev/null differ diff --git a/files/23_1659_meaning.mp3 b/files/23_1659_meaning.mp3 deleted file mode 100644 index d82c022cf..000000000 Binary files a/files/23_1659_meaning.mp3 and /dev/null differ diff --git a/files/23_1660.jpg b/files/23_1660.jpg deleted file mode 100644 index c4219d0a3..000000000 Binary files a/files/23_1660.jpg and /dev/null differ diff --git a/files/23_1660.mp3 b/files/23_1660.mp3 deleted file mode 100644 index 52b1e956f..000000000 Binary files a/files/23_1660.mp3 and /dev/null differ diff --git a/files/23_1660_example.mp3 b/files/23_1660_example.mp3 deleted file mode 100644 index f2e85605a..000000000 Binary files a/files/23_1660_example.mp3 and /dev/null differ diff --git a/files/23_1660_meaning.mp3 b/files/23_1660_meaning.mp3 deleted file mode 100644 index 5d1851fb8..000000000 Binary files a/files/23_1660_meaning.mp3 and /dev/null differ diff --git a/files/23_2241.jpg b/files/23_2241.jpg deleted file mode 100644 index e47ac1a82..000000000 Binary files a/files/23_2241.jpg and /dev/null differ diff --git a/files/23_2241.mp3 b/files/23_2241.mp3 deleted file mode 100644 index c199c68c8..000000000 Binary files a/files/23_2241.mp3 and /dev/null differ diff --git a/files/23_2241_example.mp3 b/files/23_2241_example.mp3 deleted file mode 100644 index 2f89eeb74..000000000 Binary files a/files/23_2241_example.mp3 and /dev/null differ diff --git a/files/23_2241_meaning.mp3 b/files/23_2241_meaning.mp3 deleted file mode 100644 index ddd3246d8..000000000 Binary files a/files/23_2241_meaning.mp3 and /dev/null differ diff --git a/files/23_2242.jpg b/files/23_2242.jpg deleted file mode 100644 index 181a1072c..000000000 Binary files a/files/23_2242.jpg and /dev/null differ diff --git a/files/23_2242.mp3 b/files/23_2242.mp3 deleted file mode 100644 index 045397a69..000000000 Binary files a/files/23_2242.mp3 and /dev/null differ diff --git a/files/23_2242_example.mp3 b/files/23_2242_example.mp3 deleted file mode 100644 index 9156eef3b..000000000 Binary files a/files/23_2242_example.mp3 and /dev/null differ diff --git a/files/23_2242_meaning.mp3 b/files/23_2242_meaning.mp3 deleted file mode 100644 index 7ceb9c91a..000000000 Binary files a/files/23_2242_meaning.mp3 and /dev/null differ diff --git a/files/23_2243.jpg b/files/23_2243.jpg deleted file mode 100644 index 2c2268257..000000000 Binary files a/files/23_2243.jpg and /dev/null differ diff --git a/files/23_2243.mp3 b/files/23_2243.mp3 deleted file mode 100644 index 88ddc92b8..000000000 Binary files a/files/23_2243.mp3 and /dev/null differ diff --git a/files/23_2243_example.mp3 b/files/23_2243_example.mp3 deleted file mode 100644 index 7e5658798..000000000 Binary files a/files/23_2243_example.mp3 and /dev/null differ diff --git a/files/23_2243_meaning.mp3 b/files/23_2243_meaning.mp3 deleted file mode 100644 index a4976261e..000000000 Binary files a/files/23_2243_meaning.mp3 and /dev/null differ diff --git a/files/23_2244.jpg b/files/23_2244.jpg deleted file mode 100644 index f35814acf..000000000 Binary files a/files/23_2244.jpg and /dev/null differ diff --git a/files/23_2244.mp3 b/files/23_2244.mp3 deleted file mode 100644 index dbedfa32a..000000000 Binary files a/files/23_2244.mp3 and /dev/null differ diff --git a/files/23_2244_example.mp3 b/files/23_2244_example.mp3 deleted file mode 100644 index cc6e54240..000000000 Binary files a/files/23_2244_example.mp3 and /dev/null differ diff --git a/files/23_2244_meaning.mp3 b/files/23_2244_meaning.mp3 deleted file mode 100644 index a0390fef3..000000000 Binary files a/files/23_2244_meaning.mp3 and /dev/null differ diff --git a/files/23_2245.jpg b/files/23_2245.jpg deleted file mode 100644 index 3cd4a7e16..000000000 Binary files a/files/23_2245.jpg and /dev/null differ diff --git a/files/23_2245.mp3 b/files/23_2245.mp3 deleted file mode 100644 index 773b5b3b0..000000000 Binary files a/files/23_2245.mp3 and /dev/null differ diff --git a/files/23_2245_example.mp3 b/files/23_2245_example.mp3 deleted file mode 100644 index 69e407960..000000000 Binary files a/files/23_2245_example.mp3 and /dev/null differ diff --git a/files/23_2245_meaning.mp3 b/files/23_2245_meaning.mp3 deleted file mode 100644 index f21cb559f..000000000 Binary files a/files/23_2245_meaning.mp3 and /dev/null differ diff --git a/files/23_2246.jpg b/files/23_2246.jpg deleted file mode 100644 index 076f124d4..000000000 Binary files a/files/23_2246.jpg and /dev/null differ diff --git a/files/23_2246.mp3 b/files/23_2246.mp3 deleted file mode 100644 index 42908db9d..000000000 Binary files a/files/23_2246.mp3 and /dev/null differ diff --git a/files/23_2246_example.mp3 b/files/23_2246_example.mp3 deleted file mode 100644 index 70fd055ca..000000000 Binary files a/files/23_2246_example.mp3 and /dev/null differ diff --git a/files/23_2246_meaning.mp3 b/files/23_2246_meaning.mp3 deleted file mode 100644 index 5c0df90bf..000000000 Binary files a/files/23_2246_meaning.mp3 and /dev/null differ diff --git a/files/23_2247.jpg b/files/23_2247.jpg deleted file mode 100644 index 011fc6835..000000000 Binary files a/files/23_2247.jpg and /dev/null differ diff --git a/files/23_2247.mp3 b/files/23_2247.mp3 deleted file mode 100644 index 089f9cb2e..000000000 Binary files a/files/23_2247.mp3 and /dev/null differ diff --git a/files/23_2247_example.mp3 b/files/23_2247_example.mp3 deleted file mode 100644 index d5fa47fec..000000000 Binary files a/files/23_2247_example.mp3 and /dev/null differ diff --git a/files/23_2247_meaning.mp3 b/files/23_2247_meaning.mp3 deleted file mode 100644 index 261ff8081..000000000 Binary files a/files/23_2247_meaning.mp3 and /dev/null differ diff --git a/files/23_2248.jpg b/files/23_2248.jpg deleted file mode 100644 index f05638710..000000000 Binary files a/files/23_2248.jpg and /dev/null differ diff --git a/files/23_2248.mp3 b/files/23_2248.mp3 deleted file mode 100644 index e5e9c115a..000000000 Binary files a/files/23_2248.mp3 and /dev/null differ diff --git a/files/23_2248_example.mp3 b/files/23_2248_example.mp3 deleted file mode 100644 index bc6d6c8a6..000000000 Binary files a/files/23_2248_example.mp3 and /dev/null differ diff --git a/files/23_2248_meaning.mp3 b/files/23_2248_meaning.mp3 deleted file mode 100644 index 91f738ccd..000000000 Binary files a/files/23_2248_meaning.mp3 and /dev/null differ diff --git a/files/23_2249.jpg b/files/23_2249.jpg deleted file mode 100644 index 42b1c7460..000000000 Binary files a/files/23_2249.jpg and /dev/null differ diff --git a/files/23_2249.mp3 b/files/23_2249.mp3 deleted file mode 100644 index ea9b27457..000000000 Binary files a/files/23_2249.mp3 and /dev/null differ diff --git a/files/23_2249_example.mp3 b/files/23_2249_example.mp3 deleted file mode 100644 index c9e6e15c0..000000000 Binary files a/files/23_2249_example.mp3 and /dev/null differ diff --git a/files/23_2249_meaning.mp3 b/files/23_2249_meaning.mp3 deleted file mode 100644 index c43dd6d65..000000000 Binary files a/files/23_2249_meaning.mp3 and /dev/null differ diff --git a/files/23_2250.jpg b/files/23_2250.jpg deleted file mode 100644 index f4860f20a..000000000 Binary files a/files/23_2250.jpg and /dev/null differ diff --git a/files/23_2250.mp3 b/files/23_2250.mp3 deleted file mode 100644 index 518e8e7f5..000000000 Binary files a/files/23_2250.mp3 and /dev/null differ diff --git a/files/23_2250_example.mp3 b/files/23_2250_example.mp3 deleted file mode 100644 index 8d54af46a..000000000 Binary files a/files/23_2250_example.mp3 and /dev/null differ diff --git a/files/23_2250_meaning.mp3 b/files/23_2250_meaning.mp3 deleted file mode 100644 index 661e17d2c..000000000 Binary files a/files/23_2250_meaning.mp3 and /dev/null differ diff --git a/files/23_2251.jpg b/files/23_2251.jpg deleted file mode 100644 index dd951a2cf..000000000 Binary files a/files/23_2251.jpg and /dev/null differ diff --git a/files/23_2251.mp3 b/files/23_2251.mp3 deleted file mode 100644 index 5decadbf0..000000000 Binary files a/files/23_2251.mp3 and /dev/null differ diff --git a/files/23_2251_example.mp3 b/files/23_2251_example.mp3 deleted file mode 100644 index 7bab7f4b9..000000000 Binary files a/files/23_2251_example.mp3 and /dev/null differ diff --git a/files/23_2251_meaning.mp3 b/files/23_2251_meaning.mp3 deleted file mode 100644 index d7e291910..000000000 Binary files a/files/23_2251_meaning.mp3 and /dev/null differ diff --git a/files/23_2252.jpg b/files/23_2252.jpg deleted file mode 100644 index 205bccd4c..000000000 Binary files a/files/23_2252.jpg and /dev/null differ diff --git a/files/23_2252.mp3 b/files/23_2252.mp3 deleted file mode 100644 index d376e32d3..000000000 Binary files a/files/23_2252.mp3 and /dev/null differ diff --git a/files/23_2252_example.mp3 b/files/23_2252_example.mp3 deleted file mode 100644 index 6e7fc85ae..000000000 Binary files a/files/23_2252_example.mp3 and /dev/null differ diff --git a/files/23_2252_meaning.mp3 b/files/23_2252_meaning.mp3 deleted file mode 100644 index 337c80746..000000000 Binary files a/files/23_2252_meaning.mp3 and /dev/null differ diff --git a/files/23_2253.jpg b/files/23_2253.jpg deleted file mode 100644 index 75c7cbed9..000000000 Binary files a/files/23_2253.jpg and /dev/null differ diff --git a/files/23_2253.mp3 b/files/23_2253.mp3 deleted file mode 100644 index 986ef9ff9..000000000 Binary files a/files/23_2253.mp3 and /dev/null differ diff --git a/files/23_2253_example.mp3 b/files/23_2253_example.mp3 deleted file mode 100644 index 0e8df2c79..000000000 Binary files a/files/23_2253_example.mp3 and /dev/null differ diff --git a/files/23_2253_meaning.mp3 b/files/23_2253_meaning.mp3 deleted file mode 100644 index 30c288639..000000000 Binary files a/files/23_2253_meaning.mp3 and /dev/null differ diff --git a/files/23_2254.jpg b/files/23_2254.jpg deleted file mode 100644 index 145389981..000000000 Binary files a/files/23_2254.jpg and /dev/null differ diff --git a/files/23_2254.mp3 b/files/23_2254.mp3 deleted file mode 100644 index fcb88af4c..000000000 Binary files a/files/23_2254.mp3 and /dev/null differ diff --git a/files/23_2254_example.mp3 b/files/23_2254_example.mp3 deleted file mode 100644 index 79bb44892..000000000 Binary files a/files/23_2254_example.mp3 and /dev/null differ diff --git a/files/23_2254_meaning.mp3 b/files/23_2254_meaning.mp3 deleted file mode 100644 index 5c115fe85..000000000 Binary files a/files/23_2254_meaning.mp3 and /dev/null differ diff --git a/files/23_2255.jpg b/files/23_2255.jpg deleted file mode 100644 index 02d3eb063..000000000 Binary files a/files/23_2255.jpg and /dev/null differ diff --git a/files/23_2255.mp3 b/files/23_2255.mp3 deleted file mode 100644 index 14b5fddbd..000000000 Binary files a/files/23_2255.mp3 and /dev/null differ diff --git a/files/23_2255_example.mp3 b/files/23_2255_example.mp3 deleted file mode 100644 index 299eb6d7d..000000000 Binary files a/files/23_2255_example.mp3 and /dev/null differ diff --git a/files/23_2255_meaning.mp3 b/files/23_2255_meaning.mp3 deleted file mode 100644 index 7107c7731..000000000 Binary files a/files/23_2255_meaning.mp3 and /dev/null differ diff --git a/files/23_2256.jpg b/files/23_2256.jpg deleted file mode 100644 index 971210476..000000000 Binary files a/files/23_2256.jpg and /dev/null differ diff --git a/files/23_2256.mp3 b/files/23_2256.mp3 deleted file mode 100644 index e5b1f5249..000000000 Binary files a/files/23_2256.mp3 and /dev/null differ diff --git a/files/23_2256_example.mp3 b/files/23_2256_example.mp3 deleted file mode 100644 index 31c00e14b..000000000 Binary files a/files/23_2256_example.mp3 and /dev/null differ diff --git a/files/23_2256_meaning.mp3 b/files/23_2256_meaning.mp3 deleted file mode 100644 index a81e47755..000000000 Binary files a/files/23_2256_meaning.mp3 and /dev/null differ diff --git a/files/23_2257.jpg b/files/23_2257.jpg deleted file mode 100644 index 2b9ba455d..000000000 Binary files a/files/23_2257.jpg and /dev/null differ diff --git a/files/23_2257.mp3 b/files/23_2257.mp3 deleted file mode 100644 index 3be281e8c..000000000 Binary files a/files/23_2257.mp3 and /dev/null differ diff --git a/files/23_2257_example.mp3 b/files/23_2257_example.mp3 deleted file mode 100644 index 61a6d9bab..000000000 Binary files a/files/23_2257_example.mp3 and /dev/null differ diff --git a/files/23_2257_meaning.mp3 b/files/23_2257_meaning.mp3 deleted file mode 100644 index 968bf7747..000000000 Binary files a/files/23_2257_meaning.mp3 and /dev/null differ diff --git a/files/23_2258.jpg b/files/23_2258.jpg deleted file mode 100644 index 982b2fbbe..000000000 Binary files a/files/23_2258.jpg and /dev/null differ diff --git a/files/23_2258.mp3 b/files/23_2258.mp3 deleted file mode 100644 index 309d365e9..000000000 Binary files a/files/23_2258.mp3 and /dev/null differ diff --git a/files/23_2258_example.mp3 b/files/23_2258_example.mp3 deleted file mode 100644 index 4b4f0906a..000000000 Binary files a/files/23_2258_example.mp3 and /dev/null differ diff --git a/files/23_2258_meaning.mp3 b/files/23_2258_meaning.mp3 deleted file mode 100644 index 4bb6ca7b8..000000000 Binary files a/files/23_2258_meaning.mp3 and /dev/null differ diff --git a/files/23_2259.jpg b/files/23_2259.jpg deleted file mode 100644 index 0c82bc0f6..000000000 Binary files a/files/23_2259.jpg and /dev/null differ diff --git a/files/23_2259.mp3 b/files/23_2259.mp3 deleted file mode 100644 index 62204157e..000000000 Binary files a/files/23_2259.mp3 and /dev/null differ diff --git a/files/23_2259_example.mp3 b/files/23_2259_example.mp3 deleted file mode 100644 index 19c70df0f..000000000 Binary files a/files/23_2259_example.mp3 and /dev/null differ diff --git a/files/23_2259_meaning.mp3 b/files/23_2259_meaning.mp3 deleted file mode 100644 index d9e2f9d37..000000000 Binary files a/files/23_2259_meaning.mp3 and /dev/null differ diff --git a/files/23_2260.jpg b/files/23_2260.jpg deleted file mode 100644 index 82a72d858..000000000 Binary files a/files/23_2260.jpg and /dev/null differ diff --git a/files/23_2260.mp3 b/files/23_2260.mp3 deleted file mode 100644 index 0abb92366..000000000 Binary files a/files/23_2260.mp3 and /dev/null differ diff --git a/files/23_2260_example.mp3 b/files/23_2260_example.mp3 deleted file mode 100644 index e1d6665dd..000000000 Binary files a/files/23_2260_example.mp3 and /dev/null differ diff --git a/files/23_2260_meaning.mp3 b/files/23_2260_meaning.mp3 deleted file mode 100644 index 671f08ff5..000000000 Binary files a/files/23_2260_meaning.mp3 and /dev/null differ diff --git a/files/23_2841.jpg b/files/23_2841.jpg deleted file mode 100644 index 3dad0a838..000000000 Binary files a/files/23_2841.jpg and /dev/null differ diff --git a/files/23_2841.mp3 b/files/23_2841.mp3 deleted file mode 100644 index 0e223346b..000000000 Binary files a/files/23_2841.mp3 and /dev/null differ diff --git a/files/23_2841_example.mp3 b/files/23_2841_example.mp3 deleted file mode 100644 index 454575e4e..000000000 Binary files a/files/23_2841_example.mp3 and /dev/null differ diff --git a/files/23_2841_meaning.mp3 b/files/23_2841_meaning.mp3 deleted file mode 100644 index 05f46614e..000000000 Binary files a/files/23_2841_meaning.mp3 and /dev/null differ diff --git a/files/23_2842.jpg b/files/23_2842.jpg deleted file mode 100644 index dcde16310..000000000 Binary files a/files/23_2842.jpg and /dev/null differ diff --git a/files/23_2842.mp3 b/files/23_2842.mp3 deleted file mode 100644 index 315d5e52a..000000000 Binary files a/files/23_2842.mp3 and /dev/null differ diff --git a/files/23_2842_example.mp3 b/files/23_2842_example.mp3 deleted file mode 100644 index 51768cf09..000000000 Binary files a/files/23_2842_example.mp3 and /dev/null differ diff --git a/files/23_2842_meaning.mp3 b/files/23_2842_meaning.mp3 deleted file mode 100644 index 91e958647..000000000 Binary files a/files/23_2842_meaning.mp3 and /dev/null differ diff --git a/files/23_2843.jpg b/files/23_2843.jpg deleted file mode 100644 index ff36e4051..000000000 Binary files a/files/23_2843.jpg and /dev/null differ diff --git a/files/23_2843.mp3 b/files/23_2843.mp3 deleted file mode 100644 index 55f7a3701..000000000 Binary files a/files/23_2843.mp3 and /dev/null differ diff --git a/files/23_2843_example.mp3 b/files/23_2843_example.mp3 deleted file mode 100644 index 2bb01f887..000000000 Binary files a/files/23_2843_example.mp3 and /dev/null differ diff --git a/files/23_2843_meaning.mp3 b/files/23_2843_meaning.mp3 deleted file mode 100644 index 80039ddfe..000000000 Binary files a/files/23_2843_meaning.mp3 and /dev/null differ diff --git a/files/23_2844.jpg b/files/23_2844.jpg deleted file mode 100644 index c734311ee..000000000 Binary files a/files/23_2844.jpg and /dev/null differ diff --git a/files/23_2844.mp3 b/files/23_2844.mp3 deleted file mode 100644 index a1e1b3303..000000000 Binary files a/files/23_2844.mp3 and /dev/null differ diff --git a/files/23_2844_example.mp3 b/files/23_2844_example.mp3 deleted file mode 100644 index 9b05c207e..000000000 Binary files a/files/23_2844_example.mp3 and /dev/null differ diff --git a/files/23_2844_meaning.mp3 b/files/23_2844_meaning.mp3 deleted file mode 100644 index 6a1496ea7..000000000 Binary files a/files/23_2844_meaning.mp3 and /dev/null differ diff --git a/files/23_2845.jpg b/files/23_2845.jpg deleted file mode 100644 index 4c8b44e94..000000000 Binary files a/files/23_2845.jpg and /dev/null differ diff --git a/files/23_2845.mp3 b/files/23_2845.mp3 deleted file mode 100644 index 362a94f92..000000000 Binary files a/files/23_2845.mp3 and /dev/null differ diff --git a/files/23_2845_example.mp3 b/files/23_2845_example.mp3 deleted file mode 100644 index 97a398330..000000000 Binary files a/files/23_2845_example.mp3 and /dev/null differ diff --git a/files/23_2845_meaning.mp3 b/files/23_2845_meaning.mp3 deleted file mode 100644 index e1fbfb677..000000000 Binary files a/files/23_2845_meaning.mp3 and /dev/null differ diff --git a/files/23_2846.jpg b/files/23_2846.jpg deleted file mode 100644 index 968c95e24..000000000 Binary files a/files/23_2846.jpg and /dev/null differ diff --git a/files/23_2846.mp3 b/files/23_2846.mp3 deleted file mode 100644 index 1925d76b0..000000000 Binary files a/files/23_2846.mp3 and /dev/null differ diff --git a/files/23_2846_example.mp3 b/files/23_2846_example.mp3 deleted file mode 100644 index 34914567c..000000000 Binary files a/files/23_2846_example.mp3 and /dev/null differ diff --git a/files/23_2846_meaning.mp3 b/files/23_2846_meaning.mp3 deleted file mode 100644 index 547aba80d..000000000 Binary files a/files/23_2846_meaning.mp3 and /dev/null differ diff --git a/files/23_2847.jpg b/files/23_2847.jpg deleted file mode 100644 index 42b7974e8..000000000 Binary files a/files/23_2847.jpg and /dev/null differ diff --git a/files/23_2847.mp3 b/files/23_2847.mp3 deleted file mode 100644 index 1fc3332b6..000000000 Binary files a/files/23_2847.mp3 and /dev/null differ diff --git a/files/23_2847_example.mp3 b/files/23_2847_example.mp3 deleted file mode 100644 index 65582b7d7..000000000 Binary files a/files/23_2847_example.mp3 and /dev/null differ diff --git a/files/23_2847_meaning.mp3 b/files/23_2847_meaning.mp3 deleted file mode 100644 index d08a5fd18..000000000 Binary files a/files/23_2847_meaning.mp3 and /dev/null differ diff --git a/files/23_2848.jpg b/files/23_2848.jpg deleted file mode 100644 index 37a3d6033..000000000 Binary files a/files/23_2848.jpg and /dev/null differ diff --git a/files/23_2848.mp3 b/files/23_2848.mp3 deleted file mode 100644 index 37f5ed8de..000000000 Binary files a/files/23_2848.mp3 and /dev/null differ diff --git a/files/23_2848_example.mp3 b/files/23_2848_example.mp3 deleted file mode 100644 index d87125cbf..000000000 Binary files a/files/23_2848_example.mp3 and /dev/null differ diff --git a/files/23_2848_meaning.mp3 b/files/23_2848_meaning.mp3 deleted file mode 100644 index c228d6f55..000000000 Binary files a/files/23_2848_meaning.mp3 and /dev/null differ diff --git a/files/23_2849.jpg b/files/23_2849.jpg deleted file mode 100644 index a384e0b89..000000000 Binary files a/files/23_2849.jpg and /dev/null differ diff --git a/files/23_2849.mp3 b/files/23_2849.mp3 deleted file mode 100644 index 52409d75f..000000000 Binary files a/files/23_2849.mp3 and /dev/null differ diff --git a/files/23_2849_example.mp3 b/files/23_2849_example.mp3 deleted file mode 100644 index e2b7d22fb..000000000 Binary files a/files/23_2849_example.mp3 and /dev/null differ diff --git a/files/23_2849_meaning.mp3 b/files/23_2849_meaning.mp3 deleted file mode 100644 index f1f656cda..000000000 Binary files a/files/23_2849_meaning.mp3 and /dev/null differ diff --git a/files/23_2850.jpg b/files/23_2850.jpg deleted file mode 100644 index bf9d54d7b..000000000 Binary files a/files/23_2850.jpg and /dev/null differ diff --git a/files/23_2850.mp3 b/files/23_2850.mp3 deleted file mode 100644 index 3ed3f86fb..000000000 Binary files a/files/23_2850.mp3 and /dev/null differ diff --git a/files/23_2850_example.mp3 b/files/23_2850_example.mp3 deleted file mode 100644 index 1f92d360c..000000000 Binary files a/files/23_2850_example.mp3 and /dev/null differ diff --git a/files/23_2850_meaning.mp3 b/files/23_2850_meaning.mp3 deleted file mode 100644 index 250a98bdb..000000000 Binary files a/files/23_2850_meaning.mp3 and /dev/null differ diff --git a/files/23_2851.jpg b/files/23_2851.jpg deleted file mode 100644 index 128767fde..000000000 Binary files a/files/23_2851.jpg and /dev/null differ diff --git a/files/23_2851.mp3 b/files/23_2851.mp3 deleted file mode 100644 index a669a63d0..000000000 Binary files a/files/23_2851.mp3 and /dev/null differ diff --git a/files/23_2851_example.mp3 b/files/23_2851_example.mp3 deleted file mode 100644 index 82c7d79bb..000000000 Binary files a/files/23_2851_example.mp3 and /dev/null differ diff --git a/files/23_2851_meaning.mp3 b/files/23_2851_meaning.mp3 deleted file mode 100644 index 156a5bfdf..000000000 Binary files a/files/23_2851_meaning.mp3 and /dev/null differ diff --git a/files/23_2852.jpg b/files/23_2852.jpg deleted file mode 100644 index e37e1b8ad..000000000 Binary files a/files/23_2852.jpg and /dev/null differ diff --git a/files/23_2852.mp3 b/files/23_2852.mp3 deleted file mode 100644 index fa9dd6f00..000000000 Binary files a/files/23_2852.mp3 and /dev/null differ diff --git a/files/23_2852_example.mp3 b/files/23_2852_example.mp3 deleted file mode 100644 index 4d92e42a5..000000000 Binary files a/files/23_2852_example.mp3 and /dev/null differ diff --git a/files/23_2852_meaning.mp3 b/files/23_2852_meaning.mp3 deleted file mode 100644 index dfb3c66ad..000000000 Binary files a/files/23_2852_meaning.mp3 and /dev/null differ diff --git a/files/23_2853.jpg b/files/23_2853.jpg deleted file mode 100644 index b72982ea7..000000000 Binary files a/files/23_2853.jpg and /dev/null differ diff --git a/files/23_2853.mp3 b/files/23_2853.mp3 deleted file mode 100644 index b55b4b2d7..000000000 Binary files a/files/23_2853.mp3 and /dev/null differ diff --git a/files/23_2853_example.mp3 b/files/23_2853_example.mp3 deleted file mode 100644 index f882dcf92..000000000 Binary files a/files/23_2853_example.mp3 and /dev/null differ diff --git a/files/23_2853_meaning.mp3 b/files/23_2853_meaning.mp3 deleted file mode 100644 index b87db3879..000000000 Binary files a/files/23_2853_meaning.mp3 and /dev/null differ diff --git a/files/23_2854.jpg b/files/23_2854.jpg deleted file mode 100644 index b780e7a19..000000000 Binary files a/files/23_2854.jpg and /dev/null differ diff --git a/files/23_2854.mp3 b/files/23_2854.mp3 deleted file mode 100644 index 4d585f4e4..000000000 Binary files a/files/23_2854.mp3 and /dev/null differ diff --git a/files/23_2854_example.mp3 b/files/23_2854_example.mp3 deleted file mode 100644 index 493579a4a..000000000 Binary files a/files/23_2854_example.mp3 and /dev/null differ diff --git a/files/23_2854_meaning.mp3 b/files/23_2854_meaning.mp3 deleted file mode 100644 index 5a476c2a6..000000000 Binary files a/files/23_2854_meaning.mp3 and /dev/null differ diff --git a/files/23_2855.jpg b/files/23_2855.jpg deleted file mode 100644 index 4b04dfc24..000000000 Binary files a/files/23_2855.jpg and /dev/null differ diff --git a/files/23_2855.mp3 b/files/23_2855.mp3 deleted file mode 100644 index 8c0c25a49..000000000 Binary files a/files/23_2855.mp3 and /dev/null differ diff --git a/files/23_2855_example.mp3 b/files/23_2855_example.mp3 deleted file mode 100644 index 376b8121b..000000000 Binary files a/files/23_2855_example.mp3 and /dev/null differ diff --git a/files/23_2855_meaning.mp3 b/files/23_2855_meaning.mp3 deleted file mode 100644 index b244ea963..000000000 Binary files a/files/23_2855_meaning.mp3 and /dev/null differ diff --git a/files/23_2856.jpg b/files/23_2856.jpg deleted file mode 100644 index 5ba327249..000000000 Binary files a/files/23_2856.jpg and /dev/null differ diff --git a/files/23_2856.mp3 b/files/23_2856.mp3 deleted file mode 100644 index 35f6f88de..000000000 Binary files a/files/23_2856.mp3 and /dev/null differ diff --git a/files/23_2856_example.mp3 b/files/23_2856_example.mp3 deleted file mode 100644 index 111adfa91..000000000 Binary files a/files/23_2856_example.mp3 and /dev/null differ diff --git a/files/23_2856_meaning.mp3 b/files/23_2856_meaning.mp3 deleted file mode 100644 index 1967d8561..000000000 Binary files a/files/23_2856_meaning.mp3 and /dev/null differ diff --git a/files/23_2857.jpg b/files/23_2857.jpg deleted file mode 100644 index 99275359a..000000000 Binary files a/files/23_2857.jpg and /dev/null differ diff --git a/files/23_2857.mp3 b/files/23_2857.mp3 deleted file mode 100644 index e2c770fed..000000000 Binary files a/files/23_2857.mp3 and /dev/null differ diff --git a/files/23_2857_example.mp3 b/files/23_2857_example.mp3 deleted file mode 100644 index a036b7a6e..000000000 Binary files a/files/23_2857_example.mp3 and /dev/null differ diff --git a/files/23_2857_meaning.mp3 b/files/23_2857_meaning.mp3 deleted file mode 100644 index 21e5ac70b..000000000 Binary files a/files/23_2857_meaning.mp3 and /dev/null differ diff --git a/files/23_2858.jpg b/files/23_2858.jpg deleted file mode 100644 index b170eb978..000000000 Binary files a/files/23_2858.jpg and /dev/null differ diff --git a/files/23_2858.mp3 b/files/23_2858.mp3 deleted file mode 100644 index 86d300ef2..000000000 Binary files a/files/23_2858.mp3 and /dev/null differ diff --git a/files/23_2858_example.mp3 b/files/23_2858_example.mp3 deleted file mode 100644 index 253173249..000000000 Binary files a/files/23_2858_example.mp3 and /dev/null differ diff --git a/files/23_2858_meaning.mp3 b/files/23_2858_meaning.mp3 deleted file mode 100644 index 027bc53cf..000000000 Binary files a/files/23_2858_meaning.mp3 and /dev/null differ diff --git a/files/23_2859.jpg b/files/23_2859.jpg deleted file mode 100644 index 24e7ec35c..000000000 Binary files a/files/23_2859.jpg and /dev/null differ diff --git a/files/23_2859.mp3 b/files/23_2859.mp3 deleted file mode 100644 index 7540da3f3..000000000 Binary files a/files/23_2859.mp3 and /dev/null differ diff --git a/files/23_2859_example.mp3 b/files/23_2859_example.mp3 deleted file mode 100644 index 841943c44..000000000 Binary files a/files/23_2859_example.mp3 and /dev/null differ diff --git a/files/23_2859_meaning.mp3 b/files/23_2859_meaning.mp3 deleted file mode 100644 index 3a718945c..000000000 Binary files a/files/23_2859_meaning.mp3 and /dev/null differ diff --git a/files/23_2860.jpg b/files/23_2860.jpg deleted file mode 100644 index a899e7313..000000000 Binary files a/files/23_2860.jpg and /dev/null differ diff --git a/files/23_2860.mp3 b/files/23_2860.mp3 deleted file mode 100644 index 66a9244f8..000000000 Binary files a/files/23_2860.mp3 and /dev/null differ diff --git a/files/23_2860_example.mp3 b/files/23_2860_example.mp3 deleted file mode 100644 index 8f5315e96..000000000 Binary files a/files/23_2860_example.mp3 and /dev/null differ diff --git a/files/23_2860_meaning.mp3 b/files/23_2860_meaning.mp3 deleted file mode 100644 index 9f5e881c9..000000000 Binary files a/files/23_2860_meaning.mp3 and /dev/null differ diff --git a/files/23_3441.jpg b/files/23_3441.jpg deleted file mode 100644 index 97eae7d75..000000000 Binary files a/files/23_3441.jpg and /dev/null differ diff --git a/files/23_3441.mp3 b/files/23_3441.mp3 deleted file mode 100644 index a833de0ee..000000000 Binary files a/files/23_3441.mp3 and /dev/null differ diff --git a/files/23_3441_example.mp3 b/files/23_3441_example.mp3 deleted file mode 100644 index 634c8b732..000000000 Binary files a/files/23_3441_example.mp3 and /dev/null differ diff --git a/files/23_3441_meaning.mp3 b/files/23_3441_meaning.mp3 deleted file mode 100644 index 0471e3c26..000000000 Binary files a/files/23_3441_meaning.mp3 and /dev/null differ diff --git a/files/23_3442.jpg b/files/23_3442.jpg deleted file mode 100644 index 5f1085fda..000000000 Binary files a/files/23_3442.jpg and /dev/null differ diff --git a/files/23_3442.mp3 b/files/23_3442.mp3 deleted file mode 100644 index a9cf8aea3..000000000 Binary files a/files/23_3442.mp3 and /dev/null differ diff --git a/files/23_3442_example.mp3 b/files/23_3442_example.mp3 deleted file mode 100644 index 5b4ff8f0d..000000000 Binary files a/files/23_3442_example.mp3 and /dev/null differ diff --git a/files/23_3442_meaning.mp3 b/files/23_3442_meaning.mp3 deleted file mode 100644 index 2c98664ef..000000000 Binary files a/files/23_3442_meaning.mp3 and /dev/null differ diff --git a/files/23_3443.jpg b/files/23_3443.jpg deleted file mode 100644 index f36285cc4..000000000 Binary files a/files/23_3443.jpg and /dev/null differ diff --git a/files/23_3443.mp3 b/files/23_3443.mp3 deleted file mode 100644 index 5a779700f..000000000 Binary files a/files/23_3443.mp3 and /dev/null differ diff --git a/files/23_3443_example.mp3 b/files/23_3443_example.mp3 deleted file mode 100644 index 95452353c..000000000 Binary files a/files/23_3443_example.mp3 and /dev/null differ diff --git a/files/23_3443_meaning.mp3 b/files/23_3443_meaning.mp3 deleted file mode 100644 index b65dcd1b6..000000000 Binary files a/files/23_3443_meaning.mp3 and /dev/null differ diff --git a/files/23_3444.jpg b/files/23_3444.jpg deleted file mode 100644 index 0c47257f9..000000000 Binary files a/files/23_3444.jpg and /dev/null differ diff --git a/files/23_3444.mp3 b/files/23_3444.mp3 deleted file mode 100644 index 2e173487c..000000000 Binary files a/files/23_3444.mp3 and /dev/null differ diff --git a/files/23_3444_example.mp3 b/files/23_3444_example.mp3 deleted file mode 100644 index ed139fd81..000000000 Binary files a/files/23_3444_example.mp3 and /dev/null differ diff --git a/files/23_3444_meaning.mp3 b/files/23_3444_meaning.mp3 deleted file mode 100644 index 1713cffc9..000000000 Binary files a/files/23_3444_meaning.mp3 and /dev/null differ diff --git a/files/23_3445.jpg b/files/23_3445.jpg deleted file mode 100644 index ebca0b883..000000000 Binary files a/files/23_3445.jpg and /dev/null differ diff --git a/files/23_3445.mp3 b/files/23_3445.mp3 deleted file mode 100644 index d966e71ec..000000000 Binary files a/files/23_3445.mp3 and /dev/null differ diff --git a/files/23_3445_example.mp3 b/files/23_3445_example.mp3 deleted file mode 100644 index cd385302a..000000000 Binary files a/files/23_3445_example.mp3 and /dev/null differ diff --git a/files/23_3445_meaning.mp3 b/files/23_3445_meaning.mp3 deleted file mode 100644 index d2a9ac8ff..000000000 Binary files a/files/23_3445_meaning.mp3 and /dev/null differ diff --git a/files/23_3446.jpg b/files/23_3446.jpg deleted file mode 100644 index 7efe0e384..000000000 Binary files a/files/23_3446.jpg and /dev/null differ diff --git a/files/23_3446.mp3 b/files/23_3446.mp3 deleted file mode 100644 index af045320b..000000000 Binary files a/files/23_3446.mp3 and /dev/null differ diff --git a/files/23_3446_example.mp3 b/files/23_3446_example.mp3 deleted file mode 100644 index 44d67b106..000000000 Binary files a/files/23_3446_example.mp3 and /dev/null differ diff --git a/files/23_3446_meaning.mp3 b/files/23_3446_meaning.mp3 deleted file mode 100644 index e01c7c20f..000000000 Binary files a/files/23_3446_meaning.mp3 and /dev/null differ diff --git a/files/23_3447.jpg b/files/23_3447.jpg deleted file mode 100644 index cffa21603..000000000 Binary files a/files/23_3447.jpg and /dev/null differ diff --git a/files/23_3447.mp3 b/files/23_3447.mp3 deleted file mode 100644 index 8aeecc7c6..000000000 Binary files a/files/23_3447.mp3 and /dev/null differ diff --git a/files/23_3447_example.mp3 b/files/23_3447_example.mp3 deleted file mode 100644 index ba4aabf08..000000000 Binary files a/files/23_3447_example.mp3 and /dev/null differ diff --git a/files/23_3447_meaning.mp3 b/files/23_3447_meaning.mp3 deleted file mode 100644 index fed6ea5a7..000000000 Binary files a/files/23_3447_meaning.mp3 and /dev/null differ diff --git a/files/23_3448.jpg b/files/23_3448.jpg deleted file mode 100644 index 0478e8fb2..000000000 Binary files a/files/23_3448.jpg and /dev/null differ diff --git a/files/23_3448.mp3 b/files/23_3448.mp3 deleted file mode 100644 index bbeda58e5..000000000 Binary files a/files/23_3448.mp3 and /dev/null differ diff --git a/files/23_3448_example.mp3 b/files/23_3448_example.mp3 deleted file mode 100644 index fbf587fac..000000000 Binary files a/files/23_3448_example.mp3 and /dev/null differ diff --git a/files/23_3448_meaning.mp3 b/files/23_3448_meaning.mp3 deleted file mode 100644 index 1f1ab34f3..000000000 Binary files a/files/23_3448_meaning.mp3 and /dev/null differ diff --git a/files/23_3449.jpg b/files/23_3449.jpg deleted file mode 100644 index 89d95f2f3..000000000 Binary files a/files/23_3449.jpg and /dev/null differ diff --git a/files/23_3449.mp3 b/files/23_3449.mp3 deleted file mode 100644 index 21d36f834..000000000 Binary files a/files/23_3449.mp3 and /dev/null differ diff --git a/files/23_3449_example.mp3 b/files/23_3449_example.mp3 deleted file mode 100644 index e1ea948f7..000000000 Binary files a/files/23_3449_example.mp3 and /dev/null differ diff --git a/files/23_3449_meaning.mp3 b/files/23_3449_meaning.mp3 deleted file mode 100644 index c406df322..000000000 Binary files a/files/23_3449_meaning.mp3 and /dev/null differ diff --git a/files/23_3450.jpg b/files/23_3450.jpg deleted file mode 100644 index ef78a3b1c..000000000 Binary files a/files/23_3450.jpg and /dev/null differ diff --git a/files/23_3450.mp3 b/files/23_3450.mp3 deleted file mode 100644 index 1eae0a31b..000000000 Binary files a/files/23_3450.mp3 and /dev/null differ diff --git a/files/23_3450_example.mp3 b/files/23_3450_example.mp3 deleted file mode 100644 index f8510c792..000000000 Binary files a/files/23_3450_example.mp3 and /dev/null differ diff --git a/files/23_3450_meaning.mp3 b/files/23_3450_meaning.mp3 deleted file mode 100644 index 16625b59d..000000000 Binary files a/files/23_3450_meaning.mp3 and /dev/null differ diff --git a/files/23_3451.jpg b/files/23_3451.jpg deleted file mode 100644 index c884c3e7c..000000000 Binary files a/files/23_3451.jpg and /dev/null differ diff --git a/files/23_3451.mp3 b/files/23_3451.mp3 deleted file mode 100644 index a28614565..000000000 Binary files a/files/23_3451.mp3 and /dev/null differ diff --git a/files/23_3451_example.mp3 b/files/23_3451_example.mp3 deleted file mode 100644 index b2fd680e1..000000000 Binary files a/files/23_3451_example.mp3 and /dev/null differ diff --git a/files/23_3451_meaning.mp3 b/files/23_3451_meaning.mp3 deleted file mode 100644 index 39d1c7b90..000000000 Binary files a/files/23_3451_meaning.mp3 and /dev/null differ diff --git a/files/23_3452.jpg b/files/23_3452.jpg deleted file mode 100644 index 24784ad48..000000000 Binary files a/files/23_3452.jpg and /dev/null differ diff --git a/files/23_3452.mp3 b/files/23_3452.mp3 deleted file mode 100644 index 806929561..000000000 Binary files a/files/23_3452.mp3 and /dev/null differ diff --git a/files/23_3452_example.mp3 b/files/23_3452_example.mp3 deleted file mode 100644 index 6f8e1237a..000000000 Binary files a/files/23_3452_example.mp3 and /dev/null differ diff --git a/files/23_3452_meaning.mp3 b/files/23_3452_meaning.mp3 deleted file mode 100644 index 3944a22a8..000000000 Binary files a/files/23_3452_meaning.mp3 and /dev/null differ diff --git a/files/23_3453.jpg b/files/23_3453.jpg deleted file mode 100644 index 44f90c554..000000000 Binary files a/files/23_3453.jpg and /dev/null differ diff --git a/files/23_3453.mp3 b/files/23_3453.mp3 deleted file mode 100644 index 812ee60e2..000000000 Binary files a/files/23_3453.mp3 and /dev/null differ diff --git a/files/23_3453_example.mp3 b/files/23_3453_example.mp3 deleted file mode 100644 index 5f162e89e..000000000 Binary files a/files/23_3453_example.mp3 and /dev/null differ diff --git a/files/23_3453_meaning.mp3 b/files/23_3453_meaning.mp3 deleted file mode 100644 index e64b988d1..000000000 Binary files a/files/23_3453_meaning.mp3 and /dev/null differ diff --git a/files/23_3454.jpg b/files/23_3454.jpg deleted file mode 100644 index 4f9da33ee..000000000 Binary files a/files/23_3454.jpg and /dev/null differ diff --git a/files/23_3454.mp3 b/files/23_3454.mp3 deleted file mode 100644 index 0a8efdeb0..000000000 Binary files a/files/23_3454.mp3 and /dev/null differ diff --git a/files/23_3454_example.mp3 b/files/23_3454_example.mp3 deleted file mode 100644 index 743be4699..000000000 Binary files a/files/23_3454_example.mp3 and /dev/null differ diff --git a/files/23_3454_meaning.mp3 b/files/23_3454_meaning.mp3 deleted file mode 100644 index ab573ab6c..000000000 Binary files a/files/23_3454_meaning.mp3 and /dev/null differ diff --git a/files/23_3455.jpg b/files/23_3455.jpg deleted file mode 100644 index c9af661e2..000000000 Binary files a/files/23_3455.jpg and /dev/null differ diff --git a/files/23_3455.mp3 b/files/23_3455.mp3 deleted file mode 100644 index 30e85e54a..000000000 Binary files a/files/23_3455.mp3 and /dev/null differ diff --git a/files/23_3455_example.mp3 b/files/23_3455_example.mp3 deleted file mode 100644 index 9af6aa24f..000000000 Binary files a/files/23_3455_example.mp3 and /dev/null differ diff --git a/files/23_3455_meaning.mp3 b/files/23_3455_meaning.mp3 deleted file mode 100644 index 43252fec8..000000000 Binary files a/files/23_3455_meaning.mp3 and /dev/null differ diff --git a/files/23_3456.jpg b/files/23_3456.jpg deleted file mode 100644 index 71e82d79a..000000000 Binary files a/files/23_3456.jpg and /dev/null differ diff --git a/files/23_3456.mp3 b/files/23_3456.mp3 deleted file mode 100644 index 7dcee409e..000000000 Binary files a/files/23_3456.mp3 and /dev/null differ diff --git a/files/23_3456_example.mp3 b/files/23_3456_example.mp3 deleted file mode 100644 index 9fd3280c3..000000000 Binary files a/files/23_3456_example.mp3 and /dev/null differ diff --git a/files/23_3456_meaning.mp3 b/files/23_3456_meaning.mp3 deleted file mode 100644 index 6a8671ab8..000000000 Binary files a/files/23_3456_meaning.mp3 and /dev/null differ diff --git a/files/23_3457.jpg b/files/23_3457.jpg deleted file mode 100644 index 04035148b..000000000 Binary files a/files/23_3457.jpg and /dev/null differ diff --git a/files/23_3457.mp3 b/files/23_3457.mp3 deleted file mode 100644 index 27e95fd68..000000000 Binary files a/files/23_3457.mp3 and /dev/null differ diff --git a/files/23_3457_example.mp3 b/files/23_3457_example.mp3 deleted file mode 100644 index 702af06a2..000000000 Binary files a/files/23_3457_example.mp3 and /dev/null differ diff --git a/files/23_3457_meaning.mp3 b/files/23_3457_meaning.mp3 deleted file mode 100644 index 47605b0d9..000000000 Binary files a/files/23_3457_meaning.mp3 and /dev/null differ diff --git a/files/23_3458.jpg b/files/23_3458.jpg deleted file mode 100644 index 0a944998e..000000000 Binary files a/files/23_3458.jpg and /dev/null differ diff --git a/files/23_3458.mp3 b/files/23_3458.mp3 deleted file mode 100644 index 68b1f3f73..000000000 Binary files a/files/23_3458.mp3 and /dev/null differ diff --git a/files/23_3458_example.mp3 b/files/23_3458_example.mp3 deleted file mode 100644 index 7fec5393e..000000000 Binary files a/files/23_3458_example.mp3 and /dev/null differ diff --git a/files/23_3458_meaning.mp3 b/files/23_3458_meaning.mp3 deleted file mode 100644 index 45d16f301..000000000 Binary files a/files/23_3458_meaning.mp3 and /dev/null differ diff --git a/files/23_3459.jpg b/files/23_3459.jpg deleted file mode 100644 index 295a82a6c..000000000 Binary files a/files/23_3459.jpg and /dev/null differ diff --git a/files/23_3459.mp3 b/files/23_3459.mp3 deleted file mode 100644 index ef7865fe0..000000000 Binary files a/files/23_3459.mp3 and /dev/null differ diff --git a/files/23_3459_example.mp3 b/files/23_3459_example.mp3 deleted file mode 100644 index 7e485a020..000000000 Binary files a/files/23_3459_example.mp3 and /dev/null differ diff --git a/files/23_3459_meaning.mp3 b/files/23_3459_meaning.mp3 deleted file mode 100644 index f78cea312..000000000 Binary files a/files/23_3459_meaning.mp3 and /dev/null differ diff --git a/files/23_3460.jpg b/files/23_3460.jpg deleted file mode 100644 index 5d470021b..000000000 Binary files a/files/23_3460.jpg and /dev/null differ diff --git a/files/23_3460.mp3 b/files/23_3460.mp3 deleted file mode 100644 index 705eb1533..000000000 Binary files a/files/23_3460.mp3 and /dev/null differ diff --git a/files/23_3460_example.mp3 b/files/23_3460_example.mp3 deleted file mode 100644 index 2f7e63eb4..000000000 Binary files a/files/23_3460_example.mp3 and /dev/null differ diff --git a/files/23_3460_meaning.mp3 b/files/23_3460_meaning.mp3 deleted file mode 100644 index 13d0e32bb..000000000 Binary files a/files/23_3460_meaning.mp3 and /dev/null differ diff --git a/files/24_0461.jpg b/files/24_0461.jpg deleted file mode 100644 index ccf7e21c2..000000000 Binary files a/files/24_0461.jpg and /dev/null differ diff --git a/files/24_0461.mp3 b/files/24_0461.mp3 deleted file mode 100644 index 1890a6102..000000000 Binary files a/files/24_0461.mp3 and /dev/null differ diff --git a/files/24_0461_example.mp3 b/files/24_0461_example.mp3 deleted file mode 100644 index 8b91da9bc..000000000 Binary files a/files/24_0461_example.mp3 and /dev/null differ diff --git a/files/24_0461_meaning.mp3 b/files/24_0461_meaning.mp3 deleted file mode 100644 index fb56abfb9..000000000 Binary files a/files/24_0461_meaning.mp3 and /dev/null differ diff --git a/files/24_0462.jpg b/files/24_0462.jpg deleted file mode 100644 index 56ceb58bc..000000000 Binary files a/files/24_0462.jpg and /dev/null differ diff --git a/files/24_0462.mp3 b/files/24_0462.mp3 deleted file mode 100644 index f1061ede0..000000000 Binary files a/files/24_0462.mp3 and /dev/null differ diff --git a/files/24_0462_example.mp3 b/files/24_0462_example.mp3 deleted file mode 100644 index bf23d901b..000000000 Binary files a/files/24_0462_example.mp3 and /dev/null differ diff --git a/files/24_0462_meaning.mp3 b/files/24_0462_meaning.mp3 deleted file mode 100644 index 87de61173..000000000 Binary files a/files/24_0462_meaning.mp3 and /dev/null differ diff --git a/files/24_0463.jpg b/files/24_0463.jpg deleted file mode 100644 index b258e34f2..000000000 Binary files a/files/24_0463.jpg and /dev/null differ diff --git a/files/24_0463.mp3 b/files/24_0463.mp3 deleted file mode 100644 index bfb5e6a39..000000000 Binary files a/files/24_0463.mp3 and /dev/null differ diff --git a/files/24_0463_example.mp3 b/files/24_0463_example.mp3 deleted file mode 100644 index 58756a051..000000000 Binary files a/files/24_0463_example.mp3 and /dev/null differ diff --git a/files/24_0463_meaning.mp3 b/files/24_0463_meaning.mp3 deleted file mode 100644 index 905d77475..000000000 Binary files a/files/24_0463_meaning.mp3 and /dev/null differ diff --git a/files/24_0464.jpg b/files/24_0464.jpg deleted file mode 100644 index df42d9510..000000000 Binary files a/files/24_0464.jpg and /dev/null differ diff --git a/files/24_0464.mp3 b/files/24_0464.mp3 deleted file mode 100644 index 6ee9f3f91..000000000 Binary files a/files/24_0464.mp3 and /dev/null differ diff --git a/files/24_0464_example.mp3 b/files/24_0464_example.mp3 deleted file mode 100644 index 25a321fe3..000000000 Binary files a/files/24_0464_example.mp3 and /dev/null differ diff --git a/files/24_0464_meaning.mp3 b/files/24_0464_meaning.mp3 deleted file mode 100644 index 80417a43d..000000000 Binary files a/files/24_0464_meaning.mp3 and /dev/null differ diff --git a/files/24_0465.jpg b/files/24_0465.jpg deleted file mode 100644 index d65cbe5f0..000000000 Binary files a/files/24_0465.jpg and /dev/null differ diff --git a/files/24_0465.mp3 b/files/24_0465.mp3 deleted file mode 100644 index d37f9f842..000000000 Binary files a/files/24_0465.mp3 and /dev/null differ diff --git a/files/24_0465_example.mp3 b/files/24_0465_example.mp3 deleted file mode 100644 index bfcd14731..000000000 Binary files a/files/24_0465_example.mp3 and /dev/null differ diff --git a/files/24_0465_meaning.mp3 b/files/24_0465_meaning.mp3 deleted file mode 100644 index 63cef37dc..000000000 Binary files a/files/24_0465_meaning.mp3 and /dev/null differ diff --git a/files/24_0466.jpg b/files/24_0466.jpg deleted file mode 100644 index b2ffac089..000000000 Binary files a/files/24_0466.jpg and /dev/null differ diff --git a/files/24_0466.mp3 b/files/24_0466.mp3 deleted file mode 100644 index c75f6fd9d..000000000 Binary files a/files/24_0466.mp3 and /dev/null differ diff --git a/files/24_0466_example.mp3 b/files/24_0466_example.mp3 deleted file mode 100644 index a14d3aff3..000000000 Binary files a/files/24_0466_example.mp3 and /dev/null differ diff --git a/files/24_0466_meaning.mp3 b/files/24_0466_meaning.mp3 deleted file mode 100644 index adf9226ae..000000000 Binary files a/files/24_0466_meaning.mp3 and /dev/null differ diff --git a/files/24_0467.jpg b/files/24_0467.jpg deleted file mode 100644 index 6ed94d7b4..000000000 Binary files a/files/24_0467.jpg and /dev/null differ diff --git a/files/24_0467.mp3 b/files/24_0467.mp3 deleted file mode 100644 index f7376c9d8..000000000 Binary files a/files/24_0467.mp3 and /dev/null differ diff --git a/files/24_0467_example.mp3 b/files/24_0467_example.mp3 deleted file mode 100644 index 9046e0991..000000000 Binary files a/files/24_0467_example.mp3 and /dev/null differ diff --git a/files/24_0467_meaning.mp3 b/files/24_0467_meaning.mp3 deleted file mode 100644 index dd08e3b1c..000000000 Binary files a/files/24_0467_meaning.mp3 and /dev/null differ diff --git a/files/24_0468.jpg b/files/24_0468.jpg deleted file mode 100644 index 4e11a55fd..000000000 Binary files a/files/24_0468.jpg and /dev/null differ diff --git a/files/24_0468.mp3 b/files/24_0468.mp3 deleted file mode 100644 index bba326d65..000000000 Binary files a/files/24_0468.mp3 and /dev/null differ diff --git a/files/24_0468_example.mp3 b/files/24_0468_example.mp3 deleted file mode 100644 index b0558905e..000000000 Binary files a/files/24_0468_example.mp3 and /dev/null differ diff --git a/files/24_0468_meaning.mp3 b/files/24_0468_meaning.mp3 deleted file mode 100644 index 019ad10fd..000000000 Binary files a/files/24_0468_meaning.mp3 and /dev/null differ diff --git a/files/24_0469.jpg b/files/24_0469.jpg deleted file mode 100644 index aeba78c9d..000000000 Binary files a/files/24_0469.jpg and /dev/null differ diff --git a/files/24_0469.mp3 b/files/24_0469.mp3 deleted file mode 100644 index 2f530649d..000000000 Binary files a/files/24_0469.mp3 and /dev/null differ diff --git a/files/24_0469_example.mp3 b/files/24_0469_example.mp3 deleted file mode 100644 index 7885d47b5..000000000 Binary files a/files/24_0469_example.mp3 and /dev/null differ diff --git a/files/24_0469_meaning.mp3 b/files/24_0469_meaning.mp3 deleted file mode 100644 index 6e4cd74a5..000000000 Binary files a/files/24_0469_meaning.mp3 and /dev/null differ diff --git a/files/24_0470.jpg b/files/24_0470.jpg deleted file mode 100644 index 76fb9cb61..000000000 Binary files a/files/24_0470.jpg and /dev/null differ diff --git a/files/24_0470.mp3 b/files/24_0470.mp3 deleted file mode 100644 index 2010d4d56..000000000 Binary files a/files/24_0470.mp3 and /dev/null differ diff --git a/files/24_0470_example.mp3 b/files/24_0470_example.mp3 deleted file mode 100644 index 0bbab5484..000000000 Binary files a/files/24_0470_example.mp3 and /dev/null differ diff --git a/files/24_0470_meaning.mp3 b/files/24_0470_meaning.mp3 deleted file mode 100644 index 78a0d9e39..000000000 Binary files a/files/24_0470_meaning.mp3 and /dev/null differ diff --git a/files/24_0471.jpg b/files/24_0471.jpg deleted file mode 100644 index 1c5195567..000000000 Binary files a/files/24_0471.jpg and /dev/null differ diff --git a/files/24_0471.mp3 b/files/24_0471.mp3 deleted file mode 100644 index 656f93bf0..000000000 Binary files a/files/24_0471.mp3 and /dev/null differ diff --git a/files/24_0471_example.mp3 b/files/24_0471_example.mp3 deleted file mode 100644 index ceaa31b38..000000000 Binary files a/files/24_0471_example.mp3 and /dev/null differ diff --git a/files/24_0471_meaning.mp3 b/files/24_0471_meaning.mp3 deleted file mode 100644 index 8650e297f..000000000 Binary files a/files/24_0471_meaning.mp3 and /dev/null differ diff --git a/files/24_0472.jpg b/files/24_0472.jpg deleted file mode 100644 index 2ea62e603..000000000 Binary files a/files/24_0472.jpg and /dev/null differ diff --git a/files/24_0472.mp3 b/files/24_0472.mp3 deleted file mode 100644 index bf522e91d..000000000 Binary files a/files/24_0472.mp3 and /dev/null differ diff --git a/files/24_0472_example.mp3 b/files/24_0472_example.mp3 deleted file mode 100644 index 0c4ca32f6..000000000 Binary files a/files/24_0472_example.mp3 and /dev/null differ diff --git a/files/24_0472_meaning.mp3 b/files/24_0472_meaning.mp3 deleted file mode 100644 index e2c018edb..000000000 Binary files a/files/24_0472_meaning.mp3 and /dev/null differ diff --git a/files/24_0473.jpg b/files/24_0473.jpg deleted file mode 100644 index f265b4110..000000000 Binary files a/files/24_0473.jpg and /dev/null differ diff --git a/files/24_0473.mp3 b/files/24_0473.mp3 deleted file mode 100644 index c916a295f..000000000 Binary files a/files/24_0473.mp3 and /dev/null differ diff --git a/files/24_0473_example.mp3 b/files/24_0473_example.mp3 deleted file mode 100644 index f065585aa..000000000 Binary files a/files/24_0473_example.mp3 and /dev/null differ diff --git a/files/24_0473_meaning.mp3 b/files/24_0473_meaning.mp3 deleted file mode 100644 index 214b5741b..000000000 Binary files a/files/24_0473_meaning.mp3 and /dev/null differ diff --git a/files/24_0474.jpg b/files/24_0474.jpg deleted file mode 100644 index ebd0390e7..000000000 Binary files a/files/24_0474.jpg and /dev/null differ diff --git a/files/24_0474.mp3 b/files/24_0474.mp3 deleted file mode 100644 index 3abb08548..000000000 Binary files a/files/24_0474.mp3 and /dev/null differ diff --git a/files/24_0474_example.mp3 b/files/24_0474_example.mp3 deleted file mode 100644 index 6dee7e289..000000000 Binary files a/files/24_0474_example.mp3 and /dev/null differ diff --git a/files/24_0474_meaning.mp3 b/files/24_0474_meaning.mp3 deleted file mode 100644 index e2ca33c76..000000000 Binary files a/files/24_0474_meaning.mp3 and /dev/null differ diff --git a/files/24_0475.jpg b/files/24_0475.jpg deleted file mode 100644 index 0b101b1cd..000000000 Binary files a/files/24_0475.jpg and /dev/null differ diff --git a/files/24_0475.mp3 b/files/24_0475.mp3 deleted file mode 100644 index 74714a1f1..000000000 Binary files a/files/24_0475.mp3 and /dev/null differ diff --git a/files/24_0475_example.mp3 b/files/24_0475_example.mp3 deleted file mode 100644 index d2012c740..000000000 Binary files a/files/24_0475_example.mp3 and /dev/null differ diff --git a/files/24_0475_meaning.mp3 b/files/24_0475_meaning.mp3 deleted file mode 100644 index 60bcf72e6..000000000 Binary files a/files/24_0475_meaning.mp3 and /dev/null differ diff --git a/files/24_0476.jpg b/files/24_0476.jpg deleted file mode 100644 index b5172a67e..000000000 Binary files a/files/24_0476.jpg and /dev/null differ diff --git a/files/24_0476.mp3 b/files/24_0476.mp3 deleted file mode 100644 index 068343ccc..000000000 Binary files a/files/24_0476.mp3 and /dev/null differ diff --git a/files/24_0476_example.mp3 b/files/24_0476_example.mp3 deleted file mode 100644 index 5640ce30a..000000000 Binary files a/files/24_0476_example.mp3 and /dev/null differ diff --git a/files/24_0476_meaning.mp3 b/files/24_0476_meaning.mp3 deleted file mode 100644 index 30037d5ba..000000000 Binary files a/files/24_0476_meaning.mp3 and /dev/null differ diff --git a/files/24_0477.jpg b/files/24_0477.jpg deleted file mode 100644 index 4f62318e7..000000000 Binary files a/files/24_0477.jpg and /dev/null differ diff --git a/files/24_0477.mp3 b/files/24_0477.mp3 deleted file mode 100644 index ddd3e67f2..000000000 Binary files a/files/24_0477.mp3 and /dev/null differ diff --git a/files/24_0477_example.mp3 b/files/24_0477_example.mp3 deleted file mode 100644 index ca844fbc9..000000000 Binary files a/files/24_0477_example.mp3 and /dev/null differ diff --git a/files/24_0477_meaning.mp3 b/files/24_0477_meaning.mp3 deleted file mode 100644 index 90a4fe6ef..000000000 Binary files a/files/24_0477_meaning.mp3 and /dev/null differ diff --git a/files/24_0478.jpg b/files/24_0478.jpg deleted file mode 100644 index 5c21f6cf0..000000000 Binary files a/files/24_0478.jpg and /dev/null differ diff --git a/files/24_0478.mp3 b/files/24_0478.mp3 deleted file mode 100644 index 5ca39b8cd..000000000 Binary files a/files/24_0478.mp3 and /dev/null differ diff --git a/files/24_0478_example.mp3 b/files/24_0478_example.mp3 deleted file mode 100644 index 1b232c00a..000000000 Binary files a/files/24_0478_example.mp3 and /dev/null differ diff --git a/files/24_0478_meaning.mp3 b/files/24_0478_meaning.mp3 deleted file mode 100644 index a3d6ad2d9..000000000 Binary files a/files/24_0478_meaning.mp3 and /dev/null differ diff --git a/files/24_0479.jpg b/files/24_0479.jpg deleted file mode 100644 index 0fe2e39f9..000000000 Binary files a/files/24_0479.jpg and /dev/null differ diff --git a/files/24_0479.mp3 b/files/24_0479.mp3 deleted file mode 100644 index d0e0c486d..000000000 Binary files a/files/24_0479.mp3 and /dev/null differ diff --git a/files/24_0479_example.mp3 b/files/24_0479_example.mp3 deleted file mode 100644 index d017978da..000000000 Binary files a/files/24_0479_example.mp3 and /dev/null differ diff --git a/files/24_0479_meaning.mp3 b/files/24_0479_meaning.mp3 deleted file mode 100644 index 6248a6c3e..000000000 Binary files a/files/24_0479_meaning.mp3 and /dev/null differ diff --git a/files/24_0480.jpg b/files/24_0480.jpg deleted file mode 100644 index ffe895cec..000000000 Binary files a/files/24_0480.jpg and /dev/null differ diff --git a/files/24_0480.mp3 b/files/24_0480.mp3 deleted file mode 100644 index e72171d62..000000000 Binary files a/files/24_0480.mp3 and /dev/null differ diff --git a/files/24_0480_example.mp3 b/files/24_0480_example.mp3 deleted file mode 100644 index a4d826eb9..000000000 Binary files a/files/24_0480_example.mp3 and /dev/null differ diff --git a/files/24_0480_meaning.mp3 b/files/24_0480_meaning.mp3 deleted file mode 100644 index 93a11c930..000000000 Binary files a/files/24_0480_meaning.mp3 and /dev/null differ diff --git a/files/24_1061.jpg b/files/24_1061.jpg deleted file mode 100644 index a2d92f1e7..000000000 Binary files a/files/24_1061.jpg and /dev/null differ diff --git a/files/24_1061.mp3 b/files/24_1061.mp3 deleted file mode 100644 index ce926615b..000000000 Binary files a/files/24_1061.mp3 and /dev/null differ diff --git a/files/24_1061_example.mp3 b/files/24_1061_example.mp3 deleted file mode 100644 index e3586c397..000000000 Binary files a/files/24_1061_example.mp3 and /dev/null differ diff --git a/files/24_1061_meaning.mp3 b/files/24_1061_meaning.mp3 deleted file mode 100644 index aa827c30b..000000000 Binary files a/files/24_1061_meaning.mp3 and /dev/null differ diff --git a/files/24_1062.jpg b/files/24_1062.jpg deleted file mode 100644 index 231c53e41..000000000 Binary files a/files/24_1062.jpg and /dev/null differ diff --git a/files/24_1062.mp3 b/files/24_1062.mp3 deleted file mode 100644 index 68e596af6..000000000 Binary files a/files/24_1062.mp3 and /dev/null differ diff --git a/files/24_1062_example.mp3 b/files/24_1062_example.mp3 deleted file mode 100644 index 4e95719d1..000000000 Binary files a/files/24_1062_example.mp3 and /dev/null differ diff --git a/files/24_1062_meaning.mp3 b/files/24_1062_meaning.mp3 deleted file mode 100644 index 89ab8b047..000000000 Binary files a/files/24_1062_meaning.mp3 and /dev/null differ diff --git a/files/24_1063.jpg b/files/24_1063.jpg deleted file mode 100644 index d390a1471..000000000 Binary files a/files/24_1063.jpg and /dev/null differ diff --git a/files/24_1063.mp3 b/files/24_1063.mp3 deleted file mode 100644 index 82fe0de27..000000000 Binary files a/files/24_1063.mp3 and /dev/null differ diff --git a/files/24_1063_example.mp3 b/files/24_1063_example.mp3 deleted file mode 100644 index 01a6f709e..000000000 Binary files a/files/24_1063_example.mp3 and /dev/null differ diff --git a/files/24_1063_meaning.mp3 b/files/24_1063_meaning.mp3 deleted file mode 100644 index bc09c1151..000000000 Binary files a/files/24_1063_meaning.mp3 and /dev/null differ diff --git a/files/24_1064.jpg b/files/24_1064.jpg deleted file mode 100644 index d67d9cb99..000000000 Binary files a/files/24_1064.jpg and /dev/null differ diff --git a/files/24_1064.mp3 b/files/24_1064.mp3 deleted file mode 100644 index 830d53130..000000000 Binary files a/files/24_1064.mp3 and /dev/null differ diff --git a/files/24_1064_example.mp3 b/files/24_1064_example.mp3 deleted file mode 100644 index c7ab37732..000000000 Binary files a/files/24_1064_example.mp3 and /dev/null differ diff --git a/files/24_1064_meaning.mp3 b/files/24_1064_meaning.mp3 deleted file mode 100644 index faf5b2c82..000000000 Binary files a/files/24_1064_meaning.mp3 and /dev/null differ diff --git a/files/24_1065.jpg b/files/24_1065.jpg deleted file mode 100644 index f79a83651..000000000 Binary files a/files/24_1065.jpg and /dev/null differ diff --git a/files/24_1065.mp3 b/files/24_1065.mp3 deleted file mode 100644 index 2884338ff..000000000 Binary files a/files/24_1065.mp3 and /dev/null differ diff --git a/files/24_1065_example.mp3 b/files/24_1065_example.mp3 deleted file mode 100644 index a2527c67b..000000000 Binary files a/files/24_1065_example.mp3 and /dev/null differ diff --git a/files/24_1065_meaning.mp3 b/files/24_1065_meaning.mp3 deleted file mode 100644 index a7446a731..000000000 Binary files a/files/24_1065_meaning.mp3 and /dev/null differ diff --git a/files/24_1066.jpg b/files/24_1066.jpg deleted file mode 100644 index 691fd1e34..000000000 Binary files a/files/24_1066.jpg and /dev/null differ diff --git a/files/24_1066.mp3 b/files/24_1066.mp3 deleted file mode 100644 index 31b47e9b2..000000000 Binary files a/files/24_1066.mp3 and /dev/null differ diff --git a/files/24_1066_example.mp3 b/files/24_1066_example.mp3 deleted file mode 100644 index 3c3eb08ca..000000000 Binary files a/files/24_1066_example.mp3 and /dev/null differ diff --git a/files/24_1066_meaning.mp3 b/files/24_1066_meaning.mp3 deleted file mode 100644 index 64f48bebf..000000000 Binary files a/files/24_1066_meaning.mp3 and /dev/null differ diff --git a/files/24_1067.jpg b/files/24_1067.jpg deleted file mode 100644 index af407b554..000000000 Binary files a/files/24_1067.jpg and /dev/null differ diff --git a/files/24_1067.mp3 b/files/24_1067.mp3 deleted file mode 100644 index da105306a..000000000 Binary files a/files/24_1067.mp3 and /dev/null differ diff --git a/files/24_1067_example.mp3 b/files/24_1067_example.mp3 deleted file mode 100644 index 48779b5d2..000000000 Binary files a/files/24_1067_example.mp3 and /dev/null differ diff --git a/files/24_1067_meaning.mp3 b/files/24_1067_meaning.mp3 deleted file mode 100644 index 9cad2e000..000000000 Binary files a/files/24_1067_meaning.mp3 and /dev/null differ diff --git a/files/24_1068.jpg b/files/24_1068.jpg deleted file mode 100644 index 10f0b6405..000000000 Binary files a/files/24_1068.jpg and /dev/null differ diff --git a/files/24_1068.mp3 b/files/24_1068.mp3 deleted file mode 100644 index c98785c1a..000000000 Binary files a/files/24_1068.mp3 and /dev/null differ diff --git a/files/24_1068_example.mp3 b/files/24_1068_example.mp3 deleted file mode 100644 index 876857b32..000000000 Binary files a/files/24_1068_example.mp3 and /dev/null differ diff --git a/files/24_1068_meaning.mp3 b/files/24_1068_meaning.mp3 deleted file mode 100644 index 55cdd44f2..000000000 Binary files a/files/24_1068_meaning.mp3 and /dev/null differ diff --git a/files/24_1069.jpg b/files/24_1069.jpg deleted file mode 100644 index f7675c365..000000000 Binary files a/files/24_1069.jpg and /dev/null differ diff --git a/files/24_1069.mp3 b/files/24_1069.mp3 deleted file mode 100644 index 2c7974971..000000000 Binary files a/files/24_1069.mp3 and /dev/null differ diff --git a/files/24_1069_example.mp3 b/files/24_1069_example.mp3 deleted file mode 100644 index e390d5283..000000000 Binary files a/files/24_1069_example.mp3 and /dev/null differ diff --git a/files/24_1069_meaning.mp3 b/files/24_1069_meaning.mp3 deleted file mode 100644 index 23f508f05..000000000 Binary files a/files/24_1069_meaning.mp3 and /dev/null differ diff --git a/files/24_1070.jpg b/files/24_1070.jpg deleted file mode 100644 index d1bfe3503..000000000 Binary files a/files/24_1070.jpg and /dev/null differ diff --git a/files/24_1070.mp3 b/files/24_1070.mp3 deleted file mode 100644 index 1e5cf721d..000000000 Binary files a/files/24_1070.mp3 and /dev/null differ diff --git a/files/24_1070_example.mp3 b/files/24_1070_example.mp3 deleted file mode 100644 index 81bb8d62c..000000000 Binary files a/files/24_1070_example.mp3 and /dev/null differ diff --git a/files/24_1070_meaning.mp3 b/files/24_1070_meaning.mp3 deleted file mode 100644 index 7ecc54164..000000000 Binary files a/files/24_1070_meaning.mp3 and /dev/null differ diff --git a/files/24_1071.jpg b/files/24_1071.jpg deleted file mode 100644 index 71e02b38c..000000000 Binary files a/files/24_1071.jpg and /dev/null differ diff --git a/files/24_1071.mp3 b/files/24_1071.mp3 deleted file mode 100644 index ff68c4328..000000000 Binary files a/files/24_1071.mp3 and /dev/null differ diff --git a/files/24_1071_example.mp3 b/files/24_1071_example.mp3 deleted file mode 100644 index 86614872e..000000000 Binary files a/files/24_1071_example.mp3 and /dev/null differ diff --git a/files/24_1071_meaning.mp3 b/files/24_1071_meaning.mp3 deleted file mode 100644 index 595d3fb29..000000000 Binary files a/files/24_1071_meaning.mp3 and /dev/null differ diff --git a/files/24_1072.jpg b/files/24_1072.jpg deleted file mode 100644 index 2f656b737..000000000 Binary files a/files/24_1072.jpg and /dev/null differ diff --git a/files/24_1072.mp3 b/files/24_1072.mp3 deleted file mode 100644 index 3928ec085..000000000 Binary files a/files/24_1072.mp3 and /dev/null differ diff --git a/files/24_1072_example.mp3 b/files/24_1072_example.mp3 deleted file mode 100644 index 7456e7a17..000000000 Binary files a/files/24_1072_example.mp3 and /dev/null differ diff --git a/files/24_1072_meaning.mp3 b/files/24_1072_meaning.mp3 deleted file mode 100644 index d135c2afb..000000000 Binary files a/files/24_1072_meaning.mp3 and /dev/null differ diff --git a/files/24_1073.jpg b/files/24_1073.jpg deleted file mode 100644 index d18cd6f65..000000000 Binary files a/files/24_1073.jpg and /dev/null differ diff --git a/files/24_1073.mp3 b/files/24_1073.mp3 deleted file mode 100644 index 455ea1c2d..000000000 Binary files a/files/24_1073.mp3 and /dev/null differ diff --git a/files/24_1073_example.mp3 b/files/24_1073_example.mp3 deleted file mode 100644 index 3bcb11938..000000000 Binary files a/files/24_1073_example.mp3 and /dev/null differ diff --git a/files/24_1073_meaning.mp3 b/files/24_1073_meaning.mp3 deleted file mode 100644 index 3ec9c5872..000000000 Binary files a/files/24_1073_meaning.mp3 and /dev/null differ diff --git a/files/24_1074.jpg b/files/24_1074.jpg deleted file mode 100644 index 1cd042fa0..000000000 Binary files a/files/24_1074.jpg and /dev/null differ diff --git a/files/24_1074.mp3 b/files/24_1074.mp3 deleted file mode 100644 index 67c91fa46..000000000 Binary files a/files/24_1074.mp3 and /dev/null differ diff --git a/files/24_1074_example.mp3 b/files/24_1074_example.mp3 deleted file mode 100644 index 1a8c8e8bf..000000000 Binary files a/files/24_1074_example.mp3 and /dev/null differ diff --git a/files/24_1074_meaning.mp3 b/files/24_1074_meaning.mp3 deleted file mode 100644 index 842c992b4..000000000 Binary files a/files/24_1074_meaning.mp3 and /dev/null differ diff --git a/files/24_1075.jpg b/files/24_1075.jpg deleted file mode 100644 index 9bee663fd..000000000 Binary files a/files/24_1075.jpg and /dev/null differ diff --git a/files/24_1075.mp3 b/files/24_1075.mp3 deleted file mode 100644 index 8c0a1871f..000000000 Binary files a/files/24_1075.mp3 and /dev/null differ diff --git a/files/24_1075_example.mp3 b/files/24_1075_example.mp3 deleted file mode 100644 index 210823804..000000000 Binary files a/files/24_1075_example.mp3 and /dev/null differ diff --git a/files/24_1075_meaning.mp3 b/files/24_1075_meaning.mp3 deleted file mode 100644 index 87c4a3dd2..000000000 Binary files a/files/24_1075_meaning.mp3 and /dev/null differ diff --git a/files/24_1076.jpg b/files/24_1076.jpg deleted file mode 100644 index efa3b9a2b..000000000 Binary files a/files/24_1076.jpg and /dev/null differ diff --git a/files/24_1076.mp3 b/files/24_1076.mp3 deleted file mode 100644 index 85b6aaf15..000000000 Binary files a/files/24_1076.mp3 and /dev/null differ diff --git a/files/24_1076_example.mp3 b/files/24_1076_example.mp3 deleted file mode 100644 index f8b4894ca..000000000 Binary files a/files/24_1076_example.mp3 and /dev/null differ diff --git a/files/24_1076_meaning.mp3 b/files/24_1076_meaning.mp3 deleted file mode 100644 index ba0471fd5..000000000 Binary files a/files/24_1076_meaning.mp3 and /dev/null differ diff --git a/files/24_1077.jpg b/files/24_1077.jpg deleted file mode 100644 index 4b9050cdc..000000000 Binary files a/files/24_1077.jpg and /dev/null differ diff --git a/files/24_1077.mp3 b/files/24_1077.mp3 deleted file mode 100644 index 2f19e1812..000000000 Binary files a/files/24_1077.mp3 and /dev/null differ diff --git a/files/24_1077_example.mp3 b/files/24_1077_example.mp3 deleted file mode 100644 index 1de49b2cc..000000000 Binary files a/files/24_1077_example.mp3 and /dev/null differ diff --git a/files/24_1077_meaning.mp3 b/files/24_1077_meaning.mp3 deleted file mode 100644 index 8c1db46bc..000000000 Binary files a/files/24_1077_meaning.mp3 and /dev/null differ diff --git a/files/24_1078.jpg b/files/24_1078.jpg deleted file mode 100644 index c4e45b8a6..000000000 Binary files a/files/24_1078.jpg and /dev/null differ diff --git a/files/24_1078.mp3 b/files/24_1078.mp3 deleted file mode 100644 index 8a3debaa3..000000000 Binary files a/files/24_1078.mp3 and /dev/null differ diff --git a/files/24_1078_example.mp3 b/files/24_1078_example.mp3 deleted file mode 100644 index 0fc766607..000000000 Binary files a/files/24_1078_example.mp3 and /dev/null differ diff --git a/files/24_1078_meaning.mp3 b/files/24_1078_meaning.mp3 deleted file mode 100644 index 012172ffd..000000000 Binary files a/files/24_1078_meaning.mp3 and /dev/null differ diff --git a/files/24_1079.jpg b/files/24_1079.jpg deleted file mode 100644 index 2bbac0dcc..000000000 Binary files a/files/24_1079.jpg and /dev/null differ diff --git a/files/24_1079.mp3 b/files/24_1079.mp3 deleted file mode 100644 index aac06b63b..000000000 Binary files a/files/24_1079.mp3 and /dev/null differ diff --git a/files/24_1079_example.mp3 b/files/24_1079_example.mp3 deleted file mode 100644 index 181b55f85..000000000 Binary files a/files/24_1079_example.mp3 and /dev/null differ diff --git a/files/24_1079_meaning.mp3 b/files/24_1079_meaning.mp3 deleted file mode 100644 index b0147e116..000000000 Binary files a/files/24_1079_meaning.mp3 and /dev/null differ diff --git a/files/24_1080.jpg b/files/24_1080.jpg deleted file mode 100644 index a8a4a3a67..000000000 Binary files a/files/24_1080.jpg and /dev/null differ diff --git a/files/24_1080.mp3 b/files/24_1080.mp3 deleted file mode 100644 index 5aa7ecb9b..000000000 Binary files a/files/24_1080.mp3 and /dev/null differ diff --git a/files/24_1080_example.mp3 b/files/24_1080_example.mp3 deleted file mode 100644 index 30cb09e8f..000000000 Binary files a/files/24_1080_example.mp3 and /dev/null differ diff --git a/files/24_1080_meaning.mp3 b/files/24_1080_meaning.mp3 deleted file mode 100644 index b405545a3..000000000 Binary files a/files/24_1080_meaning.mp3 and /dev/null differ diff --git a/files/24_1661.jpg b/files/24_1661.jpg deleted file mode 100644 index 541761d77..000000000 Binary files a/files/24_1661.jpg and /dev/null differ diff --git a/files/24_1661.mp3 b/files/24_1661.mp3 deleted file mode 100644 index c9e2ea4a2..000000000 Binary files a/files/24_1661.mp3 and /dev/null differ diff --git a/files/24_1661_example.mp3 b/files/24_1661_example.mp3 deleted file mode 100644 index 96916a537..000000000 Binary files a/files/24_1661_example.mp3 and /dev/null differ diff --git a/files/24_1661_meaning.mp3 b/files/24_1661_meaning.mp3 deleted file mode 100644 index 774be9113..000000000 Binary files a/files/24_1661_meaning.mp3 and /dev/null differ diff --git a/files/24_1662.jpg b/files/24_1662.jpg deleted file mode 100644 index 1d84a53ce..000000000 Binary files a/files/24_1662.jpg and /dev/null differ diff --git a/files/24_1662.mp3 b/files/24_1662.mp3 deleted file mode 100644 index 5deb13eb9..000000000 Binary files a/files/24_1662.mp3 and /dev/null differ diff --git a/files/24_1662_example.mp3 b/files/24_1662_example.mp3 deleted file mode 100644 index 5792454ba..000000000 Binary files a/files/24_1662_example.mp3 and /dev/null differ diff --git a/files/24_1662_meaning.mp3 b/files/24_1662_meaning.mp3 deleted file mode 100644 index d1e8acc16..000000000 Binary files a/files/24_1662_meaning.mp3 and /dev/null differ diff --git a/files/24_1663.jpg b/files/24_1663.jpg deleted file mode 100644 index 774267a99..000000000 Binary files a/files/24_1663.jpg and /dev/null differ diff --git a/files/24_1663.mp3 b/files/24_1663.mp3 deleted file mode 100644 index a449efe0c..000000000 Binary files a/files/24_1663.mp3 and /dev/null differ diff --git a/files/24_1663_example.mp3 b/files/24_1663_example.mp3 deleted file mode 100644 index 5746d8635..000000000 Binary files a/files/24_1663_example.mp3 and /dev/null differ diff --git a/files/24_1663_meaning.mp3 b/files/24_1663_meaning.mp3 deleted file mode 100644 index b9f99e65f..000000000 Binary files a/files/24_1663_meaning.mp3 and /dev/null differ diff --git a/files/24_1664.jpg b/files/24_1664.jpg deleted file mode 100644 index 53db30fc3..000000000 Binary files a/files/24_1664.jpg and /dev/null differ diff --git a/files/24_1664.mp3 b/files/24_1664.mp3 deleted file mode 100644 index 6008720bc..000000000 Binary files a/files/24_1664.mp3 and /dev/null differ diff --git a/files/24_1664_example.mp3 b/files/24_1664_example.mp3 deleted file mode 100644 index dad11d1a7..000000000 Binary files a/files/24_1664_example.mp3 and /dev/null differ diff --git a/files/24_1664_meaning.mp3 b/files/24_1664_meaning.mp3 deleted file mode 100644 index dc2c73b82..000000000 Binary files a/files/24_1664_meaning.mp3 and /dev/null differ diff --git a/files/24_1665.jpg b/files/24_1665.jpg deleted file mode 100644 index a9eb5c328..000000000 Binary files a/files/24_1665.jpg and /dev/null differ diff --git a/files/24_1665.mp3 b/files/24_1665.mp3 deleted file mode 100644 index 577bdd891..000000000 Binary files a/files/24_1665.mp3 and /dev/null differ diff --git a/files/24_1665_example.mp3 b/files/24_1665_example.mp3 deleted file mode 100644 index bf520f127..000000000 Binary files a/files/24_1665_example.mp3 and /dev/null differ diff --git a/files/24_1665_meaning.mp3 b/files/24_1665_meaning.mp3 deleted file mode 100644 index 12808ee61..000000000 Binary files a/files/24_1665_meaning.mp3 and /dev/null differ diff --git a/files/24_1666.jpg b/files/24_1666.jpg deleted file mode 100644 index ddb5cdb5b..000000000 Binary files a/files/24_1666.jpg and /dev/null differ diff --git a/files/24_1666.mp3 b/files/24_1666.mp3 deleted file mode 100644 index 6817b51ba..000000000 Binary files a/files/24_1666.mp3 and /dev/null differ diff --git a/files/24_1666_example.mp3 b/files/24_1666_example.mp3 deleted file mode 100644 index ca27b44ab..000000000 Binary files a/files/24_1666_example.mp3 and /dev/null differ diff --git a/files/24_1666_meaning.mp3 b/files/24_1666_meaning.mp3 deleted file mode 100644 index eb1c54030..000000000 Binary files a/files/24_1666_meaning.mp3 and /dev/null differ diff --git a/files/24_1667.jpg b/files/24_1667.jpg deleted file mode 100644 index 4ce9814a8..000000000 Binary files a/files/24_1667.jpg and /dev/null differ diff --git a/files/24_1667.mp3 b/files/24_1667.mp3 deleted file mode 100644 index d97e253a7..000000000 Binary files a/files/24_1667.mp3 and /dev/null differ diff --git a/files/24_1667_example.mp3 b/files/24_1667_example.mp3 deleted file mode 100644 index 72b78c65a..000000000 Binary files a/files/24_1667_example.mp3 and /dev/null differ diff --git a/files/24_1667_meaning.mp3 b/files/24_1667_meaning.mp3 deleted file mode 100644 index 4933dc15d..000000000 Binary files a/files/24_1667_meaning.mp3 and /dev/null differ diff --git a/files/24_1668.jpg b/files/24_1668.jpg deleted file mode 100644 index 183d41c3a..000000000 Binary files a/files/24_1668.jpg and /dev/null differ diff --git a/files/24_1668.mp3 b/files/24_1668.mp3 deleted file mode 100644 index c466be8b9..000000000 Binary files a/files/24_1668.mp3 and /dev/null differ diff --git a/files/24_1668_example.mp3 b/files/24_1668_example.mp3 deleted file mode 100644 index e0efe2071..000000000 Binary files a/files/24_1668_example.mp3 and /dev/null differ diff --git a/files/24_1668_meaning.mp3 b/files/24_1668_meaning.mp3 deleted file mode 100644 index 4758f4c6a..000000000 Binary files a/files/24_1668_meaning.mp3 and /dev/null differ diff --git a/files/24_1669.jpg b/files/24_1669.jpg deleted file mode 100644 index 28b220aeb..000000000 Binary files a/files/24_1669.jpg and /dev/null differ diff --git a/files/24_1669.mp3 b/files/24_1669.mp3 deleted file mode 100644 index 1f49a350d..000000000 Binary files a/files/24_1669.mp3 and /dev/null differ diff --git a/files/24_1669_example.mp3 b/files/24_1669_example.mp3 deleted file mode 100644 index fe0ec176b..000000000 Binary files a/files/24_1669_example.mp3 and /dev/null differ diff --git a/files/24_1669_meaning.mp3 b/files/24_1669_meaning.mp3 deleted file mode 100644 index 5659f4bd5..000000000 Binary files a/files/24_1669_meaning.mp3 and /dev/null differ diff --git a/files/24_1670.jpg b/files/24_1670.jpg deleted file mode 100644 index 4b6d94c04..000000000 Binary files a/files/24_1670.jpg and /dev/null differ diff --git a/files/24_1670.mp3 b/files/24_1670.mp3 deleted file mode 100644 index bc8a3d5e4..000000000 Binary files a/files/24_1670.mp3 and /dev/null differ diff --git a/files/24_1670_example.mp3 b/files/24_1670_example.mp3 deleted file mode 100644 index 7fdc6d8a1..000000000 Binary files a/files/24_1670_example.mp3 and /dev/null differ diff --git a/files/24_1670_meaning.mp3 b/files/24_1670_meaning.mp3 deleted file mode 100644 index 84f4c9814..000000000 Binary files a/files/24_1670_meaning.mp3 and /dev/null differ diff --git a/files/24_1671.jpg b/files/24_1671.jpg deleted file mode 100644 index b73b75281..000000000 Binary files a/files/24_1671.jpg and /dev/null differ diff --git a/files/24_1671.mp3 b/files/24_1671.mp3 deleted file mode 100644 index 0455cd54e..000000000 Binary files a/files/24_1671.mp3 and /dev/null differ diff --git a/files/24_1671_example.mp3 b/files/24_1671_example.mp3 deleted file mode 100644 index 2cb8ff209..000000000 Binary files a/files/24_1671_example.mp3 and /dev/null differ diff --git a/files/24_1671_meaning.mp3 b/files/24_1671_meaning.mp3 deleted file mode 100644 index fd5873fdb..000000000 Binary files a/files/24_1671_meaning.mp3 and /dev/null differ diff --git a/files/24_1672.jpg b/files/24_1672.jpg deleted file mode 100644 index c075f0485..000000000 Binary files a/files/24_1672.jpg and /dev/null differ diff --git a/files/24_1672.mp3 b/files/24_1672.mp3 deleted file mode 100644 index 464041207..000000000 Binary files a/files/24_1672.mp3 and /dev/null differ diff --git a/files/24_1672_example.mp3 b/files/24_1672_example.mp3 deleted file mode 100644 index 8dfa00f91..000000000 Binary files a/files/24_1672_example.mp3 and /dev/null differ diff --git a/files/24_1672_meaning.mp3 b/files/24_1672_meaning.mp3 deleted file mode 100644 index 8d59d68d5..000000000 Binary files a/files/24_1672_meaning.mp3 and /dev/null differ diff --git a/files/24_1673.jpg b/files/24_1673.jpg deleted file mode 100644 index 4efa248a2..000000000 Binary files a/files/24_1673.jpg and /dev/null differ diff --git a/files/24_1673.mp3 b/files/24_1673.mp3 deleted file mode 100644 index 3cfe97018..000000000 Binary files a/files/24_1673.mp3 and /dev/null differ diff --git a/files/24_1673_example.mp3 b/files/24_1673_example.mp3 deleted file mode 100644 index 2fab183cb..000000000 Binary files a/files/24_1673_example.mp3 and /dev/null differ diff --git a/files/24_1673_meaning.mp3 b/files/24_1673_meaning.mp3 deleted file mode 100644 index ff2e6d9ff..000000000 Binary files a/files/24_1673_meaning.mp3 and /dev/null differ diff --git a/files/24_1674.jpg b/files/24_1674.jpg deleted file mode 100644 index 509c403a5..000000000 Binary files a/files/24_1674.jpg and /dev/null differ diff --git a/files/24_1674.mp3 b/files/24_1674.mp3 deleted file mode 100644 index 800e6cc9e..000000000 Binary files a/files/24_1674.mp3 and /dev/null differ diff --git a/files/24_1674_example.mp3 b/files/24_1674_example.mp3 deleted file mode 100644 index 6d9f7dc61..000000000 Binary files a/files/24_1674_example.mp3 and /dev/null differ diff --git a/files/24_1674_meaning.mp3 b/files/24_1674_meaning.mp3 deleted file mode 100644 index 2bb4401a3..000000000 Binary files a/files/24_1674_meaning.mp3 and /dev/null differ diff --git a/files/24_1675.jpg b/files/24_1675.jpg deleted file mode 100644 index a5a67180c..000000000 Binary files a/files/24_1675.jpg and /dev/null differ diff --git a/files/24_1675.mp3 b/files/24_1675.mp3 deleted file mode 100644 index 70c2080fd..000000000 Binary files a/files/24_1675.mp3 and /dev/null differ diff --git a/files/24_1675_example.mp3 b/files/24_1675_example.mp3 deleted file mode 100644 index 7312c07f4..000000000 Binary files a/files/24_1675_example.mp3 and /dev/null differ diff --git a/files/24_1675_meaning.mp3 b/files/24_1675_meaning.mp3 deleted file mode 100644 index 7719a38c1..000000000 Binary files a/files/24_1675_meaning.mp3 and /dev/null differ diff --git a/files/24_1676.jpg b/files/24_1676.jpg deleted file mode 100644 index 43163bc6c..000000000 Binary files a/files/24_1676.jpg and /dev/null differ diff --git a/files/24_1676.mp3 b/files/24_1676.mp3 deleted file mode 100644 index 6d553080e..000000000 Binary files a/files/24_1676.mp3 and /dev/null differ diff --git a/files/24_1676_example.mp3 b/files/24_1676_example.mp3 deleted file mode 100644 index 6504c5fd8..000000000 Binary files a/files/24_1676_example.mp3 and /dev/null differ diff --git a/files/24_1676_meaning.mp3 b/files/24_1676_meaning.mp3 deleted file mode 100644 index 3e40cc15b..000000000 Binary files a/files/24_1676_meaning.mp3 and /dev/null differ diff --git a/files/24_1677.jpg b/files/24_1677.jpg deleted file mode 100644 index d3d7fd3bc..000000000 Binary files a/files/24_1677.jpg and /dev/null differ diff --git a/files/24_1677.mp3 b/files/24_1677.mp3 deleted file mode 100644 index 1f2ce769a..000000000 Binary files a/files/24_1677.mp3 and /dev/null differ diff --git a/files/24_1677_example.mp3 b/files/24_1677_example.mp3 deleted file mode 100644 index daa3a7520..000000000 Binary files a/files/24_1677_example.mp3 and /dev/null differ diff --git a/files/24_1677_meaning.mp3 b/files/24_1677_meaning.mp3 deleted file mode 100644 index b6c3e1031..000000000 Binary files a/files/24_1677_meaning.mp3 and /dev/null differ diff --git a/files/24_1678.jpg b/files/24_1678.jpg deleted file mode 100644 index 3b715dcf6..000000000 Binary files a/files/24_1678.jpg and /dev/null differ diff --git a/files/24_1678.mp3 b/files/24_1678.mp3 deleted file mode 100644 index aa9da5bc9..000000000 Binary files a/files/24_1678.mp3 and /dev/null differ diff --git a/files/24_1678_example.mp3 b/files/24_1678_example.mp3 deleted file mode 100644 index cfc1ca6f9..000000000 Binary files a/files/24_1678_example.mp3 and /dev/null differ diff --git a/files/24_1678_meaning.mp3 b/files/24_1678_meaning.mp3 deleted file mode 100644 index 38a22c45d..000000000 Binary files a/files/24_1678_meaning.mp3 and /dev/null differ diff --git a/files/24_1679.jpg b/files/24_1679.jpg deleted file mode 100644 index d653235ed..000000000 Binary files a/files/24_1679.jpg and /dev/null differ diff --git a/files/24_1679.mp3 b/files/24_1679.mp3 deleted file mode 100644 index 1f3b85e7a..000000000 Binary files a/files/24_1679.mp3 and /dev/null differ diff --git a/files/24_1679_example.mp3 b/files/24_1679_example.mp3 deleted file mode 100644 index 77924ee62..000000000 Binary files a/files/24_1679_example.mp3 and /dev/null differ diff --git a/files/24_1679_meaning.mp3 b/files/24_1679_meaning.mp3 deleted file mode 100644 index 4c60fa1b5..000000000 Binary files a/files/24_1679_meaning.mp3 and /dev/null differ diff --git a/files/24_1680.jpg b/files/24_1680.jpg deleted file mode 100644 index 2bb8d216f..000000000 Binary files a/files/24_1680.jpg and /dev/null differ diff --git a/files/24_1680.mp3 b/files/24_1680.mp3 deleted file mode 100644 index 36c6211e3..000000000 Binary files a/files/24_1680.mp3 and /dev/null differ diff --git a/files/24_1680_example.mp3 b/files/24_1680_example.mp3 deleted file mode 100644 index 31390ea9c..000000000 Binary files a/files/24_1680_example.mp3 and /dev/null differ diff --git a/files/24_1680_meaning.mp3 b/files/24_1680_meaning.mp3 deleted file mode 100644 index de62f5134..000000000 Binary files a/files/24_1680_meaning.mp3 and /dev/null differ diff --git a/files/24_2261.jpg b/files/24_2261.jpg deleted file mode 100644 index 352c71d95..000000000 Binary files a/files/24_2261.jpg and /dev/null differ diff --git a/files/24_2261.mp3 b/files/24_2261.mp3 deleted file mode 100644 index a4f9214b6..000000000 Binary files a/files/24_2261.mp3 and /dev/null differ diff --git a/files/24_2261_example.mp3 b/files/24_2261_example.mp3 deleted file mode 100644 index 51e62da9c..000000000 Binary files a/files/24_2261_example.mp3 and /dev/null differ diff --git a/files/24_2261_meaning.mp3 b/files/24_2261_meaning.mp3 deleted file mode 100644 index 916dbc109..000000000 Binary files a/files/24_2261_meaning.mp3 and /dev/null differ diff --git a/files/24_2262.jpg b/files/24_2262.jpg deleted file mode 100644 index ab95f3a03..000000000 Binary files a/files/24_2262.jpg and /dev/null differ diff --git a/files/24_2262.mp3 b/files/24_2262.mp3 deleted file mode 100644 index eda263956..000000000 Binary files a/files/24_2262.mp3 and /dev/null differ diff --git a/files/24_2262_example.mp3 b/files/24_2262_example.mp3 deleted file mode 100644 index 7bc43d27b..000000000 Binary files a/files/24_2262_example.mp3 and /dev/null differ diff --git a/files/24_2262_meaning.mp3 b/files/24_2262_meaning.mp3 deleted file mode 100644 index 5cbc23b7a..000000000 Binary files a/files/24_2262_meaning.mp3 and /dev/null differ diff --git a/files/24_2263.jpg b/files/24_2263.jpg deleted file mode 100644 index f0ab4ea4a..000000000 Binary files a/files/24_2263.jpg and /dev/null differ diff --git a/files/24_2263.mp3 b/files/24_2263.mp3 deleted file mode 100644 index 5c7d7920d..000000000 Binary files a/files/24_2263.mp3 and /dev/null differ diff --git a/files/24_2263_example.mp3 b/files/24_2263_example.mp3 deleted file mode 100644 index 2d7150997..000000000 Binary files a/files/24_2263_example.mp3 and /dev/null differ diff --git a/files/24_2263_meaning.mp3 b/files/24_2263_meaning.mp3 deleted file mode 100644 index 854ac5bd9..000000000 Binary files a/files/24_2263_meaning.mp3 and /dev/null differ diff --git a/files/24_2264.jpg b/files/24_2264.jpg deleted file mode 100644 index 736f5b687..000000000 Binary files a/files/24_2264.jpg and /dev/null differ diff --git a/files/24_2264.mp3 b/files/24_2264.mp3 deleted file mode 100644 index bdc8b92db..000000000 Binary files a/files/24_2264.mp3 and /dev/null differ diff --git a/files/24_2264_example.mp3 b/files/24_2264_example.mp3 deleted file mode 100644 index 2e10b3b3b..000000000 Binary files a/files/24_2264_example.mp3 and /dev/null differ diff --git a/files/24_2264_meaning.mp3 b/files/24_2264_meaning.mp3 deleted file mode 100644 index c7a731463..000000000 Binary files a/files/24_2264_meaning.mp3 and /dev/null differ diff --git a/files/24_2265.jpg b/files/24_2265.jpg deleted file mode 100644 index 35a4fe178..000000000 Binary files a/files/24_2265.jpg and /dev/null differ diff --git a/files/24_2265.mp3 b/files/24_2265.mp3 deleted file mode 100644 index acdfc1e66..000000000 Binary files a/files/24_2265.mp3 and /dev/null differ diff --git a/files/24_2265_example.mp3 b/files/24_2265_example.mp3 deleted file mode 100644 index b6cbe84bd..000000000 Binary files a/files/24_2265_example.mp3 and /dev/null differ diff --git a/files/24_2265_meaning.mp3 b/files/24_2265_meaning.mp3 deleted file mode 100644 index 24e93c432..000000000 Binary files a/files/24_2265_meaning.mp3 and /dev/null differ diff --git a/files/24_2266.jpg b/files/24_2266.jpg deleted file mode 100644 index 5e98897e8..000000000 Binary files a/files/24_2266.jpg and /dev/null differ diff --git a/files/24_2266.mp3 b/files/24_2266.mp3 deleted file mode 100644 index 8bfb4c778..000000000 Binary files a/files/24_2266.mp3 and /dev/null differ diff --git a/files/24_2266_example.mp3 b/files/24_2266_example.mp3 deleted file mode 100644 index c332cddb3..000000000 Binary files a/files/24_2266_example.mp3 and /dev/null differ diff --git a/files/24_2266_meaning.mp3 b/files/24_2266_meaning.mp3 deleted file mode 100644 index b793c1ca2..000000000 Binary files a/files/24_2266_meaning.mp3 and /dev/null differ diff --git a/files/24_2267.jpg b/files/24_2267.jpg deleted file mode 100644 index aa8d5eb89..000000000 Binary files a/files/24_2267.jpg and /dev/null differ diff --git a/files/24_2267.mp3 b/files/24_2267.mp3 deleted file mode 100644 index 77568f148..000000000 Binary files a/files/24_2267.mp3 and /dev/null differ diff --git a/files/24_2267_example.mp3 b/files/24_2267_example.mp3 deleted file mode 100644 index 4423af566..000000000 Binary files a/files/24_2267_example.mp3 and /dev/null differ diff --git a/files/24_2267_meaning.mp3 b/files/24_2267_meaning.mp3 deleted file mode 100644 index 71bd80b07..000000000 Binary files a/files/24_2267_meaning.mp3 and /dev/null differ diff --git a/files/24_2268.jpg b/files/24_2268.jpg deleted file mode 100644 index 7a86b5f15..000000000 Binary files a/files/24_2268.jpg and /dev/null differ diff --git a/files/24_2268.mp3 b/files/24_2268.mp3 deleted file mode 100644 index b3e4e56a6..000000000 Binary files a/files/24_2268.mp3 and /dev/null differ diff --git a/files/24_2268_example.mp3 b/files/24_2268_example.mp3 deleted file mode 100644 index 9ebd1c77a..000000000 Binary files a/files/24_2268_example.mp3 and /dev/null differ diff --git a/files/24_2268_meaning.mp3 b/files/24_2268_meaning.mp3 deleted file mode 100644 index 39672ec17..000000000 Binary files a/files/24_2268_meaning.mp3 and /dev/null differ diff --git a/files/24_2269.jpg b/files/24_2269.jpg deleted file mode 100644 index b85db39d7..000000000 Binary files a/files/24_2269.jpg and /dev/null differ diff --git a/files/24_2269.mp3 b/files/24_2269.mp3 deleted file mode 100644 index 5a4f0d59e..000000000 Binary files a/files/24_2269.mp3 and /dev/null differ diff --git a/files/24_2269_example.mp3 b/files/24_2269_example.mp3 deleted file mode 100644 index 0deeca9c7..000000000 Binary files a/files/24_2269_example.mp3 and /dev/null differ diff --git a/files/24_2269_meaning.mp3 b/files/24_2269_meaning.mp3 deleted file mode 100644 index 04b15db6d..000000000 Binary files a/files/24_2269_meaning.mp3 and /dev/null differ diff --git a/files/24_2270.jpg b/files/24_2270.jpg deleted file mode 100644 index 44a34b55c..000000000 Binary files a/files/24_2270.jpg and /dev/null differ diff --git a/files/24_2270.mp3 b/files/24_2270.mp3 deleted file mode 100644 index d07de0ff2..000000000 Binary files a/files/24_2270.mp3 and /dev/null differ diff --git a/files/24_2270_example.mp3 b/files/24_2270_example.mp3 deleted file mode 100644 index 260dfdffc..000000000 Binary files a/files/24_2270_example.mp3 and /dev/null differ diff --git a/files/24_2270_meaning.mp3 b/files/24_2270_meaning.mp3 deleted file mode 100644 index cb0225885..000000000 Binary files a/files/24_2270_meaning.mp3 and /dev/null differ diff --git a/files/24_2271.jpg b/files/24_2271.jpg deleted file mode 100644 index 6acd3ab2f..000000000 Binary files a/files/24_2271.jpg and /dev/null differ diff --git a/files/24_2271.mp3 b/files/24_2271.mp3 deleted file mode 100644 index f2695f808..000000000 Binary files a/files/24_2271.mp3 and /dev/null differ diff --git a/files/24_2271_example.mp3 b/files/24_2271_example.mp3 deleted file mode 100644 index 696318250..000000000 Binary files a/files/24_2271_example.mp3 and /dev/null differ diff --git a/files/24_2271_meaning.mp3 b/files/24_2271_meaning.mp3 deleted file mode 100644 index ec4a60c03..000000000 Binary files a/files/24_2271_meaning.mp3 and /dev/null differ diff --git a/files/24_2272.jpg b/files/24_2272.jpg deleted file mode 100644 index 85b910782..000000000 Binary files a/files/24_2272.jpg and /dev/null differ diff --git a/files/24_2272.mp3 b/files/24_2272.mp3 deleted file mode 100644 index 98a14c020..000000000 Binary files a/files/24_2272.mp3 and /dev/null differ diff --git a/files/24_2272_example.mp3 b/files/24_2272_example.mp3 deleted file mode 100644 index 7da2de488..000000000 Binary files a/files/24_2272_example.mp3 and /dev/null differ diff --git a/files/24_2272_meaning.mp3 b/files/24_2272_meaning.mp3 deleted file mode 100644 index 815222f6f..000000000 Binary files a/files/24_2272_meaning.mp3 and /dev/null differ diff --git a/files/24_2273.jpg b/files/24_2273.jpg deleted file mode 100644 index d05823a81..000000000 Binary files a/files/24_2273.jpg and /dev/null differ diff --git a/files/24_2273.mp3 b/files/24_2273.mp3 deleted file mode 100644 index fa7016223..000000000 Binary files a/files/24_2273.mp3 and /dev/null differ diff --git a/files/24_2273_example.mp3 b/files/24_2273_example.mp3 deleted file mode 100644 index 387ab2a6a..000000000 Binary files a/files/24_2273_example.mp3 and /dev/null differ diff --git a/files/24_2273_meaning.mp3 b/files/24_2273_meaning.mp3 deleted file mode 100644 index bd3f73e8c..000000000 Binary files a/files/24_2273_meaning.mp3 and /dev/null differ diff --git a/files/24_2274.jpg b/files/24_2274.jpg deleted file mode 100644 index e04ebc6ba..000000000 Binary files a/files/24_2274.jpg and /dev/null differ diff --git a/files/24_2274.mp3 b/files/24_2274.mp3 deleted file mode 100644 index 31d4a14fe..000000000 Binary files a/files/24_2274.mp3 and /dev/null differ diff --git a/files/24_2274_example.mp3 b/files/24_2274_example.mp3 deleted file mode 100644 index aacb5068f..000000000 Binary files a/files/24_2274_example.mp3 and /dev/null differ diff --git a/files/24_2274_meaning.mp3 b/files/24_2274_meaning.mp3 deleted file mode 100644 index f90b36e5b..000000000 Binary files a/files/24_2274_meaning.mp3 and /dev/null differ diff --git a/files/24_2275.jpg b/files/24_2275.jpg deleted file mode 100644 index 1f90fcb3c..000000000 Binary files a/files/24_2275.jpg and /dev/null differ diff --git a/files/24_2275.mp3 b/files/24_2275.mp3 deleted file mode 100644 index b5b740dfc..000000000 Binary files a/files/24_2275.mp3 and /dev/null differ diff --git a/files/24_2275_example.mp3 b/files/24_2275_example.mp3 deleted file mode 100644 index 9e665c445..000000000 Binary files a/files/24_2275_example.mp3 and /dev/null differ diff --git a/files/24_2275_meaning.mp3 b/files/24_2275_meaning.mp3 deleted file mode 100644 index 23b469b9f..000000000 Binary files a/files/24_2275_meaning.mp3 and /dev/null differ diff --git a/files/24_2276.jpg b/files/24_2276.jpg deleted file mode 100644 index 74fadaf13..000000000 Binary files a/files/24_2276.jpg and /dev/null differ diff --git a/files/24_2276.mp3 b/files/24_2276.mp3 deleted file mode 100644 index a6edd449c..000000000 Binary files a/files/24_2276.mp3 and /dev/null differ diff --git a/files/24_2276_example.mp3 b/files/24_2276_example.mp3 deleted file mode 100644 index f6f830bc1..000000000 Binary files a/files/24_2276_example.mp3 and /dev/null differ diff --git a/files/24_2276_meaning.mp3 b/files/24_2276_meaning.mp3 deleted file mode 100644 index db6f4c82f..000000000 Binary files a/files/24_2276_meaning.mp3 and /dev/null differ diff --git a/files/24_2277.jpg b/files/24_2277.jpg deleted file mode 100644 index 2b51c7f8d..000000000 Binary files a/files/24_2277.jpg and /dev/null differ diff --git a/files/24_2277.mp3 b/files/24_2277.mp3 deleted file mode 100644 index 2d5c5ec6f..000000000 Binary files a/files/24_2277.mp3 and /dev/null differ diff --git a/files/24_2277_example.mp3 b/files/24_2277_example.mp3 deleted file mode 100644 index dce828e84..000000000 Binary files a/files/24_2277_example.mp3 and /dev/null differ diff --git a/files/24_2277_meaning.mp3 b/files/24_2277_meaning.mp3 deleted file mode 100644 index 7d362ea1f..000000000 Binary files a/files/24_2277_meaning.mp3 and /dev/null differ diff --git a/files/24_2278.jpg b/files/24_2278.jpg deleted file mode 100644 index adbe51dbe..000000000 Binary files a/files/24_2278.jpg and /dev/null differ diff --git a/files/24_2278.mp3 b/files/24_2278.mp3 deleted file mode 100644 index c0ce77343..000000000 Binary files a/files/24_2278.mp3 and /dev/null differ diff --git a/files/24_2278_example.mp3 b/files/24_2278_example.mp3 deleted file mode 100644 index e1af7eff2..000000000 Binary files a/files/24_2278_example.mp3 and /dev/null differ diff --git a/files/24_2278_meaning.mp3 b/files/24_2278_meaning.mp3 deleted file mode 100644 index d3e0720f8..000000000 Binary files a/files/24_2278_meaning.mp3 and /dev/null differ diff --git a/files/24_2279.jpg b/files/24_2279.jpg deleted file mode 100644 index e83c58b8f..000000000 Binary files a/files/24_2279.jpg and /dev/null differ diff --git a/files/24_2279.mp3 b/files/24_2279.mp3 deleted file mode 100644 index 15e4bedaf..000000000 Binary files a/files/24_2279.mp3 and /dev/null differ diff --git a/files/24_2279_example.mp3 b/files/24_2279_example.mp3 deleted file mode 100644 index e828b5d18..000000000 Binary files a/files/24_2279_example.mp3 and /dev/null differ diff --git a/files/24_2279_meaning.mp3 b/files/24_2279_meaning.mp3 deleted file mode 100644 index 0cbf87baa..000000000 Binary files a/files/24_2279_meaning.mp3 and /dev/null differ diff --git a/files/24_2280.jpg b/files/24_2280.jpg deleted file mode 100644 index 9d76aa7ff..000000000 Binary files a/files/24_2280.jpg and /dev/null differ diff --git a/files/24_2280.mp3 b/files/24_2280.mp3 deleted file mode 100644 index b6613776a..000000000 Binary files a/files/24_2280.mp3 and /dev/null differ diff --git a/files/24_2280_example.mp3 b/files/24_2280_example.mp3 deleted file mode 100644 index cb8096bc4..000000000 Binary files a/files/24_2280_example.mp3 and /dev/null differ diff --git a/files/24_2280_meaning.mp3 b/files/24_2280_meaning.mp3 deleted file mode 100644 index 9eb3612a6..000000000 Binary files a/files/24_2280_meaning.mp3 and /dev/null differ diff --git a/files/24_2861.jpg b/files/24_2861.jpg deleted file mode 100644 index 29fb9d06b..000000000 Binary files a/files/24_2861.jpg and /dev/null differ diff --git a/files/24_2861.mp3 b/files/24_2861.mp3 deleted file mode 100644 index 9c65f85af..000000000 Binary files a/files/24_2861.mp3 and /dev/null differ diff --git a/files/24_2861_example.mp3 b/files/24_2861_example.mp3 deleted file mode 100644 index 0e16d454c..000000000 Binary files a/files/24_2861_example.mp3 and /dev/null differ diff --git a/files/24_2861_meaning.mp3 b/files/24_2861_meaning.mp3 deleted file mode 100644 index f4dbb4b24..000000000 Binary files a/files/24_2861_meaning.mp3 and /dev/null differ diff --git a/files/24_2862.jpg b/files/24_2862.jpg deleted file mode 100644 index 2d051d447..000000000 Binary files a/files/24_2862.jpg and /dev/null differ diff --git a/files/24_2862.mp3 b/files/24_2862.mp3 deleted file mode 100644 index 41391ecaa..000000000 Binary files a/files/24_2862.mp3 and /dev/null differ diff --git a/files/24_2862_example.mp3 b/files/24_2862_example.mp3 deleted file mode 100644 index ef553836d..000000000 Binary files a/files/24_2862_example.mp3 and /dev/null differ diff --git a/files/24_2862_meaning.mp3 b/files/24_2862_meaning.mp3 deleted file mode 100644 index bfc64e668..000000000 Binary files a/files/24_2862_meaning.mp3 and /dev/null differ diff --git a/files/24_2863.jpg b/files/24_2863.jpg deleted file mode 100644 index dfbdc7dab..000000000 Binary files a/files/24_2863.jpg and /dev/null differ diff --git a/files/24_2863.mp3 b/files/24_2863.mp3 deleted file mode 100644 index 012083312..000000000 Binary files a/files/24_2863.mp3 and /dev/null differ diff --git a/files/24_2863_example.mp3 b/files/24_2863_example.mp3 deleted file mode 100644 index 015016ef2..000000000 Binary files a/files/24_2863_example.mp3 and /dev/null differ diff --git a/files/24_2863_meaning.mp3 b/files/24_2863_meaning.mp3 deleted file mode 100644 index 46ec91a2c..000000000 Binary files a/files/24_2863_meaning.mp3 and /dev/null differ diff --git a/files/24_2864.jpg b/files/24_2864.jpg deleted file mode 100644 index de1bf2464..000000000 Binary files a/files/24_2864.jpg and /dev/null differ diff --git a/files/24_2864.mp3 b/files/24_2864.mp3 deleted file mode 100644 index 0b4424419..000000000 Binary files a/files/24_2864.mp3 and /dev/null differ diff --git a/files/24_2864_example.mp3 b/files/24_2864_example.mp3 deleted file mode 100644 index cd65ceb73..000000000 Binary files a/files/24_2864_example.mp3 and /dev/null differ diff --git a/files/24_2864_meaning.mp3 b/files/24_2864_meaning.mp3 deleted file mode 100644 index b13526353..000000000 Binary files a/files/24_2864_meaning.mp3 and /dev/null differ diff --git a/files/24_2865.jpg b/files/24_2865.jpg deleted file mode 100644 index 12b8ecf1e..000000000 Binary files a/files/24_2865.jpg and /dev/null differ diff --git a/files/24_2865.mp3 b/files/24_2865.mp3 deleted file mode 100644 index eaab233ca..000000000 Binary files a/files/24_2865.mp3 and /dev/null differ diff --git a/files/24_2865_example.mp3 b/files/24_2865_example.mp3 deleted file mode 100644 index b5eaa4ceb..000000000 Binary files a/files/24_2865_example.mp3 and /dev/null differ diff --git a/files/24_2865_meaning.mp3 b/files/24_2865_meaning.mp3 deleted file mode 100644 index 1da644ec5..000000000 Binary files a/files/24_2865_meaning.mp3 and /dev/null differ diff --git a/files/24_2866.jpg b/files/24_2866.jpg deleted file mode 100644 index 0f2443fc4..000000000 Binary files a/files/24_2866.jpg and /dev/null differ diff --git a/files/24_2866.mp3 b/files/24_2866.mp3 deleted file mode 100644 index 90e60ef18..000000000 Binary files a/files/24_2866.mp3 and /dev/null differ diff --git a/files/24_2866_example.mp3 b/files/24_2866_example.mp3 deleted file mode 100644 index 30e79a088..000000000 Binary files a/files/24_2866_example.mp3 and /dev/null differ diff --git a/files/24_2866_meaning.mp3 b/files/24_2866_meaning.mp3 deleted file mode 100644 index 27b982273..000000000 Binary files a/files/24_2866_meaning.mp3 and /dev/null differ diff --git a/files/24_2867.jpg b/files/24_2867.jpg deleted file mode 100644 index 16ad41db6..000000000 Binary files a/files/24_2867.jpg and /dev/null differ diff --git a/files/24_2867.mp3 b/files/24_2867.mp3 deleted file mode 100644 index 9538f976e..000000000 Binary files a/files/24_2867.mp3 and /dev/null differ diff --git a/files/24_2867_example.mp3 b/files/24_2867_example.mp3 deleted file mode 100644 index 4108d23ce..000000000 Binary files a/files/24_2867_example.mp3 and /dev/null differ diff --git a/files/24_2867_meaning.mp3 b/files/24_2867_meaning.mp3 deleted file mode 100644 index 448163910..000000000 Binary files a/files/24_2867_meaning.mp3 and /dev/null differ diff --git a/files/24_2868.jpg b/files/24_2868.jpg deleted file mode 100644 index 3a3bf63b9..000000000 Binary files a/files/24_2868.jpg and /dev/null differ diff --git a/files/24_2868.mp3 b/files/24_2868.mp3 deleted file mode 100644 index c1d52b16b..000000000 Binary files a/files/24_2868.mp3 and /dev/null differ diff --git a/files/24_2868_example.mp3 b/files/24_2868_example.mp3 deleted file mode 100644 index 10540aac7..000000000 Binary files a/files/24_2868_example.mp3 and /dev/null differ diff --git a/files/24_2868_meaning.mp3 b/files/24_2868_meaning.mp3 deleted file mode 100644 index c860a5c3a..000000000 Binary files a/files/24_2868_meaning.mp3 and /dev/null differ diff --git a/files/24_2869.jpg b/files/24_2869.jpg deleted file mode 100644 index 5b11a1ab6..000000000 Binary files a/files/24_2869.jpg and /dev/null differ diff --git a/files/24_2869.mp3 b/files/24_2869.mp3 deleted file mode 100644 index a9e30bf0c..000000000 Binary files a/files/24_2869.mp3 and /dev/null differ diff --git a/files/24_2869_example.mp3 b/files/24_2869_example.mp3 deleted file mode 100644 index 03e62ace4..000000000 Binary files a/files/24_2869_example.mp3 and /dev/null differ diff --git a/files/24_2869_meaning.mp3 b/files/24_2869_meaning.mp3 deleted file mode 100644 index 5924f564b..000000000 Binary files a/files/24_2869_meaning.mp3 and /dev/null differ diff --git a/files/24_2870.jpg b/files/24_2870.jpg deleted file mode 100644 index 53955a9b5..000000000 Binary files a/files/24_2870.jpg and /dev/null differ diff --git a/files/24_2870.mp3 b/files/24_2870.mp3 deleted file mode 100644 index b6f19ea02..000000000 Binary files a/files/24_2870.mp3 and /dev/null differ diff --git a/files/24_2870_example.mp3 b/files/24_2870_example.mp3 deleted file mode 100644 index 554e1595b..000000000 Binary files a/files/24_2870_example.mp3 and /dev/null differ diff --git a/files/24_2870_meaning.mp3 b/files/24_2870_meaning.mp3 deleted file mode 100644 index 303927f0b..000000000 Binary files a/files/24_2870_meaning.mp3 and /dev/null differ diff --git a/files/24_2871.jpg b/files/24_2871.jpg deleted file mode 100644 index 5850ade7f..000000000 Binary files a/files/24_2871.jpg and /dev/null differ diff --git a/files/24_2871.mp3 b/files/24_2871.mp3 deleted file mode 100644 index b96b7e598..000000000 Binary files a/files/24_2871.mp3 and /dev/null differ diff --git a/files/24_2871_example.mp3 b/files/24_2871_example.mp3 deleted file mode 100644 index a71f0961d..000000000 Binary files a/files/24_2871_example.mp3 and /dev/null differ diff --git a/files/24_2871_meaning.mp3 b/files/24_2871_meaning.mp3 deleted file mode 100644 index 25b4d2ecf..000000000 Binary files a/files/24_2871_meaning.mp3 and /dev/null differ diff --git a/files/24_2872.jpg b/files/24_2872.jpg deleted file mode 100644 index 72972fa23..000000000 Binary files a/files/24_2872.jpg and /dev/null differ diff --git a/files/24_2872.mp3 b/files/24_2872.mp3 deleted file mode 100644 index 34be7ff1d..000000000 Binary files a/files/24_2872.mp3 and /dev/null differ diff --git a/files/24_2872_example.mp3 b/files/24_2872_example.mp3 deleted file mode 100644 index 02a034327..000000000 Binary files a/files/24_2872_example.mp3 and /dev/null differ diff --git a/files/24_2872_meaning.mp3 b/files/24_2872_meaning.mp3 deleted file mode 100644 index 1d716a460..000000000 Binary files a/files/24_2872_meaning.mp3 and /dev/null differ diff --git a/files/24_2873.jpg b/files/24_2873.jpg deleted file mode 100644 index f6f2e41cc..000000000 Binary files a/files/24_2873.jpg and /dev/null differ diff --git a/files/24_2873.mp3 b/files/24_2873.mp3 deleted file mode 100644 index 2a71a788a..000000000 Binary files a/files/24_2873.mp3 and /dev/null differ diff --git a/files/24_2873_example.mp3 b/files/24_2873_example.mp3 deleted file mode 100644 index 5bc2555ab..000000000 Binary files a/files/24_2873_example.mp3 and /dev/null differ diff --git a/files/24_2873_meaning.mp3 b/files/24_2873_meaning.mp3 deleted file mode 100644 index 8f4da1df6..000000000 Binary files a/files/24_2873_meaning.mp3 and /dev/null differ diff --git a/files/24_2874.jpg b/files/24_2874.jpg deleted file mode 100644 index b12f447e9..000000000 Binary files a/files/24_2874.jpg and /dev/null differ diff --git a/files/24_2874.mp3 b/files/24_2874.mp3 deleted file mode 100644 index 1b8b9b451..000000000 Binary files a/files/24_2874.mp3 and /dev/null differ diff --git a/files/24_2874_example.mp3 b/files/24_2874_example.mp3 deleted file mode 100644 index 123c360e7..000000000 Binary files a/files/24_2874_example.mp3 and /dev/null differ diff --git a/files/24_2874_meaning.mp3 b/files/24_2874_meaning.mp3 deleted file mode 100644 index 2dab6222e..000000000 Binary files a/files/24_2874_meaning.mp3 and /dev/null differ diff --git a/files/24_2875.jpg b/files/24_2875.jpg deleted file mode 100644 index a845f61b2..000000000 Binary files a/files/24_2875.jpg and /dev/null differ diff --git a/files/24_2875.mp3 b/files/24_2875.mp3 deleted file mode 100644 index 89c6d5c32..000000000 Binary files a/files/24_2875.mp3 and /dev/null differ diff --git a/files/24_2875_example.mp3 b/files/24_2875_example.mp3 deleted file mode 100644 index 60d87f759..000000000 Binary files a/files/24_2875_example.mp3 and /dev/null differ diff --git a/files/24_2875_meaning.mp3 b/files/24_2875_meaning.mp3 deleted file mode 100644 index ab75117ee..000000000 Binary files a/files/24_2875_meaning.mp3 and /dev/null differ diff --git a/files/24_2876.jpg b/files/24_2876.jpg deleted file mode 100644 index f49ce752b..000000000 Binary files a/files/24_2876.jpg and /dev/null differ diff --git a/files/24_2876.mp3 b/files/24_2876.mp3 deleted file mode 100644 index 66119633a..000000000 Binary files a/files/24_2876.mp3 and /dev/null differ diff --git a/files/24_2876_example.mp3 b/files/24_2876_example.mp3 deleted file mode 100644 index 3565a2b1b..000000000 Binary files a/files/24_2876_example.mp3 and /dev/null differ diff --git a/files/24_2876_meaning.mp3 b/files/24_2876_meaning.mp3 deleted file mode 100644 index 1b0b77e69..000000000 Binary files a/files/24_2876_meaning.mp3 and /dev/null differ diff --git a/files/24_2877.jpg b/files/24_2877.jpg deleted file mode 100644 index 3f56c88c1..000000000 Binary files a/files/24_2877.jpg and /dev/null differ diff --git a/files/24_2877.mp3 b/files/24_2877.mp3 deleted file mode 100644 index 2eac02e8a..000000000 Binary files a/files/24_2877.mp3 and /dev/null differ diff --git a/files/24_2877_example.mp3 b/files/24_2877_example.mp3 deleted file mode 100644 index 6960b642a..000000000 Binary files a/files/24_2877_example.mp3 and /dev/null differ diff --git a/files/24_2877_meaning.mp3 b/files/24_2877_meaning.mp3 deleted file mode 100644 index bb0e1d347..000000000 Binary files a/files/24_2877_meaning.mp3 and /dev/null differ diff --git a/files/24_2878.jpg b/files/24_2878.jpg deleted file mode 100644 index 6f1174780..000000000 Binary files a/files/24_2878.jpg and /dev/null differ diff --git a/files/24_2878.mp3 b/files/24_2878.mp3 deleted file mode 100644 index 8dff477af..000000000 Binary files a/files/24_2878.mp3 and /dev/null differ diff --git a/files/24_2878_example.mp3 b/files/24_2878_example.mp3 deleted file mode 100644 index 7dd34b347..000000000 Binary files a/files/24_2878_example.mp3 and /dev/null differ diff --git a/files/24_2878_meaning.mp3 b/files/24_2878_meaning.mp3 deleted file mode 100644 index 73d2bad43..000000000 Binary files a/files/24_2878_meaning.mp3 and /dev/null differ diff --git a/files/24_2879.jpg b/files/24_2879.jpg deleted file mode 100644 index 4fc75eec5..000000000 Binary files a/files/24_2879.jpg and /dev/null differ diff --git a/files/24_2879.mp3 b/files/24_2879.mp3 deleted file mode 100644 index 060fcb33e..000000000 Binary files a/files/24_2879.mp3 and /dev/null differ diff --git a/files/24_2879_example.mp3 b/files/24_2879_example.mp3 deleted file mode 100644 index 9e19e1337..000000000 Binary files a/files/24_2879_example.mp3 and /dev/null differ diff --git a/files/24_2879_meaning.mp3 b/files/24_2879_meaning.mp3 deleted file mode 100644 index 551993596..000000000 Binary files a/files/24_2879_meaning.mp3 and /dev/null differ diff --git a/files/24_2880.jpg b/files/24_2880.jpg deleted file mode 100644 index 025b12488..000000000 Binary files a/files/24_2880.jpg and /dev/null differ diff --git a/files/24_2880.mp3 b/files/24_2880.mp3 deleted file mode 100644 index 3c0c3dad8..000000000 Binary files a/files/24_2880.mp3 and /dev/null differ diff --git a/files/24_2880_example.mp3 b/files/24_2880_example.mp3 deleted file mode 100644 index cfc74ba21..000000000 Binary files a/files/24_2880_example.mp3 and /dev/null differ diff --git a/files/24_2880_meaning.mp3 b/files/24_2880_meaning.mp3 deleted file mode 100644 index ed53aeffe..000000000 Binary files a/files/24_2880_meaning.mp3 and /dev/null differ diff --git a/files/24_3461.jpg b/files/24_3461.jpg deleted file mode 100644 index ec20d59a5..000000000 Binary files a/files/24_3461.jpg and /dev/null differ diff --git a/files/24_3461.mp3 b/files/24_3461.mp3 deleted file mode 100644 index 401ff63bb..000000000 Binary files a/files/24_3461.mp3 and /dev/null differ diff --git a/files/24_3461_example.mp3 b/files/24_3461_example.mp3 deleted file mode 100644 index 07986ca0b..000000000 Binary files a/files/24_3461_example.mp3 and /dev/null differ diff --git a/files/24_3461_meaning.mp3 b/files/24_3461_meaning.mp3 deleted file mode 100644 index 91c14996c..000000000 Binary files a/files/24_3461_meaning.mp3 and /dev/null differ diff --git a/files/24_3462.jpg b/files/24_3462.jpg deleted file mode 100644 index c00ef1885..000000000 Binary files a/files/24_3462.jpg and /dev/null differ diff --git a/files/24_3462.mp3 b/files/24_3462.mp3 deleted file mode 100644 index d2f2be270..000000000 Binary files a/files/24_3462.mp3 and /dev/null differ diff --git a/files/24_3462_example.mp3 b/files/24_3462_example.mp3 deleted file mode 100644 index 47e35232c..000000000 Binary files a/files/24_3462_example.mp3 and /dev/null differ diff --git a/files/24_3462_meaning.mp3 b/files/24_3462_meaning.mp3 deleted file mode 100644 index b29e5e8e9..000000000 Binary files a/files/24_3462_meaning.mp3 and /dev/null differ diff --git a/files/24_3463.jpg b/files/24_3463.jpg deleted file mode 100644 index 97c9b3087..000000000 Binary files a/files/24_3463.jpg and /dev/null differ diff --git a/files/24_3463.mp3 b/files/24_3463.mp3 deleted file mode 100644 index 1c0f50d4d..000000000 Binary files a/files/24_3463.mp3 and /dev/null differ diff --git a/files/24_3463_example.mp3 b/files/24_3463_example.mp3 deleted file mode 100644 index 4f4d78326..000000000 Binary files a/files/24_3463_example.mp3 and /dev/null differ diff --git a/files/24_3463_meaning.mp3 b/files/24_3463_meaning.mp3 deleted file mode 100644 index 17e783b22..000000000 Binary files a/files/24_3463_meaning.mp3 and /dev/null differ diff --git a/files/24_3464.jpg b/files/24_3464.jpg deleted file mode 100644 index db21c1018..000000000 Binary files a/files/24_3464.jpg and /dev/null differ diff --git a/files/24_3464.mp3 b/files/24_3464.mp3 deleted file mode 100644 index 5bd0fb697..000000000 Binary files a/files/24_3464.mp3 and /dev/null differ diff --git a/files/24_3464_example.mp3 b/files/24_3464_example.mp3 deleted file mode 100644 index 4921f121b..000000000 Binary files a/files/24_3464_example.mp3 and /dev/null differ diff --git a/files/24_3464_meaning.mp3 b/files/24_3464_meaning.mp3 deleted file mode 100644 index 05a1be1e9..000000000 Binary files a/files/24_3464_meaning.mp3 and /dev/null differ diff --git a/files/24_3465.jpg b/files/24_3465.jpg deleted file mode 100644 index d0f1d2282..000000000 Binary files a/files/24_3465.jpg and /dev/null differ diff --git a/files/24_3465.mp3 b/files/24_3465.mp3 deleted file mode 100644 index 674eb0bf7..000000000 Binary files a/files/24_3465.mp3 and /dev/null differ diff --git a/files/24_3465_example.mp3 b/files/24_3465_example.mp3 deleted file mode 100644 index daf9fc5d6..000000000 Binary files a/files/24_3465_example.mp3 and /dev/null differ diff --git a/files/24_3465_meaning.mp3 b/files/24_3465_meaning.mp3 deleted file mode 100644 index 1c87f6fca..000000000 Binary files a/files/24_3465_meaning.mp3 and /dev/null differ diff --git a/files/24_3466.jpg b/files/24_3466.jpg deleted file mode 100644 index d03052d0b..000000000 Binary files a/files/24_3466.jpg and /dev/null differ diff --git a/files/24_3466.mp3 b/files/24_3466.mp3 deleted file mode 100644 index 62544811d..000000000 Binary files a/files/24_3466.mp3 and /dev/null differ diff --git a/files/24_3466_example.mp3 b/files/24_3466_example.mp3 deleted file mode 100644 index 1b437eb37..000000000 Binary files a/files/24_3466_example.mp3 and /dev/null differ diff --git a/files/24_3466_meaning.mp3 b/files/24_3466_meaning.mp3 deleted file mode 100644 index d4798d5e1..000000000 Binary files a/files/24_3466_meaning.mp3 and /dev/null differ diff --git a/files/24_3467.jpg b/files/24_3467.jpg deleted file mode 100644 index 91abf2059..000000000 Binary files a/files/24_3467.jpg and /dev/null differ diff --git a/files/24_3467.mp3 b/files/24_3467.mp3 deleted file mode 100644 index e3c406dcd..000000000 Binary files a/files/24_3467.mp3 and /dev/null differ diff --git a/files/24_3467_example.mp3 b/files/24_3467_example.mp3 deleted file mode 100644 index d4a2a6470..000000000 Binary files a/files/24_3467_example.mp3 and /dev/null differ diff --git a/files/24_3467_meaning.mp3 b/files/24_3467_meaning.mp3 deleted file mode 100644 index 95f9428ab..000000000 Binary files a/files/24_3467_meaning.mp3 and /dev/null differ diff --git a/files/24_3468.jpg b/files/24_3468.jpg deleted file mode 100644 index af32be960..000000000 Binary files a/files/24_3468.jpg and /dev/null differ diff --git a/files/24_3468.mp3 b/files/24_3468.mp3 deleted file mode 100644 index 535ce22de..000000000 Binary files a/files/24_3468.mp3 and /dev/null differ diff --git a/files/24_3468_example.mp3 b/files/24_3468_example.mp3 deleted file mode 100644 index a67c1c065..000000000 Binary files a/files/24_3468_example.mp3 and /dev/null differ diff --git a/files/24_3468_meaning.mp3 b/files/24_3468_meaning.mp3 deleted file mode 100644 index 1c456bde0..000000000 Binary files a/files/24_3468_meaning.mp3 and /dev/null differ diff --git a/files/24_3469.jpg b/files/24_3469.jpg deleted file mode 100644 index dc080d477..000000000 Binary files a/files/24_3469.jpg and /dev/null differ diff --git a/files/24_3469.mp3 b/files/24_3469.mp3 deleted file mode 100644 index 4b670d4d3..000000000 Binary files a/files/24_3469.mp3 and /dev/null differ diff --git a/files/24_3469_example.mp3 b/files/24_3469_example.mp3 deleted file mode 100644 index 5e4b043c1..000000000 Binary files a/files/24_3469_example.mp3 and /dev/null differ diff --git a/files/24_3469_meaning.mp3 b/files/24_3469_meaning.mp3 deleted file mode 100644 index e042d2fe4..000000000 Binary files a/files/24_3469_meaning.mp3 and /dev/null differ diff --git a/files/24_3470.jpg b/files/24_3470.jpg deleted file mode 100644 index 05a13b7ab..000000000 Binary files a/files/24_3470.jpg and /dev/null differ diff --git a/files/24_3470.mp3 b/files/24_3470.mp3 deleted file mode 100644 index bb8d52ed1..000000000 Binary files a/files/24_3470.mp3 and /dev/null differ diff --git a/files/24_3470_example.mp3 b/files/24_3470_example.mp3 deleted file mode 100644 index 59e71fe63..000000000 Binary files a/files/24_3470_example.mp3 and /dev/null differ diff --git a/files/24_3470_meaning.mp3 b/files/24_3470_meaning.mp3 deleted file mode 100644 index 0d245d3fb..000000000 Binary files a/files/24_3470_meaning.mp3 and /dev/null differ diff --git a/files/24_3471.jpg b/files/24_3471.jpg deleted file mode 100644 index e8e686e7f..000000000 Binary files a/files/24_3471.jpg and /dev/null differ diff --git a/files/24_3471.mp3 b/files/24_3471.mp3 deleted file mode 100644 index 5ff745414..000000000 Binary files a/files/24_3471.mp3 and /dev/null differ diff --git a/files/24_3471_example.mp3 b/files/24_3471_example.mp3 deleted file mode 100644 index 8b3ce41e3..000000000 Binary files a/files/24_3471_example.mp3 and /dev/null differ diff --git a/files/24_3471_meaning.mp3 b/files/24_3471_meaning.mp3 deleted file mode 100644 index dc276c551..000000000 Binary files a/files/24_3471_meaning.mp3 and /dev/null differ diff --git a/files/24_3472.jpg b/files/24_3472.jpg deleted file mode 100644 index ff8aa08b7..000000000 Binary files a/files/24_3472.jpg and /dev/null differ diff --git a/files/24_3472.mp3 b/files/24_3472.mp3 deleted file mode 100644 index 75ee8ca6e..000000000 Binary files a/files/24_3472.mp3 and /dev/null differ diff --git a/files/24_3472_example.mp3 b/files/24_3472_example.mp3 deleted file mode 100644 index 980c58d3f..000000000 Binary files a/files/24_3472_example.mp3 and /dev/null differ diff --git a/files/24_3472_meaning.mp3 b/files/24_3472_meaning.mp3 deleted file mode 100644 index 9ef735baa..000000000 Binary files a/files/24_3472_meaning.mp3 and /dev/null differ diff --git a/files/24_3473.jpg b/files/24_3473.jpg deleted file mode 100644 index eb8b34368..000000000 Binary files a/files/24_3473.jpg and /dev/null differ diff --git a/files/24_3473.mp3 b/files/24_3473.mp3 deleted file mode 100644 index 0ce94b634..000000000 Binary files a/files/24_3473.mp3 and /dev/null differ diff --git a/files/24_3473_example.mp3 b/files/24_3473_example.mp3 deleted file mode 100644 index 22df0670f..000000000 Binary files a/files/24_3473_example.mp3 and /dev/null differ diff --git a/files/24_3473_meaning.mp3 b/files/24_3473_meaning.mp3 deleted file mode 100644 index 74b400908..000000000 Binary files a/files/24_3473_meaning.mp3 and /dev/null differ diff --git a/files/24_3474.jpg b/files/24_3474.jpg deleted file mode 100644 index 212384195..000000000 Binary files a/files/24_3474.jpg and /dev/null differ diff --git a/files/24_3474.mp3 b/files/24_3474.mp3 deleted file mode 100644 index 675961d75..000000000 Binary files a/files/24_3474.mp3 and /dev/null differ diff --git a/files/24_3474_example.mp3 b/files/24_3474_example.mp3 deleted file mode 100644 index e2d3c0e20..000000000 Binary files a/files/24_3474_example.mp3 and /dev/null differ diff --git a/files/24_3474_meaning.mp3 b/files/24_3474_meaning.mp3 deleted file mode 100644 index cbd71e3b7..000000000 Binary files a/files/24_3474_meaning.mp3 and /dev/null differ diff --git a/files/24_3475.jpg b/files/24_3475.jpg deleted file mode 100644 index 2b022a836..000000000 Binary files a/files/24_3475.jpg and /dev/null differ diff --git a/files/24_3475.mp3 b/files/24_3475.mp3 deleted file mode 100644 index 04f43be6f..000000000 Binary files a/files/24_3475.mp3 and /dev/null differ diff --git a/files/24_3475_example.mp3 b/files/24_3475_example.mp3 deleted file mode 100644 index 9085ba39b..000000000 Binary files a/files/24_3475_example.mp3 and /dev/null differ diff --git a/files/24_3475_meaning.mp3 b/files/24_3475_meaning.mp3 deleted file mode 100644 index 37016e9e4..000000000 Binary files a/files/24_3475_meaning.mp3 and /dev/null differ diff --git a/files/24_3476.jpg b/files/24_3476.jpg deleted file mode 100644 index 94bd33afc..000000000 Binary files a/files/24_3476.jpg and /dev/null differ diff --git a/files/24_3476.mp3 b/files/24_3476.mp3 deleted file mode 100644 index 70b41405e..000000000 Binary files a/files/24_3476.mp3 and /dev/null differ diff --git a/files/24_3476_example.mp3 b/files/24_3476_example.mp3 deleted file mode 100644 index 1ad5ee9df..000000000 Binary files a/files/24_3476_example.mp3 and /dev/null differ diff --git a/files/24_3476_meaning.mp3 b/files/24_3476_meaning.mp3 deleted file mode 100644 index dfddad23a..000000000 Binary files a/files/24_3476_meaning.mp3 and /dev/null differ diff --git a/files/24_3477.jpg b/files/24_3477.jpg deleted file mode 100644 index 17b7dd283..000000000 Binary files a/files/24_3477.jpg and /dev/null differ diff --git a/files/24_3477.mp3 b/files/24_3477.mp3 deleted file mode 100644 index 68f4a28bb..000000000 Binary files a/files/24_3477.mp3 and /dev/null differ diff --git a/files/24_3477_example.mp3 b/files/24_3477_example.mp3 deleted file mode 100644 index 298540bde..000000000 Binary files a/files/24_3477_example.mp3 and /dev/null differ diff --git a/files/24_3477_meaning.mp3 b/files/24_3477_meaning.mp3 deleted file mode 100644 index ecdcf0217..000000000 Binary files a/files/24_3477_meaning.mp3 and /dev/null differ diff --git a/files/24_3478.jpg b/files/24_3478.jpg deleted file mode 100644 index aa90eb0a1..000000000 Binary files a/files/24_3478.jpg and /dev/null differ diff --git a/files/24_3478.mp3 b/files/24_3478.mp3 deleted file mode 100644 index d66ae9d1a..000000000 Binary files a/files/24_3478.mp3 and /dev/null differ diff --git a/files/24_3478_example.mp3 b/files/24_3478_example.mp3 deleted file mode 100644 index d478ab06b..000000000 Binary files a/files/24_3478_example.mp3 and /dev/null differ diff --git a/files/24_3478_meaning.mp3 b/files/24_3478_meaning.mp3 deleted file mode 100644 index 2bcf7d77c..000000000 Binary files a/files/24_3478_meaning.mp3 and /dev/null differ diff --git a/files/24_3479.jpg b/files/24_3479.jpg deleted file mode 100644 index 6b40ccfd6..000000000 Binary files a/files/24_3479.jpg and /dev/null differ diff --git a/files/24_3479.mp3 b/files/24_3479.mp3 deleted file mode 100644 index 2cbe17828..000000000 Binary files a/files/24_3479.mp3 and /dev/null differ diff --git a/files/24_3479_example.mp3 b/files/24_3479_example.mp3 deleted file mode 100644 index 870379686..000000000 Binary files a/files/24_3479_example.mp3 and /dev/null differ diff --git a/files/24_3479_meaning.mp3 b/files/24_3479_meaning.mp3 deleted file mode 100644 index 69f3489ca..000000000 Binary files a/files/24_3479_meaning.mp3 and /dev/null differ diff --git a/files/24_3480.jpg b/files/24_3480.jpg deleted file mode 100644 index f0a73d68b..000000000 Binary files a/files/24_3480.jpg and /dev/null differ diff --git a/files/24_3480.mp3 b/files/24_3480.mp3 deleted file mode 100644 index 38e62a7d4..000000000 Binary files a/files/24_3480.mp3 and /dev/null differ diff --git a/files/24_3480_example.mp3 b/files/24_3480_example.mp3 deleted file mode 100644 index 0de2f75c9..000000000 Binary files a/files/24_3480_example.mp3 and /dev/null differ diff --git a/files/24_3480_meaning.mp3 b/files/24_3480_meaning.mp3 deleted file mode 100644 index 1035f9888..000000000 Binary files a/files/24_3480_meaning.mp3 and /dev/null differ diff --git a/files/25_0481.jpg b/files/25_0481.jpg deleted file mode 100644 index 149235b39..000000000 Binary files a/files/25_0481.jpg and /dev/null differ diff --git a/files/25_0481.mp3 b/files/25_0481.mp3 deleted file mode 100644 index 45633ecc1..000000000 Binary files a/files/25_0481.mp3 and /dev/null differ diff --git a/files/25_0481_example.mp3 b/files/25_0481_example.mp3 deleted file mode 100644 index 46155c5b6..000000000 Binary files a/files/25_0481_example.mp3 and /dev/null differ diff --git a/files/25_0481_meaning.mp3 b/files/25_0481_meaning.mp3 deleted file mode 100644 index 543b5b7f8..000000000 Binary files a/files/25_0481_meaning.mp3 and /dev/null differ diff --git a/files/25_0482.jpg b/files/25_0482.jpg deleted file mode 100644 index f63c7292c..000000000 Binary files a/files/25_0482.jpg and /dev/null differ diff --git a/files/25_0482.mp3 b/files/25_0482.mp3 deleted file mode 100644 index 5521a68c4..000000000 Binary files a/files/25_0482.mp3 and /dev/null differ diff --git a/files/25_0482_example.mp3 b/files/25_0482_example.mp3 deleted file mode 100644 index d794e84ae..000000000 Binary files a/files/25_0482_example.mp3 and /dev/null differ diff --git a/files/25_0482_meaning.mp3 b/files/25_0482_meaning.mp3 deleted file mode 100644 index 429572668..000000000 Binary files a/files/25_0482_meaning.mp3 and /dev/null differ diff --git a/files/25_0483.jpg b/files/25_0483.jpg deleted file mode 100644 index cbac55fb4..000000000 Binary files a/files/25_0483.jpg and /dev/null differ diff --git a/files/25_0483.mp3 b/files/25_0483.mp3 deleted file mode 100644 index c822aa911..000000000 Binary files a/files/25_0483.mp3 and /dev/null differ diff --git a/files/25_0483_example.mp3 b/files/25_0483_example.mp3 deleted file mode 100644 index 5d7f7c5d8..000000000 Binary files a/files/25_0483_example.mp3 and /dev/null differ diff --git a/files/25_0483_meaning.mp3 b/files/25_0483_meaning.mp3 deleted file mode 100644 index 3620a1d60..000000000 Binary files a/files/25_0483_meaning.mp3 and /dev/null differ diff --git a/files/25_0484.jpg b/files/25_0484.jpg deleted file mode 100644 index 30bb3d657..000000000 Binary files a/files/25_0484.jpg and /dev/null differ diff --git a/files/25_0484.mp3 b/files/25_0484.mp3 deleted file mode 100644 index c3e2d1aaa..000000000 Binary files a/files/25_0484.mp3 and /dev/null differ diff --git a/files/25_0484_example.mp3 b/files/25_0484_example.mp3 deleted file mode 100644 index 0b3ca9a69..000000000 Binary files a/files/25_0484_example.mp3 and /dev/null differ diff --git a/files/25_0484_meaning.mp3 b/files/25_0484_meaning.mp3 deleted file mode 100644 index a27f53780..000000000 Binary files a/files/25_0484_meaning.mp3 and /dev/null differ diff --git a/files/25_0485.jpg b/files/25_0485.jpg deleted file mode 100644 index 71709a7dc..000000000 Binary files a/files/25_0485.jpg and /dev/null differ diff --git a/files/25_0485.mp3 b/files/25_0485.mp3 deleted file mode 100644 index 1c4dc4fc6..000000000 Binary files a/files/25_0485.mp3 and /dev/null differ diff --git a/files/25_0485_example.mp3 b/files/25_0485_example.mp3 deleted file mode 100644 index 881db2e13..000000000 Binary files a/files/25_0485_example.mp3 and /dev/null differ diff --git a/files/25_0485_meaning.mp3 b/files/25_0485_meaning.mp3 deleted file mode 100644 index cd8804b15..000000000 Binary files a/files/25_0485_meaning.mp3 and /dev/null differ diff --git a/files/25_0486.jpg b/files/25_0486.jpg deleted file mode 100644 index dc7ba2a4c..000000000 Binary files a/files/25_0486.jpg and /dev/null differ diff --git a/files/25_0486.mp3 b/files/25_0486.mp3 deleted file mode 100644 index 5b42f8f76..000000000 Binary files a/files/25_0486.mp3 and /dev/null differ diff --git a/files/25_0486_example.mp3 b/files/25_0486_example.mp3 deleted file mode 100644 index 138785ad5..000000000 Binary files a/files/25_0486_example.mp3 and /dev/null differ diff --git a/files/25_0486_meaning.mp3 b/files/25_0486_meaning.mp3 deleted file mode 100644 index 82eeadd5c..000000000 Binary files a/files/25_0486_meaning.mp3 and /dev/null differ diff --git a/files/25_0487.jpg b/files/25_0487.jpg deleted file mode 100644 index 4ab0331f4..000000000 Binary files a/files/25_0487.jpg and /dev/null differ diff --git a/files/25_0487.mp3 b/files/25_0487.mp3 deleted file mode 100644 index 8ce2863e4..000000000 Binary files a/files/25_0487.mp3 and /dev/null differ diff --git a/files/25_0487_example.mp3 b/files/25_0487_example.mp3 deleted file mode 100644 index beb7bcba2..000000000 Binary files a/files/25_0487_example.mp3 and /dev/null differ diff --git a/files/25_0487_meaning.mp3 b/files/25_0487_meaning.mp3 deleted file mode 100644 index 2b9d8c482..000000000 Binary files a/files/25_0487_meaning.mp3 and /dev/null differ diff --git a/files/25_0488.jpg b/files/25_0488.jpg deleted file mode 100644 index 73d5925ac..000000000 Binary files a/files/25_0488.jpg and /dev/null differ diff --git a/files/25_0488.mp3 b/files/25_0488.mp3 deleted file mode 100644 index 1a327cfd2..000000000 Binary files a/files/25_0488.mp3 and /dev/null differ diff --git a/files/25_0488_example.mp3 b/files/25_0488_example.mp3 deleted file mode 100644 index 203289aa5..000000000 Binary files a/files/25_0488_example.mp3 and /dev/null differ diff --git a/files/25_0488_meaning.mp3 b/files/25_0488_meaning.mp3 deleted file mode 100644 index 9fec21d19..000000000 Binary files a/files/25_0488_meaning.mp3 and /dev/null differ diff --git a/files/25_0489.jpg b/files/25_0489.jpg deleted file mode 100644 index 123eccbcc..000000000 Binary files a/files/25_0489.jpg and /dev/null differ diff --git a/files/25_0489.mp3 b/files/25_0489.mp3 deleted file mode 100644 index 2a7a6fa12..000000000 Binary files a/files/25_0489.mp3 and /dev/null differ diff --git a/files/25_0489_example.mp3 b/files/25_0489_example.mp3 deleted file mode 100644 index cdd17c4b7..000000000 Binary files a/files/25_0489_example.mp3 and /dev/null differ diff --git a/files/25_0489_meaning.mp3 b/files/25_0489_meaning.mp3 deleted file mode 100644 index 785651bb6..000000000 Binary files a/files/25_0489_meaning.mp3 and /dev/null differ diff --git a/files/25_0490.jpg b/files/25_0490.jpg deleted file mode 100644 index 804ad52ba..000000000 Binary files a/files/25_0490.jpg and /dev/null differ diff --git a/files/25_0490.mp3 b/files/25_0490.mp3 deleted file mode 100644 index ea53734ab..000000000 Binary files a/files/25_0490.mp3 and /dev/null differ diff --git a/files/25_0490_example.mp3 b/files/25_0490_example.mp3 deleted file mode 100644 index 098b00fa9..000000000 Binary files a/files/25_0490_example.mp3 and /dev/null differ diff --git a/files/25_0490_meaning.mp3 b/files/25_0490_meaning.mp3 deleted file mode 100644 index 706de5442..000000000 Binary files a/files/25_0490_meaning.mp3 and /dev/null differ diff --git a/files/25_0491.jpg b/files/25_0491.jpg deleted file mode 100644 index ec368c627..000000000 Binary files a/files/25_0491.jpg and /dev/null differ diff --git a/files/25_0491.mp3 b/files/25_0491.mp3 deleted file mode 100644 index 5da07763f..000000000 Binary files a/files/25_0491.mp3 and /dev/null differ diff --git a/files/25_0491_example.mp3 b/files/25_0491_example.mp3 deleted file mode 100644 index 212354fe8..000000000 Binary files a/files/25_0491_example.mp3 and /dev/null differ diff --git a/files/25_0491_meaning.mp3 b/files/25_0491_meaning.mp3 deleted file mode 100644 index 8117754de..000000000 Binary files a/files/25_0491_meaning.mp3 and /dev/null differ diff --git a/files/25_0492.jpg b/files/25_0492.jpg deleted file mode 100644 index daca1b186..000000000 Binary files a/files/25_0492.jpg and /dev/null differ diff --git a/files/25_0492.mp3 b/files/25_0492.mp3 deleted file mode 100644 index c25de6e14..000000000 Binary files a/files/25_0492.mp3 and /dev/null differ diff --git a/files/25_0492_example.mp3 b/files/25_0492_example.mp3 deleted file mode 100644 index ee8197df3..000000000 Binary files a/files/25_0492_example.mp3 and /dev/null differ diff --git a/files/25_0492_meaning.mp3 b/files/25_0492_meaning.mp3 deleted file mode 100644 index 8447463d0..000000000 Binary files a/files/25_0492_meaning.mp3 and /dev/null differ diff --git a/files/25_0493.jpg b/files/25_0493.jpg deleted file mode 100644 index 5d8a51b22..000000000 Binary files a/files/25_0493.jpg and /dev/null differ diff --git a/files/25_0493.mp3 b/files/25_0493.mp3 deleted file mode 100644 index a413ab34c..000000000 Binary files a/files/25_0493.mp3 and /dev/null differ diff --git a/files/25_0493_example.mp3 b/files/25_0493_example.mp3 deleted file mode 100644 index 629a53d53..000000000 Binary files a/files/25_0493_example.mp3 and /dev/null differ diff --git a/files/25_0493_meaning.mp3 b/files/25_0493_meaning.mp3 deleted file mode 100644 index 2439d2bda..000000000 Binary files a/files/25_0493_meaning.mp3 and /dev/null differ diff --git a/files/25_0494.jpg b/files/25_0494.jpg deleted file mode 100644 index 2d7f5e5fb..000000000 Binary files a/files/25_0494.jpg and /dev/null differ diff --git a/files/25_0494.mp3 b/files/25_0494.mp3 deleted file mode 100644 index 6d442ded9..000000000 Binary files a/files/25_0494.mp3 and /dev/null differ diff --git a/files/25_0494_example.mp3 b/files/25_0494_example.mp3 deleted file mode 100644 index 0b202ba7c..000000000 Binary files a/files/25_0494_example.mp3 and /dev/null differ diff --git a/files/25_0494_meaning.mp3 b/files/25_0494_meaning.mp3 deleted file mode 100644 index f734b6810..000000000 Binary files a/files/25_0494_meaning.mp3 and /dev/null differ diff --git a/files/25_0495.jpg b/files/25_0495.jpg deleted file mode 100644 index 71f6c3303..000000000 Binary files a/files/25_0495.jpg and /dev/null differ diff --git a/files/25_0495.mp3 b/files/25_0495.mp3 deleted file mode 100644 index dc18775cd..000000000 Binary files a/files/25_0495.mp3 and /dev/null differ diff --git a/files/25_0495_example.mp3 b/files/25_0495_example.mp3 deleted file mode 100644 index 5786b73be..000000000 Binary files a/files/25_0495_example.mp3 and /dev/null differ diff --git a/files/25_0495_meaning.mp3 b/files/25_0495_meaning.mp3 deleted file mode 100644 index f39b60418..000000000 Binary files a/files/25_0495_meaning.mp3 and /dev/null differ diff --git a/files/25_0496.jpg b/files/25_0496.jpg deleted file mode 100644 index d5126216b..000000000 Binary files a/files/25_0496.jpg and /dev/null differ diff --git a/files/25_0496.mp3 b/files/25_0496.mp3 deleted file mode 100644 index c7c854cda..000000000 Binary files a/files/25_0496.mp3 and /dev/null differ diff --git a/files/25_0496_example.mp3 b/files/25_0496_example.mp3 deleted file mode 100644 index 1f9809789..000000000 Binary files a/files/25_0496_example.mp3 and /dev/null differ diff --git a/files/25_0496_meaning.mp3 b/files/25_0496_meaning.mp3 deleted file mode 100644 index d1c000f75..000000000 Binary files a/files/25_0496_meaning.mp3 and /dev/null differ diff --git a/files/25_0497.jpg b/files/25_0497.jpg deleted file mode 100644 index 4cef5c076..000000000 Binary files a/files/25_0497.jpg and /dev/null differ diff --git a/files/25_0497.mp3 b/files/25_0497.mp3 deleted file mode 100644 index 12c8f9858..000000000 Binary files a/files/25_0497.mp3 and /dev/null differ diff --git a/files/25_0497_example.mp3 b/files/25_0497_example.mp3 deleted file mode 100644 index d32147d91..000000000 Binary files a/files/25_0497_example.mp3 and /dev/null differ diff --git a/files/25_0497_meaning.mp3 b/files/25_0497_meaning.mp3 deleted file mode 100644 index 5969f7201..000000000 Binary files a/files/25_0497_meaning.mp3 and /dev/null differ diff --git a/files/25_0498.jpg b/files/25_0498.jpg deleted file mode 100644 index 24794c2c2..000000000 Binary files a/files/25_0498.jpg and /dev/null differ diff --git a/files/25_0498.mp3 b/files/25_0498.mp3 deleted file mode 100644 index 4b0ee1e2c..000000000 Binary files a/files/25_0498.mp3 and /dev/null differ diff --git a/files/25_0498_example.mp3 b/files/25_0498_example.mp3 deleted file mode 100644 index 65e73136c..000000000 Binary files a/files/25_0498_example.mp3 and /dev/null differ diff --git a/files/25_0498_meaning.mp3 b/files/25_0498_meaning.mp3 deleted file mode 100644 index 162ba02e0..000000000 Binary files a/files/25_0498_meaning.mp3 and /dev/null differ diff --git a/files/25_0499.jpg b/files/25_0499.jpg deleted file mode 100644 index 3525c8a85..000000000 Binary files a/files/25_0499.jpg and /dev/null differ diff --git a/files/25_0499.mp3 b/files/25_0499.mp3 deleted file mode 100644 index 8828bd6dc..000000000 Binary files a/files/25_0499.mp3 and /dev/null differ diff --git a/files/25_0499_example.mp3 b/files/25_0499_example.mp3 deleted file mode 100644 index cba4df626..000000000 Binary files a/files/25_0499_example.mp3 and /dev/null differ diff --git a/files/25_0499_meaning.mp3 b/files/25_0499_meaning.mp3 deleted file mode 100644 index 1482a2e4c..000000000 Binary files a/files/25_0499_meaning.mp3 and /dev/null differ diff --git a/files/25_0500.jpg b/files/25_0500.jpg deleted file mode 100644 index 3d0f3247e..000000000 Binary files a/files/25_0500.jpg and /dev/null differ diff --git a/files/25_0500.mp3 b/files/25_0500.mp3 deleted file mode 100644 index 3a1e5af82..000000000 Binary files a/files/25_0500.mp3 and /dev/null differ diff --git a/files/25_0500_example.mp3 b/files/25_0500_example.mp3 deleted file mode 100644 index b21081506..000000000 Binary files a/files/25_0500_example.mp3 and /dev/null differ diff --git a/files/25_0500_meaning.mp3 b/files/25_0500_meaning.mp3 deleted file mode 100644 index e089ef970..000000000 Binary files a/files/25_0500_meaning.mp3 and /dev/null differ diff --git a/files/25_1081.jpg b/files/25_1081.jpg deleted file mode 100644 index 1832ecd46..000000000 Binary files a/files/25_1081.jpg and /dev/null differ diff --git a/files/25_1081.mp3 b/files/25_1081.mp3 deleted file mode 100644 index 1227239a3..000000000 Binary files a/files/25_1081.mp3 and /dev/null differ diff --git a/files/25_1081_example.mp3 b/files/25_1081_example.mp3 deleted file mode 100644 index da9df18b0..000000000 Binary files a/files/25_1081_example.mp3 and /dev/null differ diff --git a/files/25_1081_meaning.mp3 b/files/25_1081_meaning.mp3 deleted file mode 100644 index 381008933..000000000 Binary files a/files/25_1081_meaning.mp3 and /dev/null differ diff --git a/files/25_1082.jpg b/files/25_1082.jpg deleted file mode 100644 index 4354919d4..000000000 Binary files a/files/25_1082.jpg and /dev/null differ diff --git a/files/25_1082.mp3 b/files/25_1082.mp3 deleted file mode 100644 index 933878377..000000000 Binary files a/files/25_1082.mp3 and /dev/null differ diff --git a/files/25_1082_example.mp3 b/files/25_1082_example.mp3 deleted file mode 100644 index 16baab426..000000000 Binary files a/files/25_1082_example.mp3 and /dev/null differ diff --git a/files/25_1082_meaning.mp3 b/files/25_1082_meaning.mp3 deleted file mode 100644 index b1a157096..000000000 Binary files a/files/25_1082_meaning.mp3 and /dev/null differ diff --git a/files/25_1083.jpg b/files/25_1083.jpg deleted file mode 100644 index 3a1c77e61..000000000 Binary files a/files/25_1083.jpg and /dev/null differ diff --git a/files/25_1083.mp3 b/files/25_1083.mp3 deleted file mode 100644 index 93ed88995..000000000 Binary files a/files/25_1083.mp3 and /dev/null differ diff --git a/files/25_1083_example.mp3 b/files/25_1083_example.mp3 deleted file mode 100644 index 15632721f..000000000 Binary files a/files/25_1083_example.mp3 and /dev/null differ diff --git a/files/25_1083_meaning.mp3 b/files/25_1083_meaning.mp3 deleted file mode 100644 index a1e031a51..000000000 Binary files a/files/25_1083_meaning.mp3 and /dev/null differ diff --git a/files/25_1084.jpg b/files/25_1084.jpg deleted file mode 100644 index 44dfabac9..000000000 Binary files a/files/25_1084.jpg and /dev/null differ diff --git a/files/25_1084.mp3 b/files/25_1084.mp3 deleted file mode 100644 index abb3796d5..000000000 Binary files a/files/25_1084.mp3 and /dev/null differ diff --git a/files/25_1084_example.mp3 b/files/25_1084_example.mp3 deleted file mode 100644 index 114e7a0ff..000000000 Binary files a/files/25_1084_example.mp3 and /dev/null differ diff --git a/files/25_1084_meaning.mp3 b/files/25_1084_meaning.mp3 deleted file mode 100644 index cf9c9fe0d..000000000 Binary files a/files/25_1084_meaning.mp3 and /dev/null differ diff --git a/files/25_1085.jpg b/files/25_1085.jpg deleted file mode 100644 index dab5fda44..000000000 Binary files a/files/25_1085.jpg and /dev/null differ diff --git a/files/25_1085.mp3 b/files/25_1085.mp3 deleted file mode 100644 index 55ab340b2..000000000 Binary files a/files/25_1085.mp3 and /dev/null differ diff --git a/files/25_1085_example.mp3 b/files/25_1085_example.mp3 deleted file mode 100644 index 1ad4ff75d..000000000 Binary files a/files/25_1085_example.mp3 and /dev/null differ diff --git a/files/25_1085_meaning.mp3 b/files/25_1085_meaning.mp3 deleted file mode 100644 index e4ce94aaf..000000000 Binary files a/files/25_1085_meaning.mp3 and /dev/null differ diff --git a/files/25_1086.jpg b/files/25_1086.jpg deleted file mode 100644 index dc9f20b95..000000000 Binary files a/files/25_1086.jpg and /dev/null differ diff --git a/files/25_1086.mp3 b/files/25_1086.mp3 deleted file mode 100644 index 2da1cb238..000000000 Binary files a/files/25_1086.mp3 and /dev/null differ diff --git a/files/25_1086_example.mp3 b/files/25_1086_example.mp3 deleted file mode 100644 index cc0f56dcf..000000000 Binary files a/files/25_1086_example.mp3 and /dev/null differ diff --git a/files/25_1086_meaning.mp3 b/files/25_1086_meaning.mp3 deleted file mode 100644 index e2b5e519d..000000000 Binary files a/files/25_1086_meaning.mp3 and /dev/null differ diff --git a/files/25_1087.jpg b/files/25_1087.jpg deleted file mode 100644 index ed225a534..000000000 Binary files a/files/25_1087.jpg and /dev/null differ diff --git a/files/25_1087.mp3 b/files/25_1087.mp3 deleted file mode 100644 index 36479e1e7..000000000 Binary files a/files/25_1087.mp3 and /dev/null differ diff --git a/files/25_1087_example.mp3 b/files/25_1087_example.mp3 deleted file mode 100644 index 99665cd7a..000000000 Binary files a/files/25_1087_example.mp3 and /dev/null differ diff --git a/files/25_1087_meaning.mp3 b/files/25_1087_meaning.mp3 deleted file mode 100644 index 83753ca5c..000000000 Binary files a/files/25_1087_meaning.mp3 and /dev/null differ diff --git a/files/25_1088.jpg b/files/25_1088.jpg deleted file mode 100644 index 22e8b2d98..000000000 Binary files a/files/25_1088.jpg and /dev/null differ diff --git a/files/25_1088.mp3 b/files/25_1088.mp3 deleted file mode 100644 index 47d425856..000000000 Binary files a/files/25_1088.mp3 and /dev/null differ diff --git a/files/25_1088_example.mp3 b/files/25_1088_example.mp3 deleted file mode 100644 index e1275a701..000000000 Binary files a/files/25_1088_example.mp3 and /dev/null differ diff --git a/files/25_1088_meaning.mp3 b/files/25_1088_meaning.mp3 deleted file mode 100644 index 3206fc018..000000000 Binary files a/files/25_1088_meaning.mp3 and /dev/null differ diff --git a/files/25_1089.jpg b/files/25_1089.jpg deleted file mode 100644 index af93840a2..000000000 Binary files a/files/25_1089.jpg and /dev/null differ diff --git a/files/25_1089.mp3 b/files/25_1089.mp3 deleted file mode 100644 index 97527bc09..000000000 Binary files a/files/25_1089.mp3 and /dev/null differ diff --git a/files/25_1089_example.mp3 b/files/25_1089_example.mp3 deleted file mode 100644 index 3ea862ad9..000000000 Binary files a/files/25_1089_example.mp3 and /dev/null differ diff --git a/files/25_1089_meaning.mp3 b/files/25_1089_meaning.mp3 deleted file mode 100644 index 4cd318183..000000000 Binary files a/files/25_1089_meaning.mp3 and /dev/null differ diff --git a/files/25_1090.jpg b/files/25_1090.jpg deleted file mode 100644 index 403d1e689..000000000 Binary files a/files/25_1090.jpg and /dev/null differ diff --git a/files/25_1090.mp3 b/files/25_1090.mp3 deleted file mode 100644 index b2b2da4da..000000000 Binary files a/files/25_1090.mp3 and /dev/null differ diff --git a/files/25_1090_example.mp3 b/files/25_1090_example.mp3 deleted file mode 100644 index d690d0e8f..000000000 Binary files a/files/25_1090_example.mp3 and /dev/null differ diff --git a/files/25_1090_meaning.mp3 b/files/25_1090_meaning.mp3 deleted file mode 100644 index c6e847dfc..000000000 Binary files a/files/25_1090_meaning.mp3 and /dev/null differ diff --git a/files/25_1091.jpg b/files/25_1091.jpg deleted file mode 100644 index 5d95399ca..000000000 Binary files a/files/25_1091.jpg and /dev/null differ diff --git a/files/25_1091.mp3 b/files/25_1091.mp3 deleted file mode 100644 index a5773a186..000000000 Binary files a/files/25_1091.mp3 and /dev/null differ diff --git a/files/25_1091_example.mp3 b/files/25_1091_example.mp3 deleted file mode 100644 index 20e937baa..000000000 Binary files a/files/25_1091_example.mp3 and /dev/null differ diff --git a/files/25_1091_meaning.mp3 b/files/25_1091_meaning.mp3 deleted file mode 100644 index 935a22b81..000000000 Binary files a/files/25_1091_meaning.mp3 and /dev/null differ diff --git a/files/25_1092.jpg b/files/25_1092.jpg deleted file mode 100644 index 6724784ae..000000000 Binary files a/files/25_1092.jpg and /dev/null differ diff --git a/files/25_1092.mp3 b/files/25_1092.mp3 deleted file mode 100644 index e65b243b6..000000000 Binary files a/files/25_1092.mp3 and /dev/null differ diff --git a/files/25_1092_example.mp3 b/files/25_1092_example.mp3 deleted file mode 100644 index 17462834e..000000000 Binary files a/files/25_1092_example.mp3 and /dev/null differ diff --git a/files/25_1092_meaning.mp3 b/files/25_1092_meaning.mp3 deleted file mode 100644 index 96ca4ed15..000000000 Binary files a/files/25_1092_meaning.mp3 and /dev/null differ diff --git a/files/25_1093.jpg b/files/25_1093.jpg deleted file mode 100644 index 6dc3a5089..000000000 Binary files a/files/25_1093.jpg and /dev/null differ diff --git a/files/25_1093.mp3 b/files/25_1093.mp3 deleted file mode 100644 index f0fd359e0..000000000 Binary files a/files/25_1093.mp3 and /dev/null differ diff --git a/files/25_1093_example.mp3 b/files/25_1093_example.mp3 deleted file mode 100644 index f10e4f3ce..000000000 Binary files a/files/25_1093_example.mp3 and /dev/null differ diff --git a/files/25_1093_meaning.mp3 b/files/25_1093_meaning.mp3 deleted file mode 100644 index ec2ca24d3..000000000 Binary files a/files/25_1093_meaning.mp3 and /dev/null differ diff --git a/files/25_1094.jpg b/files/25_1094.jpg deleted file mode 100644 index 8c60c6df9..000000000 Binary files a/files/25_1094.jpg and /dev/null differ diff --git a/files/25_1094.mp3 b/files/25_1094.mp3 deleted file mode 100644 index aa5e2600a..000000000 Binary files a/files/25_1094.mp3 and /dev/null differ diff --git a/files/25_1094_example.mp3 b/files/25_1094_example.mp3 deleted file mode 100644 index 3b68e0a32..000000000 Binary files a/files/25_1094_example.mp3 and /dev/null differ diff --git a/files/25_1094_meaning.mp3 b/files/25_1094_meaning.mp3 deleted file mode 100644 index e7eee3363..000000000 Binary files a/files/25_1094_meaning.mp3 and /dev/null differ diff --git a/files/25_1095.jpg b/files/25_1095.jpg deleted file mode 100644 index 55f42179e..000000000 Binary files a/files/25_1095.jpg and /dev/null differ diff --git a/files/25_1095.mp3 b/files/25_1095.mp3 deleted file mode 100644 index 1a9954a1c..000000000 Binary files a/files/25_1095.mp3 and /dev/null differ diff --git a/files/25_1095_example.mp3 b/files/25_1095_example.mp3 deleted file mode 100644 index 4cec70d0d..000000000 Binary files a/files/25_1095_example.mp3 and /dev/null differ diff --git a/files/25_1095_meaning.mp3 b/files/25_1095_meaning.mp3 deleted file mode 100644 index 0146c4fdd..000000000 Binary files a/files/25_1095_meaning.mp3 and /dev/null differ diff --git a/files/25_1096.jpg b/files/25_1096.jpg deleted file mode 100644 index 48e070eac..000000000 Binary files a/files/25_1096.jpg and /dev/null differ diff --git a/files/25_1096.mp3 b/files/25_1096.mp3 deleted file mode 100644 index 69fb9131a..000000000 Binary files a/files/25_1096.mp3 and /dev/null differ diff --git a/files/25_1096_example.mp3 b/files/25_1096_example.mp3 deleted file mode 100644 index b17d60bb6..000000000 Binary files a/files/25_1096_example.mp3 and /dev/null differ diff --git a/files/25_1096_meaning.mp3 b/files/25_1096_meaning.mp3 deleted file mode 100644 index 14db7834d..000000000 Binary files a/files/25_1096_meaning.mp3 and /dev/null differ diff --git a/files/25_1097.jpg b/files/25_1097.jpg deleted file mode 100644 index 6c765de7c..000000000 Binary files a/files/25_1097.jpg and /dev/null differ diff --git a/files/25_1097.mp3 b/files/25_1097.mp3 deleted file mode 100644 index 33ff73800..000000000 Binary files a/files/25_1097.mp3 and /dev/null differ diff --git a/files/25_1097_example.mp3 b/files/25_1097_example.mp3 deleted file mode 100644 index 4a098a0f5..000000000 Binary files a/files/25_1097_example.mp3 and /dev/null differ diff --git a/files/25_1097_meaning.mp3 b/files/25_1097_meaning.mp3 deleted file mode 100644 index b7f9d9d91..000000000 Binary files a/files/25_1097_meaning.mp3 and /dev/null differ diff --git a/files/25_1098.jpg b/files/25_1098.jpg deleted file mode 100644 index 372945153..000000000 Binary files a/files/25_1098.jpg and /dev/null differ diff --git a/files/25_1098.mp3 b/files/25_1098.mp3 deleted file mode 100644 index a81cee506..000000000 Binary files a/files/25_1098.mp3 and /dev/null differ diff --git a/files/25_1098_example.mp3 b/files/25_1098_example.mp3 deleted file mode 100644 index 88defa21d..000000000 Binary files a/files/25_1098_example.mp3 and /dev/null differ diff --git a/files/25_1098_meaning.mp3 b/files/25_1098_meaning.mp3 deleted file mode 100644 index 180118e7b..000000000 Binary files a/files/25_1098_meaning.mp3 and /dev/null differ diff --git a/files/25_1099.jpg b/files/25_1099.jpg deleted file mode 100644 index b19cc8cca..000000000 Binary files a/files/25_1099.jpg and /dev/null differ diff --git a/files/25_1099.mp3 b/files/25_1099.mp3 deleted file mode 100644 index 814c3aa67..000000000 Binary files a/files/25_1099.mp3 and /dev/null differ diff --git a/files/25_1099_example.mp3 b/files/25_1099_example.mp3 deleted file mode 100644 index 5889fb6fa..000000000 Binary files a/files/25_1099_example.mp3 and /dev/null differ diff --git a/files/25_1099_meaning.mp3 b/files/25_1099_meaning.mp3 deleted file mode 100644 index dd2a6ce45..000000000 Binary files a/files/25_1099_meaning.mp3 and /dev/null differ diff --git a/files/25_1100.jpg b/files/25_1100.jpg deleted file mode 100644 index 9f83e4df3..000000000 Binary files a/files/25_1100.jpg and /dev/null differ diff --git a/files/25_1100.mp3 b/files/25_1100.mp3 deleted file mode 100644 index e4ecaf20f..000000000 Binary files a/files/25_1100.mp3 and /dev/null differ diff --git a/files/25_1100_example.mp3 b/files/25_1100_example.mp3 deleted file mode 100644 index 4732242c4..000000000 Binary files a/files/25_1100_example.mp3 and /dev/null differ diff --git a/files/25_1100_meaning.mp3 b/files/25_1100_meaning.mp3 deleted file mode 100644 index 168c39cf0..000000000 Binary files a/files/25_1100_meaning.mp3 and /dev/null differ diff --git a/files/25_1681.jpg b/files/25_1681.jpg deleted file mode 100644 index 0130746e8..000000000 Binary files a/files/25_1681.jpg and /dev/null differ diff --git a/files/25_1681.mp3 b/files/25_1681.mp3 deleted file mode 100644 index 443408092..000000000 Binary files a/files/25_1681.mp3 and /dev/null differ diff --git a/files/25_1681_example.mp3 b/files/25_1681_example.mp3 deleted file mode 100644 index 37e773cfe..000000000 Binary files a/files/25_1681_example.mp3 and /dev/null differ diff --git a/files/25_1681_meaning.mp3 b/files/25_1681_meaning.mp3 deleted file mode 100644 index 03d661e45..000000000 Binary files a/files/25_1681_meaning.mp3 and /dev/null differ diff --git a/files/25_1682.jpg b/files/25_1682.jpg deleted file mode 100644 index 525836031..000000000 Binary files a/files/25_1682.jpg and /dev/null differ diff --git a/files/25_1682.mp3 b/files/25_1682.mp3 deleted file mode 100644 index e5dd42690..000000000 Binary files a/files/25_1682.mp3 and /dev/null differ diff --git a/files/25_1682_example.mp3 b/files/25_1682_example.mp3 deleted file mode 100644 index a5653238b..000000000 Binary files a/files/25_1682_example.mp3 and /dev/null differ diff --git a/files/25_1682_meaning.mp3 b/files/25_1682_meaning.mp3 deleted file mode 100644 index a17916dc7..000000000 Binary files a/files/25_1682_meaning.mp3 and /dev/null differ diff --git a/files/25_1683.jpg b/files/25_1683.jpg deleted file mode 100644 index b3069dc8f..000000000 Binary files a/files/25_1683.jpg and /dev/null differ diff --git a/files/25_1683.mp3 b/files/25_1683.mp3 deleted file mode 100644 index 79ceec4f6..000000000 Binary files a/files/25_1683.mp3 and /dev/null differ diff --git a/files/25_1683_example.mp3 b/files/25_1683_example.mp3 deleted file mode 100644 index d29686d88..000000000 Binary files a/files/25_1683_example.mp3 and /dev/null differ diff --git a/files/25_1683_meaning.mp3 b/files/25_1683_meaning.mp3 deleted file mode 100644 index 156a6439f..000000000 Binary files a/files/25_1683_meaning.mp3 and /dev/null differ diff --git a/files/25_1684.jpg b/files/25_1684.jpg deleted file mode 100644 index f5104c2e1..000000000 Binary files a/files/25_1684.jpg and /dev/null differ diff --git a/files/25_1684.mp3 b/files/25_1684.mp3 deleted file mode 100644 index e38850e23..000000000 Binary files a/files/25_1684.mp3 and /dev/null differ diff --git a/files/25_1684_example.mp3 b/files/25_1684_example.mp3 deleted file mode 100644 index 87452f2ec..000000000 Binary files a/files/25_1684_example.mp3 and /dev/null differ diff --git a/files/25_1684_meaning.mp3 b/files/25_1684_meaning.mp3 deleted file mode 100644 index da49ccff9..000000000 Binary files a/files/25_1684_meaning.mp3 and /dev/null differ diff --git a/files/25_1685.jpg b/files/25_1685.jpg deleted file mode 100644 index 0c312ce3d..000000000 Binary files a/files/25_1685.jpg and /dev/null differ diff --git a/files/25_1685.mp3 b/files/25_1685.mp3 deleted file mode 100644 index e198d7ee9..000000000 Binary files a/files/25_1685.mp3 and /dev/null differ diff --git a/files/25_1685_example.mp3 b/files/25_1685_example.mp3 deleted file mode 100644 index 50391b6fe..000000000 Binary files a/files/25_1685_example.mp3 and /dev/null differ diff --git a/files/25_1685_meaning.mp3 b/files/25_1685_meaning.mp3 deleted file mode 100644 index f353a79b9..000000000 Binary files a/files/25_1685_meaning.mp3 and /dev/null differ diff --git a/files/25_1686.jpg b/files/25_1686.jpg deleted file mode 100644 index 5fe309e46..000000000 Binary files a/files/25_1686.jpg and /dev/null differ diff --git a/files/25_1686.mp3 b/files/25_1686.mp3 deleted file mode 100644 index d59d607d6..000000000 Binary files a/files/25_1686.mp3 and /dev/null differ diff --git a/files/25_1686_example.mp3 b/files/25_1686_example.mp3 deleted file mode 100644 index 91a54885e..000000000 Binary files a/files/25_1686_example.mp3 and /dev/null differ diff --git a/files/25_1686_meaning.mp3 b/files/25_1686_meaning.mp3 deleted file mode 100644 index 577a37528..000000000 Binary files a/files/25_1686_meaning.mp3 and /dev/null differ diff --git a/files/25_1687.jpg b/files/25_1687.jpg deleted file mode 100644 index 37261b7dc..000000000 Binary files a/files/25_1687.jpg and /dev/null differ diff --git a/files/25_1687.mp3 b/files/25_1687.mp3 deleted file mode 100644 index 03b53bb88..000000000 Binary files a/files/25_1687.mp3 and /dev/null differ diff --git a/files/25_1687_example.mp3 b/files/25_1687_example.mp3 deleted file mode 100644 index c55a604f4..000000000 Binary files a/files/25_1687_example.mp3 and /dev/null differ diff --git a/files/25_1687_meaning.mp3 b/files/25_1687_meaning.mp3 deleted file mode 100644 index 6b003690b..000000000 Binary files a/files/25_1687_meaning.mp3 and /dev/null differ diff --git a/files/25_1688.jpg b/files/25_1688.jpg deleted file mode 100644 index 06e6dd7bd..000000000 Binary files a/files/25_1688.jpg and /dev/null differ diff --git a/files/25_1688.mp3 b/files/25_1688.mp3 deleted file mode 100644 index c98a3a7b6..000000000 Binary files a/files/25_1688.mp3 and /dev/null differ diff --git a/files/25_1688_example.mp3 b/files/25_1688_example.mp3 deleted file mode 100644 index c5dd4a2b6..000000000 Binary files a/files/25_1688_example.mp3 and /dev/null differ diff --git a/files/25_1688_meaning.mp3 b/files/25_1688_meaning.mp3 deleted file mode 100644 index 26eca73bf..000000000 Binary files a/files/25_1688_meaning.mp3 and /dev/null differ diff --git a/files/25_1689.jpg b/files/25_1689.jpg deleted file mode 100644 index 610d1a33a..000000000 Binary files a/files/25_1689.jpg and /dev/null differ diff --git a/files/25_1689.mp3 b/files/25_1689.mp3 deleted file mode 100644 index 1422ee5e6..000000000 Binary files a/files/25_1689.mp3 and /dev/null differ diff --git a/files/25_1689_example.mp3 b/files/25_1689_example.mp3 deleted file mode 100644 index ce27601bb..000000000 Binary files a/files/25_1689_example.mp3 and /dev/null differ diff --git a/files/25_1689_meaning.mp3 b/files/25_1689_meaning.mp3 deleted file mode 100644 index 40f943c25..000000000 Binary files a/files/25_1689_meaning.mp3 and /dev/null differ diff --git a/files/25_1690.jpg b/files/25_1690.jpg deleted file mode 100644 index 8b34b1aea..000000000 Binary files a/files/25_1690.jpg and /dev/null differ diff --git a/files/25_1690.mp3 b/files/25_1690.mp3 deleted file mode 100644 index 71094e9e2..000000000 Binary files a/files/25_1690.mp3 and /dev/null differ diff --git a/files/25_1690_example.mp3 b/files/25_1690_example.mp3 deleted file mode 100644 index 4b00d75fd..000000000 Binary files a/files/25_1690_example.mp3 and /dev/null differ diff --git a/files/25_1690_meaning.mp3 b/files/25_1690_meaning.mp3 deleted file mode 100644 index 5a4b0642d..000000000 Binary files a/files/25_1690_meaning.mp3 and /dev/null differ diff --git a/files/25_1691.jpg b/files/25_1691.jpg deleted file mode 100644 index ac522fd01..000000000 Binary files a/files/25_1691.jpg and /dev/null differ diff --git a/files/25_1691.mp3 b/files/25_1691.mp3 deleted file mode 100644 index 27bcdf5a4..000000000 Binary files a/files/25_1691.mp3 and /dev/null differ diff --git a/files/25_1691_example.mp3 b/files/25_1691_example.mp3 deleted file mode 100644 index 20e364deb..000000000 Binary files a/files/25_1691_example.mp3 and /dev/null differ diff --git a/files/25_1691_meaning.mp3 b/files/25_1691_meaning.mp3 deleted file mode 100644 index c6d4209a6..000000000 Binary files a/files/25_1691_meaning.mp3 and /dev/null differ diff --git a/files/25_1692.jpg b/files/25_1692.jpg deleted file mode 100644 index 40223343c..000000000 Binary files a/files/25_1692.jpg and /dev/null differ diff --git a/files/25_1692.mp3 b/files/25_1692.mp3 deleted file mode 100644 index 1a3b405e9..000000000 Binary files a/files/25_1692.mp3 and /dev/null differ diff --git a/files/25_1692_example.mp3 b/files/25_1692_example.mp3 deleted file mode 100644 index b77a85edf..000000000 Binary files a/files/25_1692_example.mp3 and /dev/null differ diff --git a/files/25_1692_meaning.mp3 b/files/25_1692_meaning.mp3 deleted file mode 100644 index ed7c43d08..000000000 Binary files a/files/25_1692_meaning.mp3 and /dev/null differ diff --git a/files/25_1693.jpg b/files/25_1693.jpg deleted file mode 100644 index f62d6b82b..000000000 Binary files a/files/25_1693.jpg and /dev/null differ diff --git a/files/25_1693.mp3 b/files/25_1693.mp3 deleted file mode 100644 index ce62b9dfd..000000000 Binary files a/files/25_1693.mp3 and /dev/null differ diff --git a/files/25_1693_example.mp3 b/files/25_1693_example.mp3 deleted file mode 100644 index 6d53d5fe7..000000000 Binary files a/files/25_1693_example.mp3 and /dev/null differ diff --git a/files/25_1693_meaning.mp3 b/files/25_1693_meaning.mp3 deleted file mode 100644 index df95d96d3..000000000 Binary files a/files/25_1693_meaning.mp3 and /dev/null differ diff --git a/files/25_1694.jpg b/files/25_1694.jpg deleted file mode 100644 index a6aef90c0..000000000 Binary files a/files/25_1694.jpg and /dev/null differ diff --git a/files/25_1694.mp3 b/files/25_1694.mp3 deleted file mode 100644 index 79ee30167..000000000 Binary files a/files/25_1694.mp3 and /dev/null differ diff --git a/files/25_1694_example.mp3 b/files/25_1694_example.mp3 deleted file mode 100644 index 7b19c3afa..000000000 Binary files a/files/25_1694_example.mp3 and /dev/null differ diff --git a/files/25_1694_meaning.mp3 b/files/25_1694_meaning.mp3 deleted file mode 100644 index 6b0e659c4..000000000 Binary files a/files/25_1694_meaning.mp3 and /dev/null differ diff --git a/files/25_1695.jpg b/files/25_1695.jpg deleted file mode 100644 index ca153d15e..000000000 Binary files a/files/25_1695.jpg and /dev/null differ diff --git a/files/25_1695.mp3 b/files/25_1695.mp3 deleted file mode 100644 index 436978c78..000000000 Binary files a/files/25_1695.mp3 and /dev/null differ diff --git a/files/25_1695_example.mp3 b/files/25_1695_example.mp3 deleted file mode 100644 index 9f121e237..000000000 Binary files a/files/25_1695_example.mp3 and /dev/null differ diff --git a/files/25_1695_meaning.mp3 b/files/25_1695_meaning.mp3 deleted file mode 100644 index acfe3b4ee..000000000 Binary files a/files/25_1695_meaning.mp3 and /dev/null differ diff --git a/files/25_1696.jpg b/files/25_1696.jpg deleted file mode 100644 index f0c9bc524..000000000 Binary files a/files/25_1696.jpg and /dev/null differ diff --git a/files/25_1696.mp3 b/files/25_1696.mp3 deleted file mode 100644 index 046bcb14a..000000000 Binary files a/files/25_1696.mp3 and /dev/null differ diff --git a/files/25_1696_example.mp3 b/files/25_1696_example.mp3 deleted file mode 100644 index bc8816b13..000000000 Binary files a/files/25_1696_example.mp3 and /dev/null differ diff --git a/files/25_1696_meaning.mp3 b/files/25_1696_meaning.mp3 deleted file mode 100644 index 761bf8ff7..000000000 Binary files a/files/25_1696_meaning.mp3 and /dev/null differ diff --git a/files/25_1697.jpg b/files/25_1697.jpg deleted file mode 100644 index 51c783d4c..000000000 Binary files a/files/25_1697.jpg and /dev/null differ diff --git a/files/25_1697.mp3 b/files/25_1697.mp3 deleted file mode 100644 index 63de2ac96..000000000 Binary files a/files/25_1697.mp3 and /dev/null differ diff --git a/files/25_1697_example.mp3 b/files/25_1697_example.mp3 deleted file mode 100644 index 54a747ef4..000000000 Binary files a/files/25_1697_example.mp3 and /dev/null differ diff --git a/files/25_1697_meaning.mp3 b/files/25_1697_meaning.mp3 deleted file mode 100644 index 4f779b83f..000000000 Binary files a/files/25_1697_meaning.mp3 and /dev/null differ diff --git a/files/25_1698.jpg b/files/25_1698.jpg deleted file mode 100644 index 8c37abf2c..000000000 Binary files a/files/25_1698.jpg and /dev/null differ diff --git a/files/25_1698.mp3 b/files/25_1698.mp3 deleted file mode 100644 index 978effa57..000000000 Binary files a/files/25_1698.mp3 and /dev/null differ diff --git a/files/25_1698_example.mp3 b/files/25_1698_example.mp3 deleted file mode 100644 index fc458f5ba..000000000 Binary files a/files/25_1698_example.mp3 and /dev/null differ diff --git a/files/25_1698_meaning.mp3 b/files/25_1698_meaning.mp3 deleted file mode 100644 index 07e5f756d..000000000 Binary files a/files/25_1698_meaning.mp3 and /dev/null differ diff --git a/files/25_1699.jpg b/files/25_1699.jpg deleted file mode 100644 index 0f4c0fd8f..000000000 Binary files a/files/25_1699.jpg and /dev/null differ diff --git a/files/25_1699.mp3 b/files/25_1699.mp3 deleted file mode 100644 index 43f236192..000000000 Binary files a/files/25_1699.mp3 and /dev/null differ diff --git a/files/25_1699_example.mp3 b/files/25_1699_example.mp3 deleted file mode 100644 index 135e7a071..000000000 Binary files a/files/25_1699_example.mp3 and /dev/null differ diff --git a/files/25_1699_meaning.mp3 b/files/25_1699_meaning.mp3 deleted file mode 100644 index 87378742d..000000000 Binary files a/files/25_1699_meaning.mp3 and /dev/null differ diff --git a/files/25_1700.jpg b/files/25_1700.jpg deleted file mode 100644 index dc9951745..000000000 Binary files a/files/25_1700.jpg and /dev/null differ diff --git a/files/25_1700.mp3 b/files/25_1700.mp3 deleted file mode 100644 index ca2abba5d..000000000 Binary files a/files/25_1700.mp3 and /dev/null differ diff --git a/files/25_1700_example.mp3 b/files/25_1700_example.mp3 deleted file mode 100644 index 20a223f3e..000000000 Binary files a/files/25_1700_example.mp3 and /dev/null differ diff --git a/files/25_1700_meaning.mp3 b/files/25_1700_meaning.mp3 deleted file mode 100644 index db4b5954b..000000000 Binary files a/files/25_1700_meaning.mp3 and /dev/null differ diff --git a/files/25_2281.jpg b/files/25_2281.jpg deleted file mode 100644 index ca1e71905..000000000 Binary files a/files/25_2281.jpg and /dev/null differ diff --git a/files/25_2281.mp3 b/files/25_2281.mp3 deleted file mode 100644 index f0024af01..000000000 Binary files a/files/25_2281.mp3 and /dev/null differ diff --git a/files/25_2281_example.mp3 b/files/25_2281_example.mp3 deleted file mode 100644 index fe40c58eb..000000000 Binary files a/files/25_2281_example.mp3 and /dev/null differ diff --git a/files/25_2281_meaning.mp3 b/files/25_2281_meaning.mp3 deleted file mode 100644 index ab47fcb7b..000000000 Binary files a/files/25_2281_meaning.mp3 and /dev/null differ diff --git a/files/25_2282.jpg b/files/25_2282.jpg deleted file mode 100644 index 42c578591..000000000 Binary files a/files/25_2282.jpg and /dev/null differ diff --git a/files/25_2282.mp3 b/files/25_2282.mp3 deleted file mode 100644 index 756df87fa..000000000 Binary files a/files/25_2282.mp3 and /dev/null differ diff --git a/files/25_2282_example.mp3 b/files/25_2282_example.mp3 deleted file mode 100644 index 97dbac420..000000000 Binary files a/files/25_2282_example.mp3 and /dev/null differ diff --git a/files/25_2282_meaning.mp3 b/files/25_2282_meaning.mp3 deleted file mode 100644 index fb91f3f81..000000000 Binary files a/files/25_2282_meaning.mp3 and /dev/null differ diff --git a/files/25_2283.jpg b/files/25_2283.jpg deleted file mode 100644 index f5b7a5bd6..000000000 Binary files a/files/25_2283.jpg and /dev/null differ diff --git a/files/25_2283.mp3 b/files/25_2283.mp3 deleted file mode 100644 index b76f4159d..000000000 Binary files a/files/25_2283.mp3 and /dev/null differ diff --git a/files/25_2283_example.mp3 b/files/25_2283_example.mp3 deleted file mode 100644 index bfa3a61a4..000000000 Binary files a/files/25_2283_example.mp3 and /dev/null differ diff --git a/files/25_2283_meaning.mp3 b/files/25_2283_meaning.mp3 deleted file mode 100644 index 09d0e2043..000000000 Binary files a/files/25_2283_meaning.mp3 and /dev/null differ diff --git a/files/25_2284.jpg b/files/25_2284.jpg deleted file mode 100644 index 506d5fb02..000000000 Binary files a/files/25_2284.jpg and /dev/null differ diff --git a/files/25_2284.mp3 b/files/25_2284.mp3 deleted file mode 100644 index 1f0dc50bc..000000000 Binary files a/files/25_2284.mp3 and /dev/null differ diff --git a/files/25_2284_example.mp3 b/files/25_2284_example.mp3 deleted file mode 100644 index 8b25677fe..000000000 Binary files a/files/25_2284_example.mp3 and /dev/null differ diff --git a/files/25_2284_meaning.mp3 b/files/25_2284_meaning.mp3 deleted file mode 100644 index 214758c3e..000000000 Binary files a/files/25_2284_meaning.mp3 and /dev/null differ diff --git a/files/25_2285.jpg b/files/25_2285.jpg deleted file mode 100644 index 3f9f50a15..000000000 Binary files a/files/25_2285.jpg and /dev/null differ diff --git a/files/25_2285.mp3 b/files/25_2285.mp3 deleted file mode 100644 index 24ac83028..000000000 Binary files a/files/25_2285.mp3 and /dev/null differ diff --git a/files/25_2285_example.mp3 b/files/25_2285_example.mp3 deleted file mode 100644 index e58d7e4f4..000000000 Binary files a/files/25_2285_example.mp3 and /dev/null differ diff --git a/files/25_2285_meaning.mp3 b/files/25_2285_meaning.mp3 deleted file mode 100644 index 56b5227ae..000000000 Binary files a/files/25_2285_meaning.mp3 and /dev/null differ diff --git a/files/25_2286.jpg b/files/25_2286.jpg deleted file mode 100644 index d45f10f49..000000000 Binary files a/files/25_2286.jpg and /dev/null differ diff --git a/files/25_2286.mp3 b/files/25_2286.mp3 deleted file mode 100644 index ad67a09f9..000000000 Binary files a/files/25_2286.mp3 and /dev/null differ diff --git a/files/25_2286_example.mp3 b/files/25_2286_example.mp3 deleted file mode 100644 index 8951d044d..000000000 Binary files a/files/25_2286_example.mp3 and /dev/null differ diff --git a/files/25_2286_meaning.mp3 b/files/25_2286_meaning.mp3 deleted file mode 100644 index 3291dd8e8..000000000 Binary files a/files/25_2286_meaning.mp3 and /dev/null differ diff --git a/files/25_2287.jpg b/files/25_2287.jpg deleted file mode 100644 index 547af5182..000000000 Binary files a/files/25_2287.jpg and /dev/null differ diff --git a/files/25_2287.mp3 b/files/25_2287.mp3 deleted file mode 100644 index 1a99397cf..000000000 Binary files a/files/25_2287.mp3 and /dev/null differ diff --git a/files/25_2287_example.mp3 b/files/25_2287_example.mp3 deleted file mode 100644 index 75885b455..000000000 Binary files a/files/25_2287_example.mp3 and /dev/null differ diff --git a/files/25_2287_meaning.mp3 b/files/25_2287_meaning.mp3 deleted file mode 100644 index 98fe53767..000000000 Binary files a/files/25_2287_meaning.mp3 and /dev/null differ diff --git a/files/25_2288.jpg b/files/25_2288.jpg deleted file mode 100644 index dd2f74443..000000000 Binary files a/files/25_2288.jpg and /dev/null differ diff --git a/files/25_2288.mp3 b/files/25_2288.mp3 deleted file mode 100644 index 3b7eafae8..000000000 Binary files a/files/25_2288.mp3 and /dev/null differ diff --git a/files/25_2288_example.mp3 b/files/25_2288_example.mp3 deleted file mode 100644 index 69246f320..000000000 Binary files a/files/25_2288_example.mp3 and /dev/null differ diff --git a/files/25_2288_meaning.mp3 b/files/25_2288_meaning.mp3 deleted file mode 100644 index b9523ae82..000000000 Binary files a/files/25_2288_meaning.mp3 and /dev/null differ diff --git a/files/25_2289.jpg b/files/25_2289.jpg deleted file mode 100644 index 00d50e366..000000000 Binary files a/files/25_2289.jpg and /dev/null differ diff --git a/files/25_2289.mp3 b/files/25_2289.mp3 deleted file mode 100644 index f9fba1f85..000000000 Binary files a/files/25_2289.mp3 and /dev/null differ diff --git a/files/25_2289_example.mp3 b/files/25_2289_example.mp3 deleted file mode 100644 index cfba50e5c..000000000 Binary files a/files/25_2289_example.mp3 and /dev/null differ diff --git a/files/25_2289_meaning.mp3 b/files/25_2289_meaning.mp3 deleted file mode 100644 index 05542cdc7..000000000 Binary files a/files/25_2289_meaning.mp3 and /dev/null differ diff --git a/files/25_2290.jpg b/files/25_2290.jpg deleted file mode 100644 index 441d5a914..000000000 Binary files a/files/25_2290.jpg and /dev/null differ diff --git a/files/25_2290.mp3 b/files/25_2290.mp3 deleted file mode 100644 index 9d8d51e14..000000000 Binary files a/files/25_2290.mp3 and /dev/null differ diff --git a/files/25_2290_example.mp3 b/files/25_2290_example.mp3 deleted file mode 100644 index 708a31ba9..000000000 Binary files a/files/25_2290_example.mp3 and /dev/null differ diff --git a/files/25_2290_meaning.mp3 b/files/25_2290_meaning.mp3 deleted file mode 100644 index f5fe37f3e..000000000 Binary files a/files/25_2290_meaning.mp3 and /dev/null differ diff --git a/files/25_2291.jpg b/files/25_2291.jpg deleted file mode 100644 index 48e9b6126..000000000 Binary files a/files/25_2291.jpg and /dev/null differ diff --git a/files/25_2291.mp3 b/files/25_2291.mp3 deleted file mode 100644 index 9f1a493f7..000000000 Binary files a/files/25_2291.mp3 and /dev/null differ diff --git a/files/25_2291_example.mp3 b/files/25_2291_example.mp3 deleted file mode 100644 index 34a7d9424..000000000 Binary files a/files/25_2291_example.mp3 and /dev/null differ diff --git a/files/25_2291_meaning.mp3 b/files/25_2291_meaning.mp3 deleted file mode 100644 index 12289ec55..000000000 Binary files a/files/25_2291_meaning.mp3 and /dev/null differ diff --git a/files/25_2292.jpg b/files/25_2292.jpg deleted file mode 100644 index ae648e06c..000000000 Binary files a/files/25_2292.jpg and /dev/null differ diff --git a/files/25_2292.mp3 b/files/25_2292.mp3 deleted file mode 100644 index 45a1daeb6..000000000 Binary files a/files/25_2292.mp3 and /dev/null differ diff --git a/files/25_2292_example.mp3 b/files/25_2292_example.mp3 deleted file mode 100644 index 6029351bb..000000000 Binary files a/files/25_2292_example.mp3 and /dev/null differ diff --git a/files/25_2292_meaning.mp3 b/files/25_2292_meaning.mp3 deleted file mode 100644 index e1876c924..000000000 Binary files a/files/25_2292_meaning.mp3 and /dev/null differ diff --git a/files/25_2293.jpg b/files/25_2293.jpg deleted file mode 100644 index 70d542b2c..000000000 Binary files a/files/25_2293.jpg and /dev/null differ diff --git a/files/25_2293.mp3 b/files/25_2293.mp3 deleted file mode 100644 index f27c0ea47..000000000 Binary files a/files/25_2293.mp3 and /dev/null differ diff --git a/files/25_2293_example.mp3 b/files/25_2293_example.mp3 deleted file mode 100644 index 0bd8a422d..000000000 Binary files a/files/25_2293_example.mp3 and /dev/null differ diff --git a/files/25_2293_meaning.mp3 b/files/25_2293_meaning.mp3 deleted file mode 100644 index 6a2303f9b..000000000 Binary files a/files/25_2293_meaning.mp3 and /dev/null differ diff --git a/files/25_2294.jpg b/files/25_2294.jpg deleted file mode 100644 index feac26b08..000000000 Binary files a/files/25_2294.jpg and /dev/null differ diff --git a/files/25_2294.mp3 b/files/25_2294.mp3 deleted file mode 100644 index 57367db46..000000000 Binary files a/files/25_2294.mp3 and /dev/null differ diff --git a/files/25_2294_example.mp3 b/files/25_2294_example.mp3 deleted file mode 100644 index 8ae0d0c40..000000000 Binary files a/files/25_2294_example.mp3 and /dev/null differ diff --git a/files/25_2294_meaning.mp3 b/files/25_2294_meaning.mp3 deleted file mode 100644 index 30fc784c7..000000000 Binary files a/files/25_2294_meaning.mp3 and /dev/null differ diff --git a/files/25_2295.jpg b/files/25_2295.jpg deleted file mode 100644 index ddd379201..000000000 Binary files a/files/25_2295.jpg and /dev/null differ diff --git a/files/25_2295.mp3 b/files/25_2295.mp3 deleted file mode 100644 index 044df3f54..000000000 Binary files a/files/25_2295.mp3 and /dev/null differ diff --git a/files/25_2295_example.mp3 b/files/25_2295_example.mp3 deleted file mode 100644 index 420924d04..000000000 Binary files a/files/25_2295_example.mp3 and /dev/null differ diff --git a/files/25_2295_meaning.mp3 b/files/25_2295_meaning.mp3 deleted file mode 100644 index 54d404783..000000000 Binary files a/files/25_2295_meaning.mp3 and /dev/null differ diff --git a/files/25_2296.jpg b/files/25_2296.jpg deleted file mode 100644 index cb6d887ad..000000000 Binary files a/files/25_2296.jpg and /dev/null differ diff --git a/files/25_2296.mp3 b/files/25_2296.mp3 deleted file mode 100644 index cb2a6c007..000000000 Binary files a/files/25_2296.mp3 and /dev/null differ diff --git a/files/25_2296_example.mp3 b/files/25_2296_example.mp3 deleted file mode 100644 index a27c7a54a..000000000 Binary files a/files/25_2296_example.mp3 and /dev/null differ diff --git a/files/25_2296_meaning.mp3 b/files/25_2296_meaning.mp3 deleted file mode 100644 index fe85ce74d..000000000 Binary files a/files/25_2296_meaning.mp3 and /dev/null differ diff --git a/files/25_2297.jpg b/files/25_2297.jpg deleted file mode 100644 index e4bade556..000000000 Binary files a/files/25_2297.jpg and /dev/null differ diff --git a/files/25_2297.mp3 b/files/25_2297.mp3 deleted file mode 100644 index 57d9b9a23..000000000 Binary files a/files/25_2297.mp3 and /dev/null differ diff --git a/files/25_2297_example.mp3 b/files/25_2297_example.mp3 deleted file mode 100644 index b9fbf10b8..000000000 Binary files a/files/25_2297_example.mp3 and /dev/null differ diff --git a/files/25_2297_meaning.mp3 b/files/25_2297_meaning.mp3 deleted file mode 100644 index 179fa7436..000000000 Binary files a/files/25_2297_meaning.mp3 and /dev/null differ diff --git a/files/25_2298.jpg b/files/25_2298.jpg deleted file mode 100644 index b55b80f04..000000000 Binary files a/files/25_2298.jpg and /dev/null differ diff --git a/files/25_2298.mp3 b/files/25_2298.mp3 deleted file mode 100644 index 6eda9d4b5..000000000 Binary files a/files/25_2298.mp3 and /dev/null differ diff --git a/files/25_2298_example.mp3 b/files/25_2298_example.mp3 deleted file mode 100644 index 75fd8078f..000000000 Binary files a/files/25_2298_example.mp3 and /dev/null differ diff --git a/files/25_2298_meaning.mp3 b/files/25_2298_meaning.mp3 deleted file mode 100644 index f15e726a7..000000000 Binary files a/files/25_2298_meaning.mp3 and /dev/null differ diff --git a/files/25_2299.jpg b/files/25_2299.jpg deleted file mode 100644 index c84bb4f53..000000000 Binary files a/files/25_2299.jpg and /dev/null differ diff --git a/files/25_2299.mp3 b/files/25_2299.mp3 deleted file mode 100644 index 3ede2082f..000000000 Binary files a/files/25_2299.mp3 and /dev/null differ diff --git a/files/25_2299_example.mp3 b/files/25_2299_example.mp3 deleted file mode 100644 index 74fb2b4d5..000000000 Binary files a/files/25_2299_example.mp3 and /dev/null differ diff --git a/files/25_2299_meaning.mp3 b/files/25_2299_meaning.mp3 deleted file mode 100644 index 423052cc3..000000000 Binary files a/files/25_2299_meaning.mp3 and /dev/null differ diff --git a/files/25_2300.jpg b/files/25_2300.jpg deleted file mode 100644 index c3e7653b5..000000000 Binary files a/files/25_2300.jpg and /dev/null differ diff --git a/files/25_2300.mp3 b/files/25_2300.mp3 deleted file mode 100644 index dfaa5e36f..000000000 Binary files a/files/25_2300.mp3 and /dev/null differ diff --git a/files/25_2300_example.mp3 b/files/25_2300_example.mp3 deleted file mode 100644 index 5c5935153..000000000 Binary files a/files/25_2300_example.mp3 and /dev/null differ diff --git a/files/25_2300_meaning.mp3 b/files/25_2300_meaning.mp3 deleted file mode 100644 index 022f33fdf..000000000 Binary files a/files/25_2300_meaning.mp3 and /dev/null differ diff --git a/files/25_2881.jpg b/files/25_2881.jpg deleted file mode 100644 index 8c9c31404..000000000 Binary files a/files/25_2881.jpg and /dev/null differ diff --git a/files/25_2881.mp3 b/files/25_2881.mp3 deleted file mode 100644 index 756968d1a..000000000 Binary files a/files/25_2881.mp3 and /dev/null differ diff --git a/files/25_2881_example.mp3 b/files/25_2881_example.mp3 deleted file mode 100644 index 3a1756319..000000000 Binary files a/files/25_2881_example.mp3 and /dev/null differ diff --git a/files/25_2881_meaning.mp3 b/files/25_2881_meaning.mp3 deleted file mode 100644 index d1f969567..000000000 Binary files a/files/25_2881_meaning.mp3 and /dev/null differ diff --git a/files/25_2882.jpg b/files/25_2882.jpg deleted file mode 100644 index 9f48a081e..000000000 Binary files a/files/25_2882.jpg and /dev/null differ diff --git a/files/25_2882.mp3 b/files/25_2882.mp3 deleted file mode 100644 index d8840f8bc..000000000 Binary files a/files/25_2882.mp3 and /dev/null differ diff --git a/files/25_2882_example.mp3 b/files/25_2882_example.mp3 deleted file mode 100644 index 0ab34b57f..000000000 Binary files a/files/25_2882_example.mp3 and /dev/null differ diff --git a/files/25_2882_meaning.mp3 b/files/25_2882_meaning.mp3 deleted file mode 100644 index 7aaef4f8d..000000000 Binary files a/files/25_2882_meaning.mp3 and /dev/null differ diff --git a/files/25_2883.jpg b/files/25_2883.jpg deleted file mode 100644 index 6728f7322..000000000 Binary files a/files/25_2883.jpg and /dev/null differ diff --git a/files/25_2883.mp3 b/files/25_2883.mp3 deleted file mode 100644 index 1ce48781c..000000000 Binary files a/files/25_2883.mp3 and /dev/null differ diff --git a/files/25_2883_example.mp3 b/files/25_2883_example.mp3 deleted file mode 100644 index 109410d2e..000000000 Binary files a/files/25_2883_example.mp3 and /dev/null differ diff --git a/files/25_2883_meaning.mp3 b/files/25_2883_meaning.mp3 deleted file mode 100644 index a1f70f070..000000000 Binary files a/files/25_2883_meaning.mp3 and /dev/null differ diff --git a/files/25_2884.jpg b/files/25_2884.jpg deleted file mode 100644 index 6739145e7..000000000 Binary files a/files/25_2884.jpg and /dev/null differ diff --git a/files/25_2884.mp3 b/files/25_2884.mp3 deleted file mode 100644 index b02bad4e2..000000000 Binary files a/files/25_2884.mp3 and /dev/null differ diff --git a/files/25_2884_example.mp3 b/files/25_2884_example.mp3 deleted file mode 100644 index 131857a2e..000000000 Binary files a/files/25_2884_example.mp3 and /dev/null differ diff --git a/files/25_2884_meaning.mp3 b/files/25_2884_meaning.mp3 deleted file mode 100644 index ce28bb5b6..000000000 Binary files a/files/25_2884_meaning.mp3 and /dev/null differ diff --git a/files/25_2885.jpg b/files/25_2885.jpg deleted file mode 100644 index 6dd3c53cf..000000000 Binary files a/files/25_2885.jpg and /dev/null differ diff --git a/files/25_2885.mp3 b/files/25_2885.mp3 deleted file mode 100644 index c08fdc024..000000000 Binary files a/files/25_2885.mp3 and /dev/null differ diff --git a/files/25_2885_example.mp3 b/files/25_2885_example.mp3 deleted file mode 100644 index fde471715..000000000 Binary files a/files/25_2885_example.mp3 and /dev/null differ diff --git a/files/25_2885_meaning.mp3 b/files/25_2885_meaning.mp3 deleted file mode 100644 index 432d5c66e..000000000 Binary files a/files/25_2885_meaning.mp3 and /dev/null differ diff --git a/files/25_2886.jpg b/files/25_2886.jpg deleted file mode 100644 index be72dd92c..000000000 Binary files a/files/25_2886.jpg and /dev/null differ diff --git a/files/25_2886.mp3 b/files/25_2886.mp3 deleted file mode 100644 index 61638bddb..000000000 Binary files a/files/25_2886.mp3 and /dev/null differ diff --git a/files/25_2886_example.mp3 b/files/25_2886_example.mp3 deleted file mode 100644 index 11c2a3266..000000000 Binary files a/files/25_2886_example.mp3 and /dev/null differ diff --git a/files/25_2886_meaning.mp3 b/files/25_2886_meaning.mp3 deleted file mode 100644 index 1602d3798..000000000 Binary files a/files/25_2886_meaning.mp3 and /dev/null differ diff --git a/files/25_2887.jpg b/files/25_2887.jpg deleted file mode 100644 index ac9dc30c9..000000000 Binary files a/files/25_2887.jpg and /dev/null differ diff --git a/files/25_2887.mp3 b/files/25_2887.mp3 deleted file mode 100644 index 55281470b..000000000 Binary files a/files/25_2887.mp3 and /dev/null differ diff --git a/files/25_2887_example.mp3 b/files/25_2887_example.mp3 deleted file mode 100644 index 855a3a1ac..000000000 Binary files a/files/25_2887_example.mp3 and /dev/null differ diff --git a/files/25_2887_meaning.mp3 b/files/25_2887_meaning.mp3 deleted file mode 100644 index 0802e4be9..000000000 Binary files a/files/25_2887_meaning.mp3 and /dev/null differ diff --git a/files/25_2888.jpg b/files/25_2888.jpg deleted file mode 100644 index 051937ca3..000000000 Binary files a/files/25_2888.jpg and /dev/null differ diff --git a/files/25_2888.mp3 b/files/25_2888.mp3 deleted file mode 100644 index 92bdcc152..000000000 Binary files a/files/25_2888.mp3 and /dev/null differ diff --git a/files/25_2888_example.mp3 b/files/25_2888_example.mp3 deleted file mode 100644 index 1a6b161b5..000000000 Binary files a/files/25_2888_example.mp3 and /dev/null differ diff --git a/files/25_2888_meaning.mp3 b/files/25_2888_meaning.mp3 deleted file mode 100644 index 237e7db35..000000000 Binary files a/files/25_2888_meaning.mp3 and /dev/null differ diff --git a/files/25_2889.jpg b/files/25_2889.jpg deleted file mode 100644 index 8370b537f..000000000 Binary files a/files/25_2889.jpg and /dev/null differ diff --git a/files/25_2889.mp3 b/files/25_2889.mp3 deleted file mode 100644 index 53b162ee1..000000000 Binary files a/files/25_2889.mp3 and /dev/null differ diff --git a/files/25_2889_example.mp3 b/files/25_2889_example.mp3 deleted file mode 100644 index 0726d7073..000000000 Binary files a/files/25_2889_example.mp3 and /dev/null differ diff --git a/files/25_2889_meaning.mp3 b/files/25_2889_meaning.mp3 deleted file mode 100644 index d50f9635f..000000000 Binary files a/files/25_2889_meaning.mp3 and /dev/null differ diff --git a/files/25_2890.jpg b/files/25_2890.jpg deleted file mode 100644 index 17568da63..000000000 Binary files a/files/25_2890.jpg and /dev/null differ diff --git a/files/25_2890.mp3 b/files/25_2890.mp3 deleted file mode 100644 index 8cae7b167..000000000 Binary files a/files/25_2890.mp3 and /dev/null differ diff --git a/files/25_2890_example.mp3 b/files/25_2890_example.mp3 deleted file mode 100644 index 07644a22a..000000000 Binary files a/files/25_2890_example.mp3 and /dev/null differ diff --git a/files/25_2890_meaning.mp3 b/files/25_2890_meaning.mp3 deleted file mode 100644 index ae66866eb..000000000 Binary files a/files/25_2890_meaning.mp3 and /dev/null differ diff --git a/files/25_2891.jpg b/files/25_2891.jpg deleted file mode 100644 index b2c2836d0..000000000 Binary files a/files/25_2891.jpg and /dev/null differ diff --git a/files/25_2891.mp3 b/files/25_2891.mp3 deleted file mode 100644 index 4aa8d60bd..000000000 Binary files a/files/25_2891.mp3 and /dev/null differ diff --git a/files/25_2891_example.mp3 b/files/25_2891_example.mp3 deleted file mode 100644 index 5817cf49c..000000000 Binary files a/files/25_2891_example.mp3 and /dev/null differ diff --git a/files/25_2891_meaning.mp3 b/files/25_2891_meaning.mp3 deleted file mode 100644 index bb38e1f5f..000000000 Binary files a/files/25_2891_meaning.mp3 and /dev/null differ diff --git a/files/25_2892.jpg b/files/25_2892.jpg deleted file mode 100644 index 26c6cb37a..000000000 Binary files a/files/25_2892.jpg and /dev/null differ diff --git a/files/25_2892.mp3 b/files/25_2892.mp3 deleted file mode 100644 index 8ce36e83d..000000000 Binary files a/files/25_2892.mp3 and /dev/null differ diff --git a/files/25_2892_example.mp3 b/files/25_2892_example.mp3 deleted file mode 100644 index 911d06f6c..000000000 Binary files a/files/25_2892_example.mp3 and /dev/null differ diff --git a/files/25_2892_meaning.mp3 b/files/25_2892_meaning.mp3 deleted file mode 100644 index 08170dc53..000000000 Binary files a/files/25_2892_meaning.mp3 and /dev/null differ diff --git a/files/25_2893.jpg b/files/25_2893.jpg deleted file mode 100644 index ec061c09e..000000000 Binary files a/files/25_2893.jpg and /dev/null differ diff --git a/files/25_2893.mp3 b/files/25_2893.mp3 deleted file mode 100644 index bc009b292..000000000 Binary files a/files/25_2893.mp3 and /dev/null differ diff --git a/files/25_2893_example.mp3 b/files/25_2893_example.mp3 deleted file mode 100644 index 53d21ce0c..000000000 Binary files a/files/25_2893_example.mp3 and /dev/null differ diff --git a/files/25_2893_meaning.mp3 b/files/25_2893_meaning.mp3 deleted file mode 100644 index b65cb2394..000000000 Binary files a/files/25_2893_meaning.mp3 and /dev/null differ diff --git a/files/25_2894.jpg b/files/25_2894.jpg deleted file mode 100644 index 17ae1725b..000000000 Binary files a/files/25_2894.jpg and /dev/null differ diff --git a/files/25_2894.mp3 b/files/25_2894.mp3 deleted file mode 100644 index 142db3dd5..000000000 Binary files a/files/25_2894.mp3 and /dev/null differ diff --git a/files/25_2894_example.mp3 b/files/25_2894_example.mp3 deleted file mode 100644 index 1c34c0a69..000000000 Binary files a/files/25_2894_example.mp3 and /dev/null differ diff --git a/files/25_2894_meaning.mp3 b/files/25_2894_meaning.mp3 deleted file mode 100644 index e9e963248..000000000 Binary files a/files/25_2894_meaning.mp3 and /dev/null differ diff --git a/files/25_2895.jpg b/files/25_2895.jpg deleted file mode 100644 index a9bca1362..000000000 Binary files a/files/25_2895.jpg and /dev/null differ diff --git a/files/25_2895.mp3 b/files/25_2895.mp3 deleted file mode 100644 index f6c991b46..000000000 Binary files a/files/25_2895.mp3 and /dev/null differ diff --git a/files/25_2895_example.mp3 b/files/25_2895_example.mp3 deleted file mode 100644 index 2f3f8fe3b..000000000 Binary files a/files/25_2895_example.mp3 and /dev/null differ diff --git a/files/25_2895_meaning.mp3 b/files/25_2895_meaning.mp3 deleted file mode 100644 index 293877cf5..000000000 Binary files a/files/25_2895_meaning.mp3 and /dev/null differ diff --git a/files/25_2896.jpg b/files/25_2896.jpg deleted file mode 100644 index 3bf39afe5..000000000 Binary files a/files/25_2896.jpg and /dev/null differ diff --git a/files/25_2896.mp3 b/files/25_2896.mp3 deleted file mode 100644 index 8dbec6b58..000000000 Binary files a/files/25_2896.mp3 and /dev/null differ diff --git a/files/25_2896_example.mp3 b/files/25_2896_example.mp3 deleted file mode 100644 index fbb95cf78..000000000 Binary files a/files/25_2896_example.mp3 and /dev/null differ diff --git a/files/25_2896_meaning.mp3 b/files/25_2896_meaning.mp3 deleted file mode 100644 index f4a92de0d..000000000 Binary files a/files/25_2896_meaning.mp3 and /dev/null differ diff --git a/files/25_2897.jpg b/files/25_2897.jpg deleted file mode 100644 index 6967b7321..000000000 Binary files a/files/25_2897.jpg and /dev/null differ diff --git a/files/25_2897.mp3 b/files/25_2897.mp3 deleted file mode 100644 index 92c3808bc..000000000 Binary files a/files/25_2897.mp3 and /dev/null differ diff --git a/files/25_2897_example.mp3 b/files/25_2897_example.mp3 deleted file mode 100644 index c71e13f51..000000000 Binary files a/files/25_2897_example.mp3 and /dev/null differ diff --git a/files/25_2897_meaning.mp3 b/files/25_2897_meaning.mp3 deleted file mode 100644 index e0698a078..000000000 Binary files a/files/25_2897_meaning.mp3 and /dev/null differ diff --git a/files/25_2898.jpg b/files/25_2898.jpg deleted file mode 100644 index 1ce8774b9..000000000 Binary files a/files/25_2898.jpg and /dev/null differ diff --git a/files/25_2898.mp3 b/files/25_2898.mp3 deleted file mode 100644 index 37e484365..000000000 Binary files a/files/25_2898.mp3 and /dev/null differ diff --git a/files/25_2898_example.mp3 b/files/25_2898_example.mp3 deleted file mode 100644 index dde0f9628..000000000 Binary files a/files/25_2898_example.mp3 and /dev/null differ diff --git a/files/25_2898_meaning.mp3 b/files/25_2898_meaning.mp3 deleted file mode 100644 index 07be2893e..000000000 Binary files a/files/25_2898_meaning.mp3 and /dev/null differ diff --git a/files/25_2899.jpg b/files/25_2899.jpg deleted file mode 100644 index 2f5d97569..000000000 Binary files a/files/25_2899.jpg and /dev/null differ diff --git a/files/25_2899.mp3 b/files/25_2899.mp3 deleted file mode 100644 index 604c602dc..000000000 Binary files a/files/25_2899.mp3 and /dev/null differ diff --git a/files/25_2899_example.mp3 b/files/25_2899_example.mp3 deleted file mode 100644 index dad6bf82a..000000000 Binary files a/files/25_2899_example.mp3 and /dev/null differ diff --git a/files/25_2899_meaning.mp3 b/files/25_2899_meaning.mp3 deleted file mode 100644 index 6fdb37b5c..000000000 Binary files a/files/25_2899_meaning.mp3 and /dev/null differ diff --git a/files/25_2900.jpg b/files/25_2900.jpg deleted file mode 100644 index c583fc1e9..000000000 Binary files a/files/25_2900.jpg and /dev/null differ diff --git a/files/25_2900.mp3 b/files/25_2900.mp3 deleted file mode 100644 index 75fafb93d..000000000 Binary files a/files/25_2900.mp3 and /dev/null differ diff --git a/files/25_2900_example.mp3 b/files/25_2900_example.mp3 deleted file mode 100644 index 6526878a9..000000000 Binary files a/files/25_2900_example.mp3 and /dev/null differ diff --git a/files/25_2900_meaning.mp3 b/files/25_2900_meaning.mp3 deleted file mode 100644 index a330f5f70..000000000 Binary files a/files/25_2900_meaning.mp3 and /dev/null differ diff --git a/files/25_3481.jpg b/files/25_3481.jpg deleted file mode 100644 index 0c77826ac..000000000 Binary files a/files/25_3481.jpg and /dev/null differ diff --git a/files/25_3481.mp3 b/files/25_3481.mp3 deleted file mode 100644 index 03ce2e46d..000000000 Binary files a/files/25_3481.mp3 and /dev/null differ diff --git a/files/25_3481_example.mp3 b/files/25_3481_example.mp3 deleted file mode 100644 index 52eded674..000000000 Binary files a/files/25_3481_example.mp3 and /dev/null differ diff --git a/files/25_3481_meaning.mp3 b/files/25_3481_meaning.mp3 deleted file mode 100644 index 7a1d836a9..000000000 Binary files a/files/25_3481_meaning.mp3 and /dev/null differ diff --git a/files/25_3482.jpg b/files/25_3482.jpg deleted file mode 100644 index 2731ae5f7..000000000 Binary files a/files/25_3482.jpg and /dev/null differ diff --git a/files/25_3482.mp3 b/files/25_3482.mp3 deleted file mode 100644 index bdedec9c8..000000000 Binary files a/files/25_3482.mp3 and /dev/null differ diff --git a/files/25_3482_example.mp3 b/files/25_3482_example.mp3 deleted file mode 100644 index 17010907e..000000000 Binary files a/files/25_3482_example.mp3 and /dev/null differ diff --git a/files/25_3482_meaning.mp3 b/files/25_3482_meaning.mp3 deleted file mode 100644 index 2fbb0ee60..000000000 Binary files a/files/25_3482_meaning.mp3 and /dev/null differ diff --git a/files/25_3483.jpg b/files/25_3483.jpg deleted file mode 100644 index d77079c1a..000000000 Binary files a/files/25_3483.jpg and /dev/null differ diff --git a/files/25_3483.mp3 b/files/25_3483.mp3 deleted file mode 100644 index f01038b33..000000000 Binary files a/files/25_3483.mp3 and /dev/null differ diff --git a/files/25_3483_example.mp3 b/files/25_3483_example.mp3 deleted file mode 100644 index 3c0a1ab5c..000000000 Binary files a/files/25_3483_example.mp3 and /dev/null differ diff --git a/files/25_3483_meaning.mp3 b/files/25_3483_meaning.mp3 deleted file mode 100644 index 389decbcc..000000000 Binary files a/files/25_3483_meaning.mp3 and /dev/null differ diff --git a/files/25_3484.jpg b/files/25_3484.jpg deleted file mode 100644 index a34bcb759..000000000 Binary files a/files/25_3484.jpg and /dev/null differ diff --git a/files/25_3484.mp3 b/files/25_3484.mp3 deleted file mode 100644 index e8f536787..000000000 Binary files a/files/25_3484.mp3 and /dev/null differ diff --git a/files/25_3484_example.mp3 b/files/25_3484_example.mp3 deleted file mode 100644 index a44c70adb..000000000 Binary files a/files/25_3484_example.mp3 and /dev/null differ diff --git a/files/25_3484_meaning.mp3 b/files/25_3484_meaning.mp3 deleted file mode 100644 index d85c062d2..000000000 Binary files a/files/25_3484_meaning.mp3 and /dev/null differ diff --git a/files/25_3485.jpg b/files/25_3485.jpg deleted file mode 100644 index 030d73f29..000000000 Binary files a/files/25_3485.jpg and /dev/null differ diff --git a/files/25_3485.mp3 b/files/25_3485.mp3 deleted file mode 100644 index 0d2b346f4..000000000 Binary files a/files/25_3485.mp3 and /dev/null differ diff --git a/files/25_3485_example.mp3 b/files/25_3485_example.mp3 deleted file mode 100644 index f97b73bca..000000000 Binary files a/files/25_3485_example.mp3 and /dev/null differ diff --git a/files/25_3485_meaning.mp3 b/files/25_3485_meaning.mp3 deleted file mode 100644 index 293b276b2..000000000 Binary files a/files/25_3485_meaning.mp3 and /dev/null differ diff --git a/files/25_3486.jpg b/files/25_3486.jpg deleted file mode 100644 index f65e32579..000000000 Binary files a/files/25_3486.jpg and /dev/null differ diff --git a/files/25_3486.mp3 b/files/25_3486.mp3 deleted file mode 100644 index 972be96c3..000000000 Binary files a/files/25_3486.mp3 and /dev/null differ diff --git a/files/25_3486_example.mp3 b/files/25_3486_example.mp3 deleted file mode 100644 index b2cbf5eb3..000000000 Binary files a/files/25_3486_example.mp3 and /dev/null differ diff --git a/files/25_3486_meaning.mp3 b/files/25_3486_meaning.mp3 deleted file mode 100644 index 6e638e7b7..000000000 Binary files a/files/25_3486_meaning.mp3 and /dev/null differ diff --git a/files/25_3487.jpg b/files/25_3487.jpg deleted file mode 100644 index 75ebc6566..000000000 Binary files a/files/25_3487.jpg and /dev/null differ diff --git a/files/25_3487.mp3 b/files/25_3487.mp3 deleted file mode 100644 index 8bee180c8..000000000 Binary files a/files/25_3487.mp3 and /dev/null differ diff --git a/files/25_3487_example.mp3 b/files/25_3487_example.mp3 deleted file mode 100644 index 906d2ec60..000000000 Binary files a/files/25_3487_example.mp3 and /dev/null differ diff --git a/files/25_3487_meaning.mp3 b/files/25_3487_meaning.mp3 deleted file mode 100644 index 5ecb597a0..000000000 Binary files a/files/25_3487_meaning.mp3 and /dev/null differ diff --git a/files/25_3488.jpg b/files/25_3488.jpg deleted file mode 100644 index 85b84cd94..000000000 Binary files a/files/25_3488.jpg and /dev/null differ diff --git a/files/25_3488.mp3 b/files/25_3488.mp3 deleted file mode 100644 index 01ccf42b3..000000000 Binary files a/files/25_3488.mp3 and /dev/null differ diff --git a/files/25_3488_example.mp3 b/files/25_3488_example.mp3 deleted file mode 100644 index dd5d3aef3..000000000 Binary files a/files/25_3488_example.mp3 and /dev/null differ diff --git a/files/25_3488_meaning.mp3 b/files/25_3488_meaning.mp3 deleted file mode 100644 index e089d3c4e..000000000 Binary files a/files/25_3488_meaning.mp3 and /dev/null differ diff --git a/files/25_3489.jpg b/files/25_3489.jpg deleted file mode 100644 index f2f9e4788..000000000 Binary files a/files/25_3489.jpg and /dev/null differ diff --git a/files/25_3489.mp3 b/files/25_3489.mp3 deleted file mode 100644 index a2a07e990..000000000 Binary files a/files/25_3489.mp3 and /dev/null differ diff --git a/files/25_3489_example.mp3 b/files/25_3489_example.mp3 deleted file mode 100644 index 23e92845c..000000000 Binary files a/files/25_3489_example.mp3 and /dev/null differ diff --git a/files/25_3489_meaning.mp3 b/files/25_3489_meaning.mp3 deleted file mode 100644 index 9db7d7f8c..000000000 Binary files a/files/25_3489_meaning.mp3 and /dev/null differ diff --git a/files/25_3490.jpg b/files/25_3490.jpg deleted file mode 100644 index 6e47cd355..000000000 Binary files a/files/25_3490.jpg and /dev/null differ diff --git a/files/25_3490.mp3 b/files/25_3490.mp3 deleted file mode 100644 index 1b4616cd8..000000000 Binary files a/files/25_3490.mp3 and /dev/null differ diff --git a/files/25_3490_example.mp3 b/files/25_3490_example.mp3 deleted file mode 100644 index caea2f9e0..000000000 Binary files a/files/25_3490_example.mp3 and /dev/null differ diff --git a/files/25_3490_meaning.mp3 b/files/25_3490_meaning.mp3 deleted file mode 100644 index a3f01d463..000000000 Binary files a/files/25_3490_meaning.mp3 and /dev/null differ diff --git a/files/25_3491.jpg b/files/25_3491.jpg deleted file mode 100644 index c7c3653e7..000000000 Binary files a/files/25_3491.jpg and /dev/null differ diff --git a/files/25_3491.mp3 b/files/25_3491.mp3 deleted file mode 100644 index de0446cd9..000000000 Binary files a/files/25_3491.mp3 and /dev/null differ diff --git a/files/25_3491_example.mp3 b/files/25_3491_example.mp3 deleted file mode 100644 index 91cf19617..000000000 Binary files a/files/25_3491_example.mp3 and /dev/null differ diff --git a/files/25_3491_meaning.mp3 b/files/25_3491_meaning.mp3 deleted file mode 100644 index 6e4d3a80e..000000000 Binary files a/files/25_3491_meaning.mp3 and /dev/null differ diff --git a/files/25_3492.jpg b/files/25_3492.jpg deleted file mode 100644 index d456c7654..000000000 Binary files a/files/25_3492.jpg and /dev/null differ diff --git a/files/25_3492.mp3 b/files/25_3492.mp3 deleted file mode 100644 index 4cd040c80..000000000 Binary files a/files/25_3492.mp3 and /dev/null differ diff --git a/files/25_3492_example.mp3 b/files/25_3492_example.mp3 deleted file mode 100644 index dd8b9b53e..000000000 Binary files a/files/25_3492_example.mp3 and /dev/null differ diff --git a/files/25_3492_meaning.mp3 b/files/25_3492_meaning.mp3 deleted file mode 100644 index f9709cb63..000000000 Binary files a/files/25_3492_meaning.mp3 and /dev/null differ diff --git a/files/25_3493.jpg b/files/25_3493.jpg deleted file mode 100644 index 937fe9d1d..000000000 Binary files a/files/25_3493.jpg and /dev/null differ diff --git a/files/25_3493.mp3 b/files/25_3493.mp3 deleted file mode 100644 index 9851b00a8..000000000 Binary files a/files/25_3493.mp3 and /dev/null differ diff --git a/files/25_3493_example.mp3 b/files/25_3493_example.mp3 deleted file mode 100644 index 9539985a0..000000000 Binary files a/files/25_3493_example.mp3 and /dev/null differ diff --git a/files/25_3493_meaning.mp3 b/files/25_3493_meaning.mp3 deleted file mode 100644 index e17d78177..000000000 Binary files a/files/25_3493_meaning.mp3 and /dev/null differ diff --git a/files/25_3494.jpg b/files/25_3494.jpg deleted file mode 100644 index 6eb50a2e3..000000000 Binary files a/files/25_3494.jpg and /dev/null differ diff --git a/files/25_3494.mp3 b/files/25_3494.mp3 deleted file mode 100644 index bbf8079c7..000000000 Binary files a/files/25_3494.mp3 and /dev/null differ diff --git a/files/25_3494_example.mp3 b/files/25_3494_example.mp3 deleted file mode 100644 index 825b54669..000000000 Binary files a/files/25_3494_example.mp3 and /dev/null differ diff --git a/files/25_3494_meaning.mp3 b/files/25_3494_meaning.mp3 deleted file mode 100644 index 6148f0b28..000000000 Binary files a/files/25_3494_meaning.mp3 and /dev/null differ diff --git a/files/25_3495.jpg b/files/25_3495.jpg deleted file mode 100644 index 2e48ca15d..000000000 Binary files a/files/25_3495.jpg and /dev/null differ diff --git a/files/25_3495.mp3 b/files/25_3495.mp3 deleted file mode 100644 index 868a2a106..000000000 Binary files a/files/25_3495.mp3 and /dev/null differ diff --git a/files/25_3495_example.mp3 b/files/25_3495_example.mp3 deleted file mode 100644 index 9f0600660..000000000 Binary files a/files/25_3495_example.mp3 and /dev/null differ diff --git a/files/25_3495_meaning.mp3 b/files/25_3495_meaning.mp3 deleted file mode 100644 index 15102edbd..000000000 Binary files a/files/25_3495_meaning.mp3 and /dev/null differ diff --git a/files/25_3496.jpg b/files/25_3496.jpg deleted file mode 100644 index c20abb2e5..000000000 Binary files a/files/25_3496.jpg and /dev/null differ diff --git a/files/25_3496.mp3 b/files/25_3496.mp3 deleted file mode 100644 index 3e01a949c..000000000 Binary files a/files/25_3496.mp3 and /dev/null differ diff --git a/files/25_3496_example.mp3 b/files/25_3496_example.mp3 deleted file mode 100644 index 2d20e00a8..000000000 Binary files a/files/25_3496_example.mp3 and /dev/null differ diff --git a/files/25_3496_meaning.mp3 b/files/25_3496_meaning.mp3 deleted file mode 100644 index 7d4a0efdb..000000000 Binary files a/files/25_3496_meaning.mp3 and /dev/null differ diff --git a/files/25_3497.jpg b/files/25_3497.jpg deleted file mode 100644 index 845a7bf7c..000000000 Binary files a/files/25_3497.jpg and /dev/null differ diff --git a/files/25_3497.mp3 b/files/25_3497.mp3 deleted file mode 100644 index 09b6000e7..000000000 Binary files a/files/25_3497.mp3 and /dev/null differ diff --git a/files/25_3497_example.mp3 b/files/25_3497_example.mp3 deleted file mode 100644 index d1f6d075c..000000000 Binary files a/files/25_3497_example.mp3 and /dev/null differ diff --git a/files/25_3497_meaning.mp3 b/files/25_3497_meaning.mp3 deleted file mode 100644 index 59cb77e1b..000000000 Binary files a/files/25_3497_meaning.mp3 and /dev/null differ diff --git a/files/25_3498.jpg b/files/25_3498.jpg deleted file mode 100644 index 52615c0cd..000000000 Binary files a/files/25_3498.jpg and /dev/null differ diff --git a/files/25_3498.mp3 b/files/25_3498.mp3 deleted file mode 100644 index 076c4b2bd..000000000 Binary files a/files/25_3498.mp3 and /dev/null differ diff --git a/files/25_3498_example.mp3 b/files/25_3498_example.mp3 deleted file mode 100644 index 8269ef116..000000000 Binary files a/files/25_3498_example.mp3 and /dev/null differ diff --git a/files/25_3498_meaning.mp3 b/files/25_3498_meaning.mp3 deleted file mode 100644 index 644f9abba..000000000 Binary files a/files/25_3498_meaning.mp3 and /dev/null differ diff --git a/files/25_3499.jpg b/files/25_3499.jpg deleted file mode 100644 index 4a3067f39..000000000 Binary files a/files/25_3499.jpg and /dev/null differ diff --git a/files/25_3499.mp3 b/files/25_3499.mp3 deleted file mode 100644 index 0c1286273..000000000 Binary files a/files/25_3499.mp3 and /dev/null differ diff --git a/files/25_3499_example.mp3 b/files/25_3499_example.mp3 deleted file mode 100644 index 444246709..000000000 Binary files a/files/25_3499_example.mp3 and /dev/null differ diff --git a/files/25_3499_meaning.mp3 b/files/25_3499_meaning.mp3 deleted file mode 100644 index 9d4a2086b..000000000 Binary files a/files/25_3499_meaning.mp3 and /dev/null differ diff --git a/files/25_3500.jpg b/files/25_3500.jpg deleted file mode 100644 index 62825337b..000000000 Binary files a/files/25_3500.jpg and /dev/null differ diff --git a/files/25_3500.mp3 b/files/25_3500.mp3 deleted file mode 100644 index db8005ac0..000000000 Binary files a/files/25_3500.mp3 and /dev/null differ diff --git a/files/25_3500_example.mp3 b/files/25_3500_example.mp3 deleted file mode 100644 index ec6defbbf..000000000 Binary files a/files/25_3500_example.mp3 and /dev/null differ diff --git a/files/25_3500_meaning.mp3 b/files/25_3500_meaning.mp3 deleted file mode 100644 index b4ea78e55..000000000 Binary files a/files/25_3500_meaning.mp3 and /dev/null differ diff --git a/files/26_0501.jpg b/files/26_0501.jpg deleted file mode 100644 index 879f6651c..000000000 Binary files a/files/26_0501.jpg and /dev/null differ diff --git a/files/26_0501.mp3 b/files/26_0501.mp3 deleted file mode 100644 index d74283f20..000000000 Binary files a/files/26_0501.mp3 and /dev/null differ diff --git a/files/26_0501_example.mp3 b/files/26_0501_example.mp3 deleted file mode 100644 index 1a85ba82e..000000000 Binary files a/files/26_0501_example.mp3 and /dev/null differ diff --git a/files/26_0501_meaning.mp3 b/files/26_0501_meaning.mp3 deleted file mode 100644 index 1953d3c79..000000000 Binary files a/files/26_0501_meaning.mp3 and /dev/null differ diff --git a/files/26_0502.jpg b/files/26_0502.jpg deleted file mode 100644 index f404d4ffc..000000000 Binary files a/files/26_0502.jpg and /dev/null differ diff --git a/files/26_0502.mp3 b/files/26_0502.mp3 deleted file mode 100644 index a712fc97e..000000000 Binary files a/files/26_0502.mp3 and /dev/null differ diff --git a/files/26_0502_example.mp3 b/files/26_0502_example.mp3 deleted file mode 100644 index 62056d97f..000000000 Binary files a/files/26_0502_example.mp3 and /dev/null differ diff --git a/files/26_0502_meaning.mp3 b/files/26_0502_meaning.mp3 deleted file mode 100644 index 6ae55f2a5..000000000 Binary files a/files/26_0502_meaning.mp3 and /dev/null differ diff --git a/files/26_0503.jpg b/files/26_0503.jpg deleted file mode 100644 index 819435493..000000000 Binary files a/files/26_0503.jpg and /dev/null differ diff --git a/files/26_0503.mp3 b/files/26_0503.mp3 deleted file mode 100644 index d0f032f0a..000000000 Binary files a/files/26_0503.mp3 and /dev/null differ diff --git a/files/26_0503_example.mp3 b/files/26_0503_example.mp3 deleted file mode 100644 index e2a074a5a..000000000 Binary files a/files/26_0503_example.mp3 and /dev/null differ diff --git a/files/26_0503_meaning.mp3 b/files/26_0503_meaning.mp3 deleted file mode 100644 index 22891000e..000000000 Binary files a/files/26_0503_meaning.mp3 and /dev/null differ diff --git a/files/26_0504.jpg b/files/26_0504.jpg deleted file mode 100644 index bf3b7c27f..000000000 Binary files a/files/26_0504.jpg and /dev/null differ diff --git a/files/26_0504.mp3 b/files/26_0504.mp3 deleted file mode 100644 index c4ae41c66..000000000 Binary files a/files/26_0504.mp3 and /dev/null differ diff --git a/files/26_0504_example.mp3 b/files/26_0504_example.mp3 deleted file mode 100644 index edc3c0d3e..000000000 Binary files a/files/26_0504_example.mp3 and /dev/null differ diff --git a/files/26_0504_meaning.mp3 b/files/26_0504_meaning.mp3 deleted file mode 100644 index 6d3f40b4a..000000000 Binary files a/files/26_0504_meaning.mp3 and /dev/null differ diff --git a/files/26_0505.jpg b/files/26_0505.jpg deleted file mode 100644 index a3bf4d679..000000000 Binary files a/files/26_0505.jpg and /dev/null differ diff --git a/files/26_0505.mp3 b/files/26_0505.mp3 deleted file mode 100644 index 3eae62f3d..000000000 Binary files a/files/26_0505.mp3 and /dev/null differ diff --git a/files/26_0505_example.mp3 b/files/26_0505_example.mp3 deleted file mode 100644 index 18c02b3e3..000000000 Binary files a/files/26_0505_example.mp3 and /dev/null differ diff --git a/files/26_0505_meaning.mp3 b/files/26_0505_meaning.mp3 deleted file mode 100644 index e05794f2c..000000000 Binary files a/files/26_0505_meaning.mp3 and /dev/null differ diff --git a/files/26_0506.jpg b/files/26_0506.jpg deleted file mode 100644 index 121c6ef6f..000000000 Binary files a/files/26_0506.jpg and /dev/null differ diff --git a/files/26_0506.mp3 b/files/26_0506.mp3 deleted file mode 100644 index b33ddd76b..000000000 Binary files a/files/26_0506.mp3 and /dev/null differ diff --git a/files/26_0506_example.mp3 b/files/26_0506_example.mp3 deleted file mode 100644 index 4d5f66deb..000000000 Binary files a/files/26_0506_example.mp3 and /dev/null differ diff --git a/files/26_0506_meaning.mp3 b/files/26_0506_meaning.mp3 deleted file mode 100644 index 7cdb319c5..000000000 Binary files a/files/26_0506_meaning.mp3 and /dev/null differ diff --git a/files/26_0507.jpg b/files/26_0507.jpg deleted file mode 100644 index 3ee10ebef..000000000 Binary files a/files/26_0507.jpg and /dev/null differ diff --git a/files/26_0507.mp3 b/files/26_0507.mp3 deleted file mode 100644 index ef9184775..000000000 Binary files a/files/26_0507.mp3 and /dev/null differ diff --git a/files/26_0507_example.mp3 b/files/26_0507_example.mp3 deleted file mode 100644 index 7d58b9e3f..000000000 Binary files a/files/26_0507_example.mp3 and /dev/null differ diff --git a/files/26_0507_meaning.mp3 b/files/26_0507_meaning.mp3 deleted file mode 100644 index 1a82365e8..000000000 Binary files a/files/26_0507_meaning.mp3 and /dev/null differ diff --git a/files/26_0508.jpg b/files/26_0508.jpg deleted file mode 100644 index 6542348ef..000000000 Binary files a/files/26_0508.jpg and /dev/null differ diff --git a/files/26_0508.mp3 b/files/26_0508.mp3 deleted file mode 100644 index b9e23d408..000000000 Binary files a/files/26_0508.mp3 and /dev/null differ diff --git a/files/26_0508_example.mp3 b/files/26_0508_example.mp3 deleted file mode 100644 index f50030e86..000000000 Binary files a/files/26_0508_example.mp3 and /dev/null differ diff --git a/files/26_0508_meaning.mp3 b/files/26_0508_meaning.mp3 deleted file mode 100644 index 1edbf7d17..000000000 Binary files a/files/26_0508_meaning.mp3 and /dev/null differ diff --git a/files/26_0509.jpg b/files/26_0509.jpg deleted file mode 100644 index 547546079..000000000 Binary files a/files/26_0509.jpg and /dev/null differ diff --git a/files/26_0509.mp3 b/files/26_0509.mp3 deleted file mode 100644 index 5d8b044bd..000000000 Binary files a/files/26_0509.mp3 and /dev/null differ diff --git a/files/26_0509_example.mp3 b/files/26_0509_example.mp3 deleted file mode 100644 index 0da1cad9f..000000000 Binary files a/files/26_0509_example.mp3 and /dev/null differ diff --git a/files/26_0509_meaning.mp3 b/files/26_0509_meaning.mp3 deleted file mode 100644 index 386b680c6..000000000 Binary files a/files/26_0509_meaning.mp3 and /dev/null differ diff --git a/files/26_0510.jpg b/files/26_0510.jpg deleted file mode 100644 index 4c9e37972..000000000 Binary files a/files/26_0510.jpg and /dev/null differ diff --git a/files/26_0510.mp3 b/files/26_0510.mp3 deleted file mode 100644 index cc8036424..000000000 Binary files a/files/26_0510.mp3 and /dev/null differ diff --git a/files/26_0510_example.mp3 b/files/26_0510_example.mp3 deleted file mode 100644 index 909b07c75..000000000 Binary files a/files/26_0510_example.mp3 and /dev/null differ diff --git a/files/26_0510_meaning.mp3 b/files/26_0510_meaning.mp3 deleted file mode 100644 index 6bf37d0dd..000000000 Binary files a/files/26_0510_meaning.mp3 and /dev/null differ diff --git a/files/26_0511.jpg b/files/26_0511.jpg deleted file mode 100644 index f9e293013..000000000 Binary files a/files/26_0511.jpg and /dev/null differ diff --git a/files/26_0511.mp3 b/files/26_0511.mp3 deleted file mode 100644 index c39ef6ae1..000000000 Binary files a/files/26_0511.mp3 and /dev/null differ diff --git a/files/26_0511_example.mp3 b/files/26_0511_example.mp3 deleted file mode 100644 index a580158fe..000000000 Binary files a/files/26_0511_example.mp3 and /dev/null differ diff --git a/files/26_0511_meaning.mp3 b/files/26_0511_meaning.mp3 deleted file mode 100644 index bd903b78f..000000000 Binary files a/files/26_0511_meaning.mp3 and /dev/null differ diff --git a/files/26_0512.jpg b/files/26_0512.jpg deleted file mode 100644 index dcda101f1..000000000 Binary files a/files/26_0512.jpg and /dev/null differ diff --git a/files/26_0512.mp3 b/files/26_0512.mp3 deleted file mode 100644 index a93529e5e..000000000 Binary files a/files/26_0512.mp3 and /dev/null differ diff --git a/files/26_0512_example.mp3 b/files/26_0512_example.mp3 deleted file mode 100644 index 3385990ae..000000000 Binary files a/files/26_0512_example.mp3 and /dev/null differ diff --git a/files/26_0512_meaning.mp3 b/files/26_0512_meaning.mp3 deleted file mode 100644 index 47f8d6cd6..000000000 Binary files a/files/26_0512_meaning.mp3 and /dev/null differ diff --git a/files/26_0513.jpg b/files/26_0513.jpg deleted file mode 100644 index c9e6e6611..000000000 Binary files a/files/26_0513.jpg and /dev/null differ diff --git a/files/26_0513.mp3 b/files/26_0513.mp3 deleted file mode 100644 index f0e3caefb..000000000 Binary files a/files/26_0513.mp3 and /dev/null differ diff --git a/files/26_0513_example.mp3 b/files/26_0513_example.mp3 deleted file mode 100644 index 01caa265d..000000000 Binary files a/files/26_0513_example.mp3 and /dev/null differ diff --git a/files/26_0513_meaning.mp3 b/files/26_0513_meaning.mp3 deleted file mode 100644 index 71defa540..000000000 Binary files a/files/26_0513_meaning.mp3 and /dev/null differ diff --git a/files/26_0514.jpg b/files/26_0514.jpg deleted file mode 100644 index 70dc6ac38..000000000 Binary files a/files/26_0514.jpg and /dev/null differ diff --git a/files/26_0514.mp3 b/files/26_0514.mp3 deleted file mode 100644 index b126272e7..000000000 Binary files a/files/26_0514.mp3 and /dev/null differ diff --git a/files/26_0514_example.mp3 b/files/26_0514_example.mp3 deleted file mode 100644 index 236284a1e..000000000 Binary files a/files/26_0514_example.mp3 and /dev/null differ diff --git a/files/26_0514_meaning.mp3 b/files/26_0514_meaning.mp3 deleted file mode 100644 index 75af49392..000000000 Binary files a/files/26_0514_meaning.mp3 and /dev/null differ diff --git a/files/26_0515.jpg b/files/26_0515.jpg deleted file mode 100644 index ed6d99bf3..000000000 Binary files a/files/26_0515.jpg and /dev/null differ diff --git a/files/26_0515.mp3 b/files/26_0515.mp3 deleted file mode 100644 index d134dcd8f..000000000 Binary files a/files/26_0515.mp3 and /dev/null differ diff --git a/files/26_0515_example.mp3 b/files/26_0515_example.mp3 deleted file mode 100644 index b01d7151e..000000000 Binary files a/files/26_0515_example.mp3 and /dev/null differ diff --git a/files/26_0515_meaning.mp3 b/files/26_0515_meaning.mp3 deleted file mode 100644 index d11b66406..000000000 Binary files a/files/26_0515_meaning.mp3 and /dev/null differ diff --git a/files/26_0516.jpg b/files/26_0516.jpg deleted file mode 100644 index 3aad4831a..000000000 Binary files a/files/26_0516.jpg and /dev/null differ diff --git a/files/26_0516.mp3 b/files/26_0516.mp3 deleted file mode 100644 index 7d770c717..000000000 Binary files a/files/26_0516.mp3 and /dev/null differ diff --git a/files/26_0516_example.mp3 b/files/26_0516_example.mp3 deleted file mode 100644 index fce147812..000000000 Binary files a/files/26_0516_example.mp3 and /dev/null differ diff --git a/files/26_0516_meaning.mp3 b/files/26_0516_meaning.mp3 deleted file mode 100644 index bdfc32fd3..000000000 Binary files a/files/26_0516_meaning.mp3 and /dev/null differ diff --git a/files/26_0517.jpg b/files/26_0517.jpg deleted file mode 100644 index 09d5d4ae3..000000000 Binary files a/files/26_0517.jpg and /dev/null differ diff --git a/files/26_0517.mp3 b/files/26_0517.mp3 deleted file mode 100644 index 490bddd9a..000000000 Binary files a/files/26_0517.mp3 and /dev/null differ diff --git a/files/26_0517_example.mp3 b/files/26_0517_example.mp3 deleted file mode 100644 index ad0ba084a..000000000 Binary files a/files/26_0517_example.mp3 and /dev/null differ diff --git a/files/26_0517_meaning.mp3 b/files/26_0517_meaning.mp3 deleted file mode 100644 index 9ac44d6b4..000000000 Binary files a/files/26_0517_meaning.mp3 and /dev/null differ diff --git a/files/26_0518.jpg b/files/26_0518.jpg deleted file mode 100644 index 171c5feb0..000000000 Binary files a/files/26_0518.jpg and /dev/null differ diff --git a/files/26_0518.mp3 b/files/26_0518.mp3 deleted file mode 100644 index 1830c1576..000000000 Binary files a/files/26_0518.mp3 and /dev/null differ diff --git a/files/26_0518_example.mp3 b/files/26_0518_example.mp3 deleted file mode 100644 index 47c52eca7..000000000 Binary files a/files/26_0518_example.mp3 and /dev/null differ diff --git a/files/26_0518_meaning.mp3 b/files/26_0518_meaning.mp3 deleted file mode 100644 index cc485d429..000000000 Binary files a/files/26_0518_meaning.mp3 and /dev/null differ diff --git a/files/26_0519.jpg b/files/26_0519.jpg deleted file mode 100644 index 9a25b9169..000000000 Binary files a/files/26_0519.jpg and /dev/null differ diff --git a/files/26_0519.mp3 b/files/26_0519.mp3 deleted file mode 100644 index ee5c8b5e9..000000000 Binary files a/files/26_0519.mp3 and /dev/null differ diff --git a/files/26_0519_example.mp3 b/files/26_0519_example.mp3 deleted file mode 100644 index fc6f2d794..000000000 Binary files a/files/26_0519_example.mp3 and /dev/null differ diff --git a/files/26_0519_meaning.mp3 b/files/26_0519_meaning.mp3 deleted file mode 100644 index 274ec0720..000000000 Binary files a/files/26_0519_meaning.mp3 and /dev/null differ diff --git a/files/26_0520.jpg b/files/26_0520.jpg deleted file mode 100644 index f4425be1e..000000000 Binary files a/files/26_0520.jpg and /dev/null differ diff --git a/files/26_0520.mp3 b/files/26_0520.mp3 deleted file mode 100644 index fa70e74ac..000000000 Binary files a/files/26_0520.mp3 and /dev/null differ diff --git a/files/26_0520_example.mp3 b/files/26_0520_example.mp3 deleted file mode 100644 index 7607af901..000000000 Binary files a/files/26_0520_example.mp3 and /dev/null differ diff --git a/files/26_0520_meaning.mp3 b/files/26_0520_meaning.mp3 deleted file mode 100644 index a6af8c05e..000000000 Binary files a/files/26_0520_meaning.mp3 and /dev/null differ diff --git a/files/26_1101.jpg b/files/26_1101.jpg deleted file mode 100644 index 45f8b1cc8..000000000 Binary files a/files/26_1101.jpg and /dev/null differ diff --git a/files/26_1101.mp3 b/files/26_1101.mp3 deleted file mode 100644 index c57cdade5..000000000 Binary files a/files/26_1101.mp3 and /dev/null differ diff --git a/files/26_1101_example.mp3 b/files/26_1101_example.mp3 deleted file mode 100644 index 287997926..000000000 Binary files a/files/26_1101_example.mp3 and /dev/null differ diff --git a/files/26_1101_meaning.mp3 b/files/26_1101_meaning.mp3 deleted file mode 100644 index 6be78dc4d..000000000 Binary files a/files/26_1101_meaning.mp3 and /dev/null differ diff --git a/files/26_1102.jpg b/files/26_1102.jpg deleted file mode 100644 index c1de32ac4..000000000 Binary files a/files/26_1102.jpg and /dev/null differ diff --git a/files/26_1102.mp3 b/files/26_1102.mp3 deleted file mode 100644 index f55110a5f..000000000 Binary files a/files/26_1102.mp3 and /dev/null differ diff --git a/files/26_1102_example.mp3 b/files/26_1102_example.mp3 deleted file mode 100644 index ba2ff498a..000000000 Binary files a/files/26_1102_example.mp3 and /dev/null differ diff --git a/files/26_1102_meaning.mp3 b/files/26_1102_meaning.mp3 deleted file mode 100644 index 8b2154373..000000000 Binary files a/files/26_1102_meaning.mp3 and /dev/null differ diff --git a/files/26_1103.jpg b/files/26_1103.jpg deleted file mode 100644 index 8f62fa76d..000000000 Binary files a/files/26_1103.jpg and /dev/null differ diff --git a/files/26_1103.mp3 b/files/26_1103.mp3 deleted file mode 100644 index 2a5d85ddc..000000000 Binary files a/files/26_1103.mp3 and /dev/null differ diff --git a/files/26_1103_example.mp3 b/files/26_1103_example.mp3 deleted file mode 100644 index 8b4a1929a..000000000 Binary files a/files/26_1103_example.mp3 and /dev/null differ diff --git a/files/26_1103_meaning.mp3 b/files/26_1103_meaning.mp3 deleted file mode 100644 index fef24be86..000000000 Binary files a/files/26_1103_meaning.mp3 and /dev/null differ diff --git a/files/26_1104.jpg b/files/26_1104.jpg deleted file mode 100644 index 9749460c6..000000000 Binary files a/files/26_1104.jpg and /dev/null differ diff --git a/files/26_1104.mp3 b/files/26_1104.mp3 deleted file mode 100644 index 30031c552..000000000 Binary files a/files/26_1104.mp3 and /dev/null differ diff --git a/files/26_1104_example.mp3 b/files/26_1104_example.mp3 deleted file mode 100644 index 8ca529d42..000000000 Binary files a/files/26_1104_example.mp3 and /dev/null differ diff --git a/files/26_1104_meaning.mp3 b/files/26_1104_meaning.mp3 deleted file mode 100644 index dcac94ce1..000000000 Binary files a/files/26_1104_meaning.mp3 and /dev/null differ diff --git a/files/26_1105.jpg b/files/26_1105.jpg deleted file mode 100644 index d79831a4e..000000000 Binary files a/files/26_1105.jpg and /dev/null differ diff --git a/files/26_1105.mp3 b/files/26_1105.mp3 deleted file mode 100644 index 71c2cf4a8..000000000 Binary files a/files/26_1105.mp3 and /dev/null differ diff --git a/files/26_1105_example.mp3 b/files/26_1105_example.mp3 deleted file mode 100644 index 94dd1c95f..000000000 Binary files a/files/26_1105_example.mp3 and /dev/null differ diff --git a/files/26_1105_meaning.mp3 b/files/26_1105_meaning.mp3 deleted file mode 100644 index bbc2c7d30..000000000 Binary files a/files/26_1105_meaning.mp3 and /dev/null differ diff --git a/files/26_1106.jpg b/files/26_1106.jpg deleted file mode 100644 index c75573744..000000000 Binary files a/files/26_1106.jpg and /dev/null differ diff --git a/files/26_1106.mp3 b/files/26_1106.mp3 deleted file mode 100644 index 67de71091..000000000 Binary files a/files/26_1106.mp3 and /dev/null differ diff --git a/files/26_1106_example.mp3 b/files/26_1106_example.mp3 deleted file mode 100644 index 3ea4e5485..000000000 Binary files a/files/26_1106_example.mp3 and /dev/null differ diff --git a/files/26_1106_meaning.mp3 b/files/26_1106_meaning.mp3 deleted file mode 100644 index b3ed12577..000000000 Binary files a/files/26_1106_meaning.mp3 and /dev/null differ diff --git a/files/26_1107.jpg b/files/26_1107.jpg deleted file mode 100644 index a53f79f10..000000000 Binary files a/files/26_1107.jpg and /dev/null differ diff --git a/files/26_1107.mp3 b/files/26_1107.mp3 deleted file mode 100644 index 5585b8e6c..000000000 Binary files a/files/26_1107.mp3 and /dev/null differ diff --git a/files/26_1107_example.mp3 b/files/26_1107_example.mp3 deleted file mode 100644 index c4c6275ca..000000000 Binary files a/files/26_1107_example.mp3 and /dev/null differ diff --git a/files/26_1107_meaning.mp3 b/files/26_1107_meaning.mp3 deleted file mode 100644 index 5cb9c8619..000000000 Binary files a/files/26_1107_meaning.mp3 and /dev/null differ diff --git a/files/26_1108.jpg b/files/26_1108.jpg deleted file mode 100644 index 86093f595..000000000 Binary files a/files/26_1108.jpg and /dev/null differ diff --git a/files/26_1108.mp3 b/files/26_1108.mp3 deleted file mode 100644 index 037af587a..000000000 Binary files a/files/26_1108.mp3 and /dev/null differ diff --git a/files/26_1108_example.mp3 b/files/26_1108_example.mp3 deleted file mode 100644 index 73639c36a..000000000 Binary files a/files/26_1108_example.mp3 and /dev/null differ diff --git a/files/26_1108_meaning.mp3 b/files/26_1108_meaning.mp3 deleted file mode 100644 index 7180c0e93..000000000 Binary files a/files/26_1108_meaning.mp3 and /dev/null differ diff --git a/files/26_1109.jpg b/files/26_1109.jpg deleted file mode 100644 index 6a2b955cf..000000000 Binary files a/files/26_1109.jpg and /dev/null differ diff --git a/files/26_1109.mp3 b/files/26_1109.mp3 deleted file mode 100644 index c65b6c51b..000000000 Binary files a/files/26_1109.mp3 and /dev/null differ diff --git a/files/26_1109_example.mp3 b/files/26_1109_example.mp3 deleted file mode 100644 index 880483c07..000000000 Binary files a/files/26_1109_example.mp3 and /dev/null differ diff --git a/files/26_1109_meaning.mp3 b/files/26_1109_meaning.mp3 deleted file mode 100644 index 1b17dadd4..000000000 Binary files a/files/26_1109_meaning.mp3 and /dev/null differ diff --git a/files/26_1110.jpg b/files/26_1110.jpg deleted file mode 100644 index 457e6862d..000000000 Binary files a/files/26_1110.jpg and /dev/null differ diff --git a/files/26_1110.mp3 b/files/26_1110.mp3 deleted file mode 100644 index 9106afec3..000000000 Binary files a/files/26_1110.mp3 and /dev/null differ diff --git a/files/26_1110_example.mp3 b/files/26_1110_example.mp3 deleted file mode 100644 index a9df2a17c..000000000 Binary files a/files/26_1110_example.mp3 and /dev/null differ diff --git a/files/26_1110_meaning.mp3 b/files/26_1110_meaning.mp3 deleted file mode 100644 index 0b9167319..000000000 Binary files a/files/26_1110_meaning.mp3 and /dev/null differ diff --git a/files/26_1111.jpg b/files/26_1111.jpg deleted file mode 100644 index d3c0c8a26..000000000 Binary files a/files/26_1111.jpg and /dev/null differ diff --git a/files/26_1111.mp3 b/files/26_1111.mp3 deleted file mode 100644 index 7a6a6a8e5..000000000 Binary files a/files/26_1111.mp3 and /dev/null differ diff --git a/files/26_1111_example.mp3 b/files/26_1111_example.mp3 deleted file mode 100644 index dba71f5b9..000000000 Binary files a/files/26_1111_example.mp3 and /dev/null differ diff --git a/files/26_1111_meaning.mp3 b/files/26_1111_meaning.mp3 deleted file mode 100644 index efa06b736..000000000 Binary files a/files/26_1111_meaning.mp3 and /dev/null differ diff --git a/files/26_1112.jpg b/files/26_1112.jpg deleted file mode 100644 index c84e91137..000000000 Binary files a/files/26_1112.jpg and /dev/null differ diff --git a/files/26_1112.mp3 b/files/26_1112.mp3 deleted file mode 100644 index ddfc78852..000000000 Binary files a/files/26_1112.mp3 and /dev/null differ diff --git a/files/26_1112_example.mp3 b/files/26_1112_example.mp3 deleted file mode 100644 index 5dbac269d..000000000 Binary files a/files/26_1112_example.mp3 and /dev/null differ diff --git a/files/26_1112_meaning.mp3 b/files/26_1112_meaning.mp3 deleted file mode 100644 index 45e3de468..000000000 Binary files a/files/26_1112_meaning.mp3 and /dev/null differ diff --git a/files/26_1113.jpg b/files/26_1113.jpg deleted file mode 100644 index b3faa73d0..000000000 Binary files a/files/26_1113.jpg and /dev/null differ diff --git a/files/26_1113.mp3 b/files/26_1113.mp3 deleted file mode 100644 index 8e47cdc4d..000000000 Binary files a/files/26_1113.mp3 and /dev/null differ diff --git a/files/26_1113_example.mp3 b/files/26_1113_example.mp3 deleted file mode 100644 index b25eba152..000000000 Binary files a/files/26_1113_example.mp3 and /dev/null differ diff --git a/files/26_1113_meaning.mp3 b/files/26_1113_meaning.mp3 deleted file mode 100644 index 394274699..000000000 Binary files a/files/26_1113_meaning.mp3 and /dev/null differ diff --git a/files/26_1114.jpg b/files/26_1114.jpg deleted file mode 100644 index 872a79379..000000000 Binary files a/files/26_1114.jpg and /dev/null differ diff --git a/files/26_1114.mp3 b/files/26_1114.mp3 deleted file mode 100644 index 5e7da9ba4..000000000 Binary files a/files/26_1114.mp3 and /dev/null differ diff --git a/files/26_1114_example.mp3 b/files/26_1114_example.mp3 deleted file mode 100644 index d93583d24..000000000 Binary files a/files/26_1114_example.mp3 and /dev/null differ diff --git a/files/26_1114_meaning.mp3 b/files/26_1114_meaning.mp3 deleted file mode 100644 index fc3d22229..000000000 Binary files a/files/26_1114_meaning.mp3 and /dev/null differ diff --git a/files/26_1115.jpg b/files/26_1115.jpg deleted file mode 100644 index 71a0c0a45..000000000 Binary files a/files/26_1115.jpg and /dev/null differ diff --git a/files/26_1115.mp3 b/files/26_1115.mp3 deleted file mode 100644 index 621138dbe..000000000 Binary files a/files/26_1115.mp3 and /dev/null differ diff --git a/files/26_1115_example.mp3 b/files/26_1115_example.mp3 deleted file mode 100644 index fd71c8c28..000000000 Binary files a/files/26_1115_example.mp3 and /dev/null differ diff --git a/files/26_1115_meaning.mp3 b/files/26_1115_meaning.mp3 deleted file mode 100644 index 3607aae93..000000000 Binary files a/files/26_1115_meaning.mp3 and /dev/null differ diff --git a/files/26_1116.jpg b/files/26_1116.jpg deleted file mode 100644 index 6df28fd01..000000000 Binary files a/files/26_1116.jpg and /dev/null differ diff --git a/files/26_1116.mp3 b/files/26_1116.mp3 deleted file mode 100644 index df2be8f5e..000000000 Binary files a/files/26_1116.mp3 and /dev/null differ diff --git a/files/26_1116_example.mp3 b/files/26_1116_example.mp3 deleted file mode 100644 index 83294cfe9..000000000 Binary files a/files/26_1116_example.mp3 and /dev/null differ diff --git a/files/26_1116_meaning.mp3 b/files/26_1116_meaning.mp3 deleted file mode 100644 index 8cc301285..000000000 Binary files a/files/26_1116_meaning.mp3 and /dev/null differ diff --git a/files/26_1117.jpg b/files/26_1117.jpg deleted file mode 100644 index 1243e5751..000000000 Binary files a/files/26_1117.jpg and /dev/null differ diff --git a/files/26_1117.mp3 b/files/26_1117.mp3 deleted file mode 100644 index d17762212..000000000 Binary files a/files/26_1117.mp3 and /dev/null differ diff --git a/files/26_1117_example.mp3 b/files/26_1117_example.mp3 deleted file mode 100644 index ee4810434..000000000 Binary files a/files/26_1117_example.mp3 and /dev/null differ diff --git a/files/26_1117_meaning.mp3 b/files/26_1117_meaning.mp3 deleted file mode 100644 index 1c11b0e28..000000000 Binary files a/files/26_1117_meaning.mp3 and /dev/null differ diff --git a/files/26_1118.jpg b/files/26_1118.jpg deleted file mode 100644 index bd26a4312..000000000 Binary files a/files/26_1118.jpg and /dev/null differ diff --git a/files/26_1118.mp3 b/files/26_1118.mp3 deleted file mode 100644 index b7b70a07e..000000000 Binary files a/files/26_1118.mp3 and /dev/null differ diff --git a/files/26_1118_example.mp3 b/files/26_1118_example.mp3 deleted file mode 100644 index 04a452c9b..000000000 Binary files a/files/26_1118_example.mp3 and /dev/null differ diff --git a/files/26_1118_meaning.mp3 b/files/26_1118_meaning.mp3 deleted file mode 100644 index 954085a9f..000000000 Binary files a/files/26_1118_meaning.mp3 and /dev/null differ diff --git a/files/26_1119.jpg b/files/26_1119.jpg deleted file mode 100644 index c7cbc6fbf..000000000 Binary files a/files/26_1119.jpg and /dev/null differ diff --git a/files/26_1119.mp3 b/files/26_1119.mp3 deleted file mode 100644 index 233c4199b..000000000 Binary files a/files/26_1119.mp3 and /dev/null differ diff --git a/files/26_1119_example.mp3 b/files/26_1119_example.mp3 deleted file mode 100644 index b90ae0735..000000000 Binary files a/files/26_1119_example.mp3 and /dev/null differ diff --git a/files/26_1119_meaning.mp3 b/files/26_1119_meaning.mp3 deleted file mode 100644 index 40e3a825e..000000000 Binary files a/files/26_1119_meaning.mp3 and /dev/null differ diff --git a/files/26_1120.jpg b/files/26_1120.jpg deleted file mode 100644 index 604aba443..000000000 Binary files a/files/26_1120.jpg and /dev/null differ diff --git a/files/26_1120.mp3 b/files/26_1120.mp3 deleted file mode 100644 index a3199ef40..000000000 Binary files a/files/26_1120.mp3 and /dev/null differ diff --git a/files/26_1120_example.mp3 b/files/26_1120_example.mp3 deleted file mode 100644 index 4be01bd7d..000000000 Binary files a/files/26_1120_example.mp3 and /dev/null differ diff --git a/files/26_1120_meaning.mp3 b/files/26_1120_meaning.mp3 deleted file mode 100644 index 75106c1f1..000000000 Binary files a/files/26_1120_meaning.mp3 and /dev/null differ diff --git a/files/26_1701.jpg b/files/26_1701.jpg deleted file mode 100644 index fc7392e58..000000000 Binary files a/files/26_1701.jpg and /dev/null differ diff --git a/files/26_1701.mp3 b/files/26_1701.mp3 deleted file mode 100644 index 5e76d5590..000000000 Binary files a/files/26_1701.mp3 and /dev/null differ diff --git a/files/26_1701_example.mp3 b/files/26_1701_example.mp3 deleted file mode 100644 index b692bd123..000000000 Binary files a/files/26_1701_example.mp3 and /dev/null differ diff --git a/files/26_1701_meaning.mp3 b/files/26_1701_meaning.mp3 deleted file mode 100644 index 3fd05b8fe..000000000 Binary files a/files/26_1701_meaning.mp3 and /dev/null differ diff --git a/files/26_1702.jpg b/files/26_1702.jpg deleted file mode 100644 index 952e7f4d7..000000000 Binary files a/files/26_1702.jpg and /dev/null differ diff --git a/files/26_1702.mp3 b/files/26_1702.mp3 deleted file mode 100644 index c2c31ce2e..000000000 Binary files a/files/26_1702.mp3 and /dev/null differ diff --git a/files/26_1702_example.mp3 b/files/26_1702_example.mp3 deleted file mode 100644 index 8348a3d6c..000000000 Binary files a/files/26_1702_example.mp3 and /dev/null differ diff --git a/files/26_1702_meaning.mp3 b/files/26_1702_meaning.mp3 deleted file mode 100644 index 6e66e2892..000000000 Binary files a/files/26_1702_meaning.mp3 and /dev/null differ diff --git a/files/26_1703.jpg b/files/26_1703.jpg deleted file mode 100644 index 48f3d2bfe..000000000 Binary files a/files/26_1703.jpg and /dev/null differ diff --git a/files/26_1703.mp3 b/files/26_1703.mp3 deleted file mode 100644 index 8db53b5f4..000000000 Binary files a/files/26_1703.mp3 and /dev/null differ diff --git a/files/26_1703_example.mp3 b/files/26_1703_example.mp3 deleted file mode 100644 index 67aa4f21c..000000000 Binary files a/files/26_1703_example.mp3 and /dev/null differ diff --git a/files/26_1703_meaning.mp3 b/files/26_1703_meaning.mp3 deleted file mode 100644 index a0fee0ce5..000000000 Binary files a/files/26_1703_meaning.mp3 and /dev/null differ diff --git a/files/26_1704.jpg b/files/26_1704.jpg deleted file mode 100644 index 21a798384..000000000 Binary files a/files/26_1704.jpg and /dev/null differ diff --git a/files/26_1704.mp3 b/files/26_1704.mp3 deleted file mode 100644 index 73791d888..000000000 Binary files a/files/26_1704.mp3 and /dev/null differ diff --git a/files/26_1704_example.mp3 b/files/26_1704_example.mp3 deleted file mode 100644 index f4fa8f20e..000000000 Binary files a/files/26_1704_example.mp3 and /dev/null differ diff --git a/files/26_1704_meaning.mp3 b/files/26_1704_meaning.mp3 deleted file mode 100644 index 00d51abef..000000000 Binary files a/files/26_1704_meaning.mp3 and /dev/null differ diff --git a/files/26_1705.jpg b/files/26_1705.jpg deleted file mode 100644 index 6da4d287f..000000000 Binary files a/files/26_1705.jpg and /dev/null differ diff --git a/files/26_1705.mp3 b/files/26_1705.mp3 deleted file mode 100644 index e84692f14..000000000 Binary files a/files/26_1705.mp3 and /dev/null differ diff --git a/files/26_1705_example.mp3 b/files/26_1705_example.mp3 deleted file mode 100644 index 031931a6f..000000000 Binary files a/files/26_1705_example.mp3 and /dev/null differ diff --git a/files/26_1705_meaning.mp3 b/files/26_1705_meaning.mp3 deleted file mode 100644 index f1c7ac84f..000000000 Binary files a/files/26_1705_meaning.mp3 and /dev/null differ diff --git a/files/26_1706.jpg b/files/26_1706.jpg deleted file mode 100644 index 2432a4777..000000000 Binary files a/files/26_1706.jpg and /dev/null differ diff --git a/files/26_1706.mp3 b/files/26_1706.mp3 deleted file mode 100644 index 5ef75be7f..000000000 Binary files a/files/26_1706.mp3 and /dev/null differ diff --git a/files/26_1706_example.mp3 b/files/26_1706_example.mp3 deleted file mode 100644 index c52235d5d..000000000 Binary files a/files/26_1706_example.mp3 and /dev/null differ diff --git a/files/26_1706_meaning.mp3 b/files/26_1706_meaning.mp3 deleted file mode 100644 index 5d8ca8370..000000000 Binary files a/files/26_1706_meaning.mp3 and /dev/null differ diff --git a/files/26_1707.jpg b/files/26_1707.jpg deleted file mode 100644 index 836f55c5b..000000000 Binary files a/files/26_1707.jpg and /dev/null differ diff --git a/files/26_1707.mp3 b/files/26_1707.mp3 deleted file mode 100644 index eb8239f95..000000000 Binary files a/files/26_1707.mp3 and /dev/null differ diff --git a/files/26_1707_example.mp3 b/files/26_1707_example.mp3 deleted file mode 100644 index 32ee75f67..000000000 Binary files a/files/26_1707_example.mp3 and /dev/null differ diff --git a/files/26_1707_meaning.mp3 b/files/26_1707_meaning.mp3 deleted file mode 100644 index 76193d59e..000000000 Binary files a/files/26_1707_meaning.mp3 and /dev/null differ diff --git a/files/26_1708.jpg b/files/26_1708.jpg deleted file mode 100644 index 41214ba52..000000000 Binary files a/files/26_1708.jpg and /dev/null differ diff --git a/files/26_1708.mp3 b/files/26_1708.mp3 deleted file mode 100644 index c657895ff..000000000 Binary files a/files/26_1708.mp3 and /dev/null differ diff --git a/files/26_1708_example.mp3 b/files/26_1708_example.mp3 deleted file mode 100644 index 2895609d8..000000000 Binary files a/files/26_1708_example.mp3 and /dev/null differ diff --git a/files/26_1708_meaning.mp3 b/files/26_1708_meaning.mp3 deleted file mode 100644 index 96cf38382..000000000 Binary files a/files/26_1708_meaning.mp3 and /dev/null differ diff --git a/files/26_1709.jpg b/files/26_1709.jpg deleted file mode 100644 index eda8585e8..000000000 Binary files a/files/26_1709.jpg and /dev/null differ diff --git a/files/26_1709.mp3 b/files/26_1709.mp3 deleted file mode 100644 index a8d3897ea..000000000 Binary files a/files/26_1709.mp3 and /dev/null differ diff --git a/files/26_1709_example.mp3 b/files/26_1709_example.mp3 deleted file mode 100644 index 332cd9e3b..000000000 Binary files a/files/26_1709_example.mp3 and /dev/null differ diff --git a/files/26_1709_meaning.mp3 b/files/26_1709_meaning.mp3 deleted file mode 100644 index b6928ba06..000000000 Binary files a/files/26_1709_meaning.mp3 and /dev/null differ diff --git a/files/26_1710.jpg b/files/26_1710.jpg deleted file mode 100644 index f4cb42899..000000000 Binary files a/files/26_1710.jpg and /dev/null differ diff --git a/files/26_1710.mp3 b/files/26_1710.mp3 deleted file mode 100644 index b19d61c25..000000000 Binary files a/files/26_1710.mp3 and /dev/null differ diff --git a/files/26_1710_example.mp3 b/files/26_1710_example.mp3 deleted file mode 100644 index 9be9c2a28..000000000 Binary files a/files/26_1710_example.mp3 and /dev/null differ diff --git a/files/26_1710_meaning.mp3 b/files/26_1710_meaning.mp3 deleted file mode 100644 index 965d55c25..000000000 Binary files a/files/26_1710_meaning.mp3 and /dev/null differ diff --git a/files/26_1711.jpg b/files/26_1711.jpg deleted file mode 100644 index 5d328c9d0..000000000 Binary files a/files/26_1711.jpg and /dev/null differ diff --git a/files/26_1711.mp3 b/files/26_1711.mp3 deleted file mode 100644 index ea6482d9d..000000000 Binary files a/files/26_1711.mp3 and /dev/null differ diff --git a/files/26_1711_example.mp3 b/files/26_1711_example.mp3 deleted file mode 100644 index 0017e6ff6..000000000 Binary files a/files/26_1711_example.mp3 and /dev/null differ diff --git a/files/26_1711_meaning.mp3 b/files/26_1711_meaning.mp3 deleted file mode 100644 index b227b53bd..000000000 Binary files a/files/26_1711_meaning.mp3 and /dev/null differ diff --git a/files/26_1712.jpg b/files/26_1712.jpg deleted file mode 100644 index d1800a5e4..000000000 Binary files a/files/26_1712.jpg and /dev/null differ diff --git a/files/26_1712.mp3 b/files/26_1712.mp3 deleted file mode 100644 index b1a16fcbf..000000000 Binary files a/files/26_1712.mp3 and /dev/null differ diff --git a/files/26_1712_example.mp3 b/files/26_1712_example.mp3 deleted file mode 100644 index 2de9ce248..000000000 Binary files a/files/26_1712_example.mp3 and /dev/null differ diff --git a/files/26_1712_meaning.mp3 b/files/26_1712_meaning.mp3 deleted file mode 100644 index 9f83c638e..000000000 Binary files a/files/26_1712_meaning.mp3 and /dev/null differ diff --git a/files/26_1713.jpg b/files/26_1713.jpg deleted file mode 100644 index 61a69f616..000000000 Binary files a/files/26_1713.jpg and /dev/null differ diff --git a/files/26_1713.mp3 b/files/26_1713.mp3 deleted file mode 100644 index b6dc5fe7f..000000000 Binary files a/files/26_1713.mp3 and /dev/null differ diff --git a/files/26_1713_example.mp3 b/files/26_1713_example.mp3 deleted file mode 100644 index d8dd4cb0a..000000000 Binary files a/files/26_1713_example.mp3 and /dev/null differ diff --git a/files/26_1713_meaning.mp3 b/files/26_1713_meaning.mp3 deleted file mode 100644 index 8088a0e76..000000000 Binary files a/files/26_1713_meaning.mp3 and /dev/null differ diff --git a/files/26_1714.jpg b/files/26_1714.jpg deleted file mode 100644 index 7722471ba..000000000 Binary files a/files/26_1714.jpg and /dev/null differ diff --git a/files/26_1714.mp3 b/files/26_1714.mp3 deleted file mode 100644 index b11df8229..000000000 Binary files a/files/26_1714.mp3 and /dev/null differ diff --git a/files/26_1714_example.mp3 b/files/26_1714_example.mp3 deleted file mode 100644 index 9cf0438dd..000000000 Binary files a/files/26_1714_example.mp3 and /dev/null differ diff --git a/files/26_1714_meaning.mp3 b/files/26_1714_meaning.mp3 deleted file mode 100644 index bdc4fad14..000000000 Binary files a/files/26_1714_meaning.mp3 and /dev/null differ diff --git a/files/26_1715.jpg b/files/26_1715.jpg deleted file mode 100644 index 5ae505d79..000000000 Binary files a/files/26_1715.jpg and /dev/null differ diff --git a/files/26_1715.mp3 b/files/26_1715.mp3 deleted file mode 100644 index 344adf89b..000000000 Binary files a/files/26_1715.mp3 and /dev/null differ diff --git a/files/26_1715_example.mp3 b/files/26_1715_example.mp3 deleted file mode 100644 index 7e98715aa..000000000 Binary files a/files/26_1715_example.mp3 and /dev/null differ diff --git a/files/26_1715_meaning.mp3 b/files/26_1715_meaning.mp3 deleted file mode 100644 index 964c2b811..000000000 Binary files a/files/26_1715_meaning.mp3 and /dev/null differ diff --git a/files/26_1716.jpg b/files/26_1716.jpg deleted file mode 100644 index 994d2e211..000000000 Binary files a/files/26_1716.jpg and /dev/null differ diff --git a/files/26_1716.mp3 b/files/26_1716.mp3 deleted file mode 100644 index 70ed0a7fd..000000000 Binary files a/files/26_1716.mp3 and /dev/null differ diff --git a/files/26_1716_example.mp3 b/files/26_1716_example.mp3 deleted file mode 100644 index 1c350a836..000000000 Binary files a/files/26_1716_example.mp3 and /dev/null differ diff --git a/files/26_1716_meaning.mp3 b/files/26_1716_meaning.mp3 deleted file mode 100644 index b713f08d8..000000000 Binary files a/files/26_1716_meaning.mp3 and /dev/null differ diff --git a/files/26_1717.jpg b/files/26_1717.jpg deleted file mode 100644 index e69ab9f0a..000000000 Binary files a/files/26_1717.jpg and /dev/null differ diff --git a/files/26_1717.mp3 b/files/26_1717.mp3 deleted file mode 100644 index 13714519a..000000000 Binary files a/files/26_1717.mp3 and /dev/null differ diff --git a/files/26_1717_example.mp3 b/files/26_1717_example.mp3 deleted file mode 100644 index 6745be8c0..000000000 Binary files a/files/26_1717_example.mp3 and /dev/null differ diff --git a/files/26_1717_meaning.mp3 b/files/26_1717_meaning.mp3 deleted file mode 100644 index 8f243218b..000000000 Binary files a/files/26_1717_meaning.mp3 and /dev/null differ diff --git a/files/26_1718.jpg b/files/26_1718.jpg deleted file mode 100644 index 4aa1edc41..000000000 Binary files a/files/26_1718.jpg and /dev/null differ diff --git a/files/26_1718.mp3 b/files/26_1718.mp3 deleted file mode 100644 index 033457470..000000000 Binary files a/files/26_1718.mp3 and /dev/null differ diff --git a/files/26_1718_example.mp3 b/files/26_1718_example.mp3 deleted file mode 100644 index 6a4c7a665..000000000 Binary files a/files/26_1718_example.mp3 and /dev/null differ diff --git a/files/26_1718_meaning.mp3 b/files/26_1718_meaning.mp3 deleted file mode 100644 index f926cfb1b..000000000 Binary files a/files/26_1718_meaning.mp3 and /dev/null differ diff --git a/files/26_1719.jpg b/files/26_1719.jpg deleted file mode 100644 index 78c9aad7c..000000000 Binary files a/files/26_1719.jpg and /dev/null differ diff --git a/files/26_1719.mp3 b/files/26_1719.mp3 deleted file mode 100644 index 5afda5d5d..000000000 Binary files a/files/26_1719.mp3 and /dev/null differ diff --git a/files/26_1719_example.mp3 b/files/26_1719_example.mp3 deleted file mode 100644 index aa2fe48a8..000000000 Binary files a/files/26_1719_example.mp3 and /dev/null differ diff --git a/files/26_1719_meaning.mp3 b/files/26_1719_meaning.mp3 deleted file mode 100644 index b2497edbe..000000000 Binary files a/files/26_1719_meaning.mp3 and /dev/null differ diff --git a/files/26_1720.jpg b/files/26_1720.jpg deleted file mode 100644 index 02afba04a..000000000 Binary files a/files/26_1720.jpg and /dev/null differ diff --git a/files/26_1720.mp3 b/files/26_1720.mp3 deleted file mode 100644 index 97dfd6853..000000000 Binary files a/files/26_1720.mp3 and /dev/null differ diff --git a/files/26_1720_example.mp3 b/files/26_1720_example.mp3 deleted file mode 100644 index d2d4ae027..000000000 Binary files a/files/26_1720_example.mp3 and /dev/null differ diff --git a/files/26_1720_meaning.mp3 b/files/26_1720_meaning.mp3 deleted file mode 100644 index 34bd6c79e..000000000 Binary files a/files/26_1720_meaning.mp3 and /dev/null differ diff --git a/files/26_2301.jpg b/files/26_2301.jpg deleted file mode 100644 index 61ff868e7..000000000 Binary files a/files/26_2301.jpg and /dev/null differ diff --git a/files/26_2301.mp3 b/files/26_2301.mp3 deleted file mode 100644 index 241c679f4..000000000 Binary files a/files/26_2301.mp3 and /dev/null differ diff --git a/files/26_2301_example.mp3 b/files/26_2301_example.mp3 deleted file mode 100644 index dd0231106..000000000 Binary files a/files/26_2301_example.mp3 and /dev/null differ diff --git a/files/26_2301_meaning.mp3 b/files/26_2301_meaning.mp3 deleted file mode 100644 index e2746440e..000000000 Binary files a/files/26_2301_meaning.mp3 and /dev/null differ diff --git a/files/26_2302.jpg b/files/26_2302.jpg deleted file mode 100644 index d3547eac3..000000000 Binary files a/files/26_2302.jpg and /dev/null differ diff --git a/files/26_2302.mp3 b/files/26_2302.mp3 deleted file mode 100644 index 836a2d0f2..000000000 Binary files a/files/26_2302.mp3 and /dev/null differ diff --git a/files/26_2302_example.mp3 b/files/26_2302_example.mp3 deleted file mode 100644 index a57f2fd0b..000000000 Binary files a/files/26_2302_example.mp3 and /dev/null differ diff --git a/files/26_2302_meaning.mp3 b/files/26_2302_meaning.mp3 deleted file mode 100644 index cb6ede1a4..000000000 Binary files a/files/26_2302_meaning.mp3 and /dev/null differ diff --git a/files/26_2303.jpg b/files/26_2303.jpg deleted file mode 100644 index 091bae5a7..000000000 Binary files a/files/26_2303.jpg and /dev/null differ diff --git a/files/26_2303.mp3 b/files/26_2303.mp3 deleted file mode 100644 index 356b0ae25..000000000 Binary files a/files/26_2303.mp3 and /dev/null differ diff --git a/files/26_2303_example.mp3 b/files/26_2303_example.mp3 deleted file mode 100644 index 965ced59f..000000000 Binary files a/files/26_2303_example.mp3 and /dev/null differ diff --git a/files/26_2303_meaning.mp3 b/files/26_2303_meaning.mp3 deleted file mode 100644 index 0dfac5cfd..000000000 Binary files a/files/26_2303_meaning.mp3 and /dev/null differ diff --git a/files/26_2304.jpg b/files/26_2304.jpg deleted file mode 100644 index feb9078c1..000000000 Binary files a/files/26_2304.jpg and /dev/null differ diff --git a/files/26_2304.mp3 b/files/26_2304.mp3 deleted file mode 100644 index 01935fb0b..000000000 Binary files a/files/26_2304.mp3 and /dev/null differ diff --git a/files/26_2304_example.mp3 b/files/26_2304_example.mp3 deleted file mode 100644 index 6d7da7347..000000000 Binary files a/files/26_2304_example.mp3 and /dev/null differ diff --git a/files/26_2304_meaning.mp3 b/files/26_2304_meaning.mp3 deleted file mode 100644 index 6d868423f..000000000 Binary files a/files/26_2304_meaning.mp3 and /dev/null differ diff --git a/files/26_2305.jpg b/files/26_2305.jpg deleted file mode 100644 index c59820aeb..000000000 Binary files a/files/26_2305.jpg and /dev/null differ diff --git a/files/26_2305.mp3 b/files/26_2305.mp3 deleted file mode 100644 index 2143c5ab9..000000000 Binary files a/files/26_2305.mp3 and /dev/null differ diff --git a/files/26_2305_example.mp3 b/files/26_2305_example.mp3 deleted file mode 100644 index 6130fe9c5..000000000 Binary files a/files/26_2305_example.mp3 and /dev/null differ diff --git a/files/26_2305_meaning.mp3 b/files/26_2305_meaning.mp3 deleted file mode 100644 index d4f8c5723..000000000 Binary files a/files/26_2305_meaning.mp3 and /dev/null differ diff --git a/files/26_2306.jpg b/files/26_2306.jpg deleted file mode 100644 index 6f27adc9e..000000000 Binary files a/files/26_2306.jpg and /dev/null differ diff --git a/files/26_2306.mp3 b/files/26_2306.mp3 deleted file mode 100644 index 578dcd920..000000000 Binary files a/files/26_2306.mp3 and /dev/null differ diff --git a/files/26_2306_example.mp3 b/files/26_2306_example.mp3 deleted file mode 100644 index ebdff87b1..000000000 Binary files a/files/26_2306_example.mp3 and /dev/null differ diff --git a/files/26_2306_meaning.mp3 b/files/26_2306_meaning.mp3 deleted file mode 100644 index 6e733dc5f..000000000 Binary files a/files/26_2306_meaning.mp3 and /dev/null differ diff --git a/files/26_2307.jpg b/files/26_2307.jpg deleted file mode 100644 index 39731ae20..000000000 Binary files a/files/26_2307.jpg and /dev/null differ diff --git a/files/26_2307.mp3 b/files/26_2307.mp3 deleted file mode 100644 index 72048a929..000000000 Binary files a/files/26_2307.mp3 and /dev/null differ diff --git a/files/26_2307_example.mp3 b/files/26_2307_example.mp3 deleted file mode 100644 index a1085386e..000000000 Binary files a/files/26_2307_example.mp3 and /dev/null differ diff --git a/files/26_2307_meaning.mp3 b/files/26_2307_meaning.mp3 deleted file mode 100644 index c2a044eb1..000000000 Binary files a/files/26_2307_meaning.mp3 and /dev/null differ diff --git a/files/26_2308.jpg b/files/26_2308.jpg deleted file mode 100644 index 16752b1bf..000000000 Binary files a/files/26_2308.jpg and /dev/null differ diff --git a/files/26_2308.mp3 b/files/26_2308.mp3 deleted file mode 100644 index 30acf30b4..000000000 Binary files a/files/26_2308.mp3 and /dev/null differ diff --git a/files/26_2308_example.mp3 b/files/26_2308_example.mp3 deleted file mode 100644 index d28a671a5..000000000 Binary files a/files/26_2308_example.mp3 and /dev/null differ diff --git a/files/26_2308_meaning.mp3 b/files/26_2308_meaning.mp3 deleted file mode 100644 index 5a216bfce..000000000 Binary files a/files/26_2308_meaning.mp3 and /dev/null differ diff --git a/files/26_2309.jpg b/files/26_2309.jpg deleted file mode 100644 index e315778db..000000000 Binary files a/files/26_2309.jpg and /dev/null differ diff --git a/files/26_2309.mp3 b/files/26_2309.mp3 deleted file mode 100644 index c40f02e78..000000000 Binary files a/files/26_2309.mp3 and /dev/null differ diff --git a/files/26_2309_example.mp3 b/files/26_2309_example.mp3 deleted file mode 100644 index 4f12398c5..000000000 Binary files a/files/26_2309_example.mp3 and /dev/null differ diff --git a/files/26_2309_meaning.mp3 b/files/26_2309_meaning.mp3 deleted file mode 100644 index fae82dfe1..000000000 Binary files a/files/26_2309_meaning.mp3 and /dev/null differ diff --git a/files/26_2310.jpg b/files/26_2310.jpg deleted file mode 100644 index c90c22cea..000000000 Binary files a/files/26_2310.jpg and /dev/null differ diff --git a/files/26_2310.mp3 b/files/26_2310.mp3 deleted file mode 100644 index 8fd6a2a1e..000000000 Binary files a/files/26_2310.mp3 and /dev/null differ diff --git a/files/26_2310_example.mp3 b/files/26_2310_example.mp3 deleted file mode 100644 index d773dcff6..000000000 Binary files a/files/26_2310_example.mp3 and /dev/null differ diff --git a/files/26_2310_meaning.mp3 b/files/26_2310_meaning.mp3 deleted file mode 100644 index 1d0d2f37d..000000000 Binary files a/files/26_2310_meaning.mp3 and /dev/null differ diff --git a/files/26_2311.jpg b/files/26_2311.jpg deleted file mode 100644 index 9a5af3973..000000000 Binary files a/files/26_2311.jpg and /dev/null differ diff --git a/files/26_2311.mp3 b/files/26_2311.mp3 deleted file mode 100644 index 1a8151748..000000000 Binary files a/files/26_2311.mp3 and /dev/null differ diff --git a/files/26_2311_example.mp3 b/files/26_2311_example.mp3 deleted file mode 100644 index d5d34af19..000000000 Binary files a/files/26_2311_example.mp3 and /dev/null differ diff --git a/files/26_2311_meaning.mp3 b/files/26_2311_meaning.mp3 deleted file mode 100644 index 9ba459562..000000000 Binary files a/files/26_2311_meaning.mp3 and /dev/null differ diff --git a/files/26_2312.jpg b/files/26_2312.jpg deleted file mode 100644 index 772a8e439..000000000 Binary files a/files/26_2312.jpg and /dev/null differ diff --git a/files/26_2312.mp3 b/files/26_2312.mp3 deleted file mode 100644 index ce890928a..000000000 Binary files a/files/26_2312.mp3 and /dev/null differ diff --git a/files/26_2312_example.mp3 b/files/26_2312_example.mp3 deleted file mode 100644 index a496c0098..000000000 Binary files a/files/26_2312_example.mp3 and /dev/null differ diff --git a/files/26_2312_meaning.mp3 b/files/26_2312_meaning.mp3 deleted file mode 100644 index c8c850f9c..000000000 Binary files a/files/26_2312_meaning.mp3 and /dev/null differ diff --git a/files/26_2313.jpg b/files/26_2313.jpg deleted file mode 100644 index e93d81716..000000000 Binary files a/files/26_2313.jpg and /dev/null differ diff --git a/files/26_2313.mp3 b/files/26_2313.mp3 deleted file mode 100644 index 4a622c2d3..000000000 Binary files a/files/26_2313.mp3 and /dev/null differ diff --git a/files/26_2313_example.mp3 b/files/26_2313_example.mp3 deleted file mode 100644 index 47803894d..000000000 Binary files a/files/26_2313_example.mp3 and /dev/null differ diff --git a/files/26_2313_meaning.mp3 b/files/26_2313_meaning.mp3 deleted file mode 100644 index e9beadbca..000000000 Binary files a/files/26_2313_meaning.mp3 and /dev/null differ diff --git a/files/26_2314.jpg b/files/26_2314.jpg deleted file mode 100644 index 54cf1149b..000000000 Binary files a/files/26_2314.jpg and /dev/null differ diff --git a/files/26_2314.mp3 b/files/26_2314.mp3 deleted file mode 100644 index f8e85ee95..000000000 Binary files a/files/26_2314.mp3 and /dev/null differ diff --git a/files/26_2314_example.mp3 b/files/26_2314_example.mp3 deleted file mode 100644 index 3ef546588..000000000 Binary files a/files/26_2314_example.mp3 and /dev/null differ diff --git a/files/26_2314_meaning.mp3 b/files/26_2314_meaning.mp3 deleted file mode 100644 index 886f08c59..000000000 Binary files a/files/26_2314_meaning.mp3 and /dev/null differ diff --git a/files/26_2315.jpg b/files/26_2315.jpg deleted file mode 100644 index b372629a6..000000000 Binary files a/files/26_2315.jpg and /dev/null differ diff --git a/files/26_2315.mp3 b/files/26_2315.mp3 deleted file mode 100644 index 3995ee57c..000000000 Binary files a/files/26_2315.mp3 and /dev/null differ diff --git a/files/26_2315_example.mp3 b/files/26_2315_example.mp3 deleted file mode 100644 index eaeec3622..000000000 Binary files a/files/26_2315_example.mp3 and /dev/null differ diff --git a/files/26_2315_meaning.mp3 b/files/26_2315_meaning.mp3 deleted file mode 100644 index 966b00ddb..000000000 Binary files a/files/26_2315_meaning.mp3 and /dev/null differ diff --git a/files/26_2316.jpg b/files/26_2316.jpg deleted file mode 100644 index 30c2f10ca..000000000 Binary files a/files/26_2316.jpg and /dev/null differ diff --git a/files/26_2316.mp3 b/files/26_2316.mp3 deleted file mode 100644 index 7955f43ef..000000000 Binary files a/files/26_2316.mp3 and /dev/null differ diff --git a/files/26_2316_example.mp3 b/files/26_2316_example.mp3 deleted file mode 100644 index fc6c5ab9b..000000000 Binary files a/files/26_2316_example.mp3 and /dev/null differ diff --git a/files/26_2316_meaning.mp3 b/files/26_2316_meaning.mp3 deleted file mode 100644 index c3c4fba98..000000000 Binary files a/files/26_2316_meaning.mp3 and /dev/null differ diff --git a/files/26_2317.jpg b/files/26_2317.jpg deleted file mode 100644 index ade35ba55..000000000 Binary files a/files/26_2317.jpg and /dev/null differ diff --git a/files/26_2317.mp3 b/files/26_2317.mp3 deleted file mode 100644 index 610225f92..000000000 Binary files a/files/26_2317.mp3 and /dev/null differ diff --git a/files/26_2317_example.mp3 b/files/26_2317_example.mp3 deleted file mode 100644 index 0e91b384d..000000000 Binary files a/files/26_2317_example.mp3 and /dev/null differ diff --git a/files/26_2317_meaning.mp3 b/files/26_2317_meaning.mp3 deleted file mode 100644 index 6a0f17a55..000000000 Binary files a/files/26_2317_meaning.mp3 and /dev/null differ diff --git a/files/26_2318.jpg b/files/26_2318.jpg deleted file mode 100644 index 6eb3cb8bd..000000000 Binary files a/files/26_2318.jpg and /dev/null differ diff --git a/files/26_2318.mp3 b/files/26_2318.mp3 deleted file mode 100644 index 70b0ee076..000000000 Binary files a/files/26_2318.mp3 and /dev/null differ diff --git a/files/26_2318_example.mp3 b/files/26_2318_example.mp3 deleted file mode 100644 index 9b597a28c..000000000 Binary files a/files/26_2318_example.mp3 and /dev/null differ diff --git a/files/26_2318_meaning.mp3 b/files/26_2318_meaning.mp3 deleted file mode 100644 index 6e696b109..000000000 Binary files a/files/26_2318_meaning.mp3 and /dev/null differ diff --git a/files/26_2319.jpg b/files/26_2319.jpg deleted file mode 100644 index 9914ca0e0..000000000 Binary files a/files/26_2319.jpg and /dev/null differ diff --git a/files/26_2319.mp3 b/files/26_2319.mp3 deleted file mode 100644 index b8b166c12..000000000 Binary files a/files/26_2319.mp3 and /dev/null differ diff --git a/files/26_2319_example.mp3 b/files/26_2319_example.mp3 deleted file mode 100644 index b3c2cfe2f..000000000 Binary files a/files/26_2319_example.mp3 and /dev/null differ diff --git a/files/26_2319_meaning.mp3 b/files/26_2319_meaning.mp3 deleted file mode 100644 index 65fba695a..000000000 Binary files a/files/26_2319_meaning.mp3 and /dev/null differ diff --git a/files/26_2320.jpg b/files/26_2320.jpg deleted file mode 100644 index 57bb548a7..000000000 Binary files a/files/26_2320.jpg and /dev/null differ diff --git a/files/26_2320.mp3 b/files/26_2320.mp3 deleted file mode 100644 index 67c3d45cc..000000000 Binary files a/files/26_2320.mp3 and /dev/null differ diff --git a/files/26_2320_example.mp3 b/files/26_2320_example.mp3 deleted file mode 100644 index 4f3377a8b..000000000 Binary files a/files/26_2320_example.mp3 and /dev/null differ diff --git a/files/26_2320_meaning.mp3 b/files/26_2320_meaning.mp3 deleted file mode 100644 index bdfd636fe..000000000 Binary files a/files/26_2320_meaning.mp3 and /dev/null differ diff --git a/files/26_2901.jpg b/files/26_2901.jpg deleted file mode 100644 index 2e17c08d9..000000000 Binary files a/files/26_2901.jpg and /dev/null differ diff --git a/files/26_2901.mp3 b/files/26_2901.mp3 deleted file mode 100644 index b137f3ff7..000000000 Binary files a/files/26_2901.mp3 and /dev/null differ diff --git a/files/26_2901_example.mp3 b/files/26_2901_example.mp3 deleted file mode 100644 index ad4cbd29e..000000000 Binary files a/files/26_2901_example.mp3 and /dev/null differ diff --git a/files/26_2901_meaning.mp3 b/files/26_2901_meaning.mp3 deleted file mode 100644 index b95e7d054..000000000 Binary files a/files/26_2901_meaning.mp3 and /dev/null differ diff --git a/files/26_2902.jpg b/files/26_2902.jpg deleted file mode 100644 index a1670fb6b..000000000 Binary files a/files/26_2902.jpg and /dev/null differ diff --git a/files/26_2902.mp3 b/files/26_2902.mp3 deleted file mode 100644 index db17ccc79..000000000 Binary files a/files/26_2902.mp3 and /dev/null differ diff --git a/files/26_2902_example.mp3 b/files/26_2902_example.mp3 deleted file mode 100644 index 8d2292829..000000000 Binary files a/files/26_2902_example.mp3 and /dev/null differ diff --git a/files/26_2902_meaning.mp3 b/files/26_2902_meaning.mp3 deleted file mode 100644 index 6a9c685ea..000000000 Binary files a/files/26_2902_meaning.mp3 and /dev/null differ diff --git a/files/26_2903.jpg b/files/26_2903.jpg deleted file mode 100644 index 4fa442be7..000000000 Binary files a/files/26_2903.jpg and /dev/null differ diff --git a/files/26_2903.mp3 b/files/26_2903.mp3 deleted file mode 100644 index 4c827f4f7..000000000 Binary files a/files/26_2903.mp3 and /dev/null differ diff --git a/files/26_2903_example.mp3 b/files/26_2903_example.mp3 deleted file mode 100644 index 34ad781a8..000000000 Binary files a/files/26_2903_example.mp3 and /dev/null differ diff --git a/files/26_2903_meaning.mp3 b/files/26_2903_meaning.mp3 deleted file mode 100644 index 302b84195..000000000 Binary files a/files/26_2903_meaning.mp3 and /dev/null differ diff --git a/files/26_2904.jpg b/files/26_2904.jpg deleted file mode 100644 index 6922e08c6..000000000 Binary files a/files/26_2904.jpg and /dev/null differ diff --git a/files/26_2904.mp3 b/files/26_2904.mp3 deleted file mode 100644 index 81ea6bbf0..000000000 Binary files a/files/26_2904.mp3 and /dev/null differ diff --git a/files/26_2904_example.mp3 b/files/26_2904_example.mp3 deleted file mode 100644 index 4013d5876..000000000 Binary files a/files/26_2904_example.mp3 and /dev/null differ diff --git a/files/26_2904_meaning.mp3 b/files/26_2904_meaning.mp3 deleted file mode 100644 index 26f922711..000000000 Binary files a/files/26_2904_meaning.mp3 and /dev/null differ diff --git a/files/26_2905.jpg b/files/26_2905.jpg deleted file mode 100644 index 5ef90bd0d..000000000 Binary files a/files/26_2905.jpg and /dev/null differ diff --git a/files/26_2905.mp3 b/files/26_2905.mp3 deleted file mode 100644 index c6a84c008..000000000 Binary files a/files/26_2905.mp3 and /dev/null differ diff --git a/files/26_2905_example.mp3 b/files/26_2905_example.mp3 deleted file mode 100644 index 446b08f32..000000000 Binary files a/files/26_2905_example.mp3 and /dev/null differ diff --git a/files/26_2905_meaning.mp3 b/files/26_2905_meaning.mp3 deleted file mode 100644 index 829b83087..000000000 Binary files a/files/26_2905_meaning.mp3 and /dev/null differ diff --git a/files/26_2906.jpg b/files/26_2906.jpg deleted file mode 100644 index c1e380a1b..000000000 Binary files a/files/26_2906.jpg and /dev/null differ diff --git a/files/26_2906.mp3 b/files/26_2906.mp3 deleted file mode 100644 index 2a02597a4..000000000 Binary files a/files/26_2906.mp3 and /dev/null differ diff --git a/files/26_2906_example.mp3 b/files/26_2906_example.mp3 deleted file mode 100644 index 0eae0e674..000000000 Binary files a/files/26_2906_example.mp3 and /dev/null differ diff --git a/files/26_2906_meaning.mp3 b/files/26_2906_meaning.mp3 deleted file mode 100644 index 3b121621c..000000000 Binary files a/files/26_2906_meaning.mp3 and /dev/null differ diff --git a/files/26_2907.jpg b/files/26_2907.jpg deleted file mode 100644 index fb6f3e43c..000000000 Binary files a/files/26_2907.jpg and /dev/null differ diff --git a/files/26_2907.mp3 b/files/26_2907.mp3 deleted file mode 100644 index a45d94170..000000000 Binary files a/files/26_2907.mp3 and /dev/null differ diff --git a/files/26_2907_example.mp3 b/files/26_2907_example.mp3 deleted file mode 100644 index 7534c29dc..000000000 Binary files a/files/26_2907_example.mp3 and /dev/null differ diff --git a/files/26_2907_meaning.mp3 b/files/26_2907_meaning.mp3 deleted file mode 100644 index 476c3b971..000000000 Binary files a/files/26_2907_meaning.mp3 and /dev/null differ diff --git a/files/26_2908.jpg b/files/26_2908.jpg deleted file mode 100644 index 4815b848c..000000000 Binary files a/files/26_2908.jpg and /dev/null differ diff --git a/files/26_2908.mp3 b/files/26_2908.mp3 deleted file mode 100644 index bc049a9d8..000000000 Binary files a/files/26_2908.mp3 and /dev/null differ diff --git a/files/26_2908_example.mp3 b/files/26_2908_example.mp3 deleted file mode 100644 index 63d3226fa..000000000 Binary files a/files/26_2908_example.mp3 and /dev/null differ diff --git a/files/26_2908_meaning.mp3 b/files/26_2908_meaning.mp3 deleted file mode 100644 index 042bb5ebe..000000000 Binary files a/files/26_2908_meaning.mp3 and /dev/null differ diff --git a/files/26_2909.jpg b/files/26_2909.jpg deleted file mode 100644 index 6ea37d3de..000000000 Binary files a/files/26_2909.jpg and /dev/null differ diff --git a/files/26_2909.mp3 b/files/26_2909.mp3 deleted file mode 100644 index 47fdb401a..000000000 Binary files a/files/26_2909.mp3 and /dev/null differ diff --git a/files/26_2909_example.mp3 b/files/26_2909_example.mp3 deleted file mode 100644 index 8cc524926..000000000 Binary files a/files/26_2909_example.mp3 and /dev/null differ diff --git a/files/26_2909_meaning.mp3 b/files/26_2909_meaning.mp3 deleted file mode 100644 index 4e45e2f6b..000000000 Binary files a/files/26_2909_meaning.mp3 and /dev/null differ diff --git a/files/26_2910.jpg b/files/26_2910.jpg deleted file mode 100644 index f22bdc126..000000000 Binary files a/files/26_2910.jpg and /dev/null differ diff --git a/files/26_2910.mp3 b/files/26_2910.mp3 deleted file mode 100644 index c619070cb..000000000 Binary files a/files/26_2910.mp3 and /dev/null differ diff --git a/files/26_2910_example.mp3 b/files/26_2910_example.mp3 deleted file mode 100644 index a57d0422e..000000000 Binary files a/files/26_2910_example.mp3 and /dev/null differ diff --git a/files/26_2910_meaning.mp3 b/files/26_2910_meaning.mp3 deleted file mode 100644 index 90c546931..000000000 Binary files a/files/26_2910_meaning.mp3 and /dev/null differ diff --git a/files/26_2911.jpg b/files/26_2911.jpg deleted file mode 100644 index 6620590dd..000000000 Binary files a/files/26_2911.jpg and /dev/null differ diff --git a/files/26_2911.mp3 b/files/26_2911.mp3 deleted file mode 100644 index 577333f19..000000000 Binary files a/files/26_2911.mp3 and /dev/null differ diff --git a/files/26_2911_example.mp3 b/files/26_2911_example.mp3 deleted file mode 100644 index 66e992c73..000000000 Binary files a/files/26_2911_example.mp3 and /dev/null differ diff --git a/files/26_2911_meaning.mp3 b/files/26_2911_meaning.mp3 deleted file mode 100644 index f8bc0f7cf..000000000 Binary files a/files/26_2911_meaning.mp3 and /dev/null differ diff --git a/files/26_2912.jpg b/files/26_2912.jpg deleted file mode 100644 index c8f190954..000000000 Binary files a/files/26_2912.jpg and /dev/null differ diff --git a/files/26_2912.mp3 b/files/26_2912.mp3 deleted file mode 100644 index 4ef0a462e..000000000 Binary files a/files/26_2912.mp3 and /dev/null differ diff --git a/files/26_2912_example.mp3 b/files/26_2912_example.mp3 deleted file mode 100644 index eefa23b52..000000000 Binary files a/files/26_2912_example.mp3 and /dev/null differ diff --git a/files/26_2912_meaning.mp3 b/files/26_2912_meaning.mp3 deleted file mode 100644 index 3d6214a66..000000000 Binary files a/files/26_2912_meaning.mp3 and /dev/null differ diff --git a/files/26_2913.jpg b/files/26_2913.jpg deleted file mode 100644 index ebc837e78..000000000 Binary files a/files/26_2913.jpg and /dev/null differ diff --git a/files/26_2913.mp3 b/files/26_2913.mp3 deleted file mode 100644 index 221bc3ebe..000000000 Binary files a/files/26_2913.mp3 and /dev/null differ diff --git a/files/26_2913_example.mp3 b/files/26_2913_example.mp3 deleted file mode 100644 index dc2c1472f..000000000 Binary files a/files/26_2913_example.mp3 and /dev/null differ diff --git a/files/26_2913_meaning.mp3 b/files/26_2913_meaning.mp3 deleted file mode 100644 index df811f013..000000000 Binary files a/files/26_2913_meaning.mp3 and /dev/null differ diff --git a/files/26_2914.jpg b/files/26_2914.jpg deleted file mode 100644 index 829e911f5..000000000 Binary files a/files/26_2914.jpg and /dev/null differ diff --git a/files/26_2914.mp3 b/files/26_2914.mp3 deleted file mode 100644 index 76694c075..000000000 Binary files a/files/26_2914.mp3 and /dev/null differ diff --git a/files/26_2914_example.mp3 b/files/26_2914_example.mp3 deleted file mode 100644 index fd4435eb0..000000000 Binary files a/files/26_2914_example.mp3 and /dev/null differ diff --git a/files/26_2914_meaning.mp3 b/files/26_2914_meaning.mp3 deleted file mode 100644 index 1a516f437..000000000 Binary files a/files/26_2914_meaning.mp3 and /dev/null differ diff --git a/files/26_2915.jpg b/files/26_2915.jpg deleted file mode 100644 index 664ac5804..000000000 Binary files a/files/26_2915.jpg and /dev/null differ diff --git a/files/26_2915.mp3 b/files/26_2915.mp3 deleted file mode 100644 index 2e6d2d42e..000000000 Binary files a/files/26_2915.mp3 and /dev/null differ diff --git a/files/26_2915_example.mp3 b/files/26_2915_example.mp3 deleted file mode 100644 index a748411d9..000000000 Binary files a/files/26_2915_example.mp3 and /dev/null differ diff --git a/files/26_2915_meaning.mp3 b/files/26_2915_meaning.mp3 deleted file mode 100644 index 3158d76cd..000000000 Binary files a/files/26_2915_meaning.mp3 and /dev/null differ diff --git a/files/26_2916.jpg b/files/26_2916.jpg deleted file mode 100644 index 8081a371c..000000000 Binary files a/files/26_2916.jpg and /dev/null differ diff --git a/files/26_2916.mp3 b/files/26_2916.mp3 deleted file mode 100644 index 9f8cff893..000000000 Binary files a/files/26_2916.mp3 and /dev/null differ diff --git a/files/26_2916_example.mp3 b/files/26_2916_example.mp3 deleted file mode 100644 index c1ef3c2ab..000000000 Binary files a/files/26_2916_example.mp3 and /dev/null differ diff --git a/files/26_2916_meaning.mp3 b/files/26_2916_meaning.mp3 deleted file mode 100644 index 058d29e54..000000000 Binary files a/files/26_2916_meaning.mp3 and /dev/null differ diff --git a/files/26_2917.jpg b/files/26_2917.jpg deleted file mode 100644 index 48beb3f60..000000000 Binary files a/files/26_2917.jpg and /dev/null differ diff --git a/files/26_2917.mp3 b/files/26_2917.mp3 deleted file mode 100644 index 4ac51eca4..000000000 Binary files a/files/26_2917.mp3 and /dev/null differ diff --git a/files/26_2917_example.mp3 b/files/26_2917_example.mp3 deleted file mode 100644 index 9d977a495..000000000 Binary files a/files/26_2917_example.mp3 and /dev/null differ diff --git a/files/26_2917_meaning.mp3 b/files/26_2917_meaning.mp3 deleted file mode 100644 index a6f86483c..000000000 Binary files a/files/26_2917_meaning.mp3 and /dev/null differ diff --git a/files/26_2918.jpg b/files/26_2918.jpg deleted file mode 100644 index 1cd7678b3..000000000 Binary files a/files/26_2918.jpg and /dev/null differ diff --git a/files/26_2918.mp3 b/files/26_2918.mp3 deleted file mode 100644 index 27418598d..000000000 Binary files a/files/26_2918.mp3 and /dev/null differ diff --git a/files/26_2918_example.mp3 b/files/26_2918_example.mp3 deleted file mode 100644 index 007426548..000000000 Binary files a/files/26_2918_example.mp3 and /dev/null differ diff --git a/files/26_2918_meaning.mp3 b/files/26_2918_meaning.mp3 deleted file mode 100644 index 283f3f3cb..000000000 Binary files a/files/26_2918_meaning.mp3 and /dev/null differ diff --git a/files/26_2919.jpg b/files/26_2919.jpg deleted file mode 100644 index 9ca911259..000000000 Binary files a/files/26_2919.jpg and /dev/null differ diff --git a/files/26_2919.mp3 b/files/26_2919.mp3 deleted file mode 100644 index 8500cb773..000000000 Binary files a/files/26_2919.mp3 and /dev/null differ diff --git a/files/26_2919_example.mp3 b/files/26_2919_example.mp3 deleted file mode 100644 index f1351a6a1..000000000 Binary files a/files/26_2919_example.mp3 and /dev/null differ diff --git a/files/26_2919_meaning.mp3 b/files/26_2919_meaning.mp3 deleted file mode 100644 index dda0474d9..000000000 Binary files a/files/26_2919_meaning.mp3 and /dev/null differ diff --git a/files/26_2920.jpg b/files/26_2920.jpg deleted file mode 100644 index 1abceb7ab..000000000 Binary files a/files/26_2920.jpg and /dev/null differ diff --git a/files/26_2920.mp3 b/files/26_2920.mp3 deleted file mode 100644 index f12b2457c..000000000 Binary files a/files/26_2920.mp3 and /dev/null differ diff --git a/files/26_2920_example.mp3 b/files/26_2920_example.mp3 deleted file mode 100644 index 102370e51..000000000 Binary files a/files/26_2920_example.mp3 and /dev/null differ diff --git a/files/26_2920_meaning.mp3 b/files/26_2920_meaning.mp3 deleted file mode 100644 index c0115bbea..000000000 Binary files a/files/26_2920_meaning.mp3 and /dev/null differ diff --git a/files/26_3501.jpg b/files/26_3501.jpg deleted file mode 100644 index 9fe514ce9..000000000 Binary files a/files/26_3501.jpg and /dev/null differ diff --git a/files/26_3501.mp3 b/files/26_3501.mp3 deleted file mode 100644 index ec2f24bcc..000000000 Binary files a/files/26_3501.mp3 and /dev/null differ diff --git a/files/26_3501_example.mp3 b/files/26_3501_example.mp3 deleted file mode 100644 index 69e67bf83..000000000 Binary files a/files/26_3501_example.mp3 and /dev/null differ diff --git a/files/26_3501_meaning.mp3 b/files/26_3501_meaning.mp3 deleted file mode 100644 index b018770e8..000000000 Binary files a/files/26_3501_meaning.mp3 and /dev/null differ diff --git a/files/26_3502.jpg b/files/26_3502.jpg deleted file mode 100644 index 01d621aac..000000000 Binary files a/files/26_3502.jpg and /dev/null differ diff --git a/files/26_3502.mp3 b/files/26_3502.mp3 deleted file mode 100644 index 55836ca33..000000000 Binary files a/files/26_3502.mp3 and /dev/null differ diff --git a/files/26_3502_example.mp3 b/files/26_3502_example.mp3 deleted file mode 100644 index 118dd66f9..000000000 Binary files a/files/26_3502_example.mp3 and /dev/null differ diff --git a/files/26_3502_meaning.mp3 b/files/26_3502_meaning.mp3 deleted file mode 100644 index 6347c4f4c..000000000 Binary files a/files/26_3502_meaning.mp3 and /dev/null differ diff --git a/files/26_3503.jpg b/files/26_3503.jpg deleted file mode 100644 index 537121d4b..000000000 Binary files a/files/26_3503.jpg and /dev/null differ diff --git a/files/26_3503.mp3 b/files/26_3503.mp3 deleted file mode 100644 index e1c6a951b..000000000 Binary files a/files/26_3503.mp3 and /dev/null differ diff --git a/files/26_3503_example.mp3 b/files/26_3503_example.mp3 deleted file mode 100644 index 67cef8c6c..000000000 Binary files a/files/26_3503_example.mp3 and /dev/null differ diff --git a/files/26_3503_meaning.mp3 b/files/26_3503_meaning.mp3 deleted file mode 100644 index 454a7916e..000000000 Binary files a/files/26_3503_meaning.mp3 and /dev/null differ diff --git a/files/26_3504.jpg b/files/26_3504.jpg deleted file mode 100644 index 8054821ff..000000000 Binary files a/files/26_3504.jpg and /dev/null differ diff --git a/files/26_3504.mp3 b/files/26_3504.mp3 deleted file mode 100644 index 7db7a13b9..000000000 Binary files a/files/26_3504.mp3 and /dev/null differ diff --git a/files/26_3504_example.mp3 b/files/26_3504_example.mp3 deleted file mode 100644 index 703f8007f..000000000 Binary files a/files/26_3504_example.mp3 and /dev/null differ diff --git a/files/26_3504_meaning.mp3 b/files/26_3504_meaning.mp3 deleted file mode 100644 index d397a770f..000000000 Binary files a/files/26_3504_meaning.mp3 and /dev/null differ diff --git a/files/26_3505.jpg b/files/26_3505.jpg deleted file mode 100644 index e96f2bd7d..000000000 Binary files a/files/26_3505.jpg and /dev/null differ diff --git a/files/26_3505.mp3 b/files/26_3505.mp3 deleted file mode 100644 index 9a8026652..000000000 Binary files a/files/26_3505.mp3 and /dev/null differ diff --git a/files/26_3505_example.mp3 b/files/26_3505_example.mp3 deleted file mode 100644 index d9ee16d91..000000000 Binary files a/files/26_3505_example.mp3 and /dev/null differ diff --git a/files/26_3505_meaning.mp3 b/files/26_3505_meaning.mp3 deleted file mode 100644 index 0301fddf6..000000000 Binary files a/files/26_3505_meaning.mp3 and /dev/null differ diff --git a/files/26_3506.jpg b/files/26_3506.jpg deleted file mode 100644 index 6cfdb6075..000000000 Binary files a/files/26_3506.jpg and /dev/null differ diff --git a/files/26_3506.mp3 b/files/26_3506.mp3 deleted file mode 100644 index 09a71f399..000000000 Binary files a/files/26_3506.mp3 and /dev/null differ diff --git a/files/26_3506_example.mp3 b/files/26_3506_example.mp3 deleted file mode 100644 index 2123b7a9e..000000000 Binary files a/files/26_3506_example.mp3 and /dev/null differ diff --git a/files/26_3506_meaning.mp3 b/files/26_3506_meaning.mp3 deleted file mode 100644 index 887b9949c..000000000 Binary files a/files/26_3506_meaning.mp3 and /dev/null differ diff --git a/files/26_3507.jpg b/files/26_3507.jpg deleted file mode 100644 index 342f06e88..000000000 Binary files a/files/26_3507.jpg and /dev/null differ diff --git a/files/26_3507.mp3 b/files/26_3507.mp3 deleted file mode 100644 index db9155d00..000000000 Binary files a/files/26_3507.mp3 and /dev/null differ diff --git a/files/26_3507_example.mp3 b/files/26_3507_example.mp3 deleted file mode 100644 index c7d6734d2..000000000 Binary files a/files/26_3507_example.mp3 and /dev/null differ diff --git a/files/26_3507_meaning.mp3 b/files/26_3507_meaning.mp3 deleted file mode 100644 index 8d4ea7a0e..000000000 Binary files a/files/26_3507_meaning.mp3 and /dev/null differ diff --git a/files/26_3508.jpg b/files/26_3508.jpg deleted file mode 100644 index 0277aeaaf..000000000 Binary files a/files/26_3508.jpg and /dev/null differ diff --git a/files/26_3508.mp3 b/files/26_3508.mp3 deleted file mode 100644 index 4ac10d87c..000000000 Binary files a/files/26_3508.mp3 and /dev/null differ diff --git a/files/26_3508_example.mp3 b/files/26_3508_example.mp3 deleted file mode 100644 index b9a275ee4..000000000 Binary files a/files/26_3508_example.mp3 and /dev/null differ diff --git a/files/26_3508_meaning.mp3 b/files/26_3508_meaning.mp3 deleted file mode 100644 index 9efccd8db..000000000 Binary files a/files/26_3508_meaning.mp3 and /dev/null differ diff --git a/files/26_3509.jpg b/files/26_3509.jpg deleted file mode 100644 index 56a749dea..000000000 Binary files a/files/26_3509.jpg and /dev/null differ diff --git a/files/26_3509.mp3 b/files/26_3509.mp3 deleted file mode 100644 index efaec0c1c..000000000 Binary files a/files/26_3509.mp3 and /dev/null differ diff --git a/files/26_3509_example.mp3 b/files/26_3509_example.mp3 deleted file mode 100644 index 7b710f4e1..000000000 Binary files a/files/26_3509_example.mp3 and /dev/null differ diff --git a/files/26_3509_meaning.mp3 b/files/26_3509_meaning.mp3 deleted file mode 100644 index cd2a6ed51..000000000 Binary files a/files/26_3509_meaning.mp3 and /dev/null differ diff --git a/files/26_3510.jpg b/files/26_3510.jpg deleted file mode 100644 index df2d09d2e..000000000 Binary files a/files/26_3510.jpg and /dev/null differ diff --git a/files/26_3510.mp3 b/files/26_3510.mp3 deleted file mode 100644 index a069f7e3c..000000000 Binary files a/files/26_3510.mp3 and /dev/null differ diff --git a/files/26_3510_example.mp3 b/files/26_3510_example.mp3 deleted file mode 100644 index 5fd9bfc11..000000000 Binary files a/files/26_3510_example.mp3 and /dev/null differ diff --git a/files/26_3510_meaning.mp3 b/files/26_3510_meaning.mp3 deleted file mode 100644 index df17282e2..000000000 Binary files a/files/26_3510_meaning.mp3 and /dev/null differ diff --git a/files/26_3511.jpg b/files/26_3511.jpg deleted file mode 100644 index c03d51745..000000000 Binary files a/files/26_3511.jpg and /dev/null differ diff --git a/files/26_3511.mp3 b/files/26_3511.mp3 deleted file mode 100644 index d851f4391..000000000 Binary files a/files/26_3511.mp3 and /dev/null differ diff --git a/files/26_3511_example.mp3 b/files/26_3511_example.mp3 deleted file mode 100644 index eec9ea45e..000000000 Binary files a/files/26_3511_example.mp3 and /dev/null differ diff --git a/files/26_3511_meaning.mp3 b/files/26_3511_meaning.mp3 deleted file mode 100644 index 45819b624..000000000 Binary files a/files/26_3511_meaning.mp3 and /dev/null differ diff --git a/files/26_3512.jpg b/files/26_3512.jpg deleted file mode 100644 index 9832667ff..000000000 Binary files a/files/26_3512.jpg and /dev/null differ diff --git a/files/26_3512.mp3 b/files/26_3512.mp3 deleted file mode 100644 index f5c6458a8..000000000 Binary files a/files/26_3512.mp3 and /dev/null differ diff --git a/files/26_3512_example.mp3 b/files/26_3512_example.mp3 deleted file mode 100644 index 8c4215f6a..000000000 Binary files a/files/26_3512_example.mp3 and /dev/null differ diff --git a/files/26_3512_meaning.mp3 b/files/26_3512_meaning.mp3 deleted file mode 100644 index 8b81694c2..000000000 Binary files a/files/26_3512_meaning.mp3 and /dev/null differ diff --git a/files/26_3513.jpg b/files/26_3513.jpg deleted file mode 100644 index 13b497efb..000000000 Binary files a/files/26_3513.jpg and /dev/null differ diff --git a/files/26_3513.mp3 b/files/26_3513.mp3 deleted file mode 100644 index bb110bb8f..000000000 Binary files a/files/26_3513.mp3 and /dev/null differ diff --git a/files/26_3513_example.mp3 b/files/26_3513_example.mp3 deleted file mode 100644 index 10d00532d..000000000 Binary files a/files/26_3513_example.mp3 and /dev/null differ diff --git a/files/26_3513_meaning.mp3 b/files/26_3513_meaning.mp3 deleted file mode 100644 index ffc51bc5e..000000000 Binary files a/files/26_3513_meaning.mp3 and /dev/null differ diff --git a/files/26_3514.jpg b/files/26_3514.jpg deleted file mode 100644 index 528429da1..000000000 Binary files a/files/26_3514.jpg and /dev/null differ diff --git a/files/26_3514.mp3 b/files/26_3514.mp3 deleted file mode 100644 index 90157e7d6..000000000 Binary files a/files/26_3514.mp3 and /dev/null differ diff --git a/files/26_3514_example.mp3 b/files/26_3514_example.mp3 deleted file mode 100644 index 220c4b074..000000000 Binary files a/files/26_3514_example.mp3 and /dev/null differ diff --git a/files/26_3514_meaning.mp3 b/files/26_3514_meaning.mp3 deleted file mode 100644 index fa9b9a56b..000000000 Binary files a/files/26_3514_meaning.mp3 and /dev/null differ diff --git a/files/26_3515.jpg b/files/26_3515.jpg deleted file mode 100644 index 0e42f735b..000000000 Binary files a/files/26_3515.jpg and /dev/null differ diff --git a/files/26_3515.mp3 b/files/26_3515.mp3 deleted file mode 100644 index c95652063..000000000 Binary files a/files/26_3515.mp3 and /dev/null differ diff --git a/files/26_3515_example.mp3 b/files/26_3515_example.mp3 deleted file mode 100644 index 6cd69a85c..000000000 Binary files a/files/26_3515_example.mp3 and /dev/null differ diff --git a/files/26_3515_meaning.mp3 b/files/26_3515_meaning.mp3 deleted file mode 100644 index e37d7487b..000000000 Binary files a/files/26_3515_meaning.mp3 and /dev/null differ diff --git a/files/26_3516.jpg b/files/26_3516.jpg deleted file mode 100644 index 0b8051e52..000000000 Binary files a/files/26_3516.jpg and /dev/null differ diff --git a/files/26_3516.mp3 b/files/26_3516.mp3 deleted file mode 100644 index d8c5939f0..000000000 Binary files a/files/26_3516.mp3 and /dev/null differ diff --git a/files/26_3516_example.mp3 b/files/26_3516_example.mp3 deleted file mode 100644 index 0a14e5750..000000000 Binary files a/files/26_3516_example.mp3 and /dev/null differ diff --git a/files/26_3516_meaning.mp3 b/files/26_3516_meaning.mp3 deleted file mode 100644 index 5fd0ce2ab..000000000 Binary files a/files/26_3516_meaning.mp3 and /dev/null differ diff --git a/files/26_3517.jpg b/files/26_3517.jpg deleted file mode 100644 index 4f14389da..000000000 Binary files a/files/26_3517.jpg and /dev/null differ diff --git a/files/26_3517.mp3 b/files/26_3517.mp3 deleted file mode 100644 index 72dfe0196..000000000 Binary files a/files/26_3517.mp3 and /dev/null differ diff --git a/files/26_3517_example.mp3 b/files/26_3517_example.mp3 deleted file mode 100644 index 327a1b952..000000000 Binary files a/files/26_3517_example.mp3 and /dev/null differ diff --git a/files/26_3517_meaning.mp3 b/files/26_3517_meaning.mp3 deleted file mode 100644 index 14f4db9fb..000000000 Binary files a/files/26_3517_meaning.mp3 and /dev/null differ diff --git a/files/26_3518.jpg b/files/26_3518.jpg deleted file mode 100644 index cff150750..000000000 Binary files a/files/26_3518.jpg and /dev/null differ diff --git a/files/26_3518.mp3 b/files/26_3518.mp3 deleted file mode 100644 index 70bf2a671..000000000 Binary files a/files/26_3518.mp3 and /dev/null differ diff --git a/files/26_3518_example.mp3 b/files/26_3518_example.mp3 deleted file mode 100644 index 43b78aba9..000000000 Binary files a/files/26_3518_example.mp3 and /dev/null differ diff --git a/files/26_3518_meaning.mp3 b/files/26_3518_meaning.mp3 deleted file mode 100644 index a9ceb85b1..000000000 Binary files a/files/26_3518_meaning.mp3 and /dev/null differ diff --git a/files/26_3519.jpg b/files/26_3519.jpg deleted file mode 100644 index e1c43c478..000000000 Binary files a/files/26_3519.jpg and /dev/null differ diff --git a/files/26_3519.mp3 b/files/26_3519.mp3 deleted file mode 100644 index 2d9ea628d..000000000 Binary files a/files/26_3519.mp3 and /dev/null differ diff --git a/files/26_3519_example.mp3 b/files/26_3519_example.mp3 deleted file mode 100644 index af15c2697..000000000 Binary files a/files/26_3519_example.mp3 and /dev/null differ diff --git a/files/26_3519_meaning.mp3 b/files/26_3519_meaning.mp3 deleted file mode 100644 index c331047e4..000000000 Binary files a/files/26_3519_meaning.mp3 and /dev/null differ diff --git a/files/26_3520.jpg b/files/26_3520.jpg deleted file mode 100644 index 428d93e33..000000000 Binary files a/files/26_3520.jpg and /dev/null differ diff --git a/files/26_3520.mp3 b/files/26_3520.mp3 deleted file mode 100644 index c29a2e702..000000000 Binary files a/files/26_3520.mp3 and /dev/null differ diff --git a/files/26_3520_example.mp3 b/files/26_3520_example.mp3 deleted file mode 100644 index a5256f1d1..000000000 Binary files a/files/26_3520_example.mp3 and /dev/null differ diff --git a/files/26_3520_meaning.mp3 b/files/26_3520_meaning.mp3 deleted file mode 100644 index 6cd1e8168..000000000 Binary files a/files/26_3520_meaning.mp3 and /dev/null differ diff --git a/files/27_0521.jpg b/files/27_0521.jpg deleted file mode 100644 index 5c9e2b9f8..000000000 Binary files a/files/27_0521.jpg and /dev/null differ diff --git a/files/27_0521.mp3 b/files/27_0521.mp3 deleted file mode 100644 index 30d0f82c0..000000000 Binary files a/files/27_0521.mp3 and /dev/null differ diff --git a/files/27_0521_example.mp3 b/files/27_0521_example.mp3 deleted file mode 100644 index ef87f42a5..000000000 Binary files a/files/27_0521_example.mp3 and /dev/null differ diff --git a/files/27_0521_meaning.mp3 b/files/27_0521_meaning.mp3 deleted file mode 100644 index d9fa2b617..000000000 Binary files a/files/27_0521_meaning.mp3 and /dev/null differ diff --git a/files/27_0522.jpg b/files/27_0522.jpg deleted file mode 100644 index 12276fbc5..000000000 Binary files a/files/27_0522.jpg and /dev/null differ diff --git a/files/27_0522.mp3 b/files/27_0522.mp3 deleted file mode 100644 index a2bbef1d2..000000000 Binary files a/files/27_0522.mp3 and /dev/null differ diff --git a/files/27_0522_example.mp3 b/files/27_0522_example.mp3 deleted file mode 100644 index 26bce4325..000000000 Binary files a/files/27_0522_example.mp3 and /dev/null differ diff --git a/files/27_0522_meaning.mp3 b/files/27_0522_meaning.mp3 deleted file mode 100644 index ad45bbe04..000000000 Binary files a/files/27_0522_meaning.mp3 and /dev/null differ diff --git a/files/27_0523.jpg b/files/27_0523.jpg deleted file mode 100644 index 2cbdeb1ff..000000000 Binary files a/files/27_0523.jpg and /dev/null differ diff --git a/files/27_0523.mp3 b/files/27_0523.mp3 deleted file mode 100644 index c90f2e526..000000000 Binary files a/files/27_0523.mp3 and /dev/null differ diff --git a/files/27_0523_example.mp3 b/files/27_0523_example.mp3 deleted file mode 100644 index fc557c771..000000000 Binary files a/files/27_0523_example.mp3 and /dev/null differ diff --git a/files/27_0523_meaning.mp3 b/files/27_0523_meaning.mp3 deleted file mode 100644 index 2ada57142..000000000 Binary files a/files/27_0523_meaning.mp3 and /dev/null differ diff --git a/files/27_0524.jpg b/files/27_0524.jpg deleted file mode 100644 index 4e702de43..000000000 Binary files a/files/27_0524.jpg and /dev/null differ diff --git a/files/27_0524.mp3 b/files/27_0524.mp3 deleted file mode 100644 index deaa7abf8..000000000 Binary files a/files/27_0524.mp3 and /dev/null differ diff --git a/files/27_0524_example.mp3 b/files/27_0524_example.mp3 deleted file mode 100644 index 17a1c8ae1..000000000 Binary files a/files/27_0524_example.mp3 and /dev/null differ diff --git a/files/27_0524_meaning.mp3 b/files/27_0524_meaning.mp3 deleted file mode 100644 index 5e446c1ea..000000000 Binary files a/files/27_0524_meaning.mp3 and /dev/null differ diff --git a/files/27_0525.jpg b/files/27_0525.jpg deleted file mode 100644 index 97c43b62b..000000000 Binary files a/files/27_0525.jpg and /dev/null differ diff --git a/files/27_0525.mp3 b/files/27_0525.mp3 deleted file mode 100644 index 737d40ece..000000000 Binary files a/files/27_0525.mp3 and /dev/null differ diff --git a/files/27_0525_example.mp3 b/files/27_0525_example.mp3 deleted file mode 100644 index 49ab77fd8..000000000 Binary files a/files/27_0525_example.mp3 and /dev/null differ diff --git a/files/27_0525_meaning.mp3 b/files/27_0525_meaning.mp3 deleted file mode 100644 index c7e82689c..000000000 Binary files a/files/27_0525_meaning.mp3 and /dev/null differ diff --git a/files/27_0526.jpg b/files/27_0526.jpg deleted file mode 100644 index 19f8df74c..000000000 Binary files a/files/27_0526.jpg and /dev/null differ diff --git a/files/27_0526.mp3 b/files/27_0526.mp3 deleted file mode 100644 index 5f22e4638..000000000 Binary files a/files/27_0526.mp3 and /dev/null differ diff --git a/files/27_0526_example.mp3 b/files/27_0526_example.mp3 deleted file mode 100644 index 117c2df50..000000000 Binary files a/files/27_0526_example.mp3 and /dev/null differ diff --git a/files/27_0526_meaning.mp3 b/files/27_0526_meaning.mp3 deleted file mode 100644 index 5795d8cf0..000000000 Binary files a/files/27_0526_meaning.mp3 and /dev/null differ diff --git a/files/27_0527.jpg b/files/27_0527.jpg deleted file mode 100644 index 38a962459..000000000 Binary files a/files/27_0527.jpg and /dev/null differ diff --git a/files/27_0527.mp3 b/files/27_0527.mp3 deleted file mode 100644 index f3ca76ab0..000000000 Binary files a/files/27_0527.mp3 and /dev/null differ diff --git a/files/27_0527_example.mp3 b/files/27_0527_example.mp3 deleted file mode 100644 index 2c49f93ff..000000000 Binary files a/files/27_0527_example.mp3 and /dev/null differ diff --git a/files/27_0527_meaning.mp3 b/files/27_0527_meaning.mp3 deleted file mode 100644 index 438916890..000000000 Binary files a/files/27_0527_meaning.mp3 and /dev/null differ diff --git a/files/27_0528.jpg b/files/27_0528.jpg deleted file mode 100644 index e854b017d..000000000 Binary files a/files/27_0528.jpg and /dev/null differ diff --git a/files/27_0528.mp3 b/files/27_0528.mp3 deleted file mode 100644 index 495964074..000000000 Binary files a/files/27_0528.mp3 and /dev/null differ diff --git a/files/27_0528_example.mp3 b/files/27_0528_example.mp3 deleted file mode 100644 index 9de037ff6..000000000 Binary files a/files/27_0528_example.mp3 and /dev/null differ diff --git a/files/27_0528_meaning.mp3 b/files/27_0528_meaning.mp3 deleted file mode 100644 index b0b77cf3e..000000000 Binary files a/files/27_0528_meaning.mp3 and /dev/null differ diff --git a/files/27_0529.jpg b/files/27_0529.jpg deleted file mode 100644 index 2aedc2d1c..000000000 Binary files a/files/27_0529.jpg and /dev/null differ diff --git a/files/27_0529.mp3 b/files/27_0529.mp3 deleted file mode 100644 index 0470c9438..000000000 Binary files a/files/27_0529.mp3 and /dev/null differ diff --git a/files/27_0529_example.mp3 b/files/27_0529_example.mp3 deleted file mode 100644 index f6c8436d9..000000000 Binary files a/files/27_0529_example.mp3 and /dev/null differ diff --git a/files/27_0529_meaning.mp3 b/files/27_0529_meaning.mp3 deleted file mode 100644 index 553e37446..000000000 Binary files a/files/27_0529_meaning.mp3 and /dev/null differ diff --git a/files/27_0530.jpg b/files/27_0530.jpg deleted file mode 100644 index 02bf99084..000000000 Binary files a/files/27_0530.jpg and /dev/null differ diff --git a/files/27_0530.mp3 b/files/27_0530.mp3 deleted file mode 100644 index 47b899e8a..000000000 Binary files a/files/27_0530.mp3 and /dev/null differ diff --git a/files/27_0530_example.mp3 b/files/27_0530_example.mp3 deleted file mode 100644 index 43691f0b0..000000000 Binary files a/files/27_0530_example.mp3 and /dev/null differ diff --git a/files/27_0530_meaning.mp3 b/files/27_0530_meaning.mp3 deleted file mode 100644 index 2a1fc3ff3..000000000 Binary files a/files/27_0530_meaning.mp3 and /dev/null differ diff --git a/files/27_0531.jpg b/files/27_0531.jpg deleted file mode 100644 index 47a820d84..000000000 Binary files a/files/27_0531.jpg and /dev/null differ diff --git a/files/27_0531.mp3 b/files/27_0531.mp3 deleted file mode 100644 index 65f4b450d..000000000 Binary files a/files/27_0531.mp3 and /dev/null differ diff --git a/files/27_0531_example.mp3 b/files/27_0531_example.mp3 deleted file mode 100644 index 519a4c13f..000000000 Binary files a/files/27_0531_example.mp3 and /dev/null differ diff --git a/files/27_0531_meaning.mp3 b/files/27_0531_meaning.mp3 deleted file mode 100644 index 3908377bc..000000000 Binary files a/files/27_0531_meaning.mp3 and /dev/null differ diff --git a/files/27_0532.jpg b/files/27_0532.jpg deleted file mode 100644 index 6daebc19a..000000000 Binary files a/files/27_0532.jpg and /dev/null differ diff --git a/files/27_0532.mp3 b/files/27_0532.mp3 deleted file mode 100644 index 9e6aca94a..000000000 Binary files a/files/27_0532.mp3 and /dev/null differ diff --git a/files/27_0532_example.mp3 b/files/27_0532_example.mp3 deleted file mode 100644 index 58c3eee69..000000000 Binary files a/files/27_0532_example.mp3 and /dev/null differ diff --git a/files/27_0532_meaning.mp3 b/files/27_0532_meaning.mp3 deleted file mode 100644 index 59bb4a5ee..000000000 Binary files a/files/27_0532_meaning.mp3 and /dev/null differ diff --git a/files/27_0533.jpg b/files/27_0533.jpg deleted file mode 100644 index acb20023e..000000000 Binary files a/files/27_0533.jpg and /dev/null differ diff --git a/files/27_0533.mp3 b/files/27_0533.mp3 deleted file mode 100644 index d41f8b0d2..000000000 Binary files a/files/27_0533.mp3 and /dev/null differ diff --git a/files/27_0533_example.mp3 b/files/27_0533_example.mp3 deleted file mode 100644 index 76c9b3682..000000000 Binary files a/files/27_0533_example.mp3 and /dev/null differ diff --git a/files/27_0533_meaning.mp3 b/files/27_0533_meaning.mp3 deleted file mode 100644 index 2adf864af..000000000 Binary files a/files/27_0533_meaning.mp3 and /dev/null differ diff --git a/files/27_0534.jpg b/files/27_0534.jpg deleted file mode 100644 index 36e5a14cb..000000000 Binary files a/files/27_0534.jpg and /dev/null differ diff --git a/files/27_0534.mp3 b/files/27_0534.mp3 deleted file mode 100644 index 43ab41f66..000000000 Binary files a/files/27_0534.mp3 and /dev/null differ diff --git a/files/27_0534_example.mp3 b/files/27_0534_example.mp3 deleted file mode 100644 index b51546232..000000000 Binary files a/files/27_0534_example.mp3 and /dev/null differ diff --git a/files/27_0534_meaning.mp3 b/files/27_0534_meaning.mp3 deleted file mode 100644 index 54fe28286..000000000 Binary files a/files/27_0534_meaning.mp3 and /dev/null differ diff --git a/files/27_0535.jpg b/files/27_0535.jpg deleted file mode 100644 index eba2e4cae..000000000 Binary files a/files/27_0535.jpg and /dev/null differ diff --git a/files/27_0535.mp3 b/files/27_0535.mp3 deleted file mode 100644 index d1d4e999a..000000000 Binary files a/files/27_0535.mp3 and /dev/null differ diff --git a/files/27_0535_example.mp3 b/files/27_0535_example.mp3 deleted file mode 100644 index e0f52d41a..000000000 Binary files a/files/27_0535_example.mp3 and /dev/null differ diff --git a/files/27_0535_meaning.mp3 b/files/27_0535_meaning.mp3 deleted file mode 100644 index 0f57a7583..000000000 Binary files a/files/27_0535_meaning.mp3 and /dev/null differ diff --git a/files/27_0536.jpg b/files/27_0536.jpg deleted file mode 100644 index 9bcc9c813..000000000 Binary files a/files/27_0536.jpg and /dev/null differ diff --git a/files/27_0536.mp3 b/files/27_0536.mp3 deleted file mode 100644 index f3d360f04..000000000 Binary files a/files/27_0536.mp3 and /dev/null differ diff --git a/files/27_0536_example.mp3 b/files/27_0536_example.mp3 deleted file mode 100644 index 7b2364111..000000000 Binary files a/files/27_0536_example.mp3 and /dev/null differ diff --git a/files/27_0536_meaning.mp3 b/files/27_0536_meaning.mp3 deleted file mode 100644 index a1af8a9ea..000000000 Binary files a/files/27_0536_meaning.mp3 and /dev/null differ diff --git a/files/27_0537.jpg b/files/27_0537.jpg deleted file mode 100644 index 22af4b428..000000000 Binary files a/files/27_0537.jpg and /dev/null differ diff --git a/files/27_0537.mp3 b/files/27_0537.mp3 deleted file mode 100644 index e08896bf5..000000000 Binary files a/files/27_0537.mp3 and /dev/null differ diff --git a/files/27_0537_example.mp3 b/files/27_0537_example.mp3 deleted file mode 100644 index e2526f520..000000000 Binary files a/files/27_0537_example.mp3 and /dev/null differ diff --git a/files/27_0537_meaning.mp3 b/files/27_0537_meaning.mp3 deleted file mode 100644 index eefd2f5fb..000000000 Binary files a/files/27_0537_meaning.mp3 and /dev/null differ diff --git a/files/27_0538.jpg b/files/27_0538.jpg deleted file mode 100644 index b62fcdef6..000000000 Binary files a/files/27_0538.jpg and /dev/null differ diff --git a/files/27_0538.mp3 b/files/27_0538.mp3 deleted file mode 100644 index 83085389a..000000000 Binary files a/files/27_0538.mp3 and /dev/null differ diff --git a/files/27_0538_example.mp3 b/files/27_0538_example.mp3 deleted file mode 100644 index 6bdf24446..000000000 Binary files a/files/27_0538_example.mp3 and /dev/null differ diff --git a/files/27_0538_meaning.mp3 b/files/27_0538_meaning.mp3 deleted file mode 100644 index 64642e8be..000000000 Binary files a/files/27_0538_meaning.mp3 and /dev/null differ diff --git a/files/27_0539.jpg b/files/27_0539.jpg deleted file mode 100644 index 3b90c2cb5..000000000 Binary files a/files/27_0539.jpg and /dev/null differ diff --git a/files/27_0539.mp3 b/files/27_0539.mp3 deleted file mode 100644 index 4edb9b54a..000000000 Binary files a/files/27_0539.mp3 and /dev/null differ diff --git a/files/27_0539_example.mp3 b/files/27_0539_example.mp3 deleted file mode 100644 index cfed96f8f..000000000 Binary files a/files/27_0539_example.mp3 and /dev/null differ diff --git a/files/27_0539_meaning.mp3 b/files/27_0539_meaning.mp3 deleted file mode 100644 index 2f722067a..000000000 Binary files a/files/27_0539_meaning.mp3 and /dev/null differ diff --git a/files/27_0540.jpg b/files/27_0540.jpg deleted file mode 100644 index b98e90a9a..000000000 Binary files a/files/27_0540.jpg and /dev/null differ diff --git a/files/27_0540.mp3 b/files/27_0540.mp3 deleted file mode 100644 index 5f6de05ee..000000000 Binary files a/files/27_0540.mp3 and /dev/null differ diff --git a/files/27_0540_example.mp3 b/files/27_0540_example.mp3 deleted file mode 100644 index 6a87f637d..000000000 Binary files a/files/27_0540_example.mp3 and /dev/null differ diff --git a/files/27_0540_meaning.mp3 b/files/27_0540_meaning.mp3 deleted file mode 100644 index 1d3623327..000000000 Binary files a/files/27_0540_meaning.mp3 and /dev/null differ diff --git a/files/27_1121.jpg b/files/27_1121.jpg deleted file mode 100644 index 578feb121..000000000 Binary files a/files/27_1121.jpg and /dev/null differ diff --git a/files/27_1121.mp3 b/files/27_1121.mp3 deleted file mode 100644 index 65ec6a775..000000000 Binary files a/files/27_1121.mp3 and /dev/null differ diff --git a/files/27_1121_example.mp3 b/files/27_1121_example.mp3 deleted file mode 100644 index 280f1d497..000000000 Binary files a/files/27_1121_example.mp3 and /dev/null differ diff --git a/files/27_1121_meaning.mp3 b/files/27_1121_meaning.mp3 deleted file mode 100644 index fd27ebf44..000000000 Binary files a/files/27_1121_meaning.mp3 and /dev/null differ diff --git a/files/27_1122.jpg b/files/27_1122.jpg deleted file mode 100644 index 274480ffa..000000000 Binary files a/files/27_1122.jpg and /dev/null differ diff --git a/files/27_1122.mp3 b/files/27_1122.mp3 deleted file mode 100644 index 6a5f693e5..000000000 Binary files a/files/27_1122.mp3 and /dev/null differ diff --git a/files/27_1122_example.mp3 b/files/27_1122_example.mp3 deleted file mode 100644 index 1963c6cd5..000000000 Binary files a/files/27_1122_example.mp3 and /dev/null differ diff --git a/files/27_1122_meaning.mp3 b/files/27_1122_meaning.mp3 deleted file mode 100644 index 0b01dd3ee..000000000 Binary files a/files/27_1122_meaning.mp3 and /dev/null differ diff --git a/files/27_1123.jpg b/files/27_1123.jpg deleted file mode 100644 index cb0a25c21..000000000 Binary files a/files/27_1123.jpg and /dev/null differ diff --git a/files/27_1123.mp3 b/files/27_1123.mp3 deleted file mode 100644 index 98f04cf81..000000000 Binary files a/files/27_1123.mp3 and /dev/null differ diff --git a/files/27_1123_example.mp3 b/files/27_1123_example.mp3 deleted file mode 100644 index 5c2ff9de1..000000000 Binary files a/files/27_1123_example.mp3 and /dev/null differ diff --git a/files/27_1123_meaning.mp3 b/files/27_1123_meaning.mp3 deleted file mode 100644 index 5d34cb0a0..000000000 Binary files a/files/27_1123_meaning.mp3 and /dev/null differ diff --git a/files/27_1124.jpg b/files/27_1124.jpg deleted file mode 100644 index 2c6c72245..000000000 Binary files a/files/27_1124.jpg and /dev/null differ diff --git a/files/27_1124.mp3 b/files/27_1124.mp3 deleted file mode 100644 index 7f009bb6f..000000000 Binary files a/files/27_1124.mp3 and /dev/null differ diff --git a/files/27_1124_example.mp3 b/files/27_1124_example.mp3 deleted file mode 100644 index d17757cf1..000000000 Binary files a/files/27_1124_example.mp3 and /dev/null differ diff --git a/files/27_1124_meaning.mp3 b/files/27_1124_meaning.mp3 deleted file mode 100644 index fee802d9d..000000000 Binary files a/files/27_1124_meaning.mp3 and /dev/null differ diff --git a/files/27_1125.jpg b/files/27_1125.jpg deleted file mode 100644 index e70abfd95..000000000 Binary files a/files/27_1125.jpg and /dev/null differ diff --git a/files/27_1125.mp3 b/files/27_1125.mp3 deleted file mode 100644 index 13111d6e7..000000000 Binary files a/files/27_1125.mp3 and /dev/null differ diff --git a/files/27_1125_example.mp3 b/files/27_1125_example.mp3 deleted file mode 100644 index 3bdbdf444..000000000 Binary files a/files/27_1125_example.mp3 and /dev/null differ diff --git a/files/27_1125_meaning.mp3 b/files/27_1125_meaning.mp3 deleted file mode 100644 index c10a456c4..000000000 Binary files a/files/27_1125_meaning.mp3 and /dev/null differ diff --git a/files/27_1126.jpg b/files/27_1126.jpg deleted file mode 100644 index 28ece263c..000000000 Binary files a/files/27_1126.jpg and /dev/null differ diff --git a/files/27_1126.mp3 b/files/27_1126.mp3 deleted file mode 100644 index 64c4e7e99..000000000 Binary files a/files/27_1126.mp3 and /dev/null differ diff --git a/files/27_1126_example.mp3 b/files/27_1126_example.mp3 deleted file mode 100644 index c30a2ea88..000000000 Binary files a/files/27_1126_example.mp3 and /dev/null differ diff --git a/files/27_1126_meaning.mp3 b/files/27_1126_meaning.mp3 deleted file mode 100644 index 45c1f7192..000000000 Binary files a/files/27_1126_meaning.mp3 and /dev/null differ diff --git a/files/27_1127.jpg b/files/27_1127.jpg deleted file mode 100644 index 4677b511c..000000000 Binary files a/files/27_1127.jpg and /dev/null differ diff --git a/files/27_1127.mp3 b/files/27_1127.mp3 deleted file mode 100644 index 1d7314394..000000000 Binary files a/files/27_1127.mp3 and /dev/null differ diff --git a/files/27_1127_example.mp3 b/files/27_1127_example.mp3 deleted file mode 100644 index 4d6da61e7..000000000 Binary files a/files/27_1127_example.mp3 and /dev/null differ diff --git a/files/27_1127_meaning.mp3 b/files/27_1127_meaning.mp3 deleted file mode 100644 index 4de4d8204..000000000 Binary files a/files/27_1127_meaning.mp3 and /dev/null differ diff --git a/files/27_1128.jpg b/files/27_1128.jpg deleted file mode 100644 index 86e41dc25..000000000 Binary files a/files/27_1128.jpg and /dev/null differ diff --git a/files/27_1128.mp3 b/files/27_1128.mp3 deleted file mode 100644 index 0eca8f155..000000000 Binary files a/files/27_1128.mp3 and /dev/null differ diff --git a/files/27_1128_example.mp3 b/files/27_1128_example.mp3 deleted file mode 100644 index f0918d43e..000000000 Binary files a/files/27_1128_example.mp3 and /dev/null differ diff --git a/files/27_1128_meaning.mp3 b/files/27_1128_meaning.mp3 deleted file mode 100644 index 54550c191..000000000 Binary files a/files/27_1128_meaning.mp3 and /dev/null differ diff --git a/files/27_1129.jpg b/files/27_1129.jpg deleted file mode 100644 index 293c6cb04..000000000 Binary files a/files/27_1129.jpg and /dev/null differ diff --git a/files/27_1129.mp3 b/files/27_1129.mp3 deleted file mode 100644 index 90e31fc25..000000000 Binary files a/files/27_1129.mp3 and /dev/null differ diff --git a/files/27_1129_example.mp3 b/files/27_1129_example.mp3 deleted file mode 100644 index 783ca8fc8..000000000 Binary files a/files/27_1129_example.mp3 and /dev/null differ diff --git a/files/27_1129_meaning.mp3 b/files/27_1129_meaning.mp3 deleted file mode 100644 index 404048783..000000000 Binary files a/files/27_1129_meaning.mp3 and /dev/null differ diff --git a/files/27_1130.jpg b/files/27_1130.jpg deleted file mode 100644 index af44b2e24..000000000 Binary files a/files/27_1130.jpg and /dev/null differ diff --git a/files/27_1130.mp3 b/files/27_1130.mp3 deleted file mode 100644 index e2af9b32a..000000000 Binary files a/files/27_1130.mp3 and /dev/null differ diff --git a/files/27_1130_example.mp3 b/files/27_1130_example.mp3 deleted file mode 100644 index 5e94f2d4f..000000000 Binary files a/files/27_1130_example.mp3 and /dev/null differ diff --git a/files/27_1130_meaning.mp3 b/files/27_1130_meaning.mp3 deleted file mode 100644 index 18d38650a..000000000 Binary files a/files/27_1130_meaning.mp3 and /dev/null differ diff --git a/files/27_1131.jpg b/files/27_1131.jpg deleted file mode 100644 index e6af749c5..000000000 Binary files a/files/27_1131.jpg and /dev/null differ diff --git a/files/27_1131.mp3 b/files/27_1131.mp3 deleted file mode 100644 index 489fe742a..000000000 Binary files a/files/27_1131.mp3 and /dev/null differ diff --git a/files/27_1131_example.mp3 b/files/27_1131_example.mp3 deleted file mode 100644 index 1db26ea9e..000000000 Binary files a/files/27_1131_example.mp3 and /dev/null differ diff --git a/files/27_1131_meaning.mp3 b/files/27_1131_meaning.mp3 deleted file mode 100644 index 29f87ad55..000000000 Binary files a/files/27_1131_meaning.mp3 and /dev/null differ diff --git a/files/27_1132.jpg b/files/27_1132.jpg deleted file mode 100644 index d8144ae86..000000000 Binary files a/files/27_1132.jpg and /dev/null differ diff --git a/files/27_1132.mp3 b/files/27_1132.mp3 deleted file mode 100644 index 810ee90d0..000000000 Binary files a/files/27_1132.mp3 and /dev/null differ diff --git a/files/27_1132_example.mp3 b/files/27_1132_example.mp3 deleted file mode 100644 index 41a069cb7..000000000 Binary files a/files/27_1132_example.mp3 and /dev/null differ diff --git a/files/27_1132_meaning.mp3 b/files/27_1132_meaning.mp3 deleted file mode 100644 index 06ffd3bb2..000000000 Binary files a/files/27_1132_meaning.mp3 and /dev/null differ diff --git a/files/27_1133.jpg b/files/27_1133.jpg deleted file mode 100644 index a104b2400..000000000 Binary files a/files/27_1133.jpg and /dev/null differ diff --git a/files/27_1133.mp3 b/files/27_1133.mp3 deleted file mode 100644 index 2a6da8d06..000000000 Binary files a/files/27_1133.mp3 and /dev/null differ diff --git a/files/27_1133_example.mp3 b/files/27_1133_example.mp3 deleted file mode 100644 index e8aff7cbb..000000000 Binary files a/files/27_1133_example.mp3 and /dev/null differ diff --git a/files/27_1133_meaning.mp3 b/files/27_1133_meaning.mp3 deleted file mode 100644 index 60442d588..000000000 Binary files a/files/27_1133_meaning.mp3 and /dev/null differ diff --git a/files/27_1134.jpg b/files/27_1134.jpg deleted file mode 100644 index 51de92096..000000000 Binary files a/files/27_1134.jpg and /dev/null differ diff --git a/files/27_1134.mp3 b/files/27_1134.mp3 deleted file mode 100644 index 18a3e207a..000000000 Binary files a/files/27_1134.mp3 and /dev/null differ diff --git a/files/27_1134_example.mp3 b/files/27_1134_example.mp3 deleted file mode 100644 index 78f807e82..000000000 Binary files a/files/27_1134_example.mp3 and /dev/null differ diff --git a/files/27_1134_meaning.mp3 b/files/27_1134_meaning.mp3 deleted file mode 100644 index 3c7c79ba1..000000000 Binary files a/files/27_1134_meaning.mp3 and /dev/null differ diff --git a/files/27_1135.jpg b/files/27_1135.jpg deleted file mode 100644 index ef33485c0..000000000 Binary files a/files/27_1135.jpg and /dev/null differ diff --git a/files/27_1135.mp3 b/files/27_1135.mp3 deleted file mode 100644 index 0e03e8767..000000000 Binary files a/files/27_1135.mp3 and /dev/null differ diff --git a/files/27_1135_example.mp3 b/files/27_1135_example.mp3 deleted file mode 100644 index 82657c0fe..000000000 Binary files a/files/27_1135_example.mp3 and /dev/null differ diff --git a/files/27_1135_meaning.mp3 b/files/27_1135_meaning.mp3 deleted file mode 100644 index 5f4c232d7..000000000 Binary files a/files/27_1135_meaning.mp3 and /dev/null differ diff --git a/files/27_1136.jpg b/files/27_1136.jpg deleted file mode 100644 index dfaea7f18..000000000 Binary files a/files/27_1136.jpg and /dev/null differ diff --git a/files/27_1136.mp3 b/files/27_1136.mp3 deleted file mode 100644 index d3ae92c0a..000000000 Binary files a/files/27_1136.mp3 and /dev/null differ diff --git a/files/27_1136_example.mp3 b/files/27_1136_example.mp3 deleted file mode 100644 index 61d9e1fc3..000000000 Binary files a/files/27_1136_example.mp3 and /dev/null differ diff --git a/files/27_1136_meaning.mp3 b/files/27_1136_meaning.mp3 deleted file mode 100644 index 3a2ee8508..000000000 Binary files a/files/27_1136_meaning.mp3 and /dev/null differ diff --git a/files/27_1137.jpg b/files/27_1137.jpg deleted file mode 100644 index 7f8438046..000000000 Binary files a/files/27_1137.jpg and /dev/null differ diff --git a/files/27_1137.mp3 b/files/27_1137.mp3 deleted file mode 100644 index 359b7f475..000000000 Binary files a/files/27_1137.mp3 and /dev/null differ diff --git a/files/27_1137_example.mp3 b/files/27_1137_example.mp3 deleted file mode 100644 index fb54f0a8e..000000000 Binary files a/files/27_1137_example.mp3 and /dev/null differ diff --git a/files/27_1137_meaning.mp3 b/files/27_1137_meaning.mp3 deleted file mode 100644 index ccb728f79..000000000 Binary files a/files/27_1137_meaning.mp3 and /dev/null differ diff --git a/files/27_1138.jpg b/files/27_1138.jpg deleted file mode 100644 index 6fa645a54..000000000 Binary files a/files/27_1138.jpg and /dev/null differ diff --git a/files/27_1138.mp3 b/files/27_1138.mp3 deleted file mode 100644 index 1975c1e4e..000000000 Binary files a/files/27_1138.mp3 and /dev/null differ diff --git a/files/27_1138_example.mp3 b/files/27_1138_example.mp3 deleted file mode 100644 index 5e2fb1016..000000000 Binary files a/files/27_1138_example.mp3 and /dev/null differ diff --git a/files/27_1138_meaning.mp3 b/files/27_1138_meaning.mp3 deleted file mode 100644 index debcd701e..000000000 Binary files a/files/27_1138_meaning.mp3 and /dev/null differ diff --git a/files/27_1139.jpg b/files/27_1139.jpg deleted file mode 100644 index 4abbf7c35..000000000 Binary files a/files/27_1139.jpg and /dev/null differ diff --git a/files/27_1139.mp3 b/files/27_1139.mp3 deleted file mode 100644 index 67ada0311..000000000 Binary files a/files/27_1139.mp3 and /dev/null differ diff --git a/files/27_1139_example.mp3 b/files/27_1139_example.mp3 deleted file mode 100644 index 69358f5b2..000000000 Binary files a/files/27_1139_example.mp3 and /dev/null differ diff --git a/files/27_1139_meaning.mp3 b/files/27_1139_meaning.mp3 deleted file mode 100644 index 99f9ebc8f..000000000 Binary files a/files/27_1139_meaning.mp3 and /dev/null differ diff --git a/files/27_1140.jpg b/files/27_1140.jpg deleted file mode 100644 index 2ba05e913..000000000 Binary files a/files/27_1140.jpg and /dev/null differ diff --git a/files/27_1140.mp3 b/files/27_1140.mp3 deleted file mode 100644 index abe167810..000000000 Binary files a/files/27_1140.mp3 and /dev/null differ diff --git a/files/27_1140_example.mp3 b/files/27_1140_example.mp3 deleted file mode 100644 index 133026cd3..000000000 Binary files a/files/27_1140_example.mp3 and /dev/null differ diff --git a/files/27_1140_meaning.mp3 b/files/27_1140_meaning.mp3 deleted file mode 100644 index cdc4c7db2..000000000 Binary files a/files/27_1140_meaning.mp3 and /dev/null differ diff --git a/files/27_1721.jpg b/files/27_1721.jpg deleted file mode 100644 index 0d164e1da..000000000 Binary files a/files/27_1721.jpg and /dev/null differ diff --git a/files/27_1721.mp3 b/files/27_1721.mp3 deleted file mode 100644 index d2c32660f..000000000 Binary files a/files/27_1721.mp3 and /dev/null differ diff --git a/files/27_1721_example.mp3 b/files/27_1721_example.mp3 deleted file mode 100644 index eb5991739..000000000 Binary files a/files/27_1721_example.mp3 and /dev/null differ diff --git a/files/27_1721_meaning.mp3 b/files/27_1721_meaning.mp3 deleted file mode 100644 index 266dae6f6..000000000 Binary files a/files/27_1721_meaning.mp3 and /dev/null differ diff --git a/files/27_1722.jpg b/files/27_1722.jpg deleted file mode 100644 index bc7a93d87..000000000 Binary files a/files/27_1722.jpg and /dev/null differ diff --git a/files/27_1722.mp3 b/files/27_1722.mp3 deleted file mode 100644 index 9e7ad975a..000000000 Binary files a/files/27_1722.mp3 and /dev/null differ diff --git a/files/27_1722_example.mp3 b/files/27_1722_example.mp3 deleted file mode 100644 index d0ae31d80..000000000 Binary files a/files/27_1722_example.mp3 and /dev/null differ diff --git a/files/27_1722_meaning.mp3 b/files/27_1722_meaning.mp3 deleted file mode 100644 index e720f859b..000000000 Binary files a/files/27_1722_meaning.mp3 and /dev/null differ diff --git a/files/27_1723.jpg b/files/27_1723.jpg deleted file mode 100644 index 4c845db39..000000000 Binary files a/files/27_1723.jpg and /dev/null differ diff --git a/files/27_1723.mp3 b/files/27_1723.mp3 deleted file mode 100644 index 9b38862c2..000000000 Binary files a/files/27_1723.mp3 and /dev/null differ diff --git a/files/27_1723_example.mp3 b/files/27_1723_example.mp3 deleted file mode 100644 index b748ecff1..000000000 Binary files a/files/27_1723_example.mp3 and /dev/null differ diff --git a/files/27_1723_meaning.mp3 b/files/27_1723_meaning.mp3 deleted file mode 100644 index aa0dd4f0e..000000000 Binary files a/files/27_1723_meaning.mp3 and /dev/null differ diff --git a/files/27_1724.jpg b/files/27_1724.jpg deleted file mode 100644 index fe9919423..000000000 Binary files a/files/27_1724.jpg and /dev/null differ diff --git a/files/27_1724.mp3 b/files/27_1724.mp3 deleted file mode 100644 index 5cf6640a7..000000000 Binary files a/files/27_1724.mp3 and /dev/null differ diff --git a/files/27_1724_example.mp3 b/files/27_1724_example.mp3 deleted file mode 100644 index 975f3ad00..000000000 Binary files a/files/27_1724_example.mp3 and /dev/null differ diff --git a/files/27_1724_meaning.mp3 b/files/27_1724_meaning.mp3 deleted file mode 100644 index 91396c1a7..000000000 Binary files a/files/27_1724_meaning.mp3 and /dev/null differ diff --git a/files/27_1725.jpg b/files/27_1725.jpg deleted file mode 100644 index 68b0d73fe..000000000 Binary files a/files/27_1725.jpg and /dev/null differ diff --git a/files/27_1725.mp3 b/files/27_1725.mp3 deleted file mode 100644 index 4e905d88f..000000000 Binary files a/files/27_1725.mp3 and /dev/null differ diff --git a/files/27_1725_example.mp3 b/files/27_1725_example.mp3 deleted file mode 100644 index 451eccc2b..000000000 Binary files a/files/27_1725_example.mp3 and /dev/null differ diff --git a/files/27_1725_meaning.mp3 b/files/27_1725_meaning.mp3 deleted file mode 100644 index adcb47dbd..000000000 Binary files a/files/27_1725_meaning.mp3 and /dev/null differ diff --git a/files/27_1726.jpg b/files/27_1726.jpg deleted file mode 100644 index a99d7b83f..000000000 Binary files a/files/27_1726.jpg and /dev/null differ diff --git a/files/27_1726.mp3 b/files/27_1726.mp3 deleted file mode 100644 index 94ba897a8..000000000 Binary files a/files/27_1726.mp3 and /dev/null differ diff --git a/files/27_1726_example.mp3 b/files/27_1726_example.mp3 deleted file mode 100644 index 3a9da73d7..000000000 Binary files a/files/27_1726_example.mp3 and /dev/null differ diff --git a/files/27_1726_meaning.mp3 b/files/27_1726_meaning.mp3 deleted file mode 100644 index 230da523c..000000000 Binary files a/files/27_1726_meaning.mp3 and /dev/null differ diff --git a/files/27_1727.jpg b/files/27_1727.jpg deleted file mode 100644 index 6418ebc28..000000000 Binary files a/files/27_1727.jpg and /dev/null differ diff --git a/files/27_1727.mp3 b/files/27_1727.mp3 deleted file mode 100644 index 7677a4969..000000000 Binary files a/files/27_1727.mp3 and /dev/null differ diff --git a/files/27_1727_example.mp3 b/files/27_1727_example.mp3 deleted file mode 100644 index 20078107e..000000000 Binary files a/files/27_1727_example.mp3 and /dev/null differ diff --git a/files/27_1727_meaning.mp3 b/files/27_1727_meaning.mp3 deleted file mode 100644 index da104fd08..000000000 Binary files a/files/27_1727_meaning.mp3 and /dev/null differ diff --git a/files/27_1728.jpg b/files/27_1728.jpg deleted file mode 100644 index 057c0801a..000000000 Binary files a/files/27_1728.jpg and /dev/null differ diff --git a/files/27_1728.mp3 b/files/27_1728.mp3 deleted file mode 100644 index 9edf7c85b..000000000 Binary files a/files/27_1728.mp3 and /dev/null differ diff --git a/files/27_1728_example.mp3 b/files/27_1728_example.mp3 deleted file mode 100644 index 29198cf6f..000000000 Binary files a/files/27_1728_example.mp3 and /dev/null differ diff --git a/files/27_1728_meaning.mp3 b/files/27_1728_meaning.mp3 deleted file mode 100644 index feb1f3216..000000000 Binary files a/files/27_1728_meaning.mp3 and /dev/null differ diff --git a/files/27_1729.jpg b/files/27_1729.jpg deleted file mode 100644 index 308097bd0..000000000 Binary files a/files/27_1729.jpg and /dev/null differ diff --git a/files/27_1729.mp3 b/files/27_1729.mp3 deleted file mode 100644 index d6bf297c0..000000000 Binary files a/files/27_1729.mp3 and /dev/null differ diff --git a/files/27_1729_example.mp3 b/files/27_1729_example.mp3 deleted file mode 100644 index 694f916dd..000000000 Binary files a/files/27_1729_example.mp3 and /dev/null differ diff --git a/files/27_1729_meaning.mp3 b/files/27_1729_meaning.mp3 deleted file mode 100644 index e7f3c6daa..000000000 Binary files a/files/27_1729_meaning.mp3 and /dev/null differ diff --git a/files/27_1730.jpg b/files/27_1730.jpg deleted file mode 100644 index 167a7bac5..000000000 Binary files a/files/27_1730.jpg and /dev/null differ diff --git a/files/27_1730.mp3 b/files/27_1730.mp3 deleted file mode 100644 index bfc657561..000000000 Binary files a/files/27_1730.mp3 and /dev/null differ diff --git a/files/27_1730_example.mp3 b/files/27_1730_example.mp3 deleted file mode 100644 index 483ea6882..000000000 Binary files a/files/27_1730_example.mp3 and /dev/null differ diff --git a/files/27_1730_meaning.mp3 b/files/27_1730_meaning.mp3 deleted file mode 100644 index 2dccb4314..000000000 Binary files a/files/27_1730_meaning.mp3 and /dev/null differ diff --git a/files/27_1731.jpg b/files/27_1731.jpg deleted file mode 100644 index c02427fd0..000000000 Binary files a/files/27_1731.jpg and /dev/null differ diff --git a/files/27_1731.mp3 b/files/27_1731.mp3 deleted file mode 100644 index 6aeb220d2..000000000 Binary files a/files/27_1731.mp3 and /dev/null differ diff --git a/files/27_1731_example.mp3 b/files/27_1731_example.mp3 deleted file mode 100644 index 6f086465a..000000000 Binary files a/files/27_1731_example.mp3 and /dev/null differ diff --git a/files/27_1731_meaning.mp3 b/files/27_1731_meaning.mp3 deleted file mode 100644 index 87d0ea83d..000000000 Binary files a/files/27_1731_meaning.mp3 and /dev/null differ diff --git a/files/27_1732.jpg b/files/27_1732.jpg deleted file mode 100644 index f162b1f02..000000000 Binary files a/files/27_1732.jpg and /dev/null differ diff --git a/files/27_1732.mp3 b/files/27_1732.mp3 deleted file mode 100644 index 7004be7df..000000000 Binary files a/files/27_1732.mp3 and /dev/null differ diff --git a/files/27_1732_example.mp3 b/files/27_1732_example.mp3 deleted file mode 100644 index bad7ae123..000000000 Binary files a/files/27_1732_example.mp3 and /dev/null differ diff --git a/files/27_1732_meaning.mp3 b/files/27_1732_meaning.mp3 deleted file mode 100644 index 019b957d0..000000000 Binary files a/files/27_1732_meaning.mp3 and /dev/null differ diff --git a/files/27_1733.jpg b/files/27_1733.jpg deleted file mode 100644 index b12cd5add..000000000 Binary files a/files/27_1733.jpg and /dev/null differ diff --git a/files/27_1733.mp3 b/files/27_1733.mp3 deleted file mode 100644 index 627c5aa8b..000000000 Binary files a/files/27_1733.mp3 and /dev/null differ diff --git a/files/27_1733_example.mp3 b/files/27_1733_example.mp3 deleted file mode 100644 index 14ccb736d..000000000 Binary files a/files/27_1733_example.mp3 and /dev/null differ diff --git a/files/27_1733_meaning.mp3 b/files/27_1733_meaning.mp3 deleted file mode 100644 index ef4085c1b..000000000 Binary files a/files/27_1733_meaning.mp3 and /dev/null differ diff --git a/files/27_1734.jpg b/files/27_1734.jpg deleted file mode 100644 index 76c27310d..000000000 Binary files a/files/27_1734.jpg and /dev/null differ diff --git a/files/27_1734.mp3 b/files/27_1734.mp3 deleted file mode 100644 index a99c79436..000000000 Binary files a/files/27_1734.mp3 and /dev/null differ diff --git a/files/27_1734_example.mp3 b/files/27_1734_example.mp3 deleted file mode 100644 index 975bf4988..000000000 Binary files a/files/27_1734_example.mp3 and /dev/null differ diff --git a/files/27_1734_meaning.mp3 b/files/27_1734_meaning.mp3 deleted file mode 100644 index 186656940..000000000 Binary files a/files/27_1734_meaning.mp3 and /dev/null differ diff --git a/files/27_1735.jpg b/files/27_1735.jpg deleted file mode 100644 index 8a9058a04..000000000 Binary files a/files/27_1735.jpg and /dev/null differ diff --git a/files/27_1735.mp3 b/files/27_1735.mp3 deleted file mode 100644 index 6d4c67095..000000000 Binary files a/files/27_1735.mp3 and /dev/null differ diff --git a/files/27_1735_example.mp3 b/files/27_1735_example.mp3 deleted file mode 100644 index 5f357aa87..000000000 Binary files a/files/27_1735_example.mp3 and /dev/null differ diff --git a/files/27_1735_meaning.mp3 b/files/27_1735_meaning.mp3 deleted file mode 100644 index 3b6e04b11..000000000 Binary files a/files/27_1735_meaning.mp3 and /dev/null differ diff --git a/files/27_1736.jpg b/files/27_1736.jpg deleted file mode 100644 index ca3478014..000000000 Binary files a/files/27_1736.jpg and /dev/null differ diff --git a/files/27_1736.mp3 b/files/27_1736.mp3 deleted file mode 100644 index 9b5146f52..000000000 Binary files a/files/27_1736.mp3 and /dev/null differ diff --git a/files/27_1736_example.mp3 b/files/27_1736_example.mp3 deleted file mode 100644 index 72c8dc5a7..000000000 Binary files a/files/27_1736_example.mp3 and /dev/null differ diff --git a/files/27_1736_meaning.mp3 b/files/27_1736_meaning.mp3 deleted file mode 100644 index 343e45734..000000000 Binary files a/files/27_1736_meaning.mp3 and /dev/null differ diff --git a/files/27_1737.jpg b/files/27_1737.jpg deleted file mode 100644 index daf16be0d..000000000 Binary files a/files/27_1737.jpg and /dev/null differ diff --git a/files/27_1737.mp3 b/files/27_1737.mp3 deleted file mode 100644 index 6325f0c99..000000000 Binary files a/files/27_1737.mp3 and /dev/null differ diff --git a/files/27_1737_example.mp3 b/files/27_1737_example.mp3 deleted file mode 100644 index 7e4afeb4e..000000000 Binary files a/files/27_1737_example.mp3 and /dev/null differ diff --git a/files/27_1737_meaning.mp3 b/files/27_1737_meaning.mp3 deleted file mode 100644 index b716f0bd2..000000000 Binary files a/files/27_1737_meaning.mp3 and /dev/null differ diff --git a/files/27_1738.jpg b/files/27_1738.jpg deleted file mode 100644 index cd7087242..000000000 Binary files a/files/27_1738.jpg and /dev/null differ diff --git a/files/27_1738.mp3 b/files/27_1738.mp3 deleted file mode 100644 index 48489a820..000000000 Binary files a/files/27_1738.mp3 and /dev/null differ diff --git a/files/27_1738_example.mp3 b/files/27_1738_example.mp3 deleted file mode 100644 index 0dee9d6bd..000000000 Binary files a/files/27_1738_example.mp3 and /dev/null differ diff --git a/files/27_1738_meaning.mp3 b/files/27_1738_meaning.mp3 deleted file mode 100644 index 052d1e3ec..000000000 Binary files a/files/27_1738_meaning.mp3 and /dev/null differ diff --git a/files/27_1739.jpg b/files/27_1739.jpg deleted file mode 100644 index 394118cb8..000000000 Binary files a/files/27_1739.jpg and /dev/null differ diff --git a/files/27_1739.mp3 b/files/27_1739.mp3 deleted file mode 100644 index 182b60161..000000000 Binary files a/files/27_1739.mp3 and /dev/null differ diff --git a/files/27_1739_example.mp3 b/files/27_1739_example.mp3 deleted file mode 100644 index c3dbc31ec..000000000 Binary files a/files/27_1739_example.mp3 and /dev/null differ diff --git a/files/27_1739_meaning.mp3 b/files/27_1739_meaning.mp3 deleted file mode 100644 index 37828120a..000000000 Binary files a/files/27_1739_meaning.mp3 and /dev/null differ diff --git a/files/27_1740.jpg b/files/27_1740.jpg deleted file mode 100644 index 0f96408d3..000000000 Binary files a/files/27_1740.jpg and /dev/null differ diff --git a/files/27_1740.mp3 b/files/27_1740.mp3 deleted file mode 100644 index a47d1fe97..000000000 Binary files a/files/27_1740.mp3 and /dev/null differ diff --git a/files/27_1740_example.mp3 b/files/27_1740_example.mp3 deleted file mode 100644 index 9aa13d48e..000000000 Binary files a/files/27_1740_example.mp3 and /dev/null differ diff --git a/files/27_1740_meaning.mp3 b/files/27_1740_meaning.mp3 deleted file mode 100644 index f3140d7f0..000000000 Binary files a/files/27_1740_meaning.mp3 and /dev/null differ diff --git a/files/27_2321.jpg b/files/27_2321.jpg deleted file mode 100644 index 7bad2b0a9..000000000 Binary files a/files/27_2321.jpg and /dev/null differ diff --git a/files/27_2321.mp3 b/files/27_2321.mp3 deleted file mode 100644 index e8682ca3f..000000000 Binary files a/files/27_2321.mp3 and /dev/null differ diff --git a/files/27_2321_example.mp3 b/files/27_2321_example.mp3 deleted file mode 100644 index 97a4d861c..000000000 Binary files a/files/27_2321_example.mp3 and /dev/null differ diff --git a/files/27_2321_meaning.mp3 b/files/27_2321_meaning.mp3 deleted file mode 100644 index 31ca71c70..000000000 Binary files a/files/27_2321_meaning.mp3 and /dev/null differ diff --git a/files/27_2322.jpg b/files/27_2322.jpg deleted file mode 100644 index ca65b1723..000000000 Binary files a/files/27_2322.jpg and /dev/null differ diff --git a/files/27_2322.mp3 b/files/27_2322.mp3 deleted file mode 100644 index d7a5e4cfe..000000000 Binary files a/files/27_2322.mp3 and /dev/null differ diff --git a/files/27_2322_example.mp3 b/files/27_2322_example.mp3 deleted file mode 100644 index 1d33498dc..000000000 Binary files a/files/27_2322_example.mp3 and /dev/null differ diff --git a/files/27_2322_meaning.mp3 b/files/27_2322_meaning.mp3 deleted file mode 100644 index 2aab2c9eb..000000000 Binary files a/files/27_2322_meaning.mp3 and /dev/null differ diff --git a/files/27_2323.jpg b/files/27_2323.jpg deleted file mode 100644 index f0d377afa..000000000 Binary files a/files/27_2323.jpg and /dev/null differ diff --git a/files/27_2323.mp3 b/files/27_2323.mp3 deleted file mode 100644 index bcd899e25..000000000 Binary files a/files/27_2323.mp3 and /dev/null differ diff --git a/files/27_2323_example.mp3 b/files/27_2323_example.mp3 deleted file mode 100644 index b654615bb..000000000 Binary files a/files/27_2323_example.mp3 and /dev/null differ diff --git a/files/27_2323_meaning.mp3 b/files/27_2323_meaning.mp3 deleted file mode 100644 index 0c2f0c8bb..000000000 Binary files a/files/27_2323_meaning.mp3 and /dev/null differ diff --git a/files/27_2324.jpg b/files/27_2324.jpg deleted file mode 100644 index 47dbe8cc4..000000000 Binary files a/files/27_2324.jpg and /dev/null differ diff --git a/files/27_2324.mp3 b/files/27_2324.mp3 deleted file mode 100644 index 4eb499d8d..000000000 Binary files a/files/27_2324.mp3 and /dev/null differ diff --git a/files/27_2324_example.mp3 b/files/27_2324_example.mp3 deleted file mode 100644 index 203b82e17..000000000 Binary files a/files/27_2324_example.mp3 and /dev/null differ diff --git a/files/27_2324_meaning.mp3 b/files/27_2324_meaning.mp3 deleted file mode 100644 index b822365b9..000000000 Binary files a/files/27_2324_meaning.mp3 and /dev/null differ diff --git a/files/27_2325.jpg b/files/27_2325.jpg deleted file mode 100644 index faf279ae6..000000000 Binary files a/files/27_2325.jpg and /dev/null differ diff --git a/files/27_2325.mp3 b/files/27_2325.mp3 deleted file mode 100644 index 6b793ee20..000000000 Binary files a/files/27_2325.mp3 and /dev/null differ diff --git a/files/27_2325_example.mp3 b/files/27_2325_example.mp3 deleted file mode 100644 index 6efd8e398..000000000 Binary files a/files/27_2325_example.mp3 and /dev/null differ diff --git a/files/27_2325_meaning.mp3 b/files/27_2325_meaning.mp3 deleted file mode 100644 index def7d190a..000000000 Binary files a/files/27_2325_meaning.mp3 and /dev/null differ diff --git a/files/27_2326.jpg b/files/27_2326.jpg deleted file mode 100644 index f4ae8e6ff..000000000 Binary files a/files/27_2326.jpg and /dev/null differ diff --git a/files/27_2326.mp3 b/files/27_2326.mp3 deleted file mode 100644 index 42737e64f..000000000 Binary files a/files/27_2326.mp3 and /dev/null differ diff --git a/files/27_2326_example.mp3 b/files/27_2326_example.mp3 deleted file mode 100644 index 9297a52c3..000000000 Binary files a/files/27_2326_example.mp3 and /dev/null differ diff --git a/files/27_2326_meaning.mp3 b/files/27_2326_meaning.mp3 deleted file mode 100644 index bb59cc10c..000000000 Binary files a/files/27_2326_meaning.mp3 and /dev/null differ diff --git a/files/27_2327.jpg b/files/27_2327.jpg deleted file mode 100644 index 517334d59..000000000 Binary files a/files/27_2327.jpg and /dev/null differ diff --git a/files/27_2327.mp3 b/files/27_2327.mp3 deleted file mode 100644 index 4aba0de69..000000000 Binary files a/files/27_2327.mp3 and /dev/null differ diff --git a/files/27_2327_example.mp3 b/files/27_2327_example.mp3 deleted file mode 100644 index 68f947efe..000000000 Binary files a/files/27_2327_example.mp3 and /dev/null differ diff --git a/files/27_2327_meaning.mp3 b/files/27_2327_meaning.mp3 deleted file mode 100644 index fe6e489c7..000000000 Binary files a/files/27_2327_meaning.mp3 and /dev/null differ diff --git a/files/27_2328.jpg b/files/27_2328.jpg deleted file mode 100644 index 31d34918a..000000000 Binary files a/files/27_2328.jpg and /dev/null differ diff --git a/files/27_2328.mp3 b/files/27_2328.mp3 deleted file mode 100644 index 83204553c..000000000 Binary files a/files/27_2328.mp3 and /dev/null differ diff --git a/files/27_2328_example.mp3 b/files/27_2328_example.mp3 deleted file mode 100644 index a7c6ab372..000000000 Binary files a/files/27_2328_example.mp3 and /dev/null differ diff --git a/files/27_2328_meaning.mp3 b/files/27_2328_meaning.mp3 deleted file mode 100644 index 3dea7b619..000000000 Binary files a/files/27_2328_meaning.mp3 and /dev/null differ diff --git a/files/27_2329.jpg b/files/27_2329.jpg deleted file mode 100644 index e08ac3dea..000000000 Binary files a/files/27_2329.jpg and /dev/null differ diff --git a/files/27_2329.mp3 b/files/27_2329.mp3 deleted file mode 100644 index e5fb2dce6..000000000 Binary files a/files/27_2329.mp3 and /dev/null differ diff --git a/files/27_2329_example.mp3 b/files/27_2329_example.mp3 deleted file mode 100644 index db957aaa5..000000000 Binary files a/files/27_2329_example.mp3 and /dev/null differ diff --git a/files/27_2329_meaning.mp3 b/files/27_2329_meaning.mp3 deleted file mode 100644 index 23ba2d236..000000000 Binary files a/files/27_2329_meaning.mp3 and /dev/null differ diff --git a/files/27_2330.jpg b/files/27_2330.jpg deleted file mode 100644 index c2afdbc8c..000000000 Binary files a/files/27_2330.jpg and /dev/null differ diff --git a/files/27_2330.mp3 b/files/27_2330.mp3 deleted file mode 100644 index 01f0799a8..000000000 Binary files a/files/27_2330.mp3 and /dev/null differ diff --git a/files/27_2330_example.mp3 b/files/27_2330_example.mp3 deleted file mode 100644 index 76f74322d..000000000 Binary files a/files/27_2330_example.mp3 and /dev/null differ diff --git a/files/27_2330_meaning.mp3 b/files/27_2330_meaning.mp3 deleted file mode 100644 index 6ffb0f937..000000000 Binary files a/files/27_2330_meaning.mp3 and /dev/null differ diff --git a/files/27_2331.jpg b/files/27_2331.jpg deleted file mode 100644 index 9455c1aef..000000000 Binary files a/files/27_2331.jpg and /dev/null differ diff --git a/files/27_2331.mp3 b/files/27_2331.mp3 deleted file mode 100644 index 77850fafa..000000000 Binary files a/files/27_2331.mp3 and /dev/null differ diff --git a/files/27_2331_example.mp3 b/files/27_2331_example.mp3 deleted file mode 100644 index 72ac8984b..000000000 Binary files a/files/27_2331_example.mp3 and /dev/null differ diff --git a/files/27_2331_meaning.mp3 b/files/27_2331_meaning.mp3 deleted file mode 100644 index 8cb564498..000000000 Binary files a/files/27_2331_meaning.mp3 and /dev/null differ diff --git a/files/27_2332.jpg b/files/27_2332.jpg deleted file mode 100644 index 3a4ab4a25..000000000 Binary files a/files/27_2332.jpg and /dev/null differ diff --git a/files/27_2332.mp3 b/files/27_2332.mp3 deleted file mode 100644 index e0b3968d8..000000000 Binary files a/files/27_2332.mp3 and /dev/null differ diff --git a/files/27_2332_example.mp3 b/files/27_2332_example.mp3 deleted file mode 100644 index 5a51e3281..000000000 Binary files a/files/27_2332_example.mp3 and /dev/null differ diff --git a/files/27_2332_meaning.mp3 b/files/27_2332_meaning.mp3 deleted file mode 100644 index 4ffd33703..000000000 Binary files a/files/27_2332_meaning.mp3 and /dev/null differ diff --git a/files/27_2333.jpg b/files/27_2333.jpg deleted file mode 100644 index 4dea07486..000000000 Binary files a/files/27_2333.jpg and /dev/null differ diff --git a/files/27_2333.mp3 b/files/27_2333.mp3 deleted file mode 100644 index 5ead6399e..000000000 Binary files a/files/27_2333.mp3 and /dev/null differ diff --git a/files/27_2333_example.mp3 b/files/27_2333_example.mp3 deleted file mode 100644 index 980f0b33a..000000000 Binary files a/files/27_2333_example.mp3 and /dev/null differ diff --git a/files/27_2333_meaning.mp3 b/files/27_2333_meaning.mp3 deleted file mode 100644 index 069d76b01..000000000 Binary files a/files/27_2333_meaning.mp3 and /dev/null differ diff --git a/files/27_2334.jpg b/files/27_2334.jpg deleted file mode 100644 index 98c2eff2f..000000000 Binary files a/files/27_2334.jpg and /dev/null differ diff --git a/files/27_2334.mp3 b/files/27_2334.mp3 deleted file mode 100644 index 578fd48fb..000000000 Binary files a/files/27_2334.mp3 and /dev/null differ diff --git a/files/27_2334_example.mp3 b/files/27_2334_example.mp3 deleted file mode 100644 index baf472130..000000000 Binary files a/files/27_2334_example.mp3 and /dev/null differ diff --git a/files/27_2334_meaning.mp3 b/files/27_2334_meaning.mp3 deleted file mode 100644 index 659ec6fdb..000000000 Binary files a/files/27_2334_meaning.mp3 and /dev/null differ diff --git a/files/27_2335.jpg b/files/27_2335.jpg deleted file mode 100644 index fd108bdd1..000000000 Binary files a/files/27_2335.jpg and /dev/null differ diff --git a/files/27_2335.mp3 b/files/27_2335.mp3 deleted file mode 100644 index cded1df52..000000000 Binary files a/files/27_2335.mp3 and /dev/null differ diff --git a/files/27_2335_example.mp3 b/files/27_2335_example.mp3 deleted file mode 100644 index b35999ba9..000000000 Binary files a/files/27_2335_example.mp3 and /dev/null differ diff --git a/files/27_2335_meaning.mp3 b/files/27_2335_meaning.mp3 deleted file mode 100644 index 226f4d937..000000000 Binary files a/files/27_2335_meaning.mp3 and /dev/null differ diff --git a/files/27_2336.jpg b/files/27_2336.jpg deleted file mode 100644 index 5d0a02633..000000000 Binary files a/files/27_2336.jpg and /dev/null differ diff --git a/files/27_2336.mp3 b/files/27_2336.mp3 deleted file mode 100644 index 80db7f48f..000000000 Binary files a/files/27_2336.mp3 and /dev/null differ diff --git a/files/27_2336_example.mp3 b/files/27_2336_example.mp3 deleted file mode 100644 index 04f75eb6e..000000000 Binary files a/files/27_2336_example.mp3 and /dev/null differ diff --git a/files/27_2336_meaning.mp3 b/files/27_2336_meaning.mp3 deleted file mode 100644 index 1f95a9c23..000000000 Binary files a/files/27_2336_meaning.mp3 and /dev/null differ diff --git a/files/27_2337.jpg b/files/27_2337.jpg deleted file mode 100644 index 9834b2479..000000000 Binary files a/files/27_2337.jpg and /dev/null differ diff --git a/files/27_2337.mp3 b/files/27_2337.mp3 deleted file mode 100644 index e50e93414..000000000 Binary files a/files/27_2337.mp3 and /dev/null differ diff --git a/files/27_2337_example.mp3 b/files/27_2337_example.mp3 deleted file mode 100644 index cdfa2c8b9..000000000 Binary files a/files/27_2337_example.mp3 and /dev/null differ diff --git a/files/27_2337_meaning.mp3 b/files/27_2337_meaning.mp3 deleted file mode 100644 index ecb546f50..000000000 Binary files a/files/27_2337_meaning.mp3 and /dev/null differ diff --git a/files/27_2338.jpg b/files/27_2338.jpg deleted file mode 100644 index 1e44bea54..000000000 Binary files a/files/27_2338.jpg and /dev/null differ diff --git a/files/27_2338.mp3 b/files/27_2338.mp3 deleted file mode 100644 index 67c4a327f..000000000 Binary files a/files/27_2338.mp3 and /dev/null differ diff --git a/files/27_2338_example.mp3 b/files/27_2338_example.mp3 deleted file mode 100644 index 31346e7ce..000000000 Binary files a/files/27_2338_example.mp3 and /dev/null differ diff --git a/files/27_2338_meaning.mp3 b/files/27_2338_meaning.mp3 deleted file mode 100644 index eb76fca64..000000000 Binary files a/files/27_2338_meaning.mp3 and /dev/null differ diff --git a/files/27_2339.jpg b/files/27_2339.jpg deleted file mode 100644 index 9ba3043d4..000000000 Binary files a/files/27_2339.jpg and /dev/null differ diff --git a/files/27_2339.mp3 b/files/27_2339.mp3 deleted file mode 100644 index 1e769901b..000000000 Binary files a/files/27_2339.mp3 and /dev/null differ diff --git a/files/27_2339_example.mp3 b/files/27_2339_example.mp3 deleted file mode 100644 index 7c61b381a..000000000 Binary files a/files/27_2339_example.mp3 and /dev/null differ diff --git a/files/27_2339_meaning.mp3 b/files/27_2339_meaning.mp3 deleted file mode 100644 index bd9a5e745..000000000 Binary files a/files/27_2339_meaning.mp3 and /dev/null differ diff --git a/files/27_2340.jpg b/files/27_2340.jpg deleted file mode 100644 index f297e37f1..000000000 Binary files a/files/27_2340.jpg and /dev/null differ diff --git a/files/27_2340.mp3 b/files/27_2340.mp3 deleted file mode 100644 index 38b41b108..000000000 Binary files a/files/27_2340.mp3 and /dev/null differ diff --git a/files/27_2340_example.mp3 b/files/27_2340_example.mp3 deleted file mode 100644 index cbd6eb559..000000000 Binary files a/files/27_2340_example.mp3 and /dev/null differ diff --git a/files/27_2340_meaning.mp3 b/files/27_2340_meaning.mp3 deleted file mode 100644 index 4f3dd3b2c..000000000 Binary files a/files/27_2340_meaning.mp3 and /dev/null differ diff --git a/files/27_2921.jpg b/files/27_2921.jpg deleted file mode 100644 index 828e9ee4b..000000000 Binary files a/files/27_2921.jpg and /dev/null differ diff --git a/files/27_2921.mp3 b/files/27_2921.mp3 deleted file mode 100644 index 0ce8c30df..000000000 Binary files a/files/27_2921.mp3 and /dev/null differ diff --git a/files/27_2921_example.mp3 b/files/27_2921_example.mp3 deleted file mode 100644 index 0919cf49d..000000000 Binary files a/files/27_2921_example.mp3 and /dev/null differ diff --git a/files/27_2921_meaning.mp3 b/files/27_2921_meaning.mp3 deleted file mode 100644 index b58da7eae..000000000 Binary files a/files/27_2921_meaning.mp3 and /dev/null differ diff --git a/files/27_2922.jpg b/files/27_2922.jpg deleted file mode 100644 index 681e25c73..000000000 Binary files a/files/27_2922.jpg and /dev/null differ diff --git a/files/27_2922.mp3 b/files/27_2922.mp3 deleted file mode 100644 index 7daf86a2e..000000000 Binary files a/files/27_2922.mp3 and /dev/null differ diff --git a/files/27_2922_example.mp3 b/files/27_2922_example.mp3 deleted file mode 100644 index e63aa75b1..000000000 Binary files a/files/27_2922_example.mp3 and /dev/null differ diff --git a/files/27_2922_meaning.mp3 b/files/27_2922_meaning.mp3 deleted file mode 100644 index f6b8c4d03..000000000 Binary files a/files/27_2922_meaning.mp3 and /dev/null differ diff --git a/files/27_2923.jpg b/files/27_2923.jpg deleted file mode 100644 index 5a0554ee5..000000000 Binary files a/files/27_2923.jpg and /dev/null differ diff --git a/files/27_2923.mp3 b/files/27_2923.mp3 deleted file mode 100644 index c5776c85e..000000000 Binary files a/files/27_2923.mp3 and /dev/null differ diff --git a/files/27_2923_example.mp3 b/files/27_2923_example.mp3 deleted file mode 100644 index 221d3b96c..000000000 Binary files a/files/27_2923_example.mp3 and /dev/null differ diff --git a/files/27_2923_meaning.mp3 b/files/27_2923_meaning.mp3 deleted file mode 100644 index 0680bab4c..000000000 Binary files a/files/27_2923_meaning.mp3 and /dev/null differ diff --git a/files/27_2924.jpg b/files/27_2924.jpg deleted file mode 100644 index ac9b5e677..000000000 Binary files a/files/27_2924.jpg and /dev/null differ diff --git a/files/27_2924.mp3 b/files/27_2924.mp3 deleted file mode 100644 index d99ced199..000000000 Binary files a/files/27_2924.mp3 and /dev/null differ diff --git a/files/27_2924_example.mp3 b/files/27_2924_example.mp3 deleted file mode 100644 index 7fb47a832..000000000 Binary files a/files/27_2924_example.mp3 and /dev/null differ diff --git a/files/27_2924_meaning.mp3 b/files/27_2924_meaning.mp3 deleted file mode 100644 index 0aa0f582e..000000000 Binary files a/files/27_2924_meaning.mp3 and /dev/null differ diff --git a/files/27_2925.jpg b/files/27_2925.jpg deleted file mode 100644 index e38e4ad24..000000000 Binary files a/files/27_2925.jpg and /dev/null differ diff --git a/files/27_2925.mp3 b/files/27_2925.mp3 deleted file mode 100644 index c7086bdb3..000000000 Binary files a/files/27_2925.mp3 and /dev/null differ diff --git a/files/27_2925_example.mp3 b/files/27_2925_example.mp3 deleted file mode 100644 index b1f534d68..000000000 Binary files a/files/27_2925_example.mp3 and /dev/null differ diff --git a/files/27_2925_meaning.mp3 b/files/27_2925_meaning.mp3 deleted file mode 100644 index d26730341..000000000 Binary files a/files/27_2925_meaning.mp3 and /dev/null differ diff --git a/files/27_2926.jpg b/files/27_2926.jpg deleted file mode 100644 index cb367a7cb..000000000 Binary files a/files/27_2926.jpg and /dev/null differ diff --git a/files/27_2926.mp3 b/files/27_2926.mp3 deleted file mode 100644 index 85f61a3f0..000000000 Binary files a/files/27_2926.mp3 and /dev/null differ diff --git a/files/27_2926_example.mp3 b/files/27_2926_example.mp3 deleted file mode 100644 index 60ffd06c9..000000000 Binary files a/files/27_2926_example.mp3 and /dev/null differ diff --git a/files/27_2926_meaning.mp3 b/files/27_2926_meaning.mp3 deleted file mode 100644 index 55f818cdb..000000000 Binary files a/files/27_2926_meaning.mp3 and /dev/null differ diff --git a/files/27_2927.jpg b/files/27_2927.jpg deleted file mode 100644 index 727cbedd2..000000000 Binary files a/files/27_2927.jpg and /dev/null differ diff --git a/files/27_2927.mp3 b/files/27_2927.mp3 deleted file mode 100644 index 3b82e0f65..000000000 Binary files a/files/27_2927.mp3 and /dev/null differ diff --git a/files/27_2927_example.mp3 b/files/27_2927_example.mp3 deleted file mode 100644 index dff3f48a1..000000000 Binary files a/files/27_2927_example.mp3 and /dev/null differ diff --git a/files/27_2927_meaning.mp3 b/files/27_2927_meaning.mp3 deleted file mode 100644 index d98043fbc..000000000 Binary files a/files/27_2927_meaning.mp3 and /dev/null differ diff --git a/files/27_2928.jpg b/files/27_2928.jpg deleted file mode 100644 index 155b54629..000000000 Binary files a/files/27_2928.jpg and /dev/null differ diff --git a/files/27_2928.mp3 b/files/27_2928.mp3 deleted file mode 100644 index 24d85b437..000000000 Binary files a/files/27_2928.mp3 and /dev/null differ diff --git a/files/27_2928_example.mp3 b/files/27_2928_example.mp3 deleted file mode 100644 index 96d153951..000000000 Binary files a/files/27_2928_example.mp3 and /dev/null differ diff --git a/files/27_2928_meaning.mp3 b/files/27_2928_meaning.mp3 deleted file mode 100644 index e5328a92b..000000000 Binary files a/files/27_2928_meaning.mp3 and /dev/null differ diff --git a/files/27_2929.jpg b/files/27_2929.jpg deleted file mode 100644 index 5fa1ffef0..000000000 Binary files a/files/27_2929.jpg and /dev/null differ diff --git a/files/27_2929.mp3 b/files/27_2929.mp3 deleted file mode 100644 index bdf1982f9..000000000 Binary files a/files/27_2929.mp3 and /dev/null differ diff --git a/files/27_2929_example.mp3 b/files/27_2929_example.mp3 deleted file mode 100644 index 949ae3d56..000000000 Binary files a/files/27_2929_example.mp3 and /dev/null differ diff --git a/files/27_2929_meaning.mp3 b/files/27_2929_meaning.mp3 deleted file mode 100644 index 0e6455f91..000000000 Binary files a/files/27_2929_meaning.mp3 and /dev/null differ diff --git a/files/27_2930.jpg b/files/27_2930.jpg deleted file mode 100644 index b06e1f40b..000000000 Binary files a/files/27_2930.jpg and /dev/null differ diff --git a/files/27_2930.mp3 b/files/27_2930.mp3 deleted file mode 100644 index 6b4dd51e2..000000000 Binary files a/files/27_2930.mp3 and /dev/null differ diff --git a/files/27_2930_example.mp3 b/files/27_2930_example.mp3 deleted file mode 100644 index fd29a8278..000000000 Binary files a/files/27_2930_example.mp3 and /dev/null differ diff --git a/files/27_2930_meaning.mp3 b/files/27_2930_meaning.mp3 deleted file mode 100644 index 9c867fd88..000000000 Binary files a/files/27_2930_meaning.mp3 and /dev/null differ diff --git a/files/27_2931.jpg b/files/27_2931.jpg deleted file mode 100644 index 1611d2033..000000000 Binary files a/files/27_2931.jpg and /dev/null differ diff --git a/files/27_2931.mp3 b/files/27_2931.mp3 deleted file mode 100644 index baf747daf..000000000 Binary files a/files/27_2931.mp3 and /dev/null differ diff --git a/files/27_2931_example.mp3 b/files/27_2931_example.mp3 deleted file mode 100644 index e51b07983..000000000 Binary files a/files/27_2931_example.mp3 and /dev/null differ diff --git a/files/27_2931_meaning.mp3 b/files/27_2931_meaning.mp3 deleted file mode 100644 index 9ef742f14..000000000 Binary files a/files/27_2931_meaning.mp3 and /dev/null differ diff --git a/files/27_2932.jpg b/files/27_2932.jpg deleted file mode 100644 index cf7992194..000000000 Binary files a/files/27_2932.jpg and /dev/null differ diff --git a/files/27_2932.mp3 b/files/27_2932.mp3 deleted file mode 100644 index 869e32bbb..000000000 Binary files a/files/27_2932.mp3 and /dev/null differ diff --git a/files/27_2932_example.mp3 b/files/27_2932_example.mp3 deleted file mode 100644 index 8c1bb2093..000000000 Binary files a/files/27_2932_example.mp3 and /dev/null differ diff --git a/files/27_2932_meaning.mp3 b/files/27_2932_meaning.mp3 deleted file mode 100644 index 770174b77..000000000 Binary files a/files/27_2932_meaning.mp3 and /dev/null differ diff --git a/files/27_2933.jpg b/files/27_2933.jpg deleted file mode 100644 index 996b7eeae..000000000 Binary files a/files/27_2933.jpg and /dev/null differ diff --git a/files/27_2933.mp3 b/files/27_2933.mp3 deleted file mode 100644 index 16b0eaebf..000000000 Binary files a/files/27_2933.mp3 and /dev/null differ diff --git a/files/27_2933_example.mp3 b/files/27_2933_example.mp3 deleted file mode 100644 index 2131beba0..000000000 Binary files a/files/27_2933_example.mp3 and /dev/null differ diff --git a/files/27_2933_meaning.mp3 b/files/27_2933_meaning.mp3 deleted file mode 100644 index bf5939301..000000000 Binary files a/files/27_2933_meaning.mp3 and /dev/null differ diff --git a/files/27_2934.jpg b/files/27_2934.jpg deleted file mode 100644 index 08156d31e..000000000 Binary files a/files/27_2934.jpg and /dev/null differ diff --git a/files/27_2934.mp3 b/files/27_2934.mp3 deleted file mode 100644 index 6546812f1..000000000 Binary files a/files/27_2934.mp3 and /dev/null differ diff --git a/files/27_2934_example.mp3 b/files/27_2934_example.mp3 deleted file mode 100644 index 0728bf086..000000000 Binary files a/files/27_2934_example.mp3 and /dev/null differ diff --git a/files/27_2934_meaning.mp3 b/files/27_2934_meaning.mp3 deleted file mode 100644 index 5b68169e1..000000000 Binary files a/files/27_2934_meaning.mp3 and /dev/null differ diff --git a/files/27_2935.jpg b/files/27_2935.jpg deleted file mode 100644 index 89de0857a..000000000 Binary files a/files/27_2935.jpg and /dev/null differ diff --git a/files/27_2935.mp3 b/files/27_2935.mp3 deleted file mode 100644 index 55295a7cd..000000000 Binary files a/files/27_2935.mp3 and /dev/null differ diff --git a/files/27_2935_example.mp3 b/files/27_2935_example.mp3 deleted file mode 100644 index c2b12fc22..000000000 Binary files a/files/27_2935_example.mp3 and /dev/null differ diff --git a/files/27_2935_meaning.mp3 b/files/27_2935_meaning.mp3 deleted file mode 100644 index de3d1ba69..000000000 Binary files a/files/27_2935_meaning.mp3 and /dev/null differ diff --git a/files/27_2936.jpg b/files/27_2936.jpg deleted file mode 100644 index a78ecae31..000000000 Binary files a/files/27_2936.jpg and /dev/null differ diff --git a/files/27_2936.mp3 b/files/27_2936.mp3 deleted file mode 100644 index 3d8a5d466..000000000 Binary files a/files/27_2936.mp3 and /dev/null differ diff --git a/files/27_2936_example.mp3 b/files/27_2936_example.mp3 deleted file mode 100644 index 1a595def0..000000000 Binary files a/files/27_2936_example.mp3 and /dev/null differ diff --git a/files/27_2936_meaning.mp3 b/files/27_2936_meaning.mp3 deleted file mode 100644 index 597b99684..000000000 Binary files a/files/27_2936_meaning.mp3 and /dev/null differ diff --git a/files/27_2937.jpg b/files/27_2937.jpg deleted file mode 100644 index cea6134bb..000000000 Binary files a/files/27_2937.jpg and /dev/null differ diff --git a/files/27_2937.mp3 b/files/27_2937.mp3 deleted file mode 100644 index 4b520c63b..000000000 Binary files a/files/27_2937.mp3 and /dev/null differ diff --git a/files/27_2937_example.mp3 b/files/27_2937_example.mp3 deleted file mode 100644 index fc5f76449..000000000 Binary files a/files/27_2937_example.mp3 and /dev/null differ diff --git a/files/27_2937_meaning.mp3 b/files/27_2937_meaning.mp3 deleted file mode 100644 index e14e7a53d..000000000 Binary files a/files/27_2937_meaning.mp3 and /dev/null differ diff --git a/files/27_2938.jpg b/files/27_2938.jpg deleted file mode 100644 index 45580a7eb..000000000 Binary files a/files/27_2938.jpg and /dev/null differ diff --git a/files/27_2938.mp3 b/files/27_2938.mp3 deleted file mode 100644 index ebbd26279..000000000 Binary files a/files/27_2938.mp3 and /dev/null differ diff --git a/files/27_2938_example.mp3 b/files/27_2938_example.mp3 deleted file mode 100644 index 85f36fa77..000000000 Binary files a/files/27_2938_example.mp3 and /dev/null differ diff --git a/files/27_2938_meaning.mp3 b/files/27_2938_meaning.mp3 deleted file mode 100644 index f5dab3677..000000000 Binary files a/files/27_2938_meaning.mp3 and /dev/null differ diff --git a/files/27_2939.jpg b/files/27_2939.jpg deleted file mode 100644 index f39ea0ef9..000000000 Binary files a/files/27_2939.jpg and /dev/null differ diff --git a/files/27_2939.mp3 b/files/27_2939.mp3 deleted file mode 100644 index 061122ff4..000000000 Binary files a/files/27_2939.mp3 and /dev/null differ diff --git a/files/27_2939_example.mp3 b/files/27_2939_example.mp3 deleted file mode 100644 index 23fe68590..000000000 Binary files a/files/27_2939_example.mp3 and /dev/null differ diff --git a/files/27_2939_meaning.mp3 b/files/27_2939_meaning.mp3 deleted file mode 100644 index a9c4ea57d..000000000 Binary files a/files/27_2939_meaning.mp3 and /dev/null differ diff --git a/files/27_2940.jpg b/files/27_2940.jpg deleted file mode 100644 index ea44694c0..000000000 Binary files a/files/27_2940.jpg and /dev/null differ diff --git a/files/27_2940.mp3 b/files/27_2940.mp3 deleted file mode 100644 index 3d1ba26e6..000000000 Binary files a/files/27_2940.mp3 and /dev/null differ diff --git a/files/27_2940_example.mp3 b/files/27_2940_example.mp3 deleted file mode 100644 index a9f1b204a..000000000 Binary files a/files/27_2940_example.mp3 and /dev/null differ diff --git a/files/27_2940_meaning.mp3 b/files/27_2940_meaning.mp3 deleted file mode 100644 index 557a62bd4..000000000 Binary files a/files/27_2940_meaning.mp3 and /dev/null differ diff --git a/files/27_3521.jpg b/files/27_3521.jpg deleted file mode 100644 index 8c0e07204..000000000 Binary files a/files/27_3521.jpg and /dev/null differ diff --git a/files/27_3521.mp3 b/files/27_3521.mp3 deleted file mode 100644 index b0b302c3c..000000000 Binary files a/files/27_3521.mp3 and /dev/null differ diff --git a/files/27_3521_example.mp3 b/files/27_3521_example.mp3 deleted file mode 100644 index d2fdd0c0e..000000000 Binary files a/files/27_3521_example.mp3 and /dev/null differ diff --git a/files/27_3521_meaning.mp3 b/files/27_3521_meaning.mp3 deleted file mode 100644 index 677f49aa1..000000000 Binary files a/files/27_3521_meaning.mp3 and /dev/null differ diff --git a/files/27_3522.jpg b/files/27_3522.jpg deleted file mode 100644 index 34b783c54..000000000 Binary files a/files/27_3522.jpg and /dev/null differ diff --git a/files/27_3522.mp3 b/files/27_3522.mp3 deleted file mode 100644 index 24b2de814..000000000 Binary files a/files/27_3522.mp3 and /dev/null differ diff --git a/files/27_3522_example.mp3 b/files/27_3522_example.mp3 deleted file mode 100644 index 6d6fb9fcb..000000000 Binary files a/files/27_3522_example.mp3 and /dev/null differ diff --git a/files/27_3522_meaning.mp3 b/files/27_3522_meaning.mp3 deleted file mode 100644 index e69577d6e..000000000 Binary files a/files/27_3522_meaning.mp3 and /dev/null differ diff --git a/files/27_3523.jpg b/files/27_3523.jpg deleted file mode 100644 index c355d458d..000000000 Binary files a/files/27_3523.jpg and /dev/null differ diff --git a/files/27_3523.mp3 b/files/27_3523.mp3 deleted file mode 100644 index 0dfe6ff31..000000000 Binary files a/files/27_3523.mp3 and /dev/null differ diff --git a/files/27_3523_example.mp3 b/files/27_3523_example.mp3 deleted file mode 100644 index e0dc3fa76..000000000 Binary files a/files/27_3523_example.mp3 and /dev/null differ diff --git a/files/27_3523_meaning.mp3 b/files/27_3523_meaning.mp3 deleted file mode 100644 index 5d9602f71..000000000 Binary files a/files/27_3523_meaning.mp3 and /dev/null differ diff --git a/files/27_3524.jpg b/files/27_3524.jpg deleted file mode 100644 index 66701ec67..000000000 Binary files a/files/27_3524.jpg and /dev/null differ diff --git a/files/27_3524.mp3 b/files/27_3524.mp3 deleted file mode 100644 index d8d67265b..000000000 Binary files a/files/27_3524.mp3 and /dev/null differ diff --git a/files/27_3524_example.mp3 b/files/27_3524_example.mp3 deleted file mode 100644 index 3297d3b67..000000000 Binary files a/files/27_3524_example.mp3 and /dev/null differ diff --git a/files/27_3524_meaning.mp3 b/files/27_3524_meaning.mp3 deleted file mode 100644 index b337db5bf..000000000 Binary files a/files/27_3524_meaning.mp3 and /dev/null differ diff --git a/files/27_3525.jpg b/files/27_3525.jpg deleted file mode 100644 index 5dbe98ac0..000000000 Binary files a/files/27_3525.jpg and /dev/null differ diff --git a/files/27_3525.mp3 b/files/27_3525.mp3 deleted file mode 100644 index da9024482..000000000 Binary files a/files/27_3525.mp3 and /dev/null differ diff --git a/files/27_3525_example.mp3 b/files/27_3525_example.mp3 deleted file mode 100644 index 0bdd6f709..000000000 Binary files a/files/27_3525_example.mp3 and /dev/null differ diff --git a/files/27_3525_meaning.mp3 b/files/27_3525_meaning.mp3 deleted file mode 100644 index 620f5317c..000000000 Binary files a/files/27_3525_meaning.mp3 and /dev/null differ diff --git a/files/27_3526.jpg b/files/27_3526.jpg deleted file mode 100644 index 5bea7b189..000000000 Binary files a/files/27_3526.jpg and /dev/null differ diff --git a/files/27_3526.mp3 b/files/27_3526.mp3 deleted file mode 100644 index bec155c93..000000000 Binary files a/files/27_3526.mp3 and /dev/null differ diff --git a/files/27_3526_example.mp3 b/files/27_3526_example.mp3 deleted file mode 100644 index 1d4ace5ea..000000000 Binary files a/files/27_3526_example.mp3 and /dev/null differ diff --git a/files/27_3526_meaning.mp3 b/files/27_3526_meaning.mp3 deleted file mode 100644 index c77d46f2f..000000000 Binary files a/files/27_3526_meaning.mp3 and /dev/null differ diff --git a/files/27_3527.jpg b/files/27_3527.jpg deleted file mode 100644 index e1558ba12..000000000 Binary files a/files/27_3527.jpg and /dev/null differ diff --git a/files/27_3527.mp3 b/files/27_3527.mp3 deleted file mode 100644 index e47b1d648..000000000 Binary files a/files/27_3527.mp3 and /dev/null differ diff --git a/files/27_3527_example.mp3 b/files/27_3527_example.mp3 deleted file mode 100644 index eb40045d8..000000000 Binary files a/files/27_3527_example.mp3 and /dev/null differ diff --git a/files/27_3527_meaning.mp3 b/files/27_3527_meaning.mp3 deleted file mode 100644 index 13d09a8a7..000000000 Binary files a/files/27_3527_meaning.mp3 and /dev/null differ diff --git a/files/27_3528.jpg b/files/27_3528.jpg deleted file mode 100644 index 4751eb5e4..000000000 Binary files a/files/27_3528.jpg and /dev/null differ diff --git a/files/27_3528.mp3 b/files/27_3528.mp3 deleted file mode 100644 index 1d7077f2b..000000000 Binary files a/files/27_3528.mp3 and /dev/null differ diff --git a/files/27_3528_example.mp3 b/files/27_3528_example.mp3 deleted file mode 100644 index cc468cca6..000000000 Binary files a/files/27_3528_example.mp3 and /dev/null differ diff --git a/files/27_3528_meaning.mp3 b/files/27_3528_meaning.mp3 deleted file mode 100644 index b5684ae17..000000000 Binary files a/files/27_3528_meaning.mp3 and /dev/null differ diff --git a/files/27_3529.jpg b/files/27_3529.jpg deleted file mode 100644 index 64652da1a..000000000 Binary files a/files/27_3529.jpg and /dev/null differ diff --git a/files/27_3529.mp3 b/files/27_3529.mp3 deleted file mode 100644 index 5fa2b6855..000000000 Binary files a/files/27_3529.mp3 and /dev/null differ diff --git a/files/27_3529_example.mp3 b/files/27_3529_example.mp3 deleted file mode 100644 index 72ac72708..000000000 Binary files a/files/27_3529_example.mp3 and /dev/null differ diff --git a/files/27_3529_meaning.mp3 b/files/27_3529_meaning.mp3 deleted file mode 100644 index 7a493b989..000000000 Binary files a/files/27_3529_meaning.mp3 and /dev/null differ diff --git a/files/27_3530.jpg b/files/27_3530.jpg deleted file mode 100644 index fa9150c44..000000000 Binary files a/files/27_3530.jpg and /dev/null differ diff --git a/files/27_3530.mp3 b/files/27_3530.mp3 deleted file mode 100644 index b4b1d6944..000000000 Binary files a/files/27_3530.mp3 and /dev/null differ diff --git a/files/27_3530_example.mp3 b/files/27_3530_example.mp3 deleted file mode 100644 index d47defcd0..000000000 Binary files a/files/27_3530_example.mp3 and /dev/null differ diff --git a/files/27_3530_meaning.mp3 b/files/27_3530_meaning.mp3 deleted file mode 100644 index 0b7bdd23e..000000000 Binary files a/files/27_3530_meaning.mp3 and /dev/null differ diff --git a/files/27_3531.jpg b/files/27_3531.jpg deleted file mode 100644 index 67a3fcbb2..000000000 Binary files a/files/27_3531.jpg and /dev/null differ diff --git a/files/27_3531.mp3 b/files/27_3531.mp3 deleted file mode 100644 index a10a4ebf0..000000000 Binary files a/files/27_3531.mp3 and /dev/null differ diff --git a/files/27_3531_example.mp3 b/files/27_3531_example.mp3 deleted file mode 100644 index c4108c974..000000000 Binary files a/files/27_3531_example.mp3 and /dev/null differ diff --git a/files/27_3531_meaning.mp3 b/files/27_3531_meaning.mp3 deleted file mode 100644 index df88abd64..000000000 Binary files a/files/27_3531_meaning.mp3 and /dev/null differ diff --git a/files/27_3532.jpg b/files/27_3532.jpg deleted file mode 100644 index 123192a76..000000000 Binary files a/files/27_3532.jpg and /dev/null differ diff --git a/files/27_3532.mp3 b/files/27_3532.mp3 deleted file mode 100644 index ed2839d61..000000000 Binary files a/files/27_3532.mp3 and /dev/null differ diff --git a/files/27_3532_example.mp3 b/files/27_3532_example.mp3 deleted file mode 100644 index 5b93812a9..000000000 Binary files a/files/27_3532_example.mp3 and /dev/null differ diff --git a/files/27_3532_meaning.mp3 b/files/27_3532_meaning.mp3 deleted file mode 100644 index 8e2a63275..000000000 Binary files a/files/27_3532_meaning.mp3 and /dev/null differ diff --git a/files/27_3533.jpg b/files/27_3533.jpg deleted file mode 100644 index b780c765d..000000000 Binary files a/files/27_3533.jpg and /dev/null differ diff --git a/files/27_3533.mp3 b/files/27_3533.mp3 deleted file mode 100644 index 06886e19a..000000000 Binary files a/files/27_3533.mp3 and /dev/null differ diff --git a/files/27_3533_example.mp3 b/files/27_3533_example.mp3 deleted file mode 100644 index 0eb73ce44..000000000 Binary files a/files/27_3533_example.mp3 and /dev/null differ diff --git a/files/27_3533_meaning.mp3 b/files/27_3533_meaning.mp3 deleted file mode 100644 index 46507b02f..000000000 Binary files a/files/27_3533_meaning.mp3 and /dev/null differ diff --git a/files/27_3534.jpg b/files/27_3534.jpg deleted file mode 100644 index 1c6fb67ae..000000000 Binary files a/files/27_3534.jpg and /dev/null differ diff --git a/files/27_3534.mp3 b/files/27_3534.mp3 deleted file mode 100644 index 524c685af..000000000 Binary files a/files/27_3534.mp3 and /dev/null differ diff --git a/files/27_3534_example.mp3 b/files/27_3534_example.mp3 deleted file mode 100644 index b79d45d0f..000000000 Binary files a/files/27_3534_example.mp3 and /dev/null differ diff --git a/files/27_3534_meaning.mp3 b/files/27_3534_meaning.mp3 deleted file mode 100644 index ce76d5980..000000000 Binary files a/files/27_3534_meaning.mp3 and /dev/null differ diff --git a/files/27_3535.jpg b/files/27_3535.jpg deleted file mode 100644 index e957cef2c..000000000 Binary files a/files/27_3535.jpg and /dev/null differ diff --git a/files/27_3535.mp3 b/files/27_3535.mp3 deleted file mode 100644 index c3806679c..000000000 Binary files a/files/27_3535.mp3 and /dev/null differ diff --git a/files/27_3535_example.mp3 b/files/27_3535_example.mp3 deleted file mode 100644 index 04cb1af0f..000000000 Binary files a/files/27_3535_example.mp3 and /dev/null differ diff --git a/files/27_3535_meaning.mp3 b/files/27_3535_meaning.mp3 deleted file mode 100644 index 823d31626..000000000 Binary files a/files/27_3535_meaning.mp3 and /dev/null differ diff --git a/files/27_3536.jpg b/files/27_3536.jpg deleted file mode 100644 index f86aaedc9..000000000 Binary files a/files/27_3536.jpg and /dev/null differ diff --git a/files/27_3536.mp3 b/files/27_3536.mp3 deleted file mode 100644 index be5e06e7f..000000000 Binary files a/files/27_3536.mp3 and /dev/null differ diff --git a/files/27_3536_example.mp3 b/files/27_3536_example.mp3 deleted file mode 100644 index 6306fc202..000000000 Binary files a/files/27_3536_example.mp3 and /dev/null differ diff --git a/files/27_3536_meaning.mp3 b/files/27_3536_meaning.mp3 deleted file mode 100644 index 049f6b874..000000000 Binary files a/files/27_3536_meaning.mp3 and /dev/null differ diff --git a/files/27_3537.jpg b/files/27_3537.jpg deleted file mode 100644 index 84c61e0e1..000000000 Binary files a/files/27_3537.jpg and /dev/null differ diff --git a/files/27_3537.mp3 b/files/27_3537.mp3 deleted file mode 100644 index d8ed560ac..000000000 Binary files a/files/27_3537.mp3 and /dev/null differ diff --git a/files/27_3537_example.mp3 b/files/27_3537_example.mp3 deleted file mode 100644 index f657c21fd..000000000 Binary files a/files/27_3537_example.mp3 and /dev/null differ diff --git a/files/27_3537_meaning.mp3 b/files/27_3537_meaning.mp3 deleted file mode 100644 index ab4b1e852..000000000 Binary files a/files/27_3537_meaning.mp3 and /dev/null differ diff --git a/files/27_3538.jpg b/files/27_3538.jpg deleted file mode 100644 index 4c33e8f8c..000000000 Binary files a/files/27_3538.jpg and /dev/null differ diff --git a/files/27_3538.mp3 b/files/27_3538.mp3 deleted file mode 100644 index ddd33156e..000000000 Binary files a/files/27_3538.mp3 and /dev/null differ diff --git a/files/27_3538_example.mp3 b/files/27_3538_example.mp3 deleted file mode 100644 index b13f4e6be..000000000 Binary files a/files/27_3538_example.mp3 and /dev/null differ diff --git a/files/27_3538_meaning.mp3 b/files/27_3538_meaning.mp3 deleted file mode 100644 index bef5c18d9..000000000 Binary files a/files/27_3538_meaning.mp3 and /dev/null differ diff --git a/files/27_3539.jpg b/files/27_3539.jpg deleted file mode 100644 index 7ef1ef482..000000000 Binary files a/files/27_3539.jpg and /dev/null differ diff --git a/files/27_3539.mp3 b/files/27_3539.mp3 deleted file mode 100644 index dd8bd5612..000000000 Binary files a/files/27_3539.mp3 and /dev/null differ diff --git a/files/27_3539_example.mp3 b/files/27_3539_example.mp3 deleted file mode 100644 index 0b4b2e6fb..000000000 Binary files a/files/27_3539_example.mp3 and /dev/null differ diff --git a/files/27_3539_meaning.mp3 b/files/27_3539_meaning.mp3 deleted file mode 100644 index 3d0bcae9d..000000000 Binary files a/files/27_3539_meaning.mp3 and /dev/null differ diff --git a/files/27_3540.jpg b/files/27_3540.jpg deleted file mode 100644 index 036187083..000000000 Binary files a/files/27_3540.jpg and /dev/null differ diff --git a/files/27_3540.mp3 b/files/27_3540.mp3 deleted file mode 100644 index 1c5fc7e51..000000000 Binary files a/files/27_3540.mp3 and /dev/null differ diff --git a/files/27_3540_example.mp3 b/files/27_3540_example.mp3 deleted file mode 100644 index e40d37d3a..000000000 Binary files a/files/27_3540_example.mp3 and /dev/null differ diff --git a/files/27_3540_meaning.mp3 b/files/27_3540_meaning.mp3 deleted file mode 100644 index e03f72a53..000000000 Binary files a/files/27_3540_meaning.mp3 and /dev/null differ diff --git a/files/28_0541.jpg b/files/28_0541.jpg deleted file mode 100644 index a4db66eeb..000000000 Binary files a/files/28_0541.jpg and /dev/null differ diff --git a/files/28_0541.mp3 b/files/28_0541.mp3 deleted file mode 100644 index 114720c47..000000000 Binary files a/files/28_0541.mp3 and /dev/null differ diff --git a/files/28_0541_example.mp3 b/files/28_0541_example.mp3 deleted file mode 100644 index 4a1d87a45..000000000 Binary files a/files/28_0541_example.mp3 and /dev/null differ diff --git a/files/28_0541_meaning.mp3 b/files/28_0541_meaning.mp3 deleted file mode 100644 index 0d398ddf0..000000000 Binary files a/files/28_0541_meaning.mp3 and /dev/null differ diff --git a/files/28_0542.jpg b/files/28_0542.jpg deleted file mode 100644 index b02956fa8..000000000 Binary files a/files/28_0542.jpg and /dev/null differ diff --git a/files/28_0542.mp3 b/files/28_0542.mp3 deleted file mode 100644 index cb9976ade..000000000 Binary files a/files/28_0542.mp3 and /dev/null differ diff --git a/files/28_0542_example.mp3 b/files/28_0542_example.mp3 deleted file mode 100644 index 1d7202eda..000000000 Binary files a/files/28_0542_example.mp3 and /dev/null differ diff --git a/files/28_0542_meaning.mp3 b/files/28_0542_meaning.mp3 deleted file mode 100644 index d2d922a45..000000000 Binary files a/files/28_0542_meaning.mp3 and /dev/null differ diff --git a/files/28_0543.jpg b/files/28_0543.jpg deleted file mode 100644 index 0a3b2515e..000000000 Binary files a/files/28_0543.jpg and /dev/null differ diff --git a/files/28_0543.mp3 b/files/28_0543.mp3 deleted file mode 100644 index 3cc69a26c..000000000 Binary files a/files/28_0543.mp3 and /dev/null differ diff --git a/files/28_0543_example.mp3 b/files/28_0543_example.mp3 deleted file mode 100644 index a9d39464d..000000000 Binary files a/files/28_0543_example.mp3 and /dev/null differ diff --git a/files/28_0543_meaning.mp3 b/files/28_0543_meaning.mp3 deleted file mode 100644 index ea4b5a8c1..000000000 Binary files a/files/28_0543_meaning.mp3 and /dev/null differ diff --git a/files/28_0544.jpg b/files/28_0544.jpg deleted file mode 100644 index 2920165a0..000000000 Binary files a/files/28_0544.jpg and /dev/null differ diff --git a/files/28_0544.mp3 b/files/28_0544.mp3 deleted file mode 100644 index 97633d7a6..000000000 Binary files a/files/28_0544.mp3 and /dev/null differ diff --git a/files/28_0544_example.mp3 b/files/28_0544_example.mp3 deleted file mode 100644 index ada51826f..000000000 Binary files a/files/28_0544_example.mp3 and /dev/null differ diff --git a/files/28_0544_meaning.mp3 b/files/28_0544_meaning.mp3 deleted file mode 100644 index bf2100769..000000000 Binary files a/files/28_0544_meaning.mp3 and /dev/null differ diff --git a/files/28_0545.jpg b/files/28_0545.jpg deleted file mode 100644 index 82d81a187..000000000 Binary files a/files/28_0545.jpg and /dev/null differ diff --git a/files/28_0545.mp3 b/files/28_0545.mp3 deleted file mode 100644 index 2f7b36c71..000000000 Binary files a/files/28_0545.mp3 and /dev/null differ diff --git a/files/28_0545_example.mp3 b/files/28_0545_example.mp3 deleted file mode 100644 index 912f2b731..000000000 Binary files a/files/28_0545_example.mp3 and /dev/null differ diff --git a/files/28_0545_meaning.mp3 b/files/28_0545_meaning.mp3 deleted file mode 100644 index 01154537e..000000000 Binary files a/files/28_0545_meaning.mp3 and /dev/null differ diff --git a/files/28_0546.jpg b/files/28_0546.jpg deleted file mode 100644 index 39e49aebc..000000000 Binary files a/files/28_0546.jpg and /dev/null differ diff --git a/files/28_0546.mp3 b/files/28_0546.mp3 deleted file mode 100644 index c954c7131..000000000 Binary files a/files/28_0546.mp3 and /dev/null differ diff --git a/files/28_0546_example.mp3 b/files/28_0546_example.mp3 deleted file mode 100644 index a846c4ea2..000000000 Binary files a/files/28_0546_example.mp3 and /dev/null differ diff --git a/files/28_0546_meaning.mp3 b/files/28_0546_meaning.mp3 deleted file mode 100644 index 1fafd7a65..000000000 Binary files a/files/28_0546_meaning.mp3 and /dev/null differ diff --git a/files/28_0547.jpg b/files/28_0547.jpg deleted file mode 100644 index bb9c6d3f8..000000000 Binary files a/files/28_0547.jpg and /dev/null differ diff --git a/files/28_0547.mp3 b/files/28_0547.mp3 deleted file mode 100644 index 5b99bfb5d..000000000 Binary files a/files/28_0547.mp3 and /dev/null differ diff --git a/files/28_0547_example.mp3 b/files/28_0547_example.mp3 deleted file mode 100644 index 47ae75b16..000000000 Binary files a/files/28_0547_example.mp3 and /dev/null differ diff --git a/files/28_0547_meaning.mp3 b/files/28_0547_meaning.mp3 deleted file mode 100644 index 388b789fb..000000000 Binary files a/files/28_0547_meaning.mp3 and /dev/null differ diff --git a/files/28_0548.jpg b/files/28_0548.jpg deleted file mode 100644 index dbb57f144..000000000 Binary files a/files/28_0548.jpg and /dev/null differ diff --git a/files/28_0548.mp3 b/files/28_0548.mp3 deleted file mode 100644 index adc977d69..000000000 Binary files a/files/28_0548.mp3 and /dev/null differ diff --git a/files/28_0548_example.mp3 b/files/28_0548_example.mp3 deleted file mode 100644 index 76ce5904f..000000000 Binary files a/files/28_0548_example.mp3 and /dev/null differ diff --git a/files/28_0548_meaning.mp3 b/files/28_0548_meaning.mp3 deleted file mode 100644 index e655e81e4..000000000 Binary files a/files/28_0548_meaning.mp3 and /dev/null differ diff --git a/files/28_0549.jpg b/files/28_0549.jpg deleted file mode 100644 index f447aeac6..000000000 Binary files a/files/28_0549.jpg and /dev/null differ diff --git a/files/28_0549.mp3 b/files/28_0549.mp3 deleted file mode 100644 index 201db6ed4..000000000 Binary files a/files/28_0549.mp3 and /dev/null differ diff --git a/files/28_0549_example.mp3 b/files/28_0549_example.mp3 deleted file mode 100644 index fc5302aca..000000000 Binary files a/files/28_0549_example.mp3 and /dev/null differ diff --git a/files/28_0549_meaning.mp3 b/files/28_0549_meaning.mp3 deleted file mode 100644 index 412e6fbaa..000000000 Binary files a/files/28_0549_meaning.mp3 and /dev/null differ diff --git a/files/28_0550.jpg b/files/28_0550.jpg deleted file mode 100644 index 8ad4f0a29..000000000 Binary files a/files/28_0550.jpg and /dev/null differ diff --git a/files/28_0550.mp3 b/files/28_0550.mp3 deleted file mode 100644 index 794a7d63b..000000000 Binary files a/files/28_0550.mp3 and /dev/null differ diff --git a/files/28_0550_example.mp3 b/files/28_0550_example.mp3 deleted file mode 100644 index cf97b43af..000000000 Binary files a/files/28_0550_example.mp3 and /dev/null differ diff --git a/files/28_0550_meaning.mp3 b/files/28_0550_meaning.mp3 deleted file mode 100644 index 5aafb97a0..000000000 Binary files a/files/28_0550_meaning.mp3 and /dev/null differ diff --git a/files/28_0551.jpg b/files/28_0551.jpg deleted file mode 100644 index d47e0ccf5..000000000 Binary files a/files/28_0551.jpg and /dev/null differ diff --git a/files/28_0551.mp3 b/files/28_0551.mp3 deleted file mode 100644 index a56ddf3a1..000000000 Binary files a/files/28_0551.mp3 and /dev/null differ diff --git a/files/28_0551_example.mp3 b/files/28_0551_example.mp3 deleted file mode 100644 index 77a63a797..000000000 Binary files a/files/28_0551_example.mp3 and /dev/null differ diff --git a/files/28_0551_meaning.mp3 b/files/28_0551_meaning.mp3 deleted file mode 100644 index 3107daa2b..000000000 Binary files a/files/28_0551_meaning.mp3 and /dev/null differ diff --git a/files/28_0552.jpg b/files/28_0552.jpg deleted file mode 100644 index 9420b344e..000000000 Binary files a/files/28_0552.jpg and /dev/null differ diff --git a/files/28_0552.mp3 b/files/28_0552.mp3 deleted file mode 100644 index a72667435..000000000 Binary files a/files/28_0552.mp3 and /dev/null differ diff --git a/files/28_0552_example.mp3 b/files/28_0552_example.mp3 deleted file mode 100644 index bbaa03111..000000000 Binary files a/files/28_0552_example.mp3 and /dev/null differ diff --git a/files/28_0552_meaning.mp3 b/files/28_0552_meaning.mp3 deleted file mode 100644 index 145c11991..000000000 Binary files a/files/28_0552_meaning.mp3 and /dev/null differ diff --git a/files/28_0553.jpg b/files/28_0553.jpg deleted file mode 100644 index c8c76eaa3..000000000 Binary files a/files/28_0553.jpg and /dev/null differ diff --git a/files/28_0553.mp3 b/files/28_0553.mp3 deleted file mode 100644 index 372dac955..000000000 Binary files a/files/28_0553.mp3 and /dev/null differ diff --git a/files/28_0553_example.mp3 b/files/28_0553_example.mp3 deleted file mode 100644 index c8669e1bc..000000000 Binary files a/files/28_0553_example.mp3 and /dev/null differ diff --git a/files/28_0553_meaning.mp3 b/files/28_0553_meaning.mp3 deleted file mode 100644 index 6d1e95fb0..000000000 Binary files a/files/28_0553_meaning.mp3 and /dev/null differ diff --git a/files/28_0554.jpg b/files/28_0554.jpg deleted file mode 100644 index a7e8c8422..000000000 Binary files a/files/28_0554.jpg and /dev/null differ diff --git a/files/28_0554.mp3 b/files/28_0554.mp3 deleted file mode 100644 index 774584d86..000000000 Binary files a/files/28_0554.mp3 and /dev/null differ diff --git a/files/28_0554_example.mp3 b/files/28_0554_example.mp3 deleted file mode 100644 index 03f93cb1c..000000000 Binary files a/files/28_0554_example.mp3 and /dev/null differ diff --git a/files/28_0554_meaning.mp3 b/files/28_0554_meaning.mp3 deleted file mode 100644 index 70f0f29f7..000000000 Binary files a/files/28_0554_meaning.mp3 and /dev/null differ diff --git a/files/28_0555.jpg b/files/28_0555.jpg deleted file mode 100644 index 98e6190f4..000000000 Binary files a/files/28_0555.jpg and /dev/null differ diff --git a/files/28_0555.mp3 b/files/28_0555.mp3 deleted file mode 100644 index fbf088450..000000000 Binary files a/files/28_0555.mp3 and /dev/null differ diff --git a/files/28_0555_example.mp3 b/files/28_0555_example.mp3 deleted file mode 100644 index 97aeb21af..000000000 Binary files a/files/28_0555_example.mp3 and /dev/null differ diff --git a/files/28_0555_meaning.mp3 b/files/28_0555_meaning.mp3 deleted file mode 100644 index fa9ec20bc..000000000 Binary files a/files/28_0555_meaning.mp3 and /dev/null differ diff --git a/files/28_0556.jpg b/files/28_0556.jpg deleted file mode 100644 index 0a25d2892..000000000 Binary files a/files/28_0556.jpg and /dev/null differ diff --git a/files/28_0556.mp3 b/files/28_0556.mp3 deleted file mode 100644 index d87ee577f..000000000 Binary files a/files/28_0556.mp3 and /dev/null differ diff --git a/files/28_0556_example.mp3 b/files/28_0556_example.mp3 deleted file mode 100644 index 1d275d745..000000000 Binary files a/files/28_0556_example.mp3 and /dev/null differ diff --git a/files/28_0556_meaning.mp3 b/files/28_0556_meaning.mp3 deleted file mode 100644 index df2ef7287..000000000 Binary files a/files/28_0556_meaning.mp3 and /dev/null differ diff --git a/files/28_0557.jpg b/files/28_0557.jpg deleted file mode 100644 index acfe0a687..000000000 Binary files a/files/28_0557.jpg and /dev/null differ diff --git a/files/28_0557.mp3 b/files/28_0557.mp3 deleted file mode 100644 index 3f5455a7a..000000000 Binary files a/files/28_0557.mp3 and /dev/null differ diff --git a/files/28_0557_example.mp3 b/files/28_0557_example.mp3 deleted file mode 100644 index e32246d2e..000000000 Binary files a/files/28_0557_example.mp3 and /dev/null differ diff --git a/files/28_0557_meaning.mp3 b/files/28_0557_meaning.mp3 deleted file mode 100644 index 17bb66668..000000000 Binary files a/files/28_0557_meaning.mp3 and /dev/null differ diff --git a/files/28_0558.jpg b/files/28_0558.jpg deleted file mode 100644 index 1de615677..000000000 Binary files a/files/28_0558.jpg and /dev/null differ diff --git a/files/28_0558.mp3 b/files/28_0558.mp3 deleted file mode 100644 index ccf561478..000000000 Binary files a/files/28_0558.mp3 and /dev/null differ diff --git a/files/28_0558_example.mp3 b/files/28_0558_example.mp3 deleted file mode 100644 index 46506aa19..000000000 Binary files a/files/28_0558_example.mp3 and /dev/null differ diff --git a/files/28_0558_meaning.mp3 b/files/28_0558_meaning.mp3 deleted file mode 100644 index 84e44fbd3..000000000 Binary files a/files/28_0558_meaning.mp3 and /dev/null differ diff --git a/files/28_0559.jpg b/files/28_0559.jpg deleted file mode 100644 index dbc50a53a..000000000 Binary files a/files/28_0559.jpg and /dev/null differ diff --git a/files/28_0559.mp3 b/files/28_0559.mp3 deleted file mode 100644 index 5868ddaa7..000000000 Binary files a/files/28_0559.mp3 and /dev/null differ diff --git a/files/28_0559_example.mp3 b/files/28_0559_example.mp3 deleted file mode 100644 index 5bcd1e6e0..000000000 Binary files a/files/28_0559_example.mp3 and /dev/null differ diff --git a/files/28_0559_meaning.mp3 b/files/28_0559_meaning.mp3 deleted file mode 100644 index ff5cd4cc1..000000000 Binary files a/files/28_0559_meaning.mp3 and /dev/null differ diff --git a/files/28_0560.jpg b/files/28_0560.jpg deleted file mode 100644 index de9987843..000000000 Binary files a/files/28_0560.jpg and /dev/null differ diff --git a/files/28_0560.mp3 b/files/28_0560.mp3 deleted file mode 100644 index 7579e1ecc..000000000 Binary files a/files/28_0560.mp3 and /dev/null differ diff --git a/files/28_0560_example.mp3 b/files/28_0560_example.mp3 deleted file mode 100644 index 93a22767e..000000000 Binary files a/files/28_0560_example.mp3 and /dev/null differ diff --git a/files/28_0560_meaning.mp3 b/files/28_0560_meaning.mp3 deleted file mode 100644 index fd95bafa3..000000000 Binary files a/files/28_0560_meaning.mp3 and /dev/null differ diff --git a/files/28_1141.jpg b/files/28_1141.jpg deleted file mode 100644 index 1b1bd8f29..000000000 Binary files a/files/28_1141.jpg and /dev/null differ diff --git a/files/28_1141.mp3 b/files/28_1141.mp3 deleted file mode 100644 index 7190a0238..000000000 Binary files a/files/28_1141.mp3 and /dev/null differ diff --git a/files/28_1141_example.mp3 b/files/28_1141_example.mp3 deleted file mode 100644 index 72c57c47b..000000000 Binary files a/files/28_1141_example.mp3 and /dev/null differ diff --git a/files/28_1141_meaning.mp3 b/files/28_1141_meaning.mp3 deleted file mode 100644 index 5cbcecbb3..000000000 Binary files a/files/28_1141_meaning.mp3 and /dev/null differ diff --git a/files/28_1142.jpg b/files/28_1142.jpg deleted file mode 100644 index b29421ee9..000000000 Binary files a/files/28_1142.jpg and /dev/null differ diff --git a/files/28_1142.mp3 b/files/28_1142.mp3 deleted file mode 100644 index 07e10529a..000000000 Binary files a/files/28_1142.mp3 and /dev/null differ diff --git a/files/28_1142_example.mp3 b/files/28_1142_example.mp3 deleted file mode 100644 index 293049b9f..000000000 Binary files a/files/28_1142_example.mp3 and /dev/null differ diff --git a/files/28_1142_meaning.mp3 b/files/28_1142_meaning.mp3 deleted file mode 100644 index d6d35ef08..000000000 Binary files a/files/28_1142_meaning.mp3 and /dev/null differ diff --git a/files/28_1143.jpg b/files/28_1143.jpg deleted file mode 100644 index fd192f952..000000000 Binary files a/files/28_1143.jpg and /dev/null differ diff --git a/files/28_1143.mp3 b/files/28_1143.mp3 deleted file mode 100644 index 65826f2c0..000000000 Binary files a/files/28_1143.mp3 and /dev/null differ diff --git a/files/28_1143_example.mp3 b/files/28_1143_example.mp3 deleted file mode 100644 index 5bc3a2f6c..000000000 Binary files a/files/28_1143_example.mp3 and /dev/null differ diff --git a/files/28_1143_meaning.mp3 b/files/28_1143_meaning.mp3 deleted file mode 100644 index f87f33aad..000000000 Binary files a/files/28_1143_meaning.mp3 and /dev/null differ diff --git a/files/28_1144.jpg b/files/28_1144.jpg deleted file mode 100644 index 9fa5ce620..000000000 Binary files a/files/28_1144.jpg and /dev/null differ diff --git a/files/28_1144.mp3 b/files/28_1144.mp3 deleted file mode 100644 index eb63aabc2..000000000 Binary files a/files/28_1144.mp3 and /dev/null differ diff --git a/files/28_1144_example.mp3 b/files/28_1144_example.mp3 deleted file mode 100644 index de8609e45..000000000 Binary files a/files/28_1144_example.mp3 and /dev/null differ diff --git a/files/28_1144_meaning.mp3 b/files/28_1144_meaning.mp3 deleted file mode 100644 index 49b6a3f0e..000000000 Binary files a/files/28_1144_meaning.mp3 and /dev/null differ diff --git a/files/28_1145.jpg b/files/28_1145.jpg deleted file mode 100644 index c6605dd8c..000000000 Binary files a/files/28_1145.jpg and /dev/null differ diff --git a/files/28_1145.mp3 b/files/28_1145.mp3 deleted file mode 100644 index 0831e1065..000000000 Binary files a/files/28_1145.mp3 and /dev/null differ diff --git a/files/28_1145_example.mp3 b/files/28_1145_example.mp3 deleted file mode 100644 index 1380c8791..000000000 Binary files a/files/28_1145_example.mp3 and /dev/null differ diff --git a/files/28_1145_meaning.mp3 b/files/28_1145_meaning.mp3 deleted file mode 100644 index 6b65e3114..000000000 Binary files a/files/28_1145_meaning.mp3 and /dev/null differ diff --git a/files/28_1146.jpg b/files/28_1146.jpg deleted file mode 100644 index 21972e700..000000000 Binary files a/files/28_1146.jpg and /dev/null differ diff --git a/files/28_1146.mp3 b/files/28_1146.mp3 deleted file mode 100644 index e397367c5..000000000 Binary files a/files/28_1146.mp3 and /dev/null differ diff --git a/files/28_1146_example.mp3 b/files/28_1146_example.mp3 deleted file mode 100644 index 0dd5c83fe..000000000 Binary files a/files/28_1146_example.mp3 and /dev/null differ diff --git a/files/28_1146_meaning.mp3 b/files/28_1146_meaning.mp3 deleted file mode 100644 index 84853a846..000000000 Binary files a/files/28_1146_meaning.mp3 and /dev/null differ diff --git a/files/28_1147.jpg b/files/28_1147.jpg deleted file mode 100644 index 019f39ea4..000000000 Binary files a/files/28_1147.jpg and /dev/null differ diff --git a/files/28_1147.mp3 b/files/28_1147.mp3 deleted file mode 100644 index 822ecb020..000000000 Binary files a/files/28_1147.mp3 and /dev/null differ diff --git a/files/28_1147_example.mp3 b/files/28_1147_example.mp3 deleted file mode 100644 index 063400949..000000000 Binary files a/files/28_1147_example.mp3 and /dev/null differ diff --git a/files/28_1147_meaning.mp3 b/files/28_1147_meaning.mp3 deleted file mode 100644 index 356ec2715..000000000 Binary files a/files/28_1147_meaning.mp3 and /dev/null differ diff --git a/files/28_1148.jpg b/files/28_1148.jpg deleted file mode 100644 index cfa2e0083..000000000 Binary files a/files/28_1148.jpg and /dev/null differ diff --git a/files/28_1148.mp3 b/files/28_1148.mp3 deleted file mode 100644 index cb0c1243d..000000000 Binary files a/files/28_1148.mp3 and /dev/null differ diff --git a/files/28_1148_example.mp3 b/files/28_1148_example.mp3 deleted file mode 100644 index d75cd3a34..000000000 Binary files a/files/28_1148_example.mp3 and /dev/null differ diff --git a/files/28_1148_meaning.mp3 b/files/28_1148_meaning.mp3 deleted file mode 100644 index d1cfa46f5..000000000 Binary files a/files/28_1148_meaning.mp3 and /dev/null differ diff --git a/files/28_1149.jpg b/files/28_1149.jpg deleted file mode 100644 index 2a9bd93ee..000000000 Binary files a/files/28_1149.jpg and /dev/null differ diff --git a/files/28_1149.mp3 b/files/28_1149.mp3 deleted file mode 100644 index 9d1316a71..000000000 Binary files a/files/28_1149.mp3 and /dev/null differ diff --git a/files/28_1149_example.mp3 b/files/28_1149_example.mp3 deleted file mode 100644 index 57934f4fa..000000000 Binary files a/files/28_1149_example.mp3 and /dev/null differ diff --git a/files/28_1149_meaning.mp3 b/files/28_1149_meaning.mp3 deleted file mode 100644 index cb8317550..000000000 Binary files a/files/28_1149_meaning.mp3 and /dev/null differ diff --git a/files/28_1150.jpg b/files/28_1150.jpg deleted file mode 100644 index 436e75f46..000000000 Binary files a/files/28_1150.jpg and /dev/null differ diff --git a/files/28_1150.mp3 b/files/28_1150.mp3 deleted file mode 100644 index d4263e601..000000000 Binary files a/files/28_1150.mp3 and /dev/null differ diff --git a/files/28_1150_example.mp3 b/files/28_1150_example.mp3 deleted file mode 100644 index 33022c95d..000000000 Binary files a/files/28_1150_example.mp3 and /dev/null differ diff --git a/files/28_1150_meaning.mp3 b/files/28_1150_meaning.mp3 deleted file mode 100644 index f400b3349..000000000 Binary files a/files/28_1150_meaning.mp3 and /dev/null differ diff --git a/files/28_1151.jpg b/files/28_1151.jpg deleted file mode 100644 index d04ed5f52..000000000 Binary files a/files/28_1151.jpg and /dev/null differ diff --git a/files/28_1151.mp3 b/files/28_1151.mp3 deleted file mode 100644 index 9acb16e8b..000000000 Binary files a/files/28_1151.mp3 and /dev/null differ diff --git a/files/28_1151_example.mp3 b/files/28_1151_example.mp3 deleted file mode 100644 index 51b303b81..000000000 Binary files a/files/28_1151_example.mp3 and /dev/null differ diff --git a/files/28_1151_meaning.mp3 b/files/28_1151_meaning.mp3 deleted file mode 100644 index a9dfaa899..000000000 Binary files a/files/28_1151_meaning.mp3 and /dev/null differ diff --git a/files/28_1152.jpg b/files/28_1152.jpg deleted file mode 100644 index 680ecdc03..000000000 Binary files a/files/28_1152.jpg and /dev/null differ diff --git a/files/28_1152.mp3 b/files/28_1152.mp3 deleted file mode 100644 index 2fca1df86..000000000 Binary files a/files/28_1152.mp3 and /dev/null differ diff --git a/files/28_1152_example.mp3 b/files/28_1152_example.mp3 deleted file mode 100644 index b2b22c169..000000000 Binary files a/files/28_1152_example.mp3 and /dev/null differ diff --git a/files/28_1152_meaning.mp3 b/files/28_1152_meaning.mp3 deleted file mode 100644 index f50b7c38d..000000000 Binary files a/files/28_1152_meaning.mp3 and /dev/null differ diff --git a/files/28_1153.jpg b/files/28_1153.jpg deleted file mode 100644 index 584fdc23a..000000000 Binary files a/files/28_1153.jpg and /dev/null differ diff --git a/files/28_1153.mp3 b/files/28_1153.mp3 deleted file mode 100644 index 913709ec7..000000000 Binary files a/files/28_1153.mp3 and /dev/null differ diff --git a/files/28_1153_example.mp3 b/files/28_1153_example.mp3 deleted file mode 100644 index fc0564696..000000000 Binary files a/files/28_1153_example.mp3 and /dev/null differ diff --git a/files/28_1153_meaning.mp3 b/files/28_1153_meaning.mp3 deleted file mode 100644 index cbfaadc5c..000000000 Binary files a/files/28_1153_meaning.mp3 and /dev/null differ diff --git a/files/28_1154.jpg b/files/28_1154.jpg deleted file mode 100644 index e88633ed2..000000000 Binary files a/files/28_1154.jpg and /dev/null differ diff --git a/files/28_1154.mp3 b/files/28_1154.mp3 deleted file mode 100644 index 9d4bb36a0..000000000 Binary files a/files/28_1154.mp3 and /dev/null differ diff --git a/files/28_1154_example.mp3 b/files/28_1154_example.mp3 deleted file mode 100644 index 6cc6f5a15..000000000 Binary files a/files/28_1154_example.mp3 and /dev/null differ diff --git a/files/28_1154_meaning.mp3 b/files/28_1154_meaning.mp3 deleted file mode 100644 index e249d4137..000000000 Binary files a/files/28_1154_meaning.mp3 and /dev/null differ diff --git a/files/28_1155.jpg b/files/28_1155.jpg deleted file mode 100644 index 4319f5c88..000000000 Binary files a/files/28_1155.jpg and /dev/null differ diff --git a/files/28_1155.mp3 b/files/28_1155.mp3 deleted file mode 100644 index 02150c96b..000000000 Binary files a/files/28_1155.mp3 and /dev/null differ diff --git a/files/28_1155_example.mp3 b/files/28_1155_example.mp3 deleted file mode 100644 index 7dda3738b..000000000 Binary files a/files/28_1155_example.mp3 and /dev/null differ diff --git a/files/28_1155_meaning.mp3 b/files/28_1155_meaning.mp3 deleted file mode 100644 index 97b3b5eb3..000000000 Binary files a/files/28_1155_meaning.mp3 and /dev/null differ diff --git a/files/28_1156.jpg b/files/28_1156.jpg deleted file mode 100644 index 526ea3265..000000000 Binary files a/files/28_1156.jpg and /dev/null differ diff --git a/files/28_1156.mp3 b/files/28_1156.mp3 deleted file mode 100644 index 8fdc65964..000000000 Binary files a/files/28_1156.mp3 and /dev/null differ diff --git a/files/28_1156_example.mp3 b/files/28_1156_example.mp3 deleted file mode 100644 index 969c3e1bd..000000000 Binary files a/files/28_1156_example.mp3 and /dev/null differ diff --git a/files/28_1156_meaning.mp3 b/files/28_1156_meaning.mp3 deleted file mode 100644 index d1802ea4e..000000000 Binary files a/files/28_1156_meaning.mp3 and /dev/null differ diff --git a/files/28_1157.jpg b/files/28_1157.jpg deleted file mode 100644 index 3da57dcce..000000000 Binary files a/files/28_1157.jpg and /dev/null differ diff --git a/files/28_1157.mp3 b/files/28_1157.mp3 deleted file mode 100644 index 38fd5a793..000000000 Binary files a/files/28_1157.mp3 and /dev/null differ diff --git a/files/28_1157_example.mp3 b/files/28_1157_example.mp3 deleted file mode 100644 index 8d827a1b3..000000000 Binary files a/files/28_1157_example.mp3 and /dev/null differ diff --git a/files/28_1157_meaning.mp3 b/files/28_1157_meaning.mp3 deleted file mode 100644 index 3e805bb6f..000000000 Binary files a/files/28_1157_meaning.mp3 and /dev/null differ diff --git a/files/28_1158.jpg b/files/28_1158.jpg deleted file mode 100644 index 665397dac..000000000 Binary files a/files/28_1158.jpg and /dev/null differ diff --git a/files/28_1158.mp3 b/files/28_1158.mp3 deleted file mode 100644 index 7560a9079..000000000 Binary files a/files/28_1158.mp3 and /dev/null differ diff --git a/files/28_1158_example.mp3 b/files/28_1158_example.mp3 deleted file mode 100644 index 68cca3a8b..000000000 Binary files a/files/28_1158_example.mp3 and /dev/null differ diff --git a/files/28_1158_meaning.mp3 b/files/28_1158_meaning.mp3 deleted file mode 100644 index 386581723..000000000 Binary files a/files/28_1158_meaning.mp3 and /dev/null differ diff --git a/files/28_1159.jpg b/files/28_1159.jpg deleted file mode 100644 index e317b6544..000000000 Binary files a/files/28_1159.jpg and /dev/null differ diff --git a/files/28_1159.mp3 b/files/28_1159.mp3 deleted file mode 100644 index 08a106503..000000000 Binary files a/files/28_1159.mp3 and /dev/null differ diff --git a/files/28_1159_example.mp3 b/files/28_1159_example.mp3 deleted file mode 100644 index c18a5965a..000000000 Binary files a/files/28_1159_example.mp3 and /dev/null differ diff --git a/files/28_1159_meaning.mp3 b/files/28_1159_meaning.mp3 deleted file mode 100644 index c05eb1052..000000000 Binary files a/files/28_1159_meaning.mp3 and /dev/null differ diff --git a/files/28_1160.jpg b/files/28_1160.jpg deleted file mode 100644 index 25108c915..000000000 Binary files a/files/28_1160.jpg and /dev/null differ diff --git a/files/28_1160.mp3 b/files/28_1160.mp3 deleted file mode 100644 index f5f216a98..000000000 Binary files a/files/28_1160.mp3 and /dev/null differ diff --git a/files/28_1160_example.mp3 b/files/28_1160_example.mp3 deleted file mode 100644 index a57a39453..000000000 Binary files a/files/28_1160_example.mp3 and /dev/null differ diff --git a/files/28_1160_meaning.mp3 b/files/28_1160_meaning.mp3 deleted file mode 100644 index 899fb09c3..000000000 Binary files a/files/28_1160_meaning.mp3 and /dev/null differ diff --git a/files/28_1741.jpg b/files/28_1741.jpg deleted file mode 100644 index 4543e9b7c..000000000 Binary files a/files/28_1741.jpg and /dev/null differ diff --git a/files/28_1741.mp3 b/files/28_1741.mp3 deleted file mode 100644 index c5b92b16b..000000000 Binary files a/files/28_1741.mp3 and /dev/null differ diff --git a/files/28_1741_example.mp3 b/files/28_1741_example.mp3 deleted file mode 100644 index e0e5ef20c..000000000 Binary files a/files/28_1741_example.mp3 and /dev/null differ diff --git a/files/28_1741_meaning.mp3 b/files/28_1741_meaning.mp3 deleted file mode 100644 index 6a680cd10..000000000 Binary files a/files/28_1741_meaning.mp3 and /dev/null differ diff --git a/files/28_1742.jpg b/files/28_1742.jpg deleted file mode 100644 index 261b2c3aa..000000000 Binary files a/files/28_1742.jpg and /dev/null differ diff --git a/files/28_1742.mp3 b/files/28_1742.mp3 deleted file mode 100644 index 1778a029d..000000000 Binary files a/files/28_1742.mp3 and /dev/null differ diff --git a/files/28_1742_example.mp3 b/files/28_1742_example.mp3 deleted file mode 100644 index d983be85f..000000000 Binary files a/files/28_1742_example.mp3 and /dev/null differ diff --git a/files/28_1742_meaning.mp3 b/files/28_1742_meaning.mp3 deleted file mode 100644 index d346dc2b3..000000000 Binary files a/files/28_1742_meaning.mp3 and /dev/null differ diff --git a/files/28_1743.jpg b/files/28_1743.jpg deleted file mode 100644 index 413410c79..000000000 Binary files a/files/28_1743.jpg and /dev/null differ diff --git a/files/28_1743.mp3 b/files/28_1743.mp3 deleted file mode 100644 index 70a374e47..000000000 Binary files a/files/28_1743.mp3 and /dev/null differ diff --git a/files/28_1743_example.mp3 b/files/28_1743_example.mp3 deleted file mode 100644 index 00e225cf8..000000000 Binary files a/files/28_1743_example.mp3 and /dev/null differ diff --git a/files/28_1743_meaning.mp3 b/files/28_1743_meaning.mp3 deleted file mode 100644 index f2b478c86..000000000 Binary files a/files/28_1743_meaning.mp3 and /dev/null differ diff --git a/files/28_1744.jpg b/files/28_1744.jpg deleted file mode 100644 index 1ebccd261..000000000 Binary files a/files/28_1744.jpg and /dev/null differ diff --git a/files/28_1744.mp3 b/files/28_1744.mp3 deleted file mode 100644 index 665c37750..000000000 Binary files a/files/28_1744.mp3 and /dev/null differ diff --git a/files/28_1744_example.mp3 b/files/28_1744_example.mp3 deleted file mode 100644 index 90944c2da..000000000 Binary files a/files/28_1744_example.mp3 and /dev/null differ diff --git a/files/28_1744_meaning.mp3 b/files/28_1744_meaning.mp3 deleted file mode 100644 index a4356d867..000000000 Binary files a/files/28_1744_meaning.mp3 and /dev/null differ diff --git a/files/28_1745.jpg b/files/28_1745.jpg deleted file mode 100644 index 5cdaacfc7..000000000 Binary files a/files/28_1745.jpg and /dev/null differ diff --git a/files/28_1745.mp3 b/files/28_1745.mp3 deleted file mode 100644 index d6547789b..000000000 Binary files a/files/28_1745.mp3 and /dev/null differ diff --git a/files/28_1745_example.mp3 b/files/28_1745_example.mp3 deleted file mode 100644 index a93abad5d..000000000 Binary files a/files/28_1745_example.mp3 and /dev/null differ diff --git a/files/28_1745_meaning.mp3 b/files/28_1745_meaning.mp3 deleted file mode 100644 index 797272993..000000000 Binary files a/files/28_1745_meaning.mp3 and /dev/null differ diff --git a/files/28_1746.jpg b/files/28_1746.jpg deleted file mode 100644 index 6fc2ac20f..000000000 Binary files a/files/28_1746.jpg and /dev/null differ diff --git a/files/28_1746.mp3 b/files/28_1746.mp3 deleted file mode 100644 index 65781d76f..000000000 Binary files a/files/28_1746.mp3 and /dev/null differ diff --git a/files/28_1746_example.mp3 b/files/28_1746_example.mp3 deleted file mode 100644 index 332f18030..000000000 Binary files a/files/28_1746_example.mp3 and /dev/null differ diff --git a/files/28_1746_meaning.mp3 b/files/28_1746_meaning.mp3 deleted file mode 100644 index 26cafc220..000000000 Binary files a/files/28_1746_meaning.mp3 and /dev/null differ diff --git a/files/28_1747.jpg b/files/28_1747.jpg deleted file mode 100644 index 0036f1a83..000000000 Binary files a/files/28_1747.jpg and /dev/null differ diff --git a/files/28_1747.mp3 b/files/28_1747.mp3 deleted file mode 100644 index 8f3cc23d7..000000000 Binary files a/files/28_1747.mp3 and /dev/null differ diff --git a/files/28_1747_example.mp3 b/files/28_1747_example.mp3 deleted file mode 100644 index ca9aacdba..000000000 Binary files a/files/28_1747_example.mp3 and /dev/null differ diff --git a/files/28_1747_meaning.mp3 b/files/28_1747_meaning.mp3 deleted file mode 100644 index a4b8e02b1..000000000 Binary files a/files/28_1747_meaning.mp3 and /dev/null differ diff --git a/files/28_1748.jpg b/files/28_1748.jpg deleted file mode 100644 index 7900b9d40..000000000 Binary files a/files/28_1748.jpg and /dev/null differ diff --git a/files/28_1748.mp3 b/files/28_1748.mp3 deleted file mode 100644 index d9371fd37..000000000 Binary files a/files/28_1748.mp3 and /dev/null differ diff --git a/files/28_1748_example.mp3 b/files/28_1748_example.mp3 deleted file mode 100644 index df31f9518..000000000 Binary files a/files/28_1748_example.mp3 and /dev/null differ diff --git a/files/28_1748_meaning.mp3 b/files/28_1748_meaning.mp3 deleted file mode 100644 index 7e356eb39..000000000 Binary files a/files/28_1748_meaning.mp3 and /dev/null differ diff --git a/files/28_1749.jpg b/files/28_1749.jpg deleted file mode 100644 index a1ff4f45b..000000000 Binary files a/files/28_1749.jpg and /dev/null differ diff --git a/files/28_1749.mp3 b/files/28_1749.mp3 deleted file mode 100644 index f1bf8442a..000000000 Binary files a/files/28_1749.mp3 and /dev/null differ diff --git a/files/28_1749_example.mp3 b/files/28_1749_example.mp3 deleted file mode 100644 index 874926358..000000000 Binary files a/files/28_1749_example.mp3 and /dev/null differ diff --git a/files/28_1749_meaning.mp3 b/files/28_1749_meaning.mp3 deleted file mode 100644 index ed0e0b492..000000000 Binary files a/files/28_1749_meaning.mp3 and /dev/null differ diff --git a/files/28_1750.jpg b/files/28_1750.jpg deleted file mode 100644 index 4764390c7..000000000 Binary files a/files/28_1750.jpg and /dev/null differ diff --git a/files/28_1750.mp3 b/files/28_1750.mp3 deleted file mode 100644 index 6a1f62199..000000000 Binary files a/files/28_1750.mp3 and /dev/null differ diff --git a/files/28_1750_example.mp3 b/files/28_1750_example.mp3 deleted file mode 100644 index e0db23626..000000000 Binary files a/files/28_1750_example.mp3 and /dev/null differ diff --git a/files/28_1750_meaning.mp3 b/files/28_1750_meaning.mp3 deleted file mode 100644 index 8263f642f..000000000 Binary files a/files/28_1750_meaning.mp3 and /dev/null differ diff --git a/files/28_1751.jpg b/files/28_1751.jpg deleted file mode 100644 index 8a7383751..000000000 Binary files a/files/28_1751.jpg and /dev/null differ diff --git a/files/28_1751.mp3 b/files/28_1751.mp3 deleted file mode 100644 index 529002389..000000000 Binary files a/files/28_1751.mp3 and /dev/null differ diff --git a/files/28_1751_example.mp3 b/files/28_1751_example.mp3 deleted file mode 100644 index 61bb34817..000000000 Binary files a/files/28_1751_example.mp3 and /dev/null differ diff --git a/files/28_1751_meaning.mp3 b/files/28_1751_meaning.mp3 deleted file mode 100644 index 9d8209d60..000000000 Binary files a/files/28_1751_meaning.mp3 and /dev/null differ diff --git a/files/28_1752.jpg b/files/28_1752.jpg deleted file mode 100644 index 575357c96..000000000 Binary files a/files/28_1752.jpg and /dev/null differ diff --git a/files/28_1752.mp3 b/files/28_1752.mp3 deleted file mode 100644 index e2f38371c..000000000 Binary files a/files/28_1752.mp3 and /dev/null differ diff --git a/files/28_1752_example.mp3 b/files/28_1752_example.mp3 deleted file mode 100644 index 5ddc2563a..000000000 Binary files a/files/28_1752_example.mp3 and /dev/null differ diff --git a/files/28_1752_meaning.mp3 b/files/28_1752_meaning.mp3 deleted file mode 100644 index 487506e30..000000000 Binary files a/files/28_1752_meaning.mp3 and /dev/null differ diff --git a/files/28_1753.jpg b/files/28_1753.jpg deleted file mode 100644 index a1cc5b05c..000000000 Binary files a/files/28_1753.jpg and /dev/null differ diff --git a/files/28_1753.mp3 b/files/28_1753.mp3 deleted file mode 100644 index 8e6859718..000000000 Binary files a/files/28_1753.mp3 and /dev/null differ diff --git a/files/28_1753_example.mp3 b/files/28_1753_example.mp3 deleted file mode 100644 index 763b43690..000000000 Binary files a/files/28_1753_example.mp3 and /dev/null differ diff --git a/files/28_1753_meaning.mp3 b/files/28_1753_meaning.mp3 deleted file mode 100644 index dd3b501a6..000000000 Binary files a/files/28_1753_meaning.mp3 and /dev/null differ diff --git a/files/28_1754.jpg b/files/28_1754.jpg deleted file mode 100644 index 93a8cb669..000000000 Binary files a/files/28_1754.jpg and /dev/null differ diff --git a/files/28_1754.mp3 b/files/28_1754.mp3 deleted file mode 100644 index bd955b0ef..000000000 Binary files a/files/28_1754.mp3 and /dev/null differ diff --git a/files/28_1754_example.mp3 b/files/28_1754_example.mp3 deleted file mode 100644 index a4223629c..000000000 Binary files a/files/28_1754_example.mp3 and /dev/null differ diff --git a/files/28_1754_meaning.mp3 b/files/28_1754_meaning.mp3 deleted file mode 100644 index 6fb442508..000000000 Binary files a/files/28_1754_meaning.mp3 and /dev/null differ diff --git a/files/28_1755.jpg b/files/28_1755.jpg deleted file mode 100644 index 4f4e6c941..000000000 Binary files a/files/28_1755.jpg and /dev/null differ diff --git a/files/28_1755.mp3 b/files/28_1755.mp3 deleted file mode 100644 index c0bd5b476..000000000 Binary files a/files/28_1755.mp3 and /dev/null differ diff --git a/files/28_1755_example.mp3 b/files/28_1755_example.mp3 deleted file mode 100644 index cf82c9ca4..000000000 Binary files a/files/28_1755_example.mp3 and /dev/null differ diff --git a/files/28_1755_meaning.mp3 b/files/28_1755_meaning.mp3 deleted file mode 100644 index 9d5894fd9..000000000 Binary files a/files/28_1755_meaning.mp3 and /dev/null differ diff --git a/files/28_1756.jpg b/files/28_1756.jpg deleted file mode 100644 index c050a3aea..000000000 Binary files a/files/28_1756.jpg and /dev/null differ diff --git a/files/28_1756.mp3 b/files/28_1756.mp3 deleted file mode 100644 index 5b95a5722..000000000 Binary files a/files/28_1756.mp3 and /dev/null differ diff --git a/files/28_1756_example.mp3 b/files/28_1756_example.mp3 deleted file mode 100644 index 80029b4b1..000000000 Binary files a/files/28_1756_example.mp3 and /dev/null differ diff --git a/files/28_1756_meaning.mp3 b/files/28_1756_meaning.mp3 deleted file mode 100644 index 29a16a1f1..000000000 Binary files a/files/28_1756_meaning.mp3 and /dev/null differ diff --git a/files/28_1757.jpg b/files/28_1757.jpg deleted file mode 100644 index 4c3a6dafe..000000000 Binary files a/files/28_1757.jpg and /dev/null differ diff --git a/files/28_1757.mp3 b/files/28_1757.mp3 deleted file mode 100644 index 2268f3850..000000000 Binary files a/files/28_1757.mp3 and /dev/null differ diff --git a/files/28_1757_example.mp3 b/files/28_1757_example.mp3 deleted file mode 100644 index 15a1a2346..000000000 Binary files a/files/28_1757_example.mp3 and /dev/null differ diff --git a/files/28_1757_meaning.mp3 b/files/28_1757_meaning.mp3 deleted file mode 100644 index 17644278f..000000000 Binary files a/files/28_1757_meaning.mp3 and /dev/null differ diff --git a/files/28_1758.jpg b/files/28_1758.jpg deleted file mode 100644 index 6801db37e..000000000 Binary files a/files/28_1758.jpg and /dev/null differ diff --git a/files/28_1758.mp3 b/files/28_1758.mp3 deleted file mode 100644 index 2bf52ef61..000000000 Binary files a/files/28_1758.mp3 and /dev/null differ diff --git a/files/28_1758_example.mp3 b/files/28_1758_example.mp3 deleted file mode 100644 index ee9224612..000000000 Binary files a/files/28_1758_example.mp3 and /dev/null differ diff --git a/files/28_1758_meaning.mp3 b/files/28_1758_meaning.mp3 deleted file mode 100644 index 2d4b447c1..000000000 Binary files a/files/28_1758_meaning.mp3 and /dev/null differ diff --git a/files/28_1759.jpg b/files/28_1759.jpg deleted file mode 100644 index 7aacc8dfe..000000000 Binary files a/files/28_1759.jpg and /dev/null differ diff --git a/files/28_1759.mp3 b/files/28_1759.mp3 deleted file mode 100644 index a8c87dca5..000000000 Binary files a/files/28_1759.mp3 and /dev/null differ diff --git a/files/28_1759_example.mp3 b/files/28_1759_example.mp3 deleted file mode 100644 index 54c0a6a18..000000000 Binary files a/files/28_1759_example.mp3 and /dev/null differ diff --git a/files/28_1759_meaning.mp3 b/files/28_1759_meaning.mp3 deleted file mode 100644 index 82b84a73a..000000000 Binary files a/files/28_1759_meaning.mp3 and /dev/null differ diff --git a/files/28_1760.jpg b/files/28_1760.jpg deleted file mode 100644 index aee31e0dc..000000000 Binary files a/files/28_1760.jpg and /dev/null differ diff --git a/files/28_1760.mp3 b/files/28_1760.mp3 deleted file mode 100644 index 84f264c6b..000000000 Binary files a/files/28_1760.mp3 and /dev/null differ diff --git a/files/28_1760_example.mp3 b/files/28_1760_example.mp3 deleted file mode 100644 index 61b188fdf..000000000 Binary files a/files/28_1760_example.mp3 and /dev/null differ diff --git a/files/28_1760_meaning.mp3 b/files/28_1760_meaning.mp3 deleted file mode 100644 index 6f2560174..000000000 Binary files a/files/28_1760_meaning.mp3 and /dev/null differ diff --git a/files/28_2341.jpg b/files/28_2341.jpg deleted file mode 100644 index 3042bd117..000000000 Binary files a/files/28_2341.jpg and /dev/null differ diff --git a/files/28_2341.mp3 b/files/28_2341.mp3 deleted file mode 100644 index 9dcd4f0a3..000000000 Binary files a/files/28_2341.mp3 and /dev/null differ diff --git a/files/28_2341_example.mp3 b/files/28_2341_example.mp3 deleted file mode 100644 index e47a1b7f8..000000000 Binary files a/files/28_2341_example.mp3 and /dev/null differ diff --git a/files/28_2341_meaning.mp3 b/files/28_2341_meaning.mp3 deleted file mode 100644 index 2bea0ef7e..000000000 Binary files a/files/28_2341_meaning.mp3 and /dev/null differ diff --git a/files/28_2342.jpg b/files/28_2342.jpg deleted file mode 100644 index 8176999d8..000000000 Binary files a/files/28_2342.jpg and /dev/null differ diff --git a/files/28_2342.mp3 b/files/28_2342.mp3 deleted file mode 100644 index a59493c3a..000000000 Binary files a/files/28_2342.mp3 and /dev/null differ diff --git a/files/28_2342_example.mp3 b/files/28_2342_example.mp3 deleted file mode 100644 index 204d88279..000000000 Binary files a/files/28_2342_example.mp3 and /dev/null differ diff --git a/files/28_2342_meaning.mp3 b/files/28_2342_meaning.mp3 deleted file mode 100644 index 62c057a33..000000000 Binary files a/files/28_2342_meaning.mp3 and /dev/null differ diff --git a/files/28_2343.jpg b/files/28_2343.jpg deleted file mode 100644 index 049439adb..000000000 Binary files a/files/28_2343.jpg and /dev/null differ diff --git a/files/28_2343.mp3 b/files/28_2343.mp3 deleted file mode 100644 index 3fdb42dd5..000000000 Binary files a/files/28_2343.mp3 and /dev/null differ diff --git a/files/28_2343_example.mp3 b/files/28_2343_example.mp3 deleted file mode 100644 index d1c79280b..000000000 Binary files a/files/28_2343_example.mp3 and /dev/null differ diff --git a/files/28_2343_meaning.mp3 b/files/28_2343_meaning.mp3 deleted file mode 100644 index c694eabf0..000000000 Binary files a/files/28_2343_meaning.mp3 and /dev/null differ diff --git a/files/28_2344.jpg b/files/28_2344.jpg deleted file mode 100644 index 6e130b7eb..000000000 Binary files a/files/28_2344.jpg and /dev/null differ diff --git a/files/28_2344.mp3 b/files/28_2344.mp3 deleted file mode 100644 index 2aa926257..000000000 Binary files a/files/28_2344.mp3 and /dev/null differ diff --git a/files/28_2344_example.mp3 b/files/28_2344_example.mp3 deleted file mode 100644 index a51f308ef..000000000 Binary files a/files/28_2344_example.mp3 and /dev/null differ diff --git a/files/28_2344_meaning.mp3 b/files/28_2344_meaning.mp3 deleted file mode 100644 index 760ba5dc2..000000000 Binary files a/files/28_2344_meaning.mp3 and /dev/null differ diff --git a/files/28_2345.jpg b/files/28_2345.jpg deleted file mode 100644 index a89b41049..000000000 Binary files a/files/28_2345.jpg and /dev/null differ diff --git a/files/28_2345.mp3 b/files/28_2345.mp3 deleted file mode 100644 index a194359c6..000000000 Binary files a/files/28_2345.mp3 and /dev/null differ diff --git a/files/28_2345_example.mp3 b/files/28_2345_example.mp3 deleted file mode 100644 index 9e12a6885..000000000 Binary files a/files/28_2345_example.mp3 and /dev/null differ diff --git a/files/28_2345_meaning.mp3 b/files/28_2345_meaning.mp3 deleted file mode 100644 index c2562b306..000000000 Binary files a/files/28_2345_meaning.mp3 and /dev/null differ diff --git a/files/28_2346.jpg b/files/28_2346.jpg deleted file mode 100644 index 643d93f30..000000000 Binary files a/files/28_2346.jpg and /dev/null differ diff --git a/files/28_2346.mp3 b/files/28_2346.mp3 deleted file mode 100644 index 87e6fcce2..000000000 Binary files a/files/28_2346.mp3 and /dev/null differ diff --git a/files/28_2346_example.mp3 b/files/28_2346_example.mp3 deleted file mode 100644 index e87fbc315..000000000 Binary files a/files/28_2346_example.mp3 and /dev/null differ diff --git a/files/28_2346_meaning.mp3 b/files/28_2346_meaning.mp3 deleted file mode 100644 index d463dcb1e..000000000 Binary files a/files/28_2346_meaning.mp3 and /dev/null differ diff --git a/files/28_2347.jpg b/files/28_2347.jpg deleted file mode 100644 index 67d05c017..000000000 Binary files a/files/28_2347.jpg and /dev/null differ diff --git a/files/28_2347.mp3 b/files/28_2347.mp3 deleted file mode 100644 index 01340c52e..000000000 Binary files a/files/28_2347.mp3 and /dev/null differ diff --git a/files/28_2347_example.mp3 b/files/28_2347_example.mp3 deleted file mode 100644 index 3e4ebeb5d..000000000 Binary files a/files/28_2347_example.mp3 and /dev/null differ diff --git a/files/28_2347_meaning.mp3 b/files/28_2347_meaning.mp3 deleted file mode 100644 index bfc27c31a..000000000 Binary files a/files/28_2347_meaning.mp3 and /dev/null differ diff --git a/files/28_2348.jpg b/files/28_2348.jpg deleted file mode 100644 index f5f8deaa4..000000000 Binary files a/files/28_2348.jpg and /dev/null differ diff --git a/files/28_2348.mp3 b/files/28_2348.mp3 deleted file mode 100644 index c3ac578f5..000000000 Binary files a/files/28_2348.mp3 and /dev/null differ diff --git a/files/28_2348_example.mp3 b/files/28_2348_example.mp3 deleted file mode 100644 index 5aabc7e70..000000000 Binary files a/files/28_2348_example.mp3 and /dev/null differ diff --git a/files/28_2348_meaning.mp3 b/files/28_2348_meaning.mp3 deleted file mode 100644 index 4ab88e9ea..000000000 Binary files a/files/28_2348_meaning.mp3 and /dev/null differ diff --git a/files/28_2349.jpg b/files/28_2349.jpg deleted file mode 100644 index 3b1643280..000000000 Binary files a/files/28_2349.jpg and /dev/null differ diff --git a/files/28_2349.mp3 b/files/28_2349.mp3 deleted file mode 100644 index efc3336c3..000000000 Binary files a/files/28_2349.mp3 and /dev/null differ diff --git a/files/28_2349_example.mp3 b/files/28_2349_example.mp3 deleted file mode 100644 index f16a822e3..000000000 Binary files a/files/28_2349_example.mp3 and /dev/null differ diff --git a/files/28_2349_meaning.mp3 b/files/28_2349_meaning.mp3 deleted file mode 100644 index e97ab0713..000000000 Binary files a/files/28_2349_meaning.mp3 and /dev/null differ diff --git a/files/28_2350.jpg b/files/28_2350.jpg deleted file mode 100644 index 77fc8ba1c..000000000 Binary files a/files/28_2350.jpg and /dev/null differ diff --git a/files/28_2350.mp3 b/files/28_2350.mp3 deleted file mode 100644 index c4f7402f7..000000000 Binary files a/files/28_2350.mp3 and /dev/null differ diff --git a/files/28_2350_example.mp3 b/files/28_2350_example.mp3 deleted file mode 100644 index c0937ebd7..000000000 Binary files a/files/28_2350_example.mp3 and /dev/null differ diff --git a/files/28_2350_meaning.mp3 b/files/28_2350_meaning.mp3 deleted file mode 100644 index ae680b888..000000000 Binary files a/files/28_2350_meaning.mp3 and /dev/null differ diff --git a/files/28_2351.jpg b/files/28_2351.jpg deleted file mode 100644 index 45f7ce438..000000000 Binary files a/files/28_2351.jpg and /dev/null differ diff --git a/files/28_2351.mp3 b/files/28_2351.mp3 deleted file mode 100644 index 51237d4c8..000000000 Binary files a/files/28_2351.mp3 and /dev/null differ diff --git a/files/28_2351_example.mp3 b/files/28_2351_example.mp3 deleted file mode 100644 index f35eee19b..000000000 Binary files a/files/28_2351_example.mp3 and /dev/null differ diff --git a/files/28_2351_meaning.mp3 b/files/28_2351_meaning.mp3 deleted file mode 100644 index 733134b87..000000000 Binary files a/files/28_2351_meaning.mp3 and /dev/null differ diff --git a/files/28_2352.jpg b/files/28_2352.jpg deleted file mode 100644 index 9ae67c2b6..000000000 Binary files a/files/28_2352.jpg and /dev/null differ diff --git a/files/28_2352.mp3 b/files/28_2352.mp3 deleted file mode 100644 index 3e6abc49e..000000000 Binary files a/files/28_2352.mp3 and /dev/null differ diff --git a/files/28_2352_example.mp3 b/files/28_2352_example.mp3 deleted file mode 100644 index 14940abaf..000000000 Binary files a/files/28_2352_example.mp3 and /dev/null differ diff --git a/files/28_2352_meaning.mp3 b/files/28_2352_meaning.mp3 deleted file mode 100644 index 413b0494e..000000000 Binary files a/files/28_2352_meaning.mp3 and /dev/null differ diff --git a/files/28_2353.jpg b/files/28_2353.jpg deleted file mode 100644 index 362fca9c1..000000000 Binary files a/files/28_2353.jpg and /dev/null differ diff --git a/files/28_2353.mp3 b/files/28_2353.mp3 deleted file mode 100644 index 6aa10239a..000000000 Binary files a/files/28_2353.mp3 and /dev/null differ diff --git a/files/28_2353_example.mp3 b/files/28_2353_example.mp3 deleted file mode 100644 index 266635378..000000000 Binary files a/files/28_2353_example.mp3 and /dev/null differ diff --git a/files/28_2353_meaning.mp3 b/files/28_2353_meaning.mp3 deleted file mode 100644 index f3c043dba..000000000 Binary files a/files/28_2353_meaning.mp3 and /dev/null differ diff --git a/files/28_2354.jpg b/files/28_2354.jpg deleted file mode 100644 index 6fc472c3e..000000000 Binary files a/files/28_2354.jpg and /dev/null differ diff --git a/files/28_2354.mp3 b/files/28_2354.mp3 deleted file mode 100644 index 9005611ed..000000000 Binary files a/files/28_2354.mp3 and /dev/null differ diff --git a/files/28_2354_example.mp3 b/files/28_2354_example.mp3 deleted file mode 100644 index c141f66e9..000000000 Binary files a/files/28_2354_example.mp3 and /dev/null differ diff --git a/files/28_2354_meaning.mp3 b/files/28_2354_meaning.mp3 deleted file mode 100644 index 295b6bd0b..000000000 Binary files a/files/28_2354_meaning.mp3 and /dev/null differ diff --git a/files/28_2355.jpg b/files/28_2355.jpg deleted file mode 100644 index a9373f845..000000000 Binary files a/files/28_2355.jpg and /dev/null differ diff --git a/files/28_2355.mp3 b/files/28_2355.mp3 deleted file mode 100644 index 3cf8b1e25..000000000 Binary files a/files/28_2355.mp3 and /dev/null differ diff --git a/files/28_2355_example.mp3 b/files/28_2355_example.mp3 deleted file mode 100644 index 442a97ead..000000000 Binary files a/files/28_2355_example.mp3 and /dev/null differ diff --git a/files/28_2355_meaning.mp3 b/files/28_2355_meaning.mp3 deleted file mode 100644 index ff28bdd90..000000000 Binary files a/files/28_2355_meaning.mp3 and /dev/null differ diff --git a/files/28_2356.jpg b/files/28_2356.jpg deleted file mode 100644 index 18645b195..000000000 Binary files a/files/28_2356.jpg and /dev/null differ diff --git a/files/28_2356.mp3 b/files/28_2356.mp3 deleted file mode 100644 index e2d68d1af..000000000 Binary files a/files/28_2356.mp3 and /dev/null differ diff --git a/files/28_2356_example.mp3 b/files/28_2356_example.mp3 deleted file mode 100644 index 06d8d31df..000000000 Binary files a/files/28_2356_example.mp3 and /dev/null differ diff --git a/files/28_2356_meaning.mp3 b/files/28_2356_meaning.mp3 deleted file mode 100644 index d52b3d2bc..000000000 Binary files a/files/28_2356_meaning.mp3 and /dev/null differ diff --git a/files/28_2357.jpg b/files/28_2357.jpg deleted file mode 100644 index 7539da318..000000000 Binary files a/files/28_2357.jpg and /dev/null differ diff --git a/files/28_2357.mp3 b/files/28_2357.mp3 deleted file mode 100644 index 8bcb62942..000000000 Binary files a/files/28_2357.mp3 and /dev/null differ diff --git a/files/28_2357_example.mp3 b/files/28_2357_example.mp3 deleted file mode 100644 index e641b8fdd..000000000 Binary files a/files/28_2357_example.mp3 and /dev/null differ diff --git a/files/28_2357_meaning.mp3 b/files/28_2357_meaning.mp3 deleted file mode 100644 index c6e1278e8..000000000 Binary files a/files/28_2357_meaning.mp3 and /dev/null differ diff --git a/files/28_2358.jpg b/files/28_2358.jpg deleted file mode 100644 index 8471ee8c3..000000000 Binary files a/files/28_2358.jpg and /dev/null differ diff --git a/files/28_2358.mp3 b/files/28_2358.mp3 deleted file mode 100644 index 10606eee1..000000000 Binary files a/files/28_2358.mp3 and /dev/null differ diff --git a/files/28_2358_example.mp3 b/files/28_2358_example.mp3 deleted file mode 100644 index b56c98136..000000000 Binary files a/files/28_2358_example.mp3 and /dev/null differ diff --git a/files/28_2358_meaning.mp3 b/files/28_2358_meaning.mp3 deleted file mode 100644 index bfa9e2bcb..000000000 Binary files a/files/28_2358_meaning.mp3 and /dev/null differ diff --git a/files/28_2359.jpg b/files/28_2359.jpg deleted file mode 100644 index f2c34e6bf..000000000 Binary files a/files/28_2359.jpg and /dev/null differ diff --git a/files/28_2359.mp3 b/files/28_2359.mp3 deleted file mode 100644 index 9f59252e4..000000000 Binary files a/files/28_2359.mp3 and /dev/null differ diff --git a/files/28_2359_example.mp3 b/files/28_2359_example.mp3 deleted file mode 100644 index 6743a38aa..000000000 Binary files a/files/28_2359_example.mp3 and /dev/null differ diff --git a/files/28_2359_meaning.mp3 b/files/28_2359_meaning.mp3 deleted file mode 100644 index 30abc0a47..000000000 Binary files a/files/28_2359_meaning.mp3 and /dev/null differ diff --git a/files/28_2360.jpg b/files/28_2360.jpg deleted file mode 100644 index cd6365cc2..000000000 Binary files a/files/28_2360.jpg and /dev/null differ diff --git a/files/28_2360.mp3 b/files/28_2360.mp3 deleted file mode 100644 index 9aa9a5ac0..000000000 Binary files a/files/28_2360.mp3 and /dev/null differ diff --git a/files/28_2360_example.mp3 b/files/28_2360_example.mp3 deleted file mode 100644 index 2835ecce0..000000000 Binary files a/files/28_2360_example.mp3 and /dev/null differ diff --git a/files/28_2360_meaning.mp3 b/files/28_2360_meaning.mp3 deleted file mode 100644 index 186bf2e02..000000000 Binary files a/files/28_2360_meaning.mp3 and /dev/null differ diff --git a/files/28_2941.jpg b/files/28_2941.jpg deleted file mode 100644 index cfa2c5d6e..000000000 Binary files a/files/28_2941.jpg and /dev/null differ diff --git a/files/28_2941.mp3 b/files/28_2941.mp3 deleted file mode 100644 index 54defc057..000000000 Binary files a/files/28_2941.mp3 and /dev/null differ diff --git a/files/28_2941_example.mp3 b/files/28_2941_example.mp3 deleted file mode 100644 index 77ffe0c26..000000000 Binary files a/files/28_2941_example.mp3 and /dev/null differ diff --git a/files/28_2941_meaning.mp3 b/files/28_2941_meaning.mp3 deleted file mode 100644 index 819c14c40..000000000 Binary files a/files/28_2941_meaning.mp3 and /dev/null differ diff --git a/files/28_2942.jpg b/files/28_2942.jpg deleted file mode 100644 index 3313e76e6..000000000 Binary files a/files/28_2942.jpg and /dev/null differ diff --git a/files/28_2942.mp3 b/files/28_2942.mp3 deleted file mode 100644 index 32e332d86..000000000 Binary files a/files/28_2942.mp3 and /dev/null differ diff --git a/files/28_2942_example.mp3 b/files/28_2942_example.mp3 deleted file mode 100644 index 8a110c6db..000000000 Binary files a/files/28_2942_example.mp3 and /dev/null differ diff --git a/files/28_2942_meaning.mp3 b/files/28_2942_meaning.mp3 deleted file mode 100644 index 0c9781257..000000000 Binary files a/files/28_2942_meaning.mp3 and /dev/null differ diff --git a/files/28_2943.jpg b/files/28_2943.jpg deleted file mode 100644 index 315b0bbe4..000000000 Binary files a/files/28_2943.jpg and /dev/null differ diff --git a/files/28_2943.mp3 b/files/28_2943.mp3 deleted file mode 100644 index 57da964f0..000000000 Binary files a/files/28_2943.mp3 and /dev/null differ diff --git a/files/28_2943_example.mp3 b/files/28_2943_example.mp3 deleted file mode 100644 index f4341c6d9..000000000 Binary files a/files/28_2943_example.mp3 and /dev/null differ diff --git a/files/28_2943_meaning.mp3 b/files/28_2943_meaning.mp3 deleted file mode 100644 index 91f8e6944..000000000 Binary files a/files/28_2943_meaning.mp3 and /dev/null differ diff --git a/files/28_2944.jpg b/files/28_2944.jpg deleted file mode 100644 index a97e927e0..000000000 Binary files a/files/28_2944.jpg and /dev/null differ diff --git a/files/28_2944.mp3 b/files/28_2944.mp3 deleted file mode 100644 index 43abac5b7..000000000 Binary files a/files/28_2944.mp3 and /dev/null differ diff --git a/files/28_2944_example.mp3 b/files/28_2944_example.mp3 deleted file mode 100644 index 9a2d91dbb..000000000 Binary files a/files/28_2944_example.mp3 and /dev/null differ diff --git a/files/28_2944_meaning.mp3 b/files/28_2944_meaning.mp3 deleted file mode 100644 index 4a690a5c5..000000000 Binary files a/files/28_2944_meaning.mp3 and /dev/null differ diff --git a/files/28_2945.jpg b/files/28_2945.jpg deleted file mode 100644 index 5122f0c33..000000000 Binary files a/files/28_2945.jpg and /dev/null differ diff --git a/files/28_2945.mp3 b/files/28_2945.mp3 deleted file mode 100644 index e054a730b..000000000 Binary files a/files/28_2945.mp3 and /dev/null differ diff --git a/files/28_2945_example.mp3 b/files/28_2945_example.mp3 deleted file mode 100644 index f9395f6ba..000000000 Binary files a/files/28_2945_example.mp3 and /dev/null differ diff --git a/files/28_2945_meaning.mp3 b/files/28_2945_meaning.mp3 deleted file mode 100644 index 6e2647b35..000000000 Binary files a/files/28_2945_meaning.mp3 and /dev/null differ diff --git a/files/28_2946.jpg b/files/28_2946.jpg deleted file mode 100644 index cc8f9d85c..000000000 Binary files a/files/28_2946.jpg and /dev/null differ diff --git a/files/28_2946.mp3 b/files/28_2946.mp3 deleted file mode 100644 index b7c8bd5e3..000000000 Binary files a/files/28_2946.mp3 and /dev/null differ diff --git a/files/28_2946_example.mp3 b/files/28_2946_example.mp3 deleted file mode 100644 index e386e915c..000000000 Binary files a/files/28_2946_example.mp3 and /dev/null differ diff --git a/files/28_2946_meaning.mp3 b/files/28_2946_meaning.mp3 deleted file mode 100644 index 7ecf5d49e..000000000 Binary files a/files/28_2946_meaning.mp3 and /dev/null differ diff --git a/files/28_2947.jpg b/files/28_2947.jpg deleted file mode 100644 index c5616d5d0..000000000 Binary files a/files/28_2947.jpg and /dev/null differ diff --git a/files/28_2947.mp3 b/files/28_2947.mp3 deleted file mode 100644 index 955b8015d..000000000 Binary files a/files/28_2947.mp3 and /dev/null differ diff --git a/files/28_2947_example.mp3 b/files/28_2947_example.mp3 deleted file mode 100644 index 955ac9562..000000000 Binary files a/files/28_2947_example.mp3 and /dev/null differ diff --git a/files/28_2947_meaning.mp3 b/files/28_2947_meaning.mp3 deleted file mode 100644 index fee6e2945..000000000 Binary files a/files/28_2947_meaning.mp3 and /dev/null differ diff --git a/files/28_2948.jpg b/files/28_2948.jpg deleted file mode 100644 index f74a0c54b..000000000 Binary files a/files/28_2948.jpg and /dev/null differ diff --git a/files/28_2948.mp3 b/files/28_2948.mp3 deleted file mode 100644 index 3057a0741..000000000 Binary files a/files/28_2948.mp3 and /dev/null differ diff --git a/files/28_2948_example.mp3 b/files/28_2948_example.mp3 deleted file mode 100644 index 538afecda..000000000 Binary files a/files/28_2948_example.mp3 and /dev/null differ diff --git a/files/28_2948_meaning.mp3 b/files/28_2948_meaning.mp3 deleted file mode 100644 index 191baec74..000000000 Binary files a/files/28_2948_meaning.mp3 and /dev/null differ diff --git a/files/28_2949.jpg b/files/28_2949.jpg deleted file mode 100644 index 069c006c6..000000000 Binary files a/files/28_2949.jpg and /dev/null differ diff --git a/files/28_2949.mp3 b/files/28_2949.mp3 deleted file mode 100644 index 2860c926d..000000000 Binary files a/files/28_2949.mp3 and /dev/null differ diff --git a/files/28_2949_example.mp3 b/files/28_2949_example.mp3 deleted file mode 100644 index a1759dda6..000000000 Binary files a/files/28_2949_example.mp3 and /dev/null differ diff --git a/files/28_2949_meaning.mp3 b/files/28_2949_meaning.mp3 deleted file mode 100644 index b76943712..000000000 Binary files a/files/28_2949_meaning.mp3 and /dev/null differ diff --git a/files/28_2950.jpg b/files/28_2950.jpg deleted file mode 100644 index 99e800ca2..000000000 Binary files a/files/28_2950.jpg and /dev/null differ diff --git a/files/28_2950.mp3 b/files/28_2950.mp3 deleted file mode 100644 index 63925fc1b..000000000 Binary files a/files/28_2950.mp3 and /dev/null differ diff --git a/files/28_2950_example.mp3 b/files/28_2950_example.mp3 deleted file mode 100644 index 0f7005a6f..000000000 Binary files a/files/28_2950_example.mp3 and /dev/null differ diff --git a/files/28_2950_meaning.mp3 b/files/28_2950_meaning.mp3 deleted file mode 100644 index e9750ac3f..000000000 Binary files a/files/28_2950_meaning.mp3 and /dev/null differ diff --git a/files/28_2951.jpg b/files/28_2951.jpg deleted file mode 100644 index 93edb85f7..000000000 Binary files a/files/28_2951.jpg and /dev/null differ diff --git a/files/28_2951.mp3 b/files/28_2951.mp3 deleted file mode 100644 index cc94a031b..000000000 Binary files a/files/28_2951.mp3 and /dev/null differ diff --git a/files/28_2951_example.mp3 b/files/28_2951_example.mp3 deleted file mode 100644 index e3e669848..000000000 Binary files a/files/28_2951_example.mp3 and /dev/null differ diff --git a/files/28_2951_meaning.mp3 b/files/28_2951_meaning.mp3 deleted file mode 100644 index 04ecc2e47..000000000 Binary files a/files/28_2951_meaning.mp3 and /dev/null differ diff --git a/files/28_2952.jpg b/files/28_2952.jpg deleted file mode 100644 index 57e4500e1..000000000 Binary files a/files/28_2952.jpg and /dev/null differ diff --git a/files/28_2952.mp3 b/files/28_2952.mp3 deleted file mode 100644 index bc06e2180..000000000 Binary files a/files/28_2952.mp3 and /dev/null differ diff --git a/files/28_2952_example.mp3 b/files/28_2952_example.mp3 deleted file mode 100644 index d6d950e70..000000000 Binary files a/files/28_2952_example.mp3 and /dev/null differ diff --git a/files/28_2952_meaning.mp3 b/files/28_2952_meaning.mp3 deleted file mode 100644 index b6abf2d3f..000000000 Binary files a/files/28_2952_meaning.mp3 and /dev/null differ diff --git a/files/28_2953.jpg b/files/28_2953.jpg deleted file mode 100644 index a7a4fba5e..000000000 Binary files a/files/28_2953.jpg and /dev/null differ diff --git a/files/28_2953.mp3 b/files/28_2953.mp3 deleted file mode 100644 index a89677920..000000000 Binary files a/files/28_2953.mp3 and /dev/null differ diff --git a/files/28_2953_example.mp3 b/files/28_2953_example.mp3 deleted file mode 100644 index 9e6766939..000000000 Binary files a/files/28_2953_example.mp3 and /dev/null differ diff --git a/files/28_2953_meaning.mp3 b/files/28_2953_meaning.mp3 deleted file mode 100644 index d1e02a094..000000000 Binary files a/files/28_2953_meaning.mp3 and /dev/null differ diff --git a/files/28_2954.jpg b/files/28_2954.jpg deleted file mode 100644 index f0225560d..000000000 Binary files a/files/28_2954.jpg and /dev/null differ diff --git a/files/28_2954.mp3 b/files/28_2954.mp3 deleted file mode 100644 index d4a028bef..000000000 Binary files a/files/28_2954.mp3 and /dev/null differ diff --git a/files/28_2954_example.mp3 b/files/28_2954_example.mp3 deleted file mode 100644 index 46a7dc308..000000000 Binary files a/files/28_2954_example.mp3 and /dev/null differ diff --git a/files/28_2954_meaning.mp3 b/files/28_2954_meaning.mp3 deleted file mode 100644 index a78e2d2ee..000000000 Binary files a/files/28_2954_meaning.mp3 and /dev/null differ diff --git a/files/28_2955.jpg b/files/28_2955.jpg deleted file mode 100644 index 83825317d..000000000 Binary files a/files/28_2955.jpg and /dev/null differ diff --git a/files/28_2955.mp3 b/files/28_2955.mp3 deleted file mode 100644 index 9a2b649fc..000000000 Binary files a/files/28_2955.mp3 and /dev/null differ diff --git a/files/28_2955_example.mp3 b/files/28_2955_example.mp3 deleted file mode 100644 index 05b138340..000000000 Binary files a/files/28_2955_example.mp3 and /dev/null differ diff --git a/files/28_2955_meaning.mp3 b/files/28_2955_meaning.mp3 deleted file mode 100644 index 20ccd9e64..000000000 Binary files a/files/28_2955_meaning.mp3 and /dev/null differ diff --git a/files/28_2956.jpg b/files/28_2956.jpg deleted file mode 100644 index 779fe4b43..000000000 Binary files a/files/28_2956.jpg and /dev/null differ diff --git a/files/28_2956.mp3 b/files/28_2956.mp3 deleted file mode 100644 index 3446926b8..000000000 Binary files a/files/28_2956.mp3 and /dev/null differ diff --git a/files/28_2956_example.mp3 b/files/28_2956_example.mp3 deleted file mode 100644 index ad4f69198..000000000 Binary files a/files/28_2956_example.mp3 and /dev/null differ diff --git a/files/28_2956_meaning.mp3 b/files/28_2956_meaning.mp3 deleted file mode 100644 index 039dcc56d..000000000 Binary files a/files/28_2956_meaning.mp3 and /dev/null differ diff --git a/files/28_2957.jpg b/files/28_2957.jpg deleted file mode 100644 index 223c39531..000000000 Binary files a/files/28_2957.jpg and /dev/null differ diff --git a/files/28_2957.mp3 b/files/28_2957.mp3 deleted file mode 100644 index 646783fe4..000000000 Binary files a/files/28_2957.mp3 and /dev/null differ diff --git a/files/28_2957_example.mp3 b/files/28_2957_example.mp3 deleted file mode 100644 index 422ee524c..000000000 Binary files a/files/28_2957_example.mp3 and /dev/null differ diff --git a/files/28_2957_meaning.mp3 b/files/28_2957_meaning.mp3 deleted file mode 100644 index 14d08d0a0..000000000 Binary files a/files/28_2957_meaning.mp3 and /dev/null differ diff --git a/files/28_2958.jpg b/files/28_2958.jpg deleted file mode 100644 index 0c5e0752e..000000000 Binary files a/files/28_2958.jpg and /dev/null differ diff --git a/files/28_2958.mp3 b/files/28_2958.mp3 deleted file mode 100644 index ab2da45ae..000000000 Binary files a/files/28_2958.mp3 and /dev/null differ diff --git a/files/28_2958_example.mp3 b/files/28_2958_example.mp3 deleted file mode 100644 index 0de16188a..000000000 Binary files a/files/28_2958_example.mp3 and /dev/null differ diff --git a/files/28_2958_meaning.mp3 b/files/28_2958_meaning.mp3 deleted file mode 100644 index f9f4115e8..000000000 Binary files a/files/28_2958_meaning.mp3 and /dev/null differ diff --git a/files/28_2959.jpg b/files/28_2959.jpg deleted file mode 100644 index 3ebc0864f..000000000 Binary files a/files/28_2959.jpg and /dev/null differ diff --git a/files/28_2959.mp3 b/files/28_2959.mp3 deleted file mode 100644 index fff579a5e..000000000 Binary files a/files/28_2959.mp3 and /dev/null differ diff --git a/files/28_2959_example.mp3 b/files/28_2959_example.mp3 deleted file mode 100644 index 237480e83..000000000 Binary files a/files/28_2959_example.mp3 and /dev/null differ diff --git a/files/28_2959_meaning.mp3 b/files/28_2959_meaning.mp3 deleted file mode 100644 index 97b7d339b..000000000 Binary files a/files/28_2959_meaning.mp3 and /dev/null differ diff --git a/files/28_2960.jpg b/files/28_2960.jpg deleted file mode 100644 index 432b41dc7..000000000 Binary files a/files/28_2960.jpg and /dev/null differ diff --git a/files/28_2960.mp3 b/files/28_2960.mp3 deleted file mode 100644 index e5a9caa54..000000000 Binary files a/files/28_2960.mp3 and /dev/null differ diff --git a/files/28_2960_example.mp3 b/files/28_2960_example.mp3 deleted file mode 100644 index aaca0b213..000000000 Binary files a/files/28_2960_example.mp3 and /dev/null differ diff --git a/files/28_2960_meaning.mp3 b/files/28_2960_meaning.mp3 deleted file mode 100644 index 47881bbb4..000000000 Binary files a/files/28_2960_meaning.mp3 and /dev/null differ diff --git a/files/28_3541.jpg b/files/28_3541.jpg deleted file mode 100644 index 15775730a..000000000 Binary files a/files/28_3541.jpg and /dev/null differ diff --git a/files/28_3541.mp3 b/files/28_3541.mp3 deleted file mode 100644 index 83fbbb767..000000000 Binary files a/files/28_3541.mp3 and /dev/null differ diff --git a/files/28_3541_example.mp3 b/files/28_3541_example.mp3 deleted file mode 100644 index 71e7903d2..000000000 Binary files a/files/28_3541_example.mp3 and /dev/null differ diff --git a/files/28_3541_meaning.mp3 b/files/28_3541_meaning.mp3 deleted file mode 100644 index e74abfe4e..000000000 Binary files a/files/28_3541_meaning.mp3 and /dev/null differ diff --git a/files/28_3542.jpg b/files/28_3542.jpg deleted file mode 100644 index 280033c51..000000000 Binary files a/files/28_3542.jpg and /dev/null differ diff --git a/files/28_3542.mp3 b/files/28_3542.mp3 deleted file mode 100644 index 500061c26..000000000 Binary files a/files/28_3542.mp3 and /dev/null differ diff --git a/files/28_3542_example.mp3 b/files/28_3542_example.mp3 deleted file mode 100644 index b39e2f4ee..000000000 Binary files a/files/28_3542_example.mp3 and /dev/null differ diff --git a/files/28_3542_meaning.mp3 b/files/28_3542_meaning.mp3 deleted file mode 100644 index 1cf2e7b03..000000000 Binary files a/files/28_3542_meaning.mp3 and /dev/null differ diff --git a/files/28_3543.jpg b/files/28_3543.jpg deleted file mode 100644 index 075a4ab0a..000000000 Binary files a/files/28_3543.jpg and /dev/null differ diff --git a/files/28_3543.mp3 b/files/28_3543.mp3 deleted file mode 100644 index 9964dc7fd..000000000 Binary files a/files/28_3543.mp3 and /dev/null differ diff --git a/files/28_3543_example.mp3 b/files/28_3543_example.mp3 deleted file mode 100644 index efd9eaa72..000000000 Binary files a/files/28_3543_example.mp3 and /dev/null differ diff --git a/files/28_3543_meaning.mp3 b/files/28_3543_meaning.mp3 deleted file mode 100644 index 1ceff48b9..000000000 Binary files a/files/28_3543_meaning.mp3 and /dev/null differ diff --git a/files/28_3544.jpg b/files/28_3544.jpg deleted file mode 100644 index f4650c077..000000000 Binary files a/files/28_3544.jpg and /dev/null differ diff --git a/files/28_3544.mp3 b/files/28_3544.mp3 deleted file mode 100644 index 12ad7973c..000000000 Binary files a/files/28_3544.mp3 and /dev/null differ diff --git a/files/28_3544_example.mp3 b/files/28_3544_example.mp3 deleted file mode 100644 index e474a6b21..000000000 Binary files a/files/28_3544_example.mp3 and /dev/null differ diff --git a/files/28_3544_meaning.mp3 b/files/28_3544_meaning.mp3 deleted file mode 100644 index 11580f654..000000000 Binary files a/files/28_3544_meaning.mp3 and /dev/null differ diff --git a/files/28_3545.jpg b/files/28_3545.jpg deleted file mode 100644 index 0a5ac8ef3..000000000 Binary files a/files/28_3545.jpg and /dev/null differ diff --git a/files/28_3545.mp3 b/files/28_3545.mp3 deleted file mode 100644 index 29c8b2175..000000000 Binary files a/files/28_3545.mp3 and /dev/null differ diff --git a/files/28_3545_example.mp3 b/files/28_3545_example.mp3 deleted file mode 100644 index 6cddce2a6..000000000 Binary files a/files/28_3545_example.mp3 and /dev/null differ diff --git a/files/28_3545_meaning.mp3 b/files/28_3545_meaning.mp3 deleted file mode 100644 index 5237efafb..000000000 Binary files a/files/28_3545_meaning.mp3 and /dev/null differ diff --git a/files/28_3546.jpg b/files/28_3546.jpg deleted file mode 100644 index 5482030f5..000000000 Binary files a/files/28_3546.jpg and /dev/null differ diff --git a/files/28_3546.mp3 b/files/28_3546.mp3 deleted file mode 100644 index 7ba6511e8..000000000 Binary files a/files/28_3546.mp3 and /dev/null differ diff --git a/files/28_3546_example.mp3 b/files/28_3546_example.mp3 deleted file mode 100644 index 6aad88a1a..000000000 Binary files a/files/28_3546_example.mp3 and /dev/null differ diff --git a/files/28_3546_meaning.mp3 b/files/28_3546_meaning.mp3 deleted file mode 100644 index 5489b4d87..000000000 Binary files a/files/28_3546_meaning.mp3 and /dev/null differ diff --git a/files/28_3547.jpg b/files/28_3547.jpg deleted file mode 100644 index ad8ef6d9d..000000000 Binary files a/files/28_3547.jpg and /dev/null differ diff --git a/files/28_3547.mp3 b/files/28_3547.mp3 deleted file mode 100644 index 15048ffc5..000000000 Binary files a/files/28_3547.mp3 and /dev/null differ diff --git a/files/28_3547_example.mp3 b/files/28_3547_example.mp3 deleted file mode 100644 index bef6b423d..000000000 Binary files a/files/28_3547_example.mp3 and /dev/null differ diff --git a/files/28_3547_meaning.mp3 b/files/28_3547_meaning.mp3 deleted file mode 100644 index 27e884ba3..000000000 Binary files a/files/28_3547_meaning.mp3 and /dev/null differ diff --git a/files/28_3548.jpg b/files/28_3548.jpg deleted file mode 100644 index 83db3a195..000000000 Binary files a/files/28_3548.jpg and /dev/null differ diff --git a/files/28_3548.mp3 b/files/28_3548.mp3 deleted file mode 100644 index 22340abc2..000000000 Binary files a/files/28_3548.mp3 and /dev/null differ diff --git a/files/28_3548_example.mp3 b/files/28_3548_example.mp3 deleted file mode 100644 index 8cc25f88f..000000000 Binary files a/files/28_3548_example.mp3 and /dev/null differ diff --git a/files/28_3548_meaning.mp3 b/files/28_3548_meaning.mp3 deleted file mode 100644 index 376ad851b..000000000 Binary files a/files/28_3548_meaning.mp3 and /dev/null differ diff --git a/files/28_3549.jpg b/files/28_3549.jpg deleted file mode 100644 index 30df22e48..000000000 Binary files a/files/28_3549.jpg and /dev/null differ diff --git a/files/28_3549.mp3 b/files/28_3549.mp3 deleted file mode 100644 index 153f9ef61..000000000 Binary files a/files/28_3549.mp3 and /dev/null differ diff --git a/files/28_3549_example.mp3 b/files/28_3549_example.mp3 deleted file mode 100644 index 5f7275c5f..000000000 Binary files a/files/28_3549_example.mp3 and /dev/null differ diff --git a/files/28_3549_meaning.mp3 b/files/28_3549_meaning.mp3 deleted file mode 100644 index 25ef9f9bf..000000000 Binary files a/files/28_3549_meaning.mp3 and /dev/null differ diff --git a/files/28_3550.jpg b/files/28_3550.jpg deleted file mode 100644 index fb584c809..000000000 Binary files a/files/28_3550.jpg and /dev/null differ diff --git a/files/28_3550.mp3 b/files/28_3550.mp3 deleted file mode 100644 index b83635474..000000000 Binary files a/files/28_3550.mp3 and /dev/null differ diff --git a/files/28_3550_example.mp3 b/files/28_3550_example.mp3 deleted file mode 100644 index 47525143a..000000000 Binary files a/files/28_3550_example.mp3 and /dev/null differ diff --git a/files/28_3550_meaning.mp3 b/files/28_3550_meaning.mp3 deleted file mode 100644 index 9f002a357..000000000 Binary files a/files/28_3550_meaning.mp3 and /dev/null differ diff --git a/files/28_3551.jpg b/files/28_3551.jpg deleted file mode 100644 index df71133a9..000000000 Binary files a/files/28_3551.jpg and /dev/null differ diff --git a/files/28_3551.mp3 b/files/28_3551.mp3 deleted file mode 100644 index 635f56187..000000000 Binary files a/files/28_3551.mp3 and /dev/null differ diff --git a/files/28_3551_example.mp3 b/files/28_3551_example.mp3 deleted file mode 100644 index 2bacab279..000000000 Binary files a/files/28_3551_example.mp3 and /dev/null differ diff --git a/files/28_3551_meaning.mp3 b/files/28_3551_meaning.mp3 deleted file mode 100644 index abb1e84ea..000000000 Binary files a/files/28_3551_meaning.mp3 and /dev/null differ diff --git a/files/28_3552.jpg b/files/28_3552.jpg deleted file mode 100644 index 2a4306851..000000000 Binary files a/files/28_3552.jpg and /dev/null differ diff --git a/files/28_3552.mp3 b/files/28_3552.mp3 deleted file mode 100644 index 404dc5f8b..000000000 Binary files a/files/28_3552.mp3 and /dev/null differ diff --git a/files/28_3552_example.mp3 b/files/28_3552_example.mp3 deleted file mode 100644 index ecbc67a09..000000000 Binary files a/files/28_3552_example.mp3 and /dev/null differ diff --git a/files/28_3552_meaning.mp3 b/files/28_3552_meaning.mp3 deleted file mode 100644 index ca478ad9a..000000000 Binary files a/files/28_3552_meaning.mp3 and /dev/null differ diff --git a/files/28_3553.jpg b/files/28_3553.jpg deleted file mode 100644 index c712fe8d4..000000000 Binary files a/files/28_3553.jpg and /dev/null differ diff --git a/files/28_3553.mp3 b/files/28_3553.mp3 deleted file mode 100644 index 851530deb..000000000 Binary files a/files/28_3553.mp3 and /dev/null differ diff --git a/files/28_3553_example.mp3 b/files/28_3553_example.mp3 deleted file mode 100644 index f7c4f6109..000000000 Binary files a/files/28_3553_example.mp3 and /dev/null differ diff --git a/files/28_3553_meaning.mp3 b/files/28_3553_meaning.mp3 deleted file mode 100644 index 824f5abf5..000000000 Binary files a/files/28_3553_meaning.mp3 and /dev/null differ diff --git a/files/28_3554.jpg b/files/28_3554.jpg deleted file mode 100644 index 7392b69f6..000000000 Binary files a/files/28_3554.jpg and /dev/null differ diff --git a/files/28_3554.mp3 b/files/28_3554.mp3 deleted file mode 100644 index 0d8c5ca90..000000000 Binary files a/files/28_3554.mp3 and /dev/null differ diff --git a/files/28_3554_example.mp3 b/files/28_3554_example.mp3 deleted file mode 100644 index 3498b22a7..000000000 Binary files a/files/28_3554_example.mp3 and /dev/null differ diff --git a/files/28_3554_meaning.mp3 b/files/28_3554_meaning.mp3 deleted file mode 100644 index 67a441631..000000000 Binary files a/files/28_3554_meaning.mp3 and /dev/null differ diff --git a/files/28_3555.jpg b/files/28_3555.jpg deleted file mode 100644 index 7ec9187c6..000000000 Binary files a/files/28_3555.jpg and /dev/null differ diff --git a/files/28_3555.mp3 b/files/28_3555.mp3 deleted file mode 100644 index 7bec81ec8..000000000 Binary files a/files/28_3555.mp3 and /dev/null differ diff --git a/files/28_3555_example.mp3 b/files/28_3555_example.mp3 deleted file mode 100644 index 7d195e1e1..000000000 Binary files a/files/28_3555_example.mp3 and /dev/null differ diff --git a/files/28_3555_meaning.mp3 b/files/28_3555_meaning.mp3 deleted file mode 100644 index c10b19c41..000000000 Binary files a/files/28_3555_meaning.mp3 and /dev/null differ diff --git a/files/28_3556.jpg b/files/28_3556.jpg deleted file mode 100644 index 6fa0068a2..000000000 Binary files a/files/28_3556.jpg and /dev/null differ diff --git a/files/28_3556.mp3 b/files/28_3556.mp3 deleted file mode 100644 index 6b2a47e34..000000000 Binary files a/files/28_3556.mp3 and /dev/null differ diff --git a/files/28_3556_example.mp3 b/files/28_3556_example.mp3 deleted file mode 100644 index 11c198886..000000000 Binary files a/files/28_3556_example.mp3 and /dev/null differ diff --git a/files/28_3556_meaning.mp3 b/files/28_3556_meaning.mp3 deleted file mode 100644 index 89d265884..000000000 Binary files a/files/28_3556_meaning.mp3 and /dev/null differ diff --git a/files/28_3557.jpg b/files/28_3557.jpg deleted file mode 100644 index 0249545f2..000000000 Binary files a/files/28_3557.jpg and /dev/null differ diff --git a/files/28_3557.mp3 b/files/28_3557.mp3 deleted file mode 100644 index 24b46f014..000000000 Binary files a/files/28_3557.mp3 and /dev/null differ diff --git a/files/28_3557_example.mp3 b/files/28_3557_example.mp3 deleted file mode 100644 index 94cd07bf3..000000000 Binary files a/files/28_3557_example.mp3 and /dev/null differ diff --git a/files/28_3557_meaning.mp3 b/files/28_3557_meaning.mp3 deleted file mode 100644 index bb4335418..000000000 Binary files a/files/28_3557_meaning.mp3 and /dev/null differ diff --git a/files/28_3558.jpg b/files/28_3558.jpg deleted file mode 100644 index affac2a7d..000000000 Binary files a/files/28_3558.jpg and /dev/null differ diff --git a/files/28_3558.mp3 b/files/28_3558.mp3 deleted file mode 100644 index 71b99ddab..000000000 Binary files a/files/28_3558.mp3 and /dev/null differ diff --git a/files/28_3558_example.mp3 b/files/28_3558_example.mp3 deleted file mode 100644 index 815e16742..000000000 Binary files a/files/28_3558_example.mp3 and /dev/null differ diff --git a/files/28_3558_meaning.mp3 b/files/28_3558_meaning.mp3 deleted file mode 100644 index 9ee0c7cef..000000000 Binary files a/files/28_3558_meaning.mp3 and /dev/null differ diff --git a/files/28_3559.jpg b/files/28_3559.jpg deleted file mode 100644 index c0babf5eb..000000000 Binary files a/files/28_3559.jpg and /dev/null differ diff --git a/files/28_3559.mp3 b/files/28_3559.mp3 deleted file mode 100644 index 67bc78e6e..000000000 Binary files a/files/28_3559.mp3 and /dev/null differ diff --git a/files/28_3559_example.mp3 b/files/28_3559_example.mp3 deleted file mode 100644 index fcac37854..000000000 Binary files a/files/28_3559_example.mp3 and /dev/null differ diff --git a/files/28_3559_meaning.mp3 b/files/28_3559_meaning.mp3 deleted file mode 100644 index e833e762c..000000000 Binary files a/files/28_3559_meaning.mp3 and /dev/null differ diff --git a/files/28_3560.jpg b/files/28_3560.jpg deleted file mode 100644 index d02c88ab9..000000000 Binary files a/files/28_3560.jpg and /dev/null differ diff --git a/files/28_3560.mp3 b/files/28_3560.mp3 deleted file mode 100644 index 35ffe3dd8..000000000 Binary files a/files/28_3560.mp3 and /dev/null differ diff --git a/files/28_3560_example.mp3 b/files/28_3560_example.mp3 deleted file mode 100644 index 723c52836..000000000 Binary files a/files/28_3560_example.mp3 and /dev/null differ diff --git a/files/28_3560_meaning.mp3 b/files/28_3560_meaning.mp3 deleted file mode 100644 index af3e93a02..000000000 Binary files a/files/28_3560_meaning.mp3 and /dev/null differ diff --git a/files/29_0561.jpg b/files/29_0561.jpg deleted file mode 100644 index f4ca16c9e..000000000 Binary files a/files/29_0561.jpg and /dev/null differ diff --git a/files/29_0561.mp3 b/files/29_0561.mp3 deleted file mode 100644 index 213ad72c2..000000000 Binary files a/files/29_0561.mp3 and /dev/null differ diff --git a/files/29_0561_example.mp3 b/files/29_0561_example.mp3 deleted file mode 100644 index bb25a1173..000000000 Binary files a/files/29_0561_example.mp3 and /dev/null differ diff --git a/files/29_0561_meaning.mp3 b/files/29_0561_meaning.mp3 deleted file mode 100644 index ba5b03045..000000000 Binary files a/files/29_0561_meaning.mp3 and /dev/null differ diff --git a/files/29_0562.jpg b/files/29_0562.jpg deleted file mode 100644 index 66c683f65..000000000 Binary files a/files/29_0562.jpg and /dev/null differ diff --git a/files/29_0562.mp3 b/files/29_0562.mp3 deleted file mode 100644 index dfc15e8b0..000000000 Binary files a/files/29_0562.mp3 and /dev/null differ diff --git a/files/29_0562_example.mp3 b/files/29_0562_example.mp3 deleted file mode 100644 index 417a9bcf3..000000000 Binary files a/files/29_0562_example.mp3 and /dev/null differ diff --git a/files/29_0562_meaning.mp3 b/files/29_0562_meaning.mp3 deleted file mode 100644 index fe035b6cf..000000000 Binary files a/files/29_0562_meaning.mp3 and /dev/null differ diff --git a/files/29_0563.jpg b/files/29_0563.jpg deleted file mode 100644 index 7673079e3..000000000 Binary files a/files/29_0563.jpg and /dev/null differ diff --git a/files/29_0563.mp3 b/files/29_0563.mp3 deleted file mode 100644 index f7503f76a..000000000 Binary files a/files/29_0563.mp3 and /dev/null differ diff --git a/files/29_0563_example.mp3 b/files/29_0563_example.mp3 deleted file mode 100644 index 92b39e2f7..000000000 Binary files a/files/29_0563_example.mp3 and /dev/null differ diff --git a/files/29_0563_meaning.mp3 b/files/29_0563_meaning.mp3 deleted file mode 100644 index c616fa94a..000000000 Binary files a/files/29_0563_meaning.mp3 and /dev/null differ diff --git a/files/29_0564.jpg b/files/29_0564.jpg deleted file mode 100644 index 60bdb5007..000000000 Binary files a/files/29_0564.jpg and /dev/null differ diff --git a/files/29_0564.mp3 b/files/29_0564.mp3 deleted file mode 100644 index 30fe2e0b8..000000000 Binary files a/files/29_0564.mp3 and /dev/null differ diff --git a/files/29_0564_example.mp3 b/files/29_0564_example.mp3 deleted file mode 100644 index e1e888d34..000000000 Binary files a/files/29_0564_example.mp3 and /dev/null differ diff --git a/files/29_0564_meaning.mp3 b/files/29_0564_meaning.mp3 deleted file mode 100644 index 646857c65..000000000 Binary files a/files/29_0564_meaning.mp3 and /dev/null differ diff --git a/files/29_0565.jpg b/files/29_0565.jpg deleted file mode 100644 index c230bead3..000000000 Binary files a/files/29_0565.jpg and /dev/null differ diff --git a/files/29_0565.mp3 b/files/29_0565.mp3 deleted file mode 100644 index fe5a22fae..000000000 Binary files a/files/29_0565.mp3 and /dev/null differ diff --git a/files/29_0565_example.mp3 b/files/29_0565_example.mp3 deleted file mode 100644 index ad0820562..000000000 Binary files a/files/29_0565_example.mp3 and /dev/null differ diff --git a/files/29_0565_meaning.mp3 b/files/29_0565_meaning.mp3 deleted file mode 100644 index 9d022bac7..000000000 Binary files a/files/29_0565_meaning.mp3 and /dev/null differ diff --git a/files/29_0566.jpg b/files/29_0566.jpg deleted file mode 100644 index 0b76a5782..000000000 Binary files a/files/29_0566.jpg and /dev/null differ diff --git a/files/29_0566.mp3 b/files/29_0566.mp3 deleted file mode 100644 index 7b402a043..000000000 Binary files a/files/29_0566.mp3 and /dev/null differ diff --git a/files/29_0566_example.mp3 b/files/29_0566_example.mp3 deleted file mode 100644 index 3fae0a86f..000000000 Binary files a/files/29_0566_example.mp3 and /dev/null differ diff --git a/files/29_0566_meaning.mp3 b/files/29_0566_meaning.mp3 deleted file mode 100644 index 5bb7605bc..000000000 Binary files a/files/29_0566_meaning.mp3 and /dev/null differ diff --git a/files/29_0567.jpg b/files/29_0567.jpg deleted file mode 100644 index 33949f042..000000000 Binary files a/files/29_0567.jpg and /dev/null differ diff --git a/files/29_0567.mp3 b/files/29_0567.mp3 deleted file mode 100644 index 0b16249aa..000000000 Binary files a/files/29_0567.mp3 and /dev/null differ diff --git a/files/29_0567_example.mp3 b/files/29_0567_example.mp3 deleted file mode 100644 index bfa98b844..000000000 Binary files a/files/29_0567_example.mp3 and /dev/null differ diff --git a/files/29_0567_meaning.mp3 b/files/29_0567_meaning.mp3 deleted file mode 100644 index 39185ccf8..000000000 Binary files a/files/29_0567_meaning.mp3 and /dev/null differ diff --git a/files/29_0568.jpg b/files/29_0568.jpg deleted file mode 100644 index 4297f1d3b..000000000 Binary files a/files/29_0568.jpg and /dev/null differ diff --git a/files/29_0568.mp3 b/files/29_0568.mp3 deleted file mode 100644 index ebd7006b7..000000000 Binary files a/files/29_0568.mp3 and /dev/null differ diff --git a/files/29_0568_example.mp3 b/files/29_0568_example.mp3 deleted file mode 100644 index 8d578cdd2..000000000 Binary files a/files/29_0568_example.mp3 and /dev/null differ diff --git a/files/29_0568_meaning.mp3 b/files/29_0568_meaning.mp3 deleted file mode 100644 index 6d84de1c4..000000000 Binary files a/files/29_0568_meaning.mp3 and /dev/null differ diff --git a/files/29_0569.jpg b/files/29_0569.jpg deleted file mode 100644 index 0c1fabcb8..000000000 Binary files a/files/29_0569.jpg and /dev/null differ diff --git a/files/29_0569.mp3 b/files/29_0569.mp3 deleted file mode 100644 index 2c26263da..000000000 Binary files a/files/29_0569.mp3 and /dev/null differ diff --git a/files/29_0569_example.mp3 b/files/29_0569_example.mp3 deleted file mode 100644 index bb40edefc..000000000 Binary files a/files/29_0569_example.mp3 and /dev/null differ diff --git a/files/29_0569_meaning.mp3 b/files/29_0569_meaning.mp3 deleted file mode 100644 index 02dfeab31..000000000 Binary files a/files/29_0569_meaning.mp3 and /dev/null differ diff --git a/files/29_0570.jpg b/files/29_0570.jpg deleted file mode 100644 index c55780e8c..000000000 Binary files a/files/29_0570.jpg and /dev/null differ diff --git a/files/29_0570.mp3 b/files/29_0570.mp3 deleted file mode 100644 index f7bc14c6b..000000000 Binary files a/files/29_0570.mp3 and /dev/null differ diff --git a/files/29_0570_example.mp3 b/files/29_0570_example.mp3 deleted file mode 100644 index ca1b8009b..000000000 Binary files a/files/29_0570_example.mp3 and /dev/null differ diff --git a/files/29_0570_meaning.mp3 b/files/29_0570_meaning.mp3 deleted file mode 100644 index aac08f165..000000000 Binary files a/files/29_0570_meaning.mp3 and /dev/null differ diff --git a/files/29_0571.jpg b/files/29_0571.jpg deleted file mode 100644 index ab4a36735..000000000 Binary files a/files/29_0571.jpg and /dev/null differ diff --git a/files/29_0571.mp3 b/files/29_0571.mp3 deleted file mode 100644 index 8a267b66f..000000000 Binary files a/files/29_0571.mp3 and /dev/null differ diff --git a/files/29_0571_example.mp3 b/files/29_0571_example.mp3 deleted file mode 100644 index b731d019d..000000000 Binary files a/files/29_0571_example.mp3 and /dev/null differ diff --git a/files/29_0571_meaning.mp3 b/files/29_0571_meaning.mp3 deleted file mode 100644 index 2508c993f..000000000 Binary files a/files/29_0571_meaning.mp3 and /dev/null differ diff --git a/files/29_0572.jpg b/files/29_0572.jpg deleted file mode 100644 index be8a062e1..000000000 Binary files a/files/29_0572.jpg and /dev/null differ diff --git a/files/29_0572.mp3 b/files/29_0572.mp3 deleted file mode 100644 index b1d143674..000000000 Binary files a/files/29_0572.mp3 and /dev/null differ diff --git a/files/29_0572_example.mp3 b/files/29_0572_example.mp3 deleted file mode 100644 index c34ee47cc..000000000 Binary files a/files/29_0572_example.mp3 and /dev/null differ diff --git a/files/29_0572_meaning.mp3 b/files/29_0572_meaning.mp3 deleted file mode 100644 index b439aa32a..000000000 Binary files a/files/29_0572_meaning.mp3 and /dev/null differ diff --git a/files/29_0573.jpg b/files/29_0573.jpg deleted file mode 100644 index 3f1a4a08a..000000000 Binary files a/files/29_0573.jpg and /dev/null differ diff --git a/files/29_0573.mp3 b/files/29_0573.mp3 deleted file mode 100644 index f10ab128f..000000000 Binary files a/files/29_0573.mp3 and /dev/null differ diff --git a/files/29_0573_example.mp3 b/files/29_0573_example.mp3 deleted file mode 100644 index 6c96c0caa..000000000 Binary files a/files/29_0573_example.mp3 and /dev/null differ diff --git a/files/29_0573_meaning.mp3 b/files/29_0573_meaning.mp3 deleted file mode 100644 index c30c7714d..000000000 Binary files a/files/29_0573_meaning.mp3 and /dev/null differ diff --git a/files/29_0574.jpg b/files/29_0574.jpg deleted file mode 100644 index 4528f4f82..000000000 Binary files a/files/29_0574.jpg and /dev/null differ diff --git a/files/29_0574.mp3 b/files/29_0574.mp3 deleted file mode 100644 index d50210763..000000000 Binary files a/files/29_0574.mp3 and /dev/null differ diff --git a/files/29_0574_example.mp3 b/files/29_0574_example.mp3 deleted file mode 100644 index 25574d246..000000000 Binary files a/files/29_0574_example.mp3 and /dev/null differ diff --git a/files/29_0574_meaning.mp3 b/files/29_0574_meaning.mp3 deleted file mode 100644 index 3172fa7fe..000000000 Binary files a/files/29_0574_meaning.mp3 and /dev/null differ diff --git a/files/29_0575.jpg b/files/29_0575.jpg deleted file mode 100644 index 0a950c9cd..000000000 Binary files a/files/29_0575.jpg and /dev/null differ diff --git a/files/29_0575.mp3 b/files/29_0575.mp3 deleted file mode 100644 index 35e95df8b..000000000 Binary files a/files/29_0575.mp3 and /dev/null differ diff --git a/files/29_0575_example.mp3 b/files/29_0575_example.mp3 deleted file mode 100644 index 6109e6494..000000000 Binary files a/files/29_0575_example.mp3 and /dev/null differ diff --git a/files/29_0575_meaning.mp3 b/files/29_0575_meaning.mp3 deleted file mode 100644 index dd4213c73..000000000 Binary files a/files/29_0575_meaning.mp3 and /dev/null differ diff --git a/files/29_0576.jpg b/files/29_0576.jpg deleted file mode 100644 index faa627975..000000000 Binary files a/files/29_0576.jpg and /dev/null differ diff --git a/files/29_0576.mp3 b/files/29_0576.mp3 deleted file mode 100644 index 6d2ee5c93..000000000 Binary files a/files/29_0576.mp3 and /dev/null differ diff --git a/files/29_0576_example.mp3 b/files/29_0576_example.mp3 deleted file mode 100644 index c598463dd..000000000 Binary files a/files/29_0576_example.mp3 and /dev/null differ diff --git a/files/29_0576_meaning.mp3 b/files/29_0576_meaning.mp3 deleted file mode 100644 index a36e9a09e..000000000 Binary files a/files/29_0576_meaning.mp3 and /dev/null differ diff --git a/files/29_0577.jpg b/files/29_0577.jpg deleted file mode 100644 index e2b8d6633..000000000 Binary files a/files/29_0577.jpg and /dev/null differ diff --git a/files/29_0577.mp3 b/files/29_0577.mp3 deleted file mode 100644 index 94a2bb357..000000000 Binary files a/files/29_0577.mp3 and /dev/null differ diff --git a/files/29_0577_example.mp3 b/files/29_0577_example.mp3 deleted file mode 100644 index d1c184184..000000000 Binary files a/files/29_0577_example.mp3 and /dev/null differ diff --git a/files/29_0577_meaning.mp3 b/files/29_0577_meaning.mp3 deleted file mode 100644 index c649e37da..000000000 Binary files a/files/29_0577_meaning.mp3 and /dev/null differ diff --git a/files/29_0578.jpg b/files/29_0578.jpg deleted file mode 100644 index 9f1342217..000000000 Binary files a/files/29_0578.jpg and /dev/null differ diff --git a/files/29_0578.mp3 b/files/29_0578.mp3 deleted file mode 100644 index 6ed648181..000000000 Binary files a/files/29_0578.mp3 and /dev/null differ diff --git a/files/29_0578_example.mp3 b/files/29_0578_example.mp3 deleted file mode 100644 index 95cc3a278..000000000 Binary files a/files/29_0578_example.mp3 and /dev/null differ diff --git a/files/29_0578_meaning.mp3 b/files/29_0578_meaning.mp3 deleted file mode 100644 index bc3877d7d..000000000 Binary files a/files/29_0578_meaning.mp3 and /dev/null differ diff --git a/files/29_0579.jpg b/files/29_0579.jpg deleted file mode 100644 index 4a0ad4421..000000000 Binary files a/files/29_0579.jpg and /dev/null differ diff --git a/files/29_0579.mp3 b/files/29_0579.mp3 deleted file mode 100644 index 98480100c..000000000 Binary files a/files/29_0579.mp3 and /dev/null differ diff --git a/files/29_0579_example.mp3 b/files/29_0579_example.mp3 deleted file mode 100644 index add7c8353..000000000 Binary files a/files/29_0579_example.mp3 and /dev/null differ diff --git a/files/29_0579_meaning.mp3 b/files/29_0579_meaning.mp3 deleted file mode 100644 index 892934cba..000000000 Binary files a/files/29_0579_meaning.mp3 and /dev/null differ diff --git a/files/29_0580.jpg b/files/29_0580.jpg deleted file mode 100644 index c7a149a52..000000000 Binary files a/files/29_0580.jpg and /dev/null differ diff --git a/files/29_0580.mp3 b/files/29_0580.mp3 deleted file mode 100644 index f17ce671d..000000000 Binary files a/files/29_0580.mp3 and /dev/null differ diff --git a/files/29_0580_example.mp3 b/files/29_0580_example.mp3 deleted file mode 100644 index bf33452a2..000000000 Binary files a/files/29_0580_example.mp3 and /dev/null differ diff --git a/files/29_0580_meaning.mp3 b/files/29_0580_meaning.mp3 deleted file mode 100644 index 6739a7fd2..000000000 Binary files a/files/29_0580_meaning.mp3 and /dev/null differ diff --git a/files/29_1161.jpg b/files/29_1161.jpg deleted file mode 100644 index cce88e216..000000000 Binary files a/files/29_1161.jpg and /dev/null differ diff --git a/files/29_1161.mp3 b/files/29_1161.mp3 deleted file mode 100644 index ef724bfed..000000000 Binary files a/files/29_1161.mp3 and /dev/null differ diff --git a/files/29_1161_example.mp3 b/files/29_1161_example.mp3 deleted file mode 100644 index 213c85a77..000000000 Binary files a/files/29_1161_example.mp3 and /dev/null differ diff --git a/files/29_1161_meaning.mp3 b/files/29_1161_meaning.mp3 deleted file mode 100644 index 1ce2f9542..000000000 Binary files a/files/29_1161_meaning.mp3 and /dev/null differ diff --git a/files/29_1162.jpg b/files/29_1162.jpg deleted file mode 100644 index 09d3210d6..000000000 Binary files a/files/29_1162.jpg and /dev/null differ diff --git a/files/29_1162.mp3 b/files/29_1162.mp3 deleted file mode 100644 index 9801bfe55..000000000 Binary files a/files/29_1162.mp3 and /dev/null differ diff --git a/files/29_1162_example.mp3 b/files/29_1162_example.mp3 deleted file mode 100644 index 53bc71e3a..000000000 Binary files a/files/29_1162_example.mp3 and /dev/null differ diff --git a/files/29_1162_meaning.mp3 b/files/29_1162_meaning.mp3 deleted file mode 100644 index 9ae89f142..000000000 Binary files a/files/29_1162_meaning.mp3 and /dev/null differ diff --git a/files/29_1163.jpg b/files/29_1163.jpg deleted file mode 100644 index 2d4372796..000000000 Binary files a/files/29_1163.jpg and /dev/null differ diff --git a/files/29_1163.mp3 b/files/29_1163.mp3 deleted file mode 100644 index fbffc04d5..000000000 Binary files a/files/29_1163.mp3 and /dev/null differ diff --git a/files/29_1163_example.mp3 b/files/29_1163_example.mp3 deleted file mode 100644 index c8b0eacd4..000000000 Binary files a/files/29_1163_example.mp3 and /dev/null differ diff --git a/files/29_1163_meaning.mp3 b/files/29_1163_meaning.mp3 deleted file mode 100644 index a8de5a706..000000000 Binary files a/files/29_1163_meaning.mp3 and /dev/null differ diff --git a/files/29_1164.jpg b/files/29_1164.jpg deleted file mode 100644 index d54e30da0..000000000 Binary files a/files/29_1164.jpg and /dev/null differ diff --git a/files/29_1164.mp3 b/files/29_1164.mp3 deleted file mode 100644 index c3aed8338..000000000 Binary files a/files/29_1164.mp3 and /dev/null differ diff --git a/files/29_1164_example.mp3 b/files/29_1164_example.mp3 deleted file mode 100644 index 5029da1f6..000000000 Binary files a/files/29_1164_example.mp3 and /dev/null differ diff --git a/files/29_1164_meaning.mp3 b/files/29_1164_meaning.mp3 deleted file mode 100644 index 690d59350..000000000 Binary files a/files/29_1164_meaning.mp3 and /dev/null differ diff --git a/files/29_1165.jpg b/files/29_1165.jpg deleted file mode 100644 index 4e7a9a117..000000000 Binary files a/files/29_1165.jpg and /dev/null differ diff --git a/files/29_1165.mp3 b/files/29_1165.mp3 deleted file mode 100644 index 5e672ca64..000000000 Binary files a/files/29_1165.mp3 and /dev/null differ diff --git a/files/29_1165_example.mp3 b/files/29_1165_example.mp3 deleted file mode 100644 index ad56ca226..000000000 Binary files a/files/29_1165_example.mp3 and /dev/null differ diff --git a/files/29_1165_meaning.mp3 b/files/29_1165_meaning.mp3 deleted file mode 100644 index b9938cc04..000000000 Binary files a/files/29_1165_meaning.mp3 and /dev/null differ diff --git a/files/29_1166.jpg b/files/29_1166.jpg deleted file mode 100644 index 15c7f5788..000000000 Binary files a/files/29_1166.jpg and /dev/null differ diff --git a/files/29_1166.mp3 b/files/29_1166.mp3 deleted file mode 100644 index d9960528b..000000000 Binary files a/files/29_1166.mp3 and /dev/null differ diff --git a/files/29_1166_example.mp3 b/files/29_1166_example.mp3 deleted file mode 100644 index 71edc8c27..000000000 Binary files a/files/29_1166_example.mp3 and /dev/null differ diff --git a/files/29_1166_meaning.mp3 b/files/29_1166_meaning.mp3 deleted file mode 100644 index 0b63d0765..000000000 Binary files a/files/29_1166_meaning.mp3 and /dev/null differ diff --git a/files/29_1167.jpg b/files/29_1167.jpg deleted file mode 100644 index 5d2b36eec..000000000 Binary files a/files/29_1167.jpg and /dev/null differ diff --git a/files/29_1167.mp3 b/files/29_1167.mp3 deleted file mode 100644 index 648f08c1a..000000000 Binary files a/files/29_1167.mp3 and /dev/null differ diff --git a/files/29_1167_example.mp3 b/files/29_1167_example.mp3 deleted file mode 100644 index 1870cd1ec..000000000 Binary files a/files/29_1167_example.mp3 and /dev/null differ diff --git a/files/29_1167_meaning.mp3 b/files/29_1167_meaning.mp3 deleted file mode 100644 index eb1486af9..000000000 Binary files a/files/29_1167_meaning.mp3 and /dev/null differ diff --git a/files/29_1168.jpg b/files/29_1168.jpg deleted file mode 100644 index 2167501f4..000000000 Binary files a/files/29_1168.jpg and /dev/null differ diff --git a/files/29_1168.mp3 b/files/29_1168.mp3 deleted file mode 100644 index 1f9986448..000000000 Binary files a/files/29_1168.mp3 and /dev/null differ diff --git a/files/29_1168_example.mp3 b/files/29_1168_example.mp3 deleted file mode 100644 index 9349bbf22..000000000 Binary files a/files/29_1168_example.mp3 and /dev/null differ diff --git a/files/29_1168_meaning.mp3 b/files/29_1168_meaning.mp3 deleted file mode 100644 index b1e2e1a2d..000000000 Binary files a/files/29_1168_meaning.mp3 and /dev/null differ diff --git a/files/29_1169.jpg b/files/29_1169.jpg deleted file mode 100644 index 741661da4..000000000 Binary files a/files/29_1169.jpg and /dev/null differ diff --git a/files/29_1169.mp3 b/files/29_1169.mp3 deleted file mode 100644 index cf56e0098..000000000 Binary files a/files/29_1169.mp3 and /dev/null differ diff --git a/files/29_1169_example.mp3 b/files/29_1169_example.mp3 deleted file mode 100644 index efacb1578..000000000 Binary files a/files/29_1169_example.mp3 and /dev/null differ diff --git a/files/29_1169_meaning.mp3 b/files/29_1169_meaning.mp3 deleted file mode 100644 index bb64afd4f..000000000 Binary files a/files/29_1169_meaning.mp3 and /dev/null differ diff --git a/files/29_1170.jpg b/files/29_1170.jpg deleted file mode 100644 index 409390909..000000000 Binary files a/files/29_1170.jpg and /dev/null differ diff --git a/files/29_1170.mp3 b/files/29_1170.mp3 deleted file mode 100644 index 8aaf6248c..000000000 Binary files a/files/29_1170.mp3 and /dev/null differ diff --git a/files/29_1170_example.mp3 b/files/29_1170_example.mp3 deleted file mode 100644 index 070d9fbd4..000000000 Binary files a/files/29_1170_example.mp3 and /dev/null differ diff --git a/files/29_1170_meaning.mp3 b/files/29_1170_meaning.mp3 deleted file mode 100644 index b399e559a..000000000 Binary files a/files/29_1170_meaning.mp3 and /dev/null differ diff --git a/files/29_1171.jpg b/files/29_1171.jpg deleted file mode 100644 index ad064f15c..000000000 Binary files a/files/29_1171.jpg and /dev/null differ diff --git a/files/29_1171.mp3 b/files/29_1171.mp3 deleted file mode 100644 index 6a1e67fe2..000000000 Binary files a/files/29_1171.mp3 and /dev/null differ diff --git a/files/29_1171_example.mp3 b/files/29_1171_example.mp3 deleted file mode 100644 index 385a8da79..000000000 Binary files a/files/29_1171_example.mp3 and /dev/null differ diff --git a/files/29_1171_meaning.mp3 b/files/29_1171_meaning.mp3 deleted file mode 100644 index f74643ab6..000000000 Binary files a/files/29_1171_meaning.mp3 and /dev/null differ diff --git a/files/29_1172.jpg b/files/29_1172.jpg deleted file mode 100644 index 1dc169185..000000000 Binary files a/files/29_1172.jpg and /dev/null differ diff --git a/files/29_1172.mp3 b/files/29_1172.mp3 deleted file mode 100644 index 88bf2be54..000000000 Binary files a/files/29_1172.mp3 and /dev/null differ diff --git a/files/29_1172_example.mp3 b/files/29_1172_example.mp3 deleted file mode 100644 index e07d09881..000000000 Binary files a/files/29_1172_example.mp3 and /dev/null differ diff --git a/files/29_1172_meaning.mp3 b/files/29_1172_meaning.mp3 deleted file mode 100644 index df6867a1b..000000000 Binary files a/files/29_1172_meaning.mp3 and /dev/null differ diff --git a/files/29_1173.jpg b/files/29_1173.jpg deleted file mode 100644 index 4be496076..000000000 Binary files a/files/29_1173.jpg and /dev/null differ diff --git a/files/29_1173.mp3 b/files/29_1173.mp3 deleted file mode 100644 index a90139635..000000000 Binary files a/files/29_1173.mp3 and /dev/null differ diff --git a/files/29_1173_example.mp3 b/files/29_1173_example.mp3 deleted file mode 100644 index 51c1bd056..000000000 Binary files a/files/29_1173_example.mp3 and /dev/null differ diff --git a/files/29_1173_meaning.mp3 b/files/29_1173_meaning.mp3 deleted file mode 100644 index c1f9b91bc..000000000 Binary files a/files/29_1173_meaning.mp3 and /dev/null differ diff --git a/files/29_1174.jpg b/files/29_1174.jpg deleted file mode 100644 index 11ed1b4a7..000000000 Binary files a/files/29_1174.jpg and /dev/null differ diff --git a/files/29_1174.mp3 b/files/29_1174.mp3 deleted file mode 100644 index 3c3735e90..000000000 Binary files a/files/29_1174.mp3 and /dev/null differ diff --git a/files/29_1174_example.mp3 b/files/29_1174_example.mp3 deleted file mode 100644 index 59397ca89..000000000 Binary files a/files/29_1174_example.mp3 and /dev/null differ diff --git a/files/29_1174_meaning.mp3 b/files/29_1174_meaning.mp3 deleted file mode 100644 index efdd66a22..000000000 Binary files a/files/29_1174_meaning.mp3 and /dev/null differ diff --git a/files/29_1175.jpg b/files/29_1175.jpg deleted file mode 100644 index 105327ee4..000000000 Binary files a/files/29_1175.jpg and /dev/null differ diff --git a/files/29_1175.mp3 b/files/29_1175.mp3 deleted file mode 100644 index 42b49a6d3..000000000 Binary files a/files/29_1175.mp3 and /dev/null differ diff --git a/files/29_1175_example.mp3 b/files/29_1175_example.mp3 deleted file mode 100644 index b127fbe3d..000000000 Binary files a/files/29_1175_example.mp3 and /dev/null differ diff --git a/files/29_1175_meaning.mp3 b/files/29_1175_meaning.mp3 deleted file mode 100644 index a52a72c92..000000000 Binary files a/files/29_1175_meaning.mp3 and /dev/null differ diff --git a/files/29_1176.jpg b/files/29_1176.jpg deleted file mode 100644 index 88310c777..000000000 Binary files a/files/29_1176.jpg and /dev/null differ diff --git a/files/29_1176.mp3 b/files/29_1176.mp3 deleted file mode 100644 index 085111fc3..000000000 Binary files a/files/29_1176.mp3 and /dev/null differ diff --git a/files/29_1176_example.mp3 b/files/29_1176_example.mp3 deleted file mode 100644 index 76dd218dc..000000000 Binary files a/files/29_1176_example.mp3 and /dev/null differ diff --git a/files/29_1176_meaning.mp3 b/files/29_1176_meaning.mp3 deleted file mode 100644 index db834c7b3..000000000 Binary files a/files/29_1176_meaning.mp3 and /dev/null differ diff --git a/files/29_1177.jpg b/files/29_1177.jpg deleted file mode 100644 index 51ada4279..000000000 Binary files a/files/29_1177.jpg and /dev/null differ diff --git a/files/29_1177.mp3 b/files/29_1177.mp3 deleted file mode 100644 index 1573f5917..000000000 Binary files a/files/29_1177.mp3 and /dev/null differ diff --git a/files/29_1177_example.mp3 b/files/29_1177_example.mp3 deleted file mode 100644 index ece47f696..000000000 Binary files a/files/29_1177_example.mp3 and /dev/null differ diff --git a/files/29_1177_meaning.mp3 b/files/29_1177_meaning.mp3 deleted file mode 100644 index 34f02ec65..000000000 Binary files a/files/29_1177_meaning.mp3 and /dev/null differ diff --git a/files/29_1178.jpg b/files/29_1178.jpg deleted file mode 100644 index a3798c537..000000000 Binary files a/files/29_1178.jpg and /dev/null differ diff --git a/files/29_1178.mp3 b/files/29_1178.mp3 deleted file mode 100644 index 31ee9eb8a..000000000 Binary files a/files/29_1178.mp3 and /dev/null differ diff --git a/files/29_1178_example.mp3 b/files/29_1178_example.mp3 deleted file mode 100644 index 8e28a2128..000000000 Binary files a/files/29_1178_example.mp3 and /dev/null differ diff --git a/files/29_1178_meaning.mp3 b/files/29_1178_meaning.mp3 deleted file mode 100644 index 7a2253160..000000000 Binary files a/files/29_1178_meaning.mp3 and /dev/null differ diff --git a/files/29_1179.jpg b/files/29_1179.jpg deleted file mode 100644 index 4575742bc..000000000 Binary files a/files/29_1179.jpg and /dev/null differ diff --git a/files/29_1179.mp3 b/files/29_1179.mp3 deleted file mode 100644 index 1863a9598..000000000 Binary files a/files/29_1179.mp3 and /dev/null differ diff --git a/files/29_1179_example.mp3 b/files/29_1179_example.mp3 deleted file mode 100644 index e77506a81..000000000 Binary files a/files/29_1179_example.mp3 and /dev/null differ diff --git a/files/29_1179_meaning.mp3 b/files/29_1179_meaning.mp3 deleted file mode 100644 index 147152410..000000000 Binary files a/files/29_1179_meaning.mp3 and /dev/null differ diff --git a/files/29_1180.jpg b/files/29_1180.jpg deleted file mode 100644 index 826a32480..000000000 Binary files a/files/29_1180.jpg and /dev/null differ diff --git a/files/29_1180.mp3 b/files/29_1180.mp3 deleted file mode 100644 index 02ce2f348..000000000 Binary files a/files/29_1180.mp3 and /dev/null differ diff --git a/files/29_1180_example.mp3 b/files/29_1180_example.mp3 deleted file mode 100644 index 18e62d2fc..000000000 Binary files a/files/29_1180_example.mp3 and /dev/null differ diff --git a/files/29_1180_meaning.mp3 b/files/29_1180_meaning.mp3 deleted file mode 100644 index a30cb1b9f..000000000 Binary files a/files/29_1180_meaning.mp3 and /dev/null differ diff --git a/files/29_1761.jpg b/files/29_1761.jpg deleted file mode 100644 index de8e18fc3..000000000 Binary files a/files/29_1761.jpg and /dev/null differ diff --git a/files/29_1761.mp3 b/files/29_1761.mp3 deleted file mode 100644 index 55ac1f87e..000000000 Binary files a/files/29_1761.mp3 and /dev/null differ diff --git a/files/29_1761_example.mp3 b/files/29_1761_example.mp3 deleted file mode 100644 index 3e625d95d..000000000 Binary files a/files/29_1761_example.mp3 and /dev/null differ diff --git a/files/29_1761_meaning.mp3 b/files/29_1761_meaning.mp3 deleted file mode 100644 index 04d3479f3..000000000 Binary files a/files/29_1761_meaning.mp3 and /dev/null differ diff --git a/files/29_1762.jpg b/files/29_1762.jpg deleted file mode 100644 index 5de045978..000000000 Binary files a/files/29_1762.jpg and /dev/null differ diff --git a/files/29_1762.mp3 b/files/29_1762.mp3 deleted file mode 100644 index 746139b0a..000000000 Binary files a/files/29_1762.mp3 and /dev/null differ diff --git a/files/29_1762_example.mp3 b/files/29_1762_example.mp3 deleted file mode 100644 index 3c54fda16..000000000 Binary files a/files/29_1762_example.mp3 and /dev/null differ diff --git a/files/29_1762_meaning.mp3 b/files/29_1762_meaning.mp3 deleted file mode 100644 index 3de30635b..000000000 Binary files a/files/29_1762_meaning.mp3 and /dev/null differ diff --git a/files/29_1763.jpg b/files/29_1763.jpg deleted file mode 100644 index f852d07da..000000000 Binary files a/files/29_1763.jpg and /dev/null differ diff --git a/files/29_1763.mp3 b/files/29_1763.mp3 deleted file mode 100644 index 278c9a736..000000000 Binary files a/files/29_1763.mp3 and /dev/null differ diff --git a/files/29_1763_example.mp3 b/files/29_1763_example.mp3 deleted file mode 100644 index d3ca101f6..000000000 Binary files a/files/29_1763_example.mp3 and /dev/null differ diff --git a/files/29_1763_meaning.mp3 b/files/29_1763_meaning.mp3 deleted file mode 100644 index 3af53d674..000000000 Binary files a/files/29_1763_meaning.mp3 and /dev/null differ diff --git a/files/29_1764.jpg b/files/29_1764.jpg deleted file mode 100644 index d582809b8..000000000 Binary files a/files/29_1764.jpg and /dev/null differ diff --git a/files/29_1764.mp3 b/files/29_1764.mp3 deleted file mode 100644 index 265ca0913..000000000 Binary files a/files/29_1764.mp3 and /dev/null differ diff --git a/files/29_1764_example.mp3 b/files/29_1764_example.mp3 deleted file mode 100644 index 41ebff7ed..000000000 Binary files a/files/29_1764_example.mp3 and /dev/null differ diff --git a/files/29_1764_meaning.mp3 b/files/29_1764_meaning.mp3 deleted file mode 100644 index d1601043a..000000000 Binary files a/files/29_1764_meaning.mp3 and /dev/null differ diff --git a/files/29_1765.jpg b/files/29_1765.jpg deleted file mode 100644 index bd7cf00ed..000000000 Binary files a/files/29_1765.jpg and /dev/null differ diff --git a/files/29_1765.mp3 b/files/29_1765.mp3 deleted file mode 100644 index 78d24a700..000000000 Binary files a/files/29_1765.mp3 and /dev/null differ diff --git a/files/29_1765_example.mp3 b/files/29_1765_example.mp3 deleted file mode 100644 index ff0d5b31a..000000000 Binary files a/files/29_1765_example.mp3 and /dev/null differ diff --git a/files/29_1765_meaning.mp3 b/files/29_1765_meaning.mp3 deleted file mode 100644 index 361262da9..000000000 Binary files a/files/29_1765_meaning.mp3 and /dev/null differ diff --git a/files/29_1766.jpg b/files/29_1766.jpg deleted file mode 100644 index 1b15b4361..000000000 Binary files a/files/29_1766.jpg and /dev/null differ diff --git a/files/29_1766.mp3 b/files/29_1766.mp3 deleted file mode 100644 index d33fc31c8..000000000 Binary files a/files/29_1766.mp3 and /dev/null differ diff --git a/files/29_1766_example.mp3 b/files/29_1766_example.mp3 deleted file mode 100644 index 8193000a9..000000000 Binary files a/files/29_1766_example.mp3 and /dev/null differ diff --git a/files/29_1766_meaning.mp3 b/files/29_1766_meaning.mp3 deleted file mode 100644 index 65ced4bbe..000000000 Binary files a/files/29_1766_meaning.mp3 and /dev/null differ diff --git a/files/29_1767.jpg b/files/29_1767.jpg deleted file mode 100644 index 3c8ca0161..000000000 Binary files a/files/29_1767.jpg and /dev/null differ diff --git a/files/29_1767.mp3 b/files/29_1767.mp3 deleted file mode 100644 index b168c58e5..000000000 Binary files a/files/29_1767.mp3 and /dev/null differ diff --git a/files/29_1767_example.mp3 b/files/29_1767_example.mp3 deleted file mode 100644 index 32fc79685..000000000 Binary files a/files/29_1767_example.mp3 and /dev/null differ diff --git a/files/29_1767_meaning.mp3 b/files/29_1767_meaning.mp3 deleted file mode 100644 index fa8ddb112..000000000 Binary files a/files/29_1767_meaning.mp3 and /dev/null differ diff --git a/files/29_1768.jpg b/files/29_1768.jpg deleted file mode 100644 index 82a78c3bd..000000000 Binary files a/files/29_1768.jpg and /dev/null differ diff --git a/files/29_1768.mp3 b/files/29_1768.mp3 deleted file mode 100644 index 738d20718..000000000 Binary files a/files/29_1768.mp3 and /dev/null differ diff --git a/files/29_1768_example.mp3 b/files/29_1768_example.mp3 deleted file mode 100644 index 44e4bfaa7..000000000 Binary files a/files/29_1768_example.mp3 and /dev/null differ diff --git a/files/29_1768_meaning.mp3 b/files/29_1768_meaning.mp3 deleted file mode 100644 index 694d2ff27..000000000 Binary files a/files/29_1768_meaning.mp3 and /dev/null differ diff --git a/files/29_1769.jpg b/files/29_1769.jpg deleted file mode 100644 index 3d3034ee7..000000000 Binary files a/files/29_1769.jpg and /dev/null differ diff --git a/files/29_1769.mp3 b/files/29_1769.mp3 deleted file mode 100644 index edbc69306..000000000 Binary files a/files/29_1769.mp3 and /dev/null differ diff --git a/files/29_1769_example.mp3 b/files/29_1769_example.mp3 deleted file mode 100644 index cc2c965a0..000000000 Binary files a/files/29_1769_example.mp3 and /dev/null differ diff --git a/files/29_1769_meaning.mp3 b/files/29_1769_meaning.mp3 deleted file mode 100644 index c95c6ffce..000000000 Binary files a/files/29_1769_meaning.mp3 and /dev/null differ diff --git a/files/29_1770.jpg b/files/29_1770.jpg deleted file mode 100644 index 5bef0bf5b..000000000 Binary files a/files/29_1770.jpg and /dev/null differ diff --git a/files/29_1770.mp3 b/files/29_1770.mp3 deleted file mode 100644 index 55baf5253..000000000 Binary files a/files/29_1770.mp3 and /dev/null differ diff --git a/files/29_1770_example.mp3 b/files/29_1770_example.mp3 deleted file mode 100644 index 61805fcdf..000000000 Binary files a/files/29_1770_example.mp3 and /dev/null differ diff --git a/files/29_1770_meaning.mp3 b/files/29_1770_meaning.mp3 deleted file mode 100644 index ae8ead0b4..000000000 Binary files a/files/29_1770_meaning.mp3 and /dev/null differ diff --git a/files/29_1771.jpg b/files/29_1771.jpg deleted file mode 100644 index bcc2dfe0d..000000000 Binary files a/files/29_1771.jpg and /dev/null differ diff --git a/files/29_1771.mp3 b/files/29_1771.mp3 deleted file mode 100644 index 1b1a59017..000000000 Binary files a/files/29_1771.mp3 and /dev/null differ diff --git a/files/29_1771_example.mp3 b/files/29_1771_example.mp3 deleted file mode 100644 index 8eb586858..000000000 Binary files a/files/29_1771_example.mp3 and /dev/null differ diff --git a/files/29_1771_meaning.mp3 b/files/29_1771_meaning.mp3 deleted file mode 100644 index ccccaf7e7..000000000 Binary files a/files/29_1771_meaning.mp3 and /dev/null differ diff --git a/files/29_1772.jpg b/files/29_1772.jpg deleted file mode 100644 index cb0062fd0..000000000 Binary files a/files/29_1772.jpg and /dev/null differ diff --git a/files/29_1772.mp3 b/files/29_1772.mp3 deleted file mode 100644 index 2b8fea9b1..000000000 Binary files a/files/29_1772.mp3 and /dev/null differ diff --git a/files/29_1772_example.mp3 b/files/29_1772_example.mp3 deleted file mode 100644 index 738d193f6..000000000 Binary files a/files/29_1772_example.mp3 and /dev/null differ diff --git a/files/29_1772_meaning.mp3 b/files/29_1772_meaning.mp3 deleted file mode 100644 index 8bc2f82be..000000000 Binary files a/files/29_1772_meaning.mp3 and /dev/null differ diff --git a/files/29_1773.jpg b/files/29_1773.jpg deleted file mode 100644 index d8d0047a7..000000000 Binary files a/files/29_1773.jpg and /dev/null differ diff --git a/files/29_1773.mp3 b/files/29_1773.mp3 deleted file mode 100644 index c85bb69eb..000000000 Binary files a/files/29_1773.mp3 and /dev/null differ diff --git a/files/29_1773_example.mp3 b/files/29_1773_example.mp3 deleted file mode 100644 index 7841aa1cb..000000000 Binary files a/files/29_1773_example.mp3 and /dev/null differ diff --git a/files/29_1773_meaning.mp3 b/files/29_1773_meaning.mp3 deleted file mode 100644 index f636b69dd..000000000 Binary files a/files/29_1773_meaning.mp3 and /dev/null differ diff --git a/files/29_1774.jpg b/files/29_1774.jpg deleted file mode 100644 index 75fbe4823..000000000 Binary files a/files/29_1774.jpg and /dev/null differ diff --git a/files/29_1774.mp3 b/files/29_1774.mp3 deleted file mode 100644 index d59433d74..000000000 Binary files a/files/29_1774.mp3 and /dev/null differ diff --git a/files/29_1774_example.mp3 b/files/29_1774_example.mp3 deleted file mode 100644 index 5b8bf9a61..000000000 Binary files a/files/29_1774_example.mp3 and /dev/null differ diff --git a/files/29_1774_meaning.mp3 b/files/29_1774_meaning.mp3 deleted file mode 100644 index 22ea2f278..000000000 Binary files a/files/29_1774_meaning.mp3 and /dev/null differ diff --git a/files/29_1775.jpg b/files/29_1775.jpg deleted file mode 100644 index 6160195db..000000000 Binary files a/files/29_1775.jpg and /dev/null differ diff --git a/files/29_1775.mp3 b/files/29_1775.mp3 deleted file mode 100644 index 162ac9657..000000000 Binary files a/files/29_1775.mp3 and /dev/null differ diff --git a/files/29_1775_example.mp3 b/files/29_1775_example.mp3 deleted file mode 100644 index d96821866..000000000 Binary files a/files/29_1775_example.mp3 and /dev/null differ diff --git a/files/29_1775_meaning.mp3 b/files/29_1775_meaning.mp3 deleted file mode 100644 index e4c8f132c..000000000 Binary files a/files/29_1775_meaning.mp3 and /dev/null differ diff --git a/files/29_1776.jpg b/files/29_1776.jpg deleted file mode 100644 index bcb2709a3..000000000 Binary files a/files/29_1776.jpg and /dev/null differ diff --git a/files/29_1776.mp3 b/files/29_1776.mp3 deleted file mode 100644 index 84188a69a..000000000 Binary files a/files/29_1776.mp3 and /dev/null differ diff --git a/files/29_1776_example.mp3 b/files/29_1776_example.mp3 deleted file mode 100644 index d2b42a147..000000000 Binary files a/files/29_1776_example.mp3 and /dev/null differ diff --git a/files/29_1776_meaning.mp3 b/files/29_1776_meaning.mp3 deleted file mode 100644 index d130250ae..000000000 Binary files a/files/29_1776_meaning.mp3 and /dev/null differ diff --git a/files/29_1777.jpg b/files/29_1777.jpg deleted file mode 100644 index 690a8a935..000000000 Binary files a/files/29_1777.jpg and /dev/null differ diff --git a/files/29_1777.mp3 b/files/29_1777.mp3 deleted file mode 100644 index da80da8af..000000000 Binary files a/files/29_1777.mp3 and /dev/null differ diff --git a/files/29_1777_example.mp3 b/files/29_1777_example.mp3 deleted file mode 100644 index ceae1c6cd..000000000 Binary files a/files/29_1777_example.mp3 and /dev/null differ diff --git a/files/29_1777_meaning.mp3 b/files/29_1777_meaning.mp3 deleted file mode 100644 index 933a2bf65..000000000 Binary files a/files/29_1777_meaning.mp3 and /dev/null differ diff --git a/files/29_1778.jpg b/files/29_1778.jpg deleted file mode 100644 index 8fd6237ba..000000000 Binary files a/files/29_1778.jpg and /dev/null differ diff --git a/files/29_1778.mp3 b/files/29_1778.mp3 deleted file mode 100644 index 3066678cb..000000000 Binary files a/files/29_1778.mp3 and /dev/null differ diff --git a/files/29_1778_example.mp3 b/files/29_1778_example.mp3 deleted file mode 100644 index 8df7ce994..000000000 Binary files a/files/29_1778_example.mp3 and /dev/null differ diff --git a/files/29_1778_meaning.mp3 b/files/29_1778_meaning.mp3 deleted file mode 100644 index fcabf91e8..000000000 Binary files a/files/29_1778_meaning.mp3 and /dev/null differ diff --git a/files/29_1779.jpg b/files/29_1779.jpg deleted file mode 100644 index b4587b2bf..000000000 Binary files a/files/29_1779.jpg and /dev/null differ diff --git a/files/29_1779.mp3 b/files/29_1779.mp3 deleted file mode 100644 index e63f89bd6..000000000 Binary files a/files/29_1779.mp3 and /dev/null differ diff --git a/files/29_1779_example.mp3 b/files/29_1779_example.mp3 deleted file mode 100644 index fdc7130d8..000000000 Binary files a/files/29_1779_example.mp3 and /dev/null differ diff --git a/files/29_1779_meaning.mp3 b/files/29_1779_meaning.mp3 deleted file mode 100644 index 22705375a..000000000 Binary files a/files/29_1779_meaning.mp3 and /dev/null differ diff --git a/files/29_1780.jpg b/files/29_1780.jpg deleted file mode 100644 index 8c18663fa..000000000 Binary files a/files/29_1780.jpg and /dev/null differ diff --git a/files/29_1780.mp3 b/files/29_1780.mp3 deleted file mode 100644 index 48114b812..000000000 Binary files a/files/29_1780.mp3 and /dev/null differ diff --git a/files/29_1780_example.mp3 b/files/29_1780_example.mp3 deleted file mode 100644 index 2990e72d6..000000000 Binary files a/files/29_1780_example.mp3 and /dev/null differ diff --git a/files/29_1780_meaning.mp3 b/files/29_1780_meaning.mp3 deleted file mode 100644 index 5058f8efa..000000000 Binary files a/files/29_1780_meaning.mp3 and /dev/null differ diff --git a/files/29_2361.jpg b/files/29_2361.jpg deleted file mode 100644 index bbff38725..000000000 Binary files a/files/29_2361.jpg and /dev/null differ diff --git a/files/29_2361.mp3 b/files/29_2361.mp3 deleted file mode 100644 index a2a1344c6..000000000 Binary files a/files/29_2361.mp3 and /dev/null differ diff --git a/files/29_2361_example.mp3 b/files/29_2361_example.mp3 deleted file mode 100644 index 67f71c1d9..000000000 Binary files a/files/29_2361_example.mp3 and /dev/null differ diff --git a/files/29_2361_meaning.mp3 b/files/29_2361_meaning.mp3 deleted file mode 100644 index 189cbaa08..000000000 Binary files a/files/29_2361_meaning.mp3 and /dev/null differ diff --git a/files/29_2362.jpg b/files/29_2362.jpg deleted file mode 100644 index 823bd8095..000000000 Binary files a/files/29_2362.jpg and /dev/null differ diff --git a/files/29_2362.mp3 b/files/29_2362.mp3 deleted file mode 100644 index 85d92c316..000000000 Binary files a/files/29_2362.mp3 and /dev/null differ diff --git a/files/29_2362_example.mp3 b/files/29_2362_example.mp3 deleted file mode 100644 index 11850dc1f..000000000 Binary files a/files/29_2362_example.mp3 and /dev/null differ diff --git a/files/29_2362_meaning.mp3 b/files/29_2362_meaning.mp3 deleted file mode 100644 index 6fab7f970..000000000 Binary files a/files/29_2362_meaning.mp3 and /dev/null differ diff --git a/files/29_2363.jpg b/files/29_2363.jpg deleted file mode 100644 index fa32e05fb..000000000 Binary files a/files/29_2363.jpg and /dev/null differ diff --git a/files/29_2363.mp3 b/files/29_2363.mp3 deleted file mode 100644 index 378dc4177..000000000 Binary files a/files/29_2363.mp3 and /dev/null differ diff --git a/files/29_2363_example.mp3 b/files/29_2363_example.mp3 deleted file mode 100644 index a7bc4a2ed..000000000 Binary files a/files/29_2363_example.mp3 and /dev/null differ diff --git a/files/29_2363_meaning.mp3 b/files/29_2363_meaning.mp3 deleted file mode 100644 index a6066f764..000000000 Binary files a/files/29_2363_meaning.mp3 and /dev/null differ diff --git a/files/29_2364.jpg b/files/29_2364.jpg deleted file mode 100644 index 7da120394..000000000 Binary files a/files/29_2364.jpg and /dev/null differ diff --git a/files/29_2364.mp3 b/files/29_2364.mp3 deleted file mode 100644 index 05379864b..000000000 Binary files a/files/29_2364.mp3 and /dev/null differ diff --git a/files/29_2364_example.mp3 b/files/29_2364_example.mp3 deleted file mode 100644 index e363891ae..000000000 Binary files a/files/29_2364_example.mp3 and /dev/null differ diff --git a/files/29_2364_meaning.mp3 b/files/29_2364_meaning.mp3 deleted file mode 100644 index f241f3525..000000000 Binary files a/files/29_2364_meaning.mp3 and /dev/null differ diff --git a/files/29_2365.jpg b/files/29_2365.jpg deleted file mode 100644 index 188a4f58e..000000000 Binary files a/files/29_2365.jpg and /dev/null differ diff --git a/files/29_2365.mp3 b/files/29_2365.mp3 deleted file mode 100644 index 6fb463b69..000000000 Binary files a/files/29_2365.mp3 and /dev/null differ diff --git a/files/29_2365_example.mp3 b/files/29_2365_example.mp3 deleted file mode 100644 index 5f7172a14..000000000 Binary files a/files/29_2365_example.mp3 and /dev/null differ diff --git a/files/29_2365_meaning.mp3 b/files/29_2365_meaning.mp3 deleted file mode 100644 index 59c2c3f1c..000000000 Binary files a/files/29_2365_meaning.mp3 and /dev/null differ diff --git a/files/29_2366.jpg b/files/29_2366.jpg deleted file mode 100644 index 275996bab..000000000 Binary files a/files/29_2366.jpg and /dev/null differ diff --git a/files/29_2366.mp3 b/files/29_2366.mp3 deleted file mode 100644 index 749c7309e..000000000 Binary files a/files/29_2366.mp3 and /dev/null differ diff --git a/files/29_2366_example.mp3 b/files/29_2366_example.mp3 deleted file mode 100644 index 61a6d4fc1..000000000 Binary files a/files/29_2366_example.mp3 and /dev/null differ diff --git a/files/29_2366_meaning.mp3 b/files/29_2366_meaning.mp3 deleted file mode 100644 index f2d288cab..000000000 Binary files a/files/29_2366_meaning.mp3 and /dev/null differ diff --git a/files/29_2367.jpg b/files/29_2367.jpg deleted file mode 100644 index 2b9b77791..000000000 Binary files a/files/29_2367.jpg and /dev/null differ diff --git a/files/29_2367.mp3 b/files/29_2367.mp3 deleted file mode 100644 index 36e010ddb..000000000 Binary files a/files/29_2367.mp3 and /dev/null differ diff --git a/files/29_2367_example.mp3 b/files/29_2367_example.mp3 deleted file mode 100644 index aa8757d4b..000000000 Binary files a/files/29_2367_example.mp3 and /dev/null differ diff --git a/files/29_2367_meaning.mp3 b/files/29_2367_meaning.mp3 deleted file mode 100644 index 2467a0a67..000000000 Binary files a/files/29_2367_meaning.mp3 and /dev/null differ diff --git a/files/29_2368.jpg b/files/29_2368.jpg deleted file mode 100644 index 766b281fc..000000000 Binary files a/files/29_2368.jpg and /dev/null differ diff --git a/files/29_2368.mp3 b/files/29_2368.mp3 deleted file mode 100644 index 0174706d7..000000000 Binary files a/files/29_2368.mp3 and /dev/null differ diff --git a/files/29_2368_example.mp3 b/files/29_2368_example.mp3 deleted file mode 100644 index b54abe5ef..000000000 Binary files a/files/29_2368_example.mp3 and /dev/null differ diff --git a/files/29_2368_meaning.mp3 b/files/29_2368_meaning.mp3 deleted file mode 100644 index b147ecd97..000000000 Binary files a/files/29_2368_meaning.mp3 and /dev/null differ diff --git a/files/29_2369.jpg b/files/29_2369.jpg deleted file mode 100644 index b6c77a1fd..000000000 Binary files a/files/29_2369.jpg and /dev/null differ diff --git a/files/29_2369.mp3 b/files/29_2369.mp3 deleted file mode 100644 index 25c3e8ed1..000000000 Binary files a/files/29_2369.mp3 and /dev/null differ diff --git a/files/29_2369_example.mp3 b/files/29_2369_example.mp3 deleted file mode 100644 index 4ff968406..000000000 Binary files a/files/29_2369_example.mp3 and /dev/null differ diff --git a/files/29_2369_meaning.mp3 b/files/29_2369_meaning.mp3 deleted file mode 100644 index 5eed55918..000000000 Binary files a/files/29_2369_meaning.mp3 and /dev/null differ diff --git a/files/29_2370.jpg b/files/29_2370.jpg deleted file mode 100644 index b3ab6452b..000000000 Binary files a/files/29_2370.jpg and /dev/null differ diff --git a/files/29_2370.mp3 b/files/29_2370.mp3 deleted file mode 100644 index 0597537c3..000000000 Binary files a/files/29_2370.mp3 and /dev/null differ diff --git a/files/29_2370_example.mp3 b/files/29_2370_example.mp3 deleted file mode 100644 index 31c3fa99c..000000000 Binary files a/files/29_2370_example.mp3 and /dev/null differ diff --git a/files/29_2370_meaning.mp3 b/files/29_2370_meaning.mp3 deleted file mode 100644 index 1bf02935a..000000000 Binary files a/files/29_2370_meaning.mp3 and /dev/null differ diff --git a/files/29_2371.jpg b/files/29_2371.jpg deleted file mode 100644 index 137393081..000000000 Binary files a/files/29_2371.jpg and /dev/null differ diff --git a/files/29_2371.mp3 b/files/29_2371.mp3 deleted file mode 100644 index 118a41384..000000000 Binary files a/files/29_2371.mp3 and /dev/null differ diff --git a/files/29_2371_example.mp3 b/files/29_2371_example.mp3 deleted file mode 100644 index 3812282b4..000000000 Binary files a/files/29_2371_example.mp3 and /dev/null differ diff --git a/files/29_2371_meaning.mp3 b/files/29_2371_meaning.mp3 deleted file mode 100644 index f034ccb0a..000000000 Binary files a/files/29_2371_meaning.mp3 and /dev/null differ diff --git a/files/29_2372.jpg b/files/29_2372.jpg deleted file mode 100644 index 12db79f14..000000000 Binary files a/files/29_2372.jpg and /dev/null differ diff --git a/files/29_2372.mp3 b/files/29_2372.mp3 deleted file mode 100644 index 476819f5d..000000000 Binary files a/files/29_2372.mp3 and /dev/null differ diff --git a/files/29_2372_example.mp3 b/files/29_2372_example.mp3 deleted file mode 100644 index 2624084ce..000000000 Binary files a/files/29_2372_example.mp3 and /dev/null differ diff --git a/files/29_2372_meaning.mp3 b/files/29_2372_meaning.mp3 deleted file mode 100644 index 9cc09bff9..000000000 Binary files a/files/29_2372_meaning.mp3 and /dev/null differ diff --git a/files/29_2373.jpg b/files/29_2373.jpg deleted file mode 100644 index ce4901fa2..000000000 Binary files a/files/29_2373.jpg and /dev/null differ diff --git a/files/29_2373.mp3 b/files/29_2373.mp3 deleted file mode 100644 index 5dbd5527b..000000000 Binary files a/files/29_2373.mp3 and /dev/null differ diff --git a/files/29_2373_example.mp3 b/files/29_2373_example.mp3 deleted file mode 100644 index 9b37ce889..000000000 Binary files a/files/29_2373_example.mp3 and /dev/null differ diff --git a/files/29_2373_meaning.mp3 b/files/29_2373_meaning.mp3 deleted file mode 100644 index ae1475502..000000000 Binary files a/files/29_2373_meaning.mp3 and /dev/null differ diff --git a/files/29_2374.jpg b/files/29_2374.jpg deleted file mode 100644 index ba9e448d6..000000000 Binary files a/files/29_2374.jpg and /dev/null differ diff --git a/files/29_2374.mp3 b/files/29_2374.mp3 deleted file mode 100644 index 722792bcc..000000000 Binary files a/files/29_2374.mp3 and /dev/null differ diff --git a/files/29_2374_example.mp3 b/files/29_2374_example.mp3 deleted file mode 100644 index 6d348e4f4..000000000 Binary files a/files/29_2374_example.mp3 and /dev/null differ diff --git a/files/29_2374_meaning.mp3 b/files/29_2374_meaning.mp3 deleted file mode 100644 index 84a0666b6..000000000 Binary files a/files/29_2374_meaning.mp3 and /dev/null differ diff --git a/files/29_2375.jpg b/files/29_2375.jpg deleted file mode 100644 index 086d4bf9b..000000000 Binary files a/files/29_2375.jpg and /dev/null differ diff --git a/files/29_2375.mp3 b/files/29_2375.mp3 deleted file mode 100644 index f5abdada6..000000000 Binary files a/files/29_2375.mp3 and /dev/null differ diff --git a/files/29_2375_example.mp3 b/files/29_2375_example.mp3 deleted file mode 100644 index bd122db68..000000000 Binary files a/files/29_2375_example.mp3 and /dev/null differ diff --git a/files/29_2375_meaning.mp3 b/files/29_2375_meaning.mp3 deleted file mode 100644 index 1e3123bc4..000000000 Binary files a/files/29_2375_meaning.mp3 and /dev/null differ diff --git a/files/29_2376.jpg b/files/29_2376.jpg deleted file mode 100644 index 02c2030bd..000000000 Binary files a/files/29_2376.jpg and /dev/null differ diff --git a/files/29_2376.mp3 b/files/29_2376.mp3 deleted file mode 100644 index 38851eb74..000000000 Binary files a/files/29_2376.mp3 and /dev/null differ diff --git a/files/29_2376_example.mp3 b/files/29_2376_example.mp3 deleted file mode 100644 index eabb6df2a..000000000 Binary files a/files/29_2376_example.mp3 and /dev/null differ diff --git a/files/29_2376_meaning.mp3 b/files/29_2376_meaning.mp3 deleted file mode 100644 index 767b82125..000000000 Binary files a/files/29_2376_meaning.mp3 and /dev/null differ diff --git a/files/29_2377.jpg b/files/29_2377.jpg deleted file mode 100644 index f03d6950c..000000000 Binary files a/files/29_2377.jpg and /dev/null differ diff --git a/files/29_2377.mp3 b/files/29_2377.mp3 deleted file mode 100644 index 260dc9432..000000000 Binary files a/files/29_2377.mp3 and /dev/null differ diff --git a/files/29_2377_example.mp3 b/files/29_2377_example.mp3 deleted file mode 100644 index 028608458..000000000 Binary files a/files/29_2377_example.mp3 and /dev/null differ diff --git a/files/29_2377_meaning.mp3 b/files/29_2377_meaning.mp3 deleted file mode 100644 index f6c99aa19..000000000 Binary files a/files/29_2377_meaning.mp3 and /dev/null differ diff --git a/files/29_2378.jpg b/files/29_2378.jpg deleted file mode 100644 index 7a96219db..000000000 Binary files a/files/29_2378.jpg and /dev/null differ diff --git a/files/29_2378.mp3 b/files/29_2378.mp3 deleted file mode 100644 index c4b7fa4e8..000000000 Binary files a/files/29_2378.mp3 and /dev/null differ diff --git a/files/29_2378_example.mp3 b/files/29_2378_example.mp3 deleted file mode 100644 index c8728ad97..000000000 Binary files a/files/29_2378_example.mp3 and /dev/null differ diff --git a/files/29_2378_meaning.mp3 b/files/29_2378_meaning.mp3 deleted file mode 100644 index e5bec1bad..000000000 Binary files a/files/29_2378_meaning.mp3 and /dev/null differ diff --git a/files/29_2379.jpg b/files/29_2379.jpg deleted file mode 100644 index e94d8d6ca..000000000 Binary files a/files/29_2379.jpg and /dev/null differ diff --git a/files/29_2379.mp3 b/files/29_2379.mp3 deleted file mode 100644 index 8ba8583d0..000000000 Binary files a/files/29_2379.mp3 and /dev/null differ diff --git a/files/29_2379_example.mp3 b/files/29_2379_example.mp3 deleted file mode 100644 index 20e44edbe..000000000 Binary files a/files/29_2379_example.mp3 and /dev/null differ diff --git a/files/29_2379_meaning.mp3 b/files/29_2379_meaning.mp3 deleted file mode 100644 index 092b30435..000000000 Binary files a/files/29_2379_meaning.mp3 and /dev/null differ diff --git a/files/29_2380.jpg b/files/29_2380.jpg deleted file mode 100644 index 3c9b5e54d..000000000 Binary files a/files/29_2380.jpg and /dev/null differ diff --git a/files/29_2380.mp3 b/files/29_2380.mp3 deleted file mode 100644 index 47bfc85fa..000000000 Binary files a/files/29_2380.mp3 and /dev/null differ diff --git a/files/29_2380_example.mp3 b/files/29_2380_example.mp3 deleted file mode 100644 index 45d957d91..000000000 Binary files a/files/29_2380_example.mp3 and /dev/null differ diff --git a/files/29_2380_meaning.mp3 b/files/29_2380_meaning.mp3 deleted file mode 100644 index 405b27272..000000000 Binary files a/files/29_2380_meaning.mp3 and /dev/null differ diff --git a/files/29_2961.jpg b/files/29_2961.jpg deleted file mode 100644 index c4489bbb4..000000000 Binary files a/files/29_2961.jpg and /dev/null differ diff --git a/files/29_2961.mp3 b/files/29_2961.mp3 deleted file mode 100644 index 02cc194d7..000000000 Binary files a/files/29_2961.mp3 and /dev/null differ diff --git a/files/29_2961_example.mp3 b/files/29_2961_example.mp3 deleted file mode 100644 index 074e7f583..000000000 Binary files a/files/29_2961_example.mp3 and /dev/null differ diff --git a/files/29_2961_meaning.mp3 b/files/29_2961_meaning.mp3 deleted file mode 100644 index be3099e6a..000000000 Binary files a/files/29_2961_meaning.mp3 and /dev/null differ diff --git a/files/29_2962.jpg b/files/29_2962.jpg deleted file mode 100644 index 8c7defb09..000000000 Binary files a/files/29_2962.jpg and /dev/null differ diff --git a/files/29_2962.mp3 b/files/29_2962.mp3 deleted file mode 100644 index c75da6dec..000000000 Binary files a/files/29_2962.mp3 and /dev/null differ diff --git a/files/29_2962_example.mp3 b/files/29_2962_example.mp3 deleted file mode 100644 index 4e219427d..000000000 Binary files a/files/29_2962_example.mp3 and /dev/null differ diff --git a/files/29_2962_meaning.mp3 b/files/29_2962_meaning.mp3 deleted file mode 100644 index d335a6e8c..000000000 Binary files a/files/29_2962_meaning.mp3 and /dev/null differ diff --git a/files/29_2963.jpg b/files/29_2963.jpg deleted file mode 100644 index 557c47ef2..000000000 Binary files a/files/29_2963.jpg and /dev/null differ diff --git a/files/29_2963.mp3 b/files/29_2963.mp3 deleted file mode 100644 index 6c95ee74f..000000000 Binary files a/files/29_2963.mp3 and /dev/null differ diff --git a/files/29_2963_example.mp3 b/files/29_2963_example.mp3 deleted file mode 100644 index 9221d4982..000000000 Binary files a/files/29_2963_example.mp3 and /dev/null differ diff --git a/files/29_2963_meaning.mp3 b/files/29_2963_meaning.mp3 deleted file mode 100644 index f1cadfc68..000000000 Binary files a/files/29_2963_meaning.mp3 and /dev/null differ diff --git a/files/29_2964.jpg b/files/29_2964.jpg deleted file mode 100644 index 1610c1fad..000000000 Binary files a/files/29_2964.jpg and /dev/null differ diff --git a/files/29_2964.mp3 b/files/29_2964.mp3 deleted file mode 100644 index 72100fa12..000000000 Binary files a/files/29_2964.mp3 and /dev/null differ diff --git a/files/29_2964_example.mp3 b/files/29_2964_example.mp3 deleted file mode 100644 index 65803e1fd..000000000 Binary files a/files/29_2964_example.mp3 and /dev/null differ diff --git a/files/29_2964_meaning.mp3 b/files/29_2964_meaning.mp3 deleted file mode 100644 index 67a32c5d6..000000000 Binary files a/files/29_2964_meaning.mp3 and /dev/null differ diff --git a/files/29_2965.jpg b/files/29_2965.jpg deleted file mode 100644 index c7f1c17ea..000000000 Binary files a/files/29_2965.jpg and /dev/null differ diff --git a/files/29_2965.mp3 b/files/29_2965.mp3 deleted file mode 100644 index e59a7a23b..000000000 Binary files a/files/29_2965.mp3 and /dev/null differ diff --git a/files/29_2965_example.mp3 b/files/29_2965_example.mp3 deleted file mode 100644 index dfa26358e..000000000 Binary files a/files/29_2965_example.mp3 and /dev/null differ diff --git a/files/29_2965_meaning.mp3 b/files/29_2965_meaning.mp3 deleted file mode 100644 index 6515a16c0..000000000 Binary files a/files/29_2965_meaning.mp3 and /dev/null differ diff --git a/files/29_2966.jpg b/files/29_2966.jpg deleted file mode 100644 index c30184f2c..000000000 Binary files a/files/29_2966.jpg and /dev/null differ diff --git a/files/29_2966.mp3 b/files/29_2966.mp3 deleted file mode 100644 index 8e891074a..000000000 Binary files a/files/29_2966.mp3 and /dev/null differ diff --git a/files/29_2966_example.mp3 b/files/29_2966_example.mp3 deleted file mode 100644 index cddb4a062..000000000 Binary files a/files/29_2966_example.mp3 and /dev/null differ diff --git a/files/29_2966_meaning.mp3 b/files/29_2966_meaning.mp3 deleted file mode 100644 index fcd3b5826..000000000 Binary files a/files/29_2966_meaning.mp3 and /dev/null differ diff --git a/files/29_2967.jpg b/files/29_2967.jpg deleted file mode 100644 index 214add6f0..000000000 Binary files a/files/29_2967.jpg and /dev/null differ diff --git a/files/29_2967.mp3 b/files/29_2967.mp3 deleted file mode 100644 index c60304fbb..000000000 Binary files a/files/29_2967.mp3 and /dev/null differ diff --git a/files/29_2967_example.mp3 b/files/29_2967_example.mp3 deleted file mode 100644 index 74dacba0c..000000000 Binary files a/files/29_2967_example.mp3 and /dev/null differ diff --git a/files/29_2967_meaning.mp3 b/files/29_2967_meaning.mp3 deleted file mode 100644 index 836e72543..000000000 Binary files a/files/29_2967_meaning.mp3 and /dev/null differ diff --git a/files/29_2968.jpg b/files/29_2968.jpg deleted file mode 100644 index 12842a60c..000000000 Binary files a/files/29_2968.jpg and /dev/null differ diff --git a/files/29_2968.mp3 b/files/29_2968.mp3 deleted file mode 100644 index 5f141ec91..000000000 Binary files a/files/29_2968.mp3 and /dev/null differ diff --git a/files/29_2968_example.mp3 b/files/29_2968_example.mp3 deleted file mode 100644 index cba8413a9..000000000 Binary files a/files/29_2968_example.mp3 and /dev/null differ diff --git a/files/29_2968_meaning.mp3 b/files/29_2968_meaning.mp3 deleted file mode 100644 index 7d97b4ff2..000000000 Binary files a/files/29_2968_meaning.mp3 and /dev/null differ diff --git a/files/29_2969.jpg b/files/29_2969.jpg deleted file mode 100644 index f3c4cb11e..000000000 Binary files a/files/29_2969.jpg and /dev/null differ diff --git a/files/29_2969.mp3 b/files/29_2969.mp3 deleted file mode 100644 index 28e60ec7b..000000000 Binary files a/files/29_2969.mp3 and /dev/null differ diff --git a/files/29_2969_example.mp3 b/files/29_2969_example.mp3 deleted file mode 100644 index 79dafe331..000000000 Binary files a/files/29_2969_example.mp3 and /dev/null differ diff --git a/files/29_2969_meaning.mp3 b/files/29_2969_meaning.mp3 deleted file mode 100644 index d35124133..000000000 Binary files a/files/29_2969_meaning.mp3 and /dev/null differ diff --git a/files/29_2970.jpg b/files/29_2970.jpg deleted file mode 100644 index 8a2f26581..000000000 Binary files a/files/29_2970.jpg and /dev/null differ diff --git a/files/29_2970.mp3 b/files/29_2970.mp3 deleted file mode 100644 index 89892a3ac..000000000 Binary files a/files/29_2970.mp3 and /dev/null differ diff --git a/files/29_2970_example.mp3 b/files/29_2970_example.mp3 deleted file mode 100644 index 1a28ca2b4..000000000 Binary files a/files/29_2970_example.mp3 and /dev/null differ diff --git a/files/29_2970_meaning.mp3 b/files/29_2970_meaning.mp3 deleted file mode 100644 index f13103f9e..000000000 Binary files a/files/29_2970_meaning.mp3 and /dev/null differ diff --git a/files/29_2971.jpg b/files/29_2971.jpg deleted file mode 100644 index 93edf270e..000000000 Binary files a/files/29_2971.jpg and /dev/null differ diff --git a/files/29_2971.mp3 b/files/29_2971.mp3 deleted file mode 100644 index 803edfb1e..000000000 Binary files a/files/29_2971.mp3 and /dev/null differ diff --git a/files/29_2971_example.mp3 b/files/29_2971_example.mp3 deleted file mode 100644 index 9ff3bea3e..000000000 Binary files a/files/29_2971_example.mp3 and /dev/null differ diff --git a/files/29_2971_meaning.mp3 b/files/29_2971_meaning.mp3 deleted file mode 100644 index 229c81069..000000000 Binary files a/files/29_2971_meaning.mp3 and /dev/null differ diff --git a/files/29_2972.jpg b/files/29_2972.jpg deleted file mode 100644 index 3433b4075..000000000 Binary files a/files/29_2972.jpg and /dev/null differ diff --git a/files/29_2972.mp3 b/files/29_2972.mp3 deleted file mode 100644 index ea398d222..000000000 Binary files a/files/29_2972.mp3 and /dev/null differ diff --git a/files/29_2972_example.mp3 b/files/29_2972_example.mp3 deleted file mode 100644 index 0bd25702a..000000000 Binary files a/files/29_2972_example.mp3 and /dev/null differ diff --git a/files/29_2972_meaning.mp3 b/files/29_2972_meaning.mp3 deleted file mode 100644 index e9db8bad3..000000000 Binary files a/files/29_2972_meaning.mp3 and /dev/null differ diff --git a/files/29_2973.jpg b/files/29_2973.jpg deleted file mode 100644 index 441400801..000000000 Binary files a/files/29_2973.jpg and /dev/null differ diff --git a/files/29_2973.mp3 b/files/29_2973.mp3 deleted file mode 100644 index 78cfac728..000000000 Binary files a/files/29_2973.mp3 and /dev/null differ diff --git a/files/29_2973_example.mp3 b/files/29_2973_example.mp3 deleted file mode 100644 index fb03c2031..000000000 Binary files a/files/29_2973_example.mp3 and /dev/null differ diff --git a/files/29_2973_meaning.mp3 b/files/29_2973_meaning.mp3 deleted file mode 100644 index 360199fdc..000000000 Binary files a/files/29_2973_meaning.mp3 and /dev/null differ diff --git a/files/29_2974.jpg b/files/29_2974.jpg deleted file mode 100644 index 2f6f4926e..000000000 Binary files a/files/29_2974.jpg and /dev/null differ diff --git a/files/29_2974.mp3 b/files/29_2974.mp3 deleted file mode 100644 index d35749649..000000000 Binary files a/files/29_2974.mp3 and /dev/null differ diff --git a/files/29_2974_example.mp3 b/files/29_2974_example.mp3 deleted file mode 100644 index 7fb1cb475..000000000 Binary files a/files/29_2974_example.mp3 and /dev/null differ diff --git a/files/29_2974_meaning.mp3 b/files/29_2974_meaning.mp3 deleted file mode 100644 index fffa18b5c..000000000 Binary files a/files/29_2974_meaning.mp3 and /dev/null differ diff --git a/files/29_2975.jpg b/files/29_2975.jpg deleted file mode 100644 index 42dedffcb..000000000 Binary files a/files/29_2975.jpg and /dev/null differ diff --git a/files/29_2975.mp3 b/files/29_2975.mp3 deleted file mode 100644 index 20f4f1d70..000000000 Binary files a/files/29_2975.mp3 and /dev/null differ diff --git a/files/29_2975_example.mp3 b/files/29_2975_example.mp3 deleted file mode 100644 index cde96c3a7..000000000 Binary files a/files/29_2975_example.mp3 and /dev/null differ diff --git a/files/29_2975_meaning.mp3 b/files/29_2975_meaning.mp3 deleted file mode 100644 index 5766c5eb4..000000000 Binary files a/files/29_2975_meaning.mp3 and /dev/null differ diff --git a/files/29_2976.jpg b/files/29_2976.jpg deleted file mode 100644 index a94b34139..000000000 Binary files a/files/29_2976.jpg and /dev/null differ diff --git a/files/29_2976.mp3 b/files/29_2976.mp3 deleted file mode 100644 index 0236f3be4..000000000 Binary files a/files/29_2976.mp3 and /dev/null differ diff --git a/files/29_2976_example.mp3 b/files/29_2976_example.mp3 deleted file mode 100644 index ede47c95b..000000000 Binary files a/files/29_2976_example.mp3 and /dev/null differ diff --git a/files/29_2976_meaning.mp3 b/files/29_2976_meaning.mp3 deleted file mode 100644 index 1345991e7..000000000 Binary files a/files/29_2976_meaning.mp3 and /dev/null differ diff --git a/files/29_2977.jpg b/files/29_2977.jpg deleted file mode 100644 index 4c5624543..000000000 Binary files a/files/29_2977.jpg and /dev/null differ diff --git a/files/29_2977.mp3 b/files/29_2977.mp3 deleted file mode 100644 index b8013d9af..000000000 Binary files a/files/29_2977.mp3 and /dev/null differ diff --git a/files/29_2977_example.mp3 b/files/29_2977_example.mp3 deleted file mode 100644 index 310de0099..000000000 Binary files a/files/29_2977_example.mp3 and /dev/null differ diff --git a/files/29_2977_meaning.mp3 b/files/29_2977_meaning.mp3 deleted file mode 100644 index 0a63730c6..000000000 Binary files a/files/29_2977_meaning.mp3 and /dev/null differ diff --git a/files/29_2978.jpg b/files/29_2978.jpg deleted file mode 100644 index 92708ba55..000000000 Binary files a/files/29_2978.jpg and /dev/null differ diff --git a/files/29_2978.mp3 b/files/29_2978.mp3 deleted file mode 100644 index ba8f23fe5..000000000 Binary files a/files/29_2978.mp3 and /dev/null differ diff --git a/files/29_2978_example.mp3 b/files/29_2978_example.mp3 deleted file mode 100644 index 53a448f00..000000000 Binary files a/files/29_2978_example.mp3 and /dev/null differ diff --git a/files/29_2978_meaning.mp3 b/files/29_2978_meaning.mp3 deleted file mode 100644 index d50a3f814..000000000 Binary files a/files/29_2978_meaning.mp3 and /dev/null differ diff --git a/files/29_2979.jpg b/files/29_2979.jpg deleted file mode 100644 index ce114c1d3..000000000 Binary files a/files/29_2979.jpg and /dev/null differ diff --git a/files/29_2979.mp3 b/files/29_2979.mp3 deleted file mode 100644 index 25cb74e92..000000000 Binary files a/files/29_2979.mp3 and /dev/null differ diff --git a/files/29_2979_example.mp3 b/files/29_2979_example.mp3 deleted file mode 100644 index 84fff96f1..000000000 Binary files a/files/29_2979_example.mp3 and /dev/null differ diff --git a/files/29_2979_meaning.mp3 b/files/29_2979_meaning.mp3 deleted file mode 100644 index 65624fab1..000000000 Binary files a/files/29_2979_meaning.mp3 and /dev/null differ diff --git a/files/29_2980.jpg b/files/29_2980.jpg deleted file mode 100644 index 2af82c425..000000000 Binary files a/files/29_2980.jpg and /dev/null differ diff --git a/files/29_2980.mp3 b/files/29_2980.mp3 deleted file mode 100644 index 2717fa0de..000000000 Binary files a/files/29_2980.mp3 and /dev/null differ diff --git a/files/29_2980_example.mp3 b/files/29_2980_example.mp3 deleted file mode 100644 index 389bfda7d..000000000 Binary files a/files/29_2980_example.mp3 and /dev/null differ diff --git a/files/29_2980_meaning.mp3 b/files/29_2980_meaning.mp3 deleted file mode 100644 index 38b7131b0..000000000 Binary files a/files/29_2980_meaning.mp3 and /dev/null differ diff --git a/files/29_3561.jpg b/files/29_3561.jpg deleted file mode 100644 index 532789df5..000000000 Binary files a/files/29_3561.jpg and /dev/null differ diff --git a/files/29_3561.mp3 b/files/29_3561.mp3 deleted file mode 100644 index a071d06a1..000000000 Binary files a/files/29_3561.mp3 and /dev/null differ diff --git a/files/29_3561_example.mp3 b/files/29_3561_example.mp3 deleted file mode 100644 index f91b77478..000000000 Binary files a/files/29_3561_example.mp3 and /dev/null differ diff --git a/files/29_3561_meaning.mp3 b/files/29_3561_meaning.mp3 deleted file mode 100644 index 602dcf886..000000000 Binary files a/files/29_3561_meaning.mp3 and /dev/null differ diff --git a/files/29_3562.jpg b/files/29_3562.jpg deleted file mode 100644 index 6899c36c3..000000000 Binary files a/files/29_3562.jpg and /dev/null differ diff --git a/files/29_3562.mp3 b/files/29_3562.mp3 deleted file mode 100644 index 51a9c044c..000000000 Binary files a/files/29_3562.mp3 and /dev/null differ diff --git a/files/29_3562_example.mp3 b/files/29_3562_example.mp3 deleted file mode 100644 index ad8a15878..000000000 Binary files a/files/29_3562_example.mp3 and /dev/null differ diff --git a/files/29_3562_meaning.mp3 b/files/29_3562_meaning.mp3 deleted file mode 100644 index f967b68cd..000000000 Binary files a/files/29_3562_meaning.mp3 and /dev/null differ diff --git a/files/29_3563.jpg b/files/29_3563.jpg deleted file mode 100644 index 8a56f2d0c..000000000 Binary files a/files/29_3563.jpg and /dev/null differ diff --git a/files/29_3563.mp3 b/files/29_3563.mp3 deleted file mode 100644 index 82023cff5..000000000 Binary files a/files/29_3563.mp3 and /dev/null differ diff --git a/files/29_3563_example.mp3 b/files/29_3563_example.mp3 deleted file mode 100644 index 2e06d1c63..000000000 Binary files a/files/29_3563_example.mp3 and /dev/null differ diff --git a/files/29_3563_meaning.mp3 b/files/29_3563_meaning.mp3 deleted file mode 100644 index fd6799c48..000000000 Binary files a/files/29_3563_meaning.mp3 and /dev/null differ diff --git a/files/29_3564.jpg b/files/29_3564.jpg deleted file mode 100644 index 1ad54ab5e..000000000 Binary files a/files/29_3564.jpg and /dev/null differ diff --git a/files/29_3564.mp3 b/files/29_3564.mp3 deleted file mode 100644 index a96c00954..000000000 Binary files a/files/29_3564.mp3 and /dev/null differ diff --git a/files/29_3564_example.mp3 b/files/29_3564_example.mp3 deleted file mode 100644 index 1c92ea5cc..000000000 Binary files a/files/29_3564_example.mp3 and /dev/null differ diff --git a/files/29_3564_meaning.mp3 b/files/29_3564_meaning.mp3 deleted file mode 100644 index 0c91093dd..000000000 Binary files a/files/29_3564_meaning.mp3 and /dev/null differ diff --git a/files/29_3565.jpg b/files/29_3565.jpg deleted file mode 100644 index ffbb07b63..000000000 Binary files a/files/29_3565.jpg and /dev/null differ diff --git a/files/29_3565.mp3 b/files/29_3565.mp3 deleted file mode 100644 index 656d9405b..000000000 Binary files a/files/29_3565.mp3 and /dev/null differ diff --git a/files/29_3565_example.mp3 b/files/29_3565_example.mp3 deleted file mode 100644 index ad8e215cd..000000000 Binary files a/files/29_3565_example.mp3 and /dev/null differ diff --git a/files/29_3565_meaning.mp3 b/files/29_3565_meaning.mp3 deleted file mode 100644 index 0dcd25142..000000000 Binary files a/files/29_3565_meaning.mp3 and /dev/null differ diff --git a/files/29_3566.jpg b/files/29_3566.jpg deleted file mode 100644 index bac984a4a..000000000 Binary files a/files/29_3566.jpg and /dev/null differ diff --git a/files/29_3566.mp3 b/files/29_3566.mp3 deleted file mode 100644 index 2e8000796..000000000 Binary files a/files/29_3566.mp3 and /dev/null differ diff --git a/files/29_3566_example.mp3 b/files/29_3566_example.mp3 deleted file mode 100644 index 61cd2978b..000000000 Binary files a/files/29_3566_example.mp3 and /dev/null differ diff --git a/files/29_3566_meaning.mp3 b/files/29_3566_meaning.mp3 deleted file mode 100644 index 38289d390..000000000 Binary files a/files/29_3566_meaning.mp3 and /dev/null differ diff --git a/files/29_3567.jpg b/files/29_3567.jpg deleted file mode 100644 index 89d194ac8..000000000 Binary files a/files/29_3567.jpg and /dev/null differ diff --git a/files/29_3567.mp3 b/files/29_3567.mp3 deleted file mode 100644 index 0dbd0a9d4..000000000 Binary files a/files/29_3567.mp3 and /dev/null differ diff --git a/files/29_3567_example.mp3 b/files/29_3567_example.mp3 deleted file mode 100644 index 29326ada1..000000000 Binary files a/files/29_3567_example.mp3 and /dev/null differ diff --git a/files/29_3567_meaning.mp3 b/files/29_3567_meaning.mp3 deleted file mode 100644 index 84d46bd21..000000000 Binary files a/files/29_3567_meaning.mp3 and /dev/null differ diff --git a/files/29_3568.jpg b/files/29_3568.jpg deleted file mode 100644 index 52b0b822d..000000000 Binary files a/files/29_3568.jpg and /dev/null differ diff --git a/files/29_3568.mp3 b/files/29_3568.mp3 deleted file mode 100644 index 04c48e839..000000000 Binary files a/files/29_3568.mp3 and /dev/null differ diff --git a/files/29_3568_example.mp3 b/files/29_3568_example.mp3 deleted file mode 100644 index 42878a520..000000000 Binary files a/files/29_3568_example.mp3 and /dev/null differ diff --git a/files/29_3568_meaning.mp3 b/files/29_3568_meaning.mp3 deleted file mode 100644 index 6130c1095..000000000 Binary files a/files/29_3568_meaning.mp3 and /dev/null differ diff --git a/files/29_3569.jpg b/files/29_3569.jpg deleted file mode 100644 index ed8364755..000000000 Binary files a/files/29_3569.jpg and /dev/null differ diff --git a/files/29_3569.mp3 b/files/29_3569.mp3 deleted file mode 100644 index a0c5b9fa3..000000000 Binary files a/files/29_3569.mp3 and /dev/null differ diff --git a/files/29_3569_example.mp3 b/files/29_3569_example.mp3 deleted file mode 100644 index 72c83fad4..000000000 Binary files a/files/29_3569_example.mp3 and /dev/null differ diff --git a/files/29_3569_meaning.mp3 b/files/29_3569_meaning.mp3 deleted file mode 100644 index 67a6fe9b3..000000000 Binary files a/files/29_3569_meaning.mp3 and /dev/null differ diff --git a/files/29_3570.jpg b/files/29_3570.jpg deleted file mode 100644 index ec28e541e..000000000 Binary files a/files/29_3570.jpg and /dev/null differ diff --git a/files/29_3570.mp3 b/files/29_3570.mp3 deleted file mode 100644 index 0f3a2f971..000000000 Binary files a/files/29_3570.mp3 and /dev/null differ diff --git a/files/29_3570_example.mp3 b/files/29_3570_example.mp3 deleted file mode 100644 index aa8f8e681..000000000 Binary files a/files/29_3570_example.mp3 and /dev/null differ diff --git a/files/29_3570_meaning.mp3 b/files/29_3570_meaning.mp3 deleted file mode 100644 index 5d2bb77be..000000000 Binary files a/files/29_3570_meaning.mp3 and /dev/null differ diff --git a/files/29_3571.jpg b/files/29_3571.jpg deleted file mode 100644 index 8cc978898..000000000 Binary files a/files/29_3571.jpg and /dev/null differ diff --git a/files/29_3571.mp3 b/files/29_3571.mp3 deleted file mode 100644 index 93017c25e..000000000 Binary files a/files/29_3571.mp3 and /dev/null differ diff --git a/files/29_3571_example.mp3 b/files/29_3571_example.mp3 deleted file mode 100644 index 1d710ee26..000000000 Binary files a/files/29_3571_example.mp3 and /dev/null differ diff --git a/files/29_3571_meaning.mp3 b/files/29_3571_meaning.mp3 deleted file mode 100644 index a26dceb44..000000000 Binary files a/files/29_3571_meaning.mp3 and /dev/null differ diff --git a/files/29_3572.jpg b/files/29_3572.jpg deleted file mode 100644 index b5809b3d7..000000000 Binary files a/files/29_3572.jpg and /dev/null differ diff --git a/files/29_3572.mp3 b/files/29_3572.mp3 deleted file mode 100644 index 76551e4ec..000000000 Binary files a/files/29_3572.mp3 and /dev/null differ diff --git a/files/29_3572_example.mp3 b/files/29_3572_example.mp3 deleted file mode 100644 index 0f0a90b34..000000000 Binary files a/files/29_3572_example.mp3 and /dev/null differ diff --git a/files/29_3572_meaning.mp3 b/files/29_3572_meaning.mp3 deleted file mode 100644 index dc1db627e..000000000 Binary files a/files/29_3572_meaning.mp3 and /dev/null differ diff --git a/files/29_3573.jpg b/files/29_3573.jpg deleted file mode 100644 index 2b3283c29..000000000 Binary files a/files/29_3573.jpg and /dev/null differ diff --git a/files/29_3573.mp3 b/files/29_3573.mp3 deleted file mode 100644 index 06abd0a62..000000000 Binary files a/files/29_3573.mp3 and /dev/null differ diff --git a/files/29_3573_example.mp3 b/files/29_3573_example.mp3 deleted file mode 100644 index c4ce89238..000000000 Binary files a/files/29_3573_example.mp3 and /dev/null differ diff --git a/files/29_3573_meaning.mp3 b/files/29_3573_meaning.mp3 deleted file mode 100644 index 219543350..000000000 Binary files a/files/29_3573_meaning.mp3 and /dev/null differ diff --git a/files/29_3574.jpg b/files/29_3574.jpg deleted file mode 100644 index c4dc8cd93..000000000 Binary files a/files/29_3574.jpg and /dev/null differ diff --git a/files/29_3574.mp3 b/files/29_3574.mp3 deleted file mode 100644 index 8e938db11..000000000 Binary files a/files/29_3574.mp3 and /dev/null differ diff --git a/files/29_3574_example.mp3 b/files/29_3574_example.mp3 deleted file mode 100644 index 9ccec9463..000000000 Binary files a/files/29_3574_example.mp3 and /dev/null differ diff --git a/files/29_3574_meaning.mp3 b/files/29_3574_meaning.mp3 deleted file mode 100644 index a1eae6047..000000000 Binary files a/files/29_3574_meaning.mp3 and /dev/null differ diff --git a/files/29_3575.jpg b/files/29_3575.jpg deleted file mode 100644 index fdb8c3e38..000000000 Binary files a/files/29_3575.jpg and /dev/null differ diff --git a/files/29_3575.mp3 b/files/29_3575.mp3 deleted file mode 100644 index 4924e8c9a..000000000 Binary files a/files/29_3575.mp3 and /dev/null differ diff --git a/files/29_3575_example.mp3 b/files/29_3575_example.mp3 deleted file mode 100644 index f47b3c79f..000000000 Binary files a/files/29_3575_example.mp3 and /dev/null differ diff --git a/files/29_3575_meaning.mp3 b/files/29_3575_meaning.mp3 deleted file mode 100644 index 980f6cdf7..000000000 Binary files a/files/29_3575_meaning.mp3 and /dev/null differ diff --git a/files/29_3576.jpg b/files/29_3576.jpg deleted file mode 100644 index 6acac2fad..000000000 Binary files a/files/29_3576.jpg and /dev/null differ diff --git a/files/29_3576.mp3 b/files/29_3576.mp3 deleted file mode 100644 index 98a7ce2d7..000000000 Binary files a/files/29_3576.mp3 and /dev/null differ diff --git a/files/29_3576_example.mp3 b/files/29_3576_example.mp3 deleted file mode 100644 index a6c5abc1c..000000000 Binary files a/files/29_3576_example.mp3 and /dev/null differ diff --git a/files/29_3576_meaning.mp3 b/files/29_3576_meaning.mp3 deleted file mode 100644 index b8d18c988..000000000 Binary files a/files/29_3576_meaning.mp3 and /dev/null differ diff --git a/files/29_3577.jpg b/files/29_3577.jpg deleted file mode 100644 index 32e4effd0..000000000 Binary files a/files/29_3577.jpg and /dev/null differ diff --git a/files/29_3577.mp3 b/files/29_3577.mp3 deleted file mode 100644 index 86e833374..000000000 Binary files a/files/29_3577.mp3 and /dev/null differ diff --git a/files/29_3577_example.mp3 b/files/29_3577_example.mp3 deleted file mode 100644 index 4953281a1..000000000 Binary files a/files/29_3577_example.mp3 and /dev/null differ diff --git a/files/29_3577_meaning.mp3 b/files/29_3577_meaning.mp3 deleted file mode 100644 index f63a07d5f..000000000 Binary files a/files/29_3577_meaning.mp3 and /dev/null differ diff --git a/files/29_3578.jpg b/files/29_3578.jpg deleted file mode 100644 index c8304112c..000000000 Binary files a/files/29_3578.jpg and /dev/null differ diff --git a/files/29_3578.mp3 b/files/29_3578.mp3 deleted file mode 100644 index 8f5ea7b63..000000000 Binary files a/files/29_3578.mp3 and /dev/null differ diff --git a/files/29_3578_example.mp3 b/files/29_3578_example.mp3 deleted file mode 100644 index a48d40d23..000000000 Binary files a/files/29_3578_example.mp3 and /dev/null differ diff --git a/files/29_3578_meaning.mp3 b/files/29_3578_meaning.mp3 deleted file mode 100644 index 87f8105eb..000000000 Binary files a/files/29_3578_meaning.mp3 and /dev/null differ diff --git a/files/29_3579.jpg b/files/29_3579.jpg deleted file mode 100644 index df4320175..000000000 Binary files a/files/29_3579.jpg and /dev/null differ diff --git a/files/29_3579.mp3 b/files/29_3579.mp3 deleted file mode 100644 index c1e200aaf..000000000 Binary files a/files/29_3579.mp3 and /dev/null differ diff --git a/files/29_3579_example.mp3 b/files/29_3579_example.mp3 deleted file mode 100644 index 798258b14..000000000 Binary files a/files/29_3579_example.mp3 and /dev/null differ diff --git a/files/29_3579_meaning.mp3 b/files/29_3579_meaning.mp3 deleted file mode 100644 index a309a285e..000000000 Binary files a/files/29_3579_meaning.mp3 and /dev/null differ diff --git a/files/29_3580.jpg b/files/29_3580.jpg deleted file mode 100644 index 74d624140..000000000 Binary files a/files/29_3580.jpg and /dev/null differ diff --git a/files/29_3580.mp3 b/files/29_3580.mp3 deleted file mode 100644 index c0d693208..000000000 Binary files a/files/29_3580.mp3 and /dev/null differ diff --git a/files/29_3580_example.mp3 b/files/29_3580_example.mp3 deleted file mode 100644 index b966be660..000000000 Binary files a/files/29_3580_example.mp3 and /dev/null differ diff --git a/files/29_3580_meaning.mp3 b/files/29_3580_meaning.mp3 deleted file mode 100644 index 9b4c4283b..000000000 Binary files a/files/29_3580_meaning.mp3 and /dev/null differ diff --git a/files/30_0581.jpg b/files/30_0581.jpg deleted file mode 100644 index aa42b4bf5..000000000 Binary files a/files/30_0581.jpg and /dev/null differ diff --git a/files/30_0581.mp3 b/files/30_0581.mp3 deleted file mode 100644 index 3a23d3f5c..000000000 Binary files a/files/30_0581.mp3 and /dev/null differ diff --git a/files/30_0581_example.mp3 b/files/30_0581_example.mp3 deleted file mode 100644 index c88d2292d..000000000 Binary files a/files/30_0581_example.mp3 and /dev/null differ diff --git a/files/30_0581_meaning.mp3 b/files/30_0581_meaning.mp3 deleted file mode 100644 index b77deaf73..000000000 Binary files a/files/30_0581_meaning.mp3 and /dev/null differ diff --git a/files/30_0582.jpg b/files/30_0582.jpg deleted file mode 100644 index 59c1655b3..000000000 Binary files a/files/30_0582.jpg and /dev/null differ diff --git a/files/30_0582.mp3 b/files/30_0582.mp3 deleted file mode 100644 index e938a0389..000000000 Binary files a/files/30_0582.mp3 and /dev/null differ diff --git a/files/30_0582_example.mp3 b/files/30_0582_example.mp3 deleted file mode 100644 index 28f80be33..000000000 Binary files a/files/30_0582_example.mp3 and /dev/null differ diff --git a/files/30_0582_meaning.mp3 b/files/30_0582_meaning.mp3 deleted file mode 100644 index 719022b3d..000000000 Binary files a/files/30_0582_meaning.mp3 and /dev/null differ diff --git a/files/30_0583.jpg b/files/30_0583.jpg deleted file mode 100644 index f99d5d9c9..000000000 Binary files a/files/30_0583.jpg and /dev/null differ diff --git a/files/30_0583.mp3 b/files/30_0583.mp3 deleted file mode 100644 index b45c0b209..000000000 Binary files a/files/30_0583.mp3 and /dev/null differ diff --git a/files/30_0583_example.mp3 b/files/30_0583_example.mp3 deleted file mode 100644 index ba05384bf..000000000 Binary files a/files/30_0583_example.mp3 and /dev/null differ diff --git a/files/30_0583_meaning.mp3 b/files/30_0583_meaning.mp3 deleted file mode 100644 index eaf585578..000000000 Binary files a/files/30_0583_meaning.mp3 and /dev/null differ diff --git a/files/30_0584.jpg b/files/30_0584.jpg deleted file mode 100644 index b7a9cae6c..000000000 Binary files a/files/30_0584.jpg and /dev/null differ diff --git a/files/30_0584.mp3 b/files/30_0584.mp3 deleted file mode 100644 index 3d008d5d3..000000000 Binary files a/files/30_0584.mp3 and /dev/null differ diff --git a/files/30_0584_example.mp3 b/files/30_0584_example.mp3 deleted file mode 100644 index 5faf876c4..000000000 Binary files a/files/30_0584_example.mp3 and /dev/null differ diff --git a/files/30_0584_meaning.mp3 b/files/30_0584_meaning.mp3 deleted file mode 100644 index f49777c44..000000000 Binary files a/files/30_0584_meaning.mp3 and /dev/null differ diff --git a/files/30_0585.jpg b/files/30_0585.jpg deleted file mode 100644 index be22efdf8..000000000 Binary files a/files/30_0585.jpg and /dev/null differ diff --git a/files/30_0585.mp3 b/files/30_0585.mp3 deleted file mode 100644 index ecad2fb1a..000000000 Binary files a/files/30_0585.mp3 and /dev/null differ diff --git a/files/30_0585_example.mp3 b/files/30_0585_example.mp3 deleted file mode 100644 index c67be5f20..000000000 Binary files a/files/30_0585_example.mp3 and /dev/null differ diff --git a/files/30_0585_meaning.mp3 b/files/30_0585_meaning.mp3 deleted file mode 100644 index 0243907f6..000000000 Binary files a/files/30_0585_meaning.mp3 and /dev/null differ diff --git a/files/30_0586.jpg b/files/30_0586.jpg deleted file mode 100644 index 7d71bf23c..000000000 Binary files a/files/30_0586.jpg and /dev/null differ diff --git a/files/30_0586.mp3 b/files/30_0586.mp3 deleted file mode 100644 index ff366da6f..000000000 Binary files a/files/30_0586.mp3 and /dev/null differ diff --git a/files/30_0586_example.mp3 b/files/30_0586_example.mp3 deleted file mode 100644 index 2b2f285a0..000000000 Binary files a/files/30_0586_example.mp3 and /dev/null differ diff --git a/files/30_0586_meaning.mp3 b/files/30_0586_meaning.mp3 deleted file mode 100644 index c11f865ef..000000000 Binary files a/files/30_0586_meaning.mp3 and /dev/null differ diff --git a/files/30_0587.jpg b/files/30_0587.jpg deleted file mode 100644 index f4a128c00..000000000 Binary files a/files/30_0587.jpg and /dev/null differ diff --git a/files/30_0587.mp3 b/files/30_0587.mp3 deleted file mode 100644 index 1b72be93e..000000000 Binary files a/files/30_0587.mp3 and /dev/null differ diff --git a/files/30_0587_example.mp3 b/files/30_0587_example.mp3 deleted file mode 100644 index 15379b50c..000000000 Binary files a/files/30_0587_example.mp3 and /dev/null differ diff --git a/files/30_0587_meaning.mp3 b/files/30_0587_meaning.mp3 deleted file mode 100644 index 4d9495e14..000000000 Binary files a/files/30_0587_meaning.mp3 and /dev/null differ diff --git a/files/30_0588.jpg b/files/30_0588.jpg deleted file mode 100644 index f5acbb225..000000000 Binary files a/files/30_0588.jpg and /dev/null differ diff --git a/files/30_0588.mp3 b/files/30_0588.mp3 deleted file mode 100644 index e31b2f7ed..000000000 Binary files a/files/30_0588.mp3 and /dev/null differ diff --git a/files/30_0588_example.mp3 b/files/30_0588_example.mp3 deleted file mode 100644 index 64640a8a7..000000000 Binary files a/files/30_0588_example.mp3 and /dev/null differ diff --git a/files/30_0588_meaning.mp3 b/files/30_0588_meaning.mp3 deleted file mode 100644 index 7cbb159c4..000000000 Binary files a/files/30_0588_meaning.mp3 and /dev/null differ diff --git a/files/30_0589.jpg b/files/30_0589.jpg deleted file mode 100644 index 14fd6f82f..000000000 Binary files a/files/30_0589.jpg and /dev/null differ diff --git a/files/30_0589.mp3 b/files/30_0589.mp3 deleted file mode 100644 index a3b3a1cd6..000000000 Binary files a/files/30_0589.mp3 and /dev/null differ diff --git a/files/30_0589_example.mp3 b/files/30_0589_example.mp3 deleted file mode 100644 index 227bf14cc..000000000 Binary files a/files/30_0589_example.mp3 and /dev/null differ diff --git a/files/30_0589_meaning.mp3 b/files/30_0589_meaning.mp3 deleted file mode 100644 index 5d53a7905..000000000 Binary files a/files/30_0589_meaning.mp3 and /dev/null differ diff --git a/files/30_0590.jpg b/files/30_0590.jpg deleted file mode 100644 index 17be67572..000000000 Binary files a/files/30_0590.jpg and /dev/null differ diff --git a/files/30_0590.mp3 b/files/30_0590.mp3 deleted file mode 100644 index 7e6115dba..000000000 Binary files a/files/30_0590.mp3 and /dev/null differ diff --git a/files/30_0590_example.mp3 b/files/30_0590_example.mp3 deleted file mode 100644 index bb434071f..000000000 Binary files a/files/30_0590_example.mp3 and /dev/null differ diff --git a/files/30_0590_meaning.mp3 b/files/30_0590_meaning.mp3 deleted file mode 100644 index 226d176d4..000000000 Binary files a/files/30_0590_meaning.mp3 and /dev/null differ diff --git a/files/30_0591.jpg b/files/30_0591.jpg deleted file mode 100644 index 26e9d489a..000000000 Binary files a/files/30_0591.jpg and /dev/null differ diff --git a/files/30_0591.mp3 b/files/30_0591.mp3 deleted file mode 100644 index b87da7f5c..000000000 Binary files a/files/30_0591.mp3 and /dev/null differ diff --git a/files/30_0591_example.mp3 b/files/30_0591_example.mp3 deleted file mode 100644 index fe89839c3..000000000 Binary files a/files/30_0591_example.mp3 and /dev/null differ diff --git a/files/30_0591_meaning.mp3 b/files/30_0591_meaning.mp3 deleted file mode 100644 index 0325d4d01..000000000 Binary files a/files/30_0591_meaning.mp3 and /dev/null differ diff --git a/files/30_0592.jpg b/files/30_0592.jpg deleted file mode 100644 index 1148352af..000000000 Binary files a/files/30_0592.jpg and /dev/null differ diff --git a/files/30_0592.mp3 b/files/30_0592.mp3 deleted file mode 100644 index 91936deb1..000000000 Binary files a/files/30_0592.mp3 and /dev/null differ diff --git a/files/30_0592_example.mp3 b/files/30_0592_example.mp3 deleted file mode 100644 index e0da918c0..000000000 Binary files a/files/30_0592_example.mp3 and /dev/null differ diff --git a/files/30_0592_meaning.mp3 b/files/30_0592_meaning.mp3 deleted file mode 100644 index 13e860248..000000000 Binary files a/files/30_0592_meaning.mp3 and /dev/null differ diff --git a/files/30_0593.jpg b/files/30_0593.jpg deleted file mode 100644 index 9cb27bbd6..000000000 Binary files a/files/30_0593.jpg and /dev/null differ diff --git a/files/30_0593.mp3 b/files/30_0593.mp3 deleted file mode 100644 index 926ed2e86..000000000 Binary files a/files/30_0593.mp3 and /dev/null differ diff --git a/files/30_0593_example.mp3 b/files/30_0593_example.mp3 deleted file mode 100644 index 78fbb78de..000000000 Binary files a/files/30_0593_example.mp3 and /dev/null differ diff --git a/files/30_0593_meaning.mp3 b/files/30_0593_meaning.mp3 deleted file mode 100644 index 500fa798c..000000000 Binary files a/files/30_0593_meaning.mp3 and /dev/null differ diff --git a/files/30_0594.jpg b/files/30_0594.jpg deleted file mode 100644 index e98a0e2bf..000000000 Binary files a/files/30_0594.jpg and /dev/null differ diff --git a/files/30_0594.mp3 b/files/30_0594.mp3 deleted file mode 100644 index a5a053d8a..000000000 Binary files a/files/30_0594.mp3 and /dev/null differ diff --git a/files/30_0594_example.mp3 b/files/30_0594_example.mp3 deleted file mode 100644 index 73d243034..000000000 Binary files a/files/30_0594_example.mp3 and /dev/null differ diff --git a/files/30_0594_meaning.mp3 b/files/30_0594_meaning.mp3 deleted file mode 100644 index 84c3c80e0..000000000 Binary files a/files/30_0594_meaning.mp3 and /dev/null differ diff --git a/files/30_0595.jpg b/files/30_0595.jpg deleted file mode 100644 index 1abb8584f..000000000 Binary files a/files/30_0595.jpg and /dev/null differ diff --git a/files/30_0595.mp3 b/files/30_0595.mp3 deleted file mode 100644 index 7650d841e..000000000 Binary files a/files/30_0595.mp3 and /dev/null differ diff --git a/files/30_0595_example.mp3 b/files/30_0595_example.mp3 deleted file mode 100644 index f2665fecf..000000000 Binary files a/files/30_0595_example.mp3 and /dev/null differ diff --git a/files/30_0595_meaning.mp3 b/files/30_0595_meaning.mp3 deleted file mode 100644 index c34fd8ce3..000000000 Binary files a/files/30_0595_meaning.mp3 and /dev/null differ diff --git a/files/30_0596.jpg b/files/30_0596.jpg deleted file mode 100644 index 94a7315fd..000000000 Binary files a/files/30_0596.jpg and /dev/null differ diff --git a/files/30_0596.mp3 b/files/30_0596.mp3 deleted file mode 100644 index 8ce568d28..000000000 Binary files a/files/30_0596.mp3 and /dev/null differ diff --git a/files/30_0596_example.mp3 b/files/30_0596_example.mp3 deleted file mode 100644 index a645e42b5..000000000 Binary files a/files/30_0596_example.mp3 and /dev/null differ diff --git a/files/30_0596_meaning.mp3 b/files/30_0596_meaning.mp3 deleted file mode 100644 index e5cde804f..000000000 Binary files a/files/30_0596_meaning.mp3 and /dev/null differ diff --git a/files/30_0597.jpg b/files/30_0597.jpg deleted file mode 100644 index 52a4c8f7d..000000000 Binary files a/files/30_0597.jpg and /dev/null differ diff --git a/files/30_0597.mp3 b/files/30_0597.mp3 deleted file mode 100644 index 27ccbccb0..000000000 Binary files a/files/30_0597.mp3 and /dev/null differ diff --git a/files/30_0597_example.mp3 b/files/30_0597_example.mp3 deleted file mode 100644 index 48cb31d32..000000000 Binary files a/files/30_0597_example.mp3 and /dev/null differ diff --git a/files/30_0597_meaning.mp3 b/files/30_0597_meaning.mp3 deleted file mode 100644 index 38b41f861..000000000 Binary files a/files/30_0597_meaning.mp3 and /dev/null differ diff --git a/files/30_0598.jpg b/files/30_0598.jpg deleted file mode 100644 index 09d6fd3e2..000000000 Binary files a/files/30_0598.jpg and /dev/null differ diff --git a/files/30_0598.mp3 b/files/30_0598.mp3 deleted file mode 100644 index e4e1da29f..000000000 Binary files a/files/30_0598.mp3 and /dev/null differ diff --git a/files/30_0598_example.mp3 b/files/30_0598_example.mp3 deleted file mode 100644 index 86e520a76..000000000 Binary files a/files/30_0598_example.mp3 and /dev/null differ diff --git a/files/30_0598_meaning.mp3 b/files/30_0598_meaning.mp3 deleted file mode 100644 index b05f6edf9..000000000 Binary files a/files/30_0598_meaning.mp3 and /dev/null differ diff --git a/files/30_0599.jpg b/files/30_0599.jpg deleted file mode 100644 index e8302a2cc..000000000 Binary files a/files/30_0599.jpg and /dev/null differ diff --git a/files/30_0599.mp3 b/files/30_0599.mp3 deleted file mode 100644 index 6e0b34d66..000000000 Binary files a/files/30_0599.mp3 and /dev/null differ diff --git a/files/30_0599_example.mp3 b/files/30_0599_example.mp3 deleted file mode 100644 index 6b8d24912..000000000 Binary files a/files/30_0599_example.mp3 and /dev/null differ diff --git a/files/30_0599_meaning.mp3 b/files/30_0599_meaning.mp3 deleted file mode 100644 index bcba254fb..000000000 Binary files a/files/30_0599_meaning.mp3 and /dev/null differ diff --git a/files/30_0600.jpg b/files/30_0600.jpg deleted file mode 100644 index 068d9390e..000000000 Binary files a/files/30_0600.jpg and /dev/null differ diff --git a/files/30_0600.mp3 b/files/30_0600.mp3 deleted file mode 100644 index f07b6ef8a..000000000 Binary files a/files/30_0600.mp3 and /dev/null differ diff --git a/files/30_0600_example.mp3 b/files/30_0600_example.mp3 deleted file mode 100644 index 129b28d1b..000000000 Binary files a/files/30_0600_example.mp3 and /dev/null differ diff --git a/files/30_0600_meaning.mp3 b/files/30_0600_meaning.mp3 deleted file mode 100644 index 295f12632..000000000 Binary files a/files/30_0600_meaning.mp3 and /dev/null differ diff --git a/files/30_1181.jpg b/files/30_1181.jpg deleted file mode 100644 index 09117fb9e..000000000 Binary files a/files/30_1181.jpg and /dev/null differ diff --git a/files/30_1181.mp3 b/files/30_1181.mp3 deleted file mode 100644 index 87908ca07..000000000 Binary files a/files/30_1181.mp3 and /dev/null differ diff --git a/files/30_1181_example.mp3 b/files/30_1181_example.mp3 deleted file mode 100644 index 442116b9e..000000000 Binary files a/files/30_1181_example.mp3 and /dev/null differ diff --git a/files/30_1181_meaning.mp3 b/files/30_1181_meaning.mp3 deleted file mode 100644 index 50000f447..000000000 Binary files a/files/30_1181_meaning.mp3 and /dev/null differ diff --git a/files/30_1182.jpg b/files/30_1182.jpg deleted file mode 100644 index 28ba1dbcb..000000000 Binary files a/files/30_1182.jpg and /dev/null differ diff --git a/files/30_1182.mp3 b/files/30_1182.mp3 deleted file mode 100644 index 43906179b..000000000 Binary files a/files/30_1182.mp3 and /dev/null differ diff --git a/files/30_1182_example.mp3 b/files/30_1182_example.mp3 deleted file mode 100644 index 516267e5a..000000000 Binary files a/files/30_1182_example.mp3 and /dev/null differ diff --git a/files/30_1182_meaning.mp3 b/files/30_1182_meaning.mp3 deleted file mode 100644 index 0db6b4305..000000000 Binary files a/files/30_1182_meaning.mp3 and /dev/null differ diff --git a/files/30_1183.jpg b/files/30_1183.jpg deleted file mode 100644 index d061ee99d..000000000 Binary files a/files/30_1183.jpg and /dev/null differ diff --git a/files/30_1183.mp3 b/files/30_1183.mp3 deleted file mode 100644 index 1c282858b..000000000 Binary files a/files/30_1183.mp3 and /dev/null differ diff --git a/files/30_1183_example.mp3 b/files/30_1183_example.mp3 deleted file mode 100644 index ba2846e86..000000000 Binary files a/files/30_1183_example.mp3 and /dev/null differ diff --git a/files/30_1183_meaning.mp3 b/files/30_1183_meaning.mp3 deleted file mode 100644 index a9a7c922b..000000000 Binary files a/files/30_1183_meaning.mp3 and /dev/null differ diff --git a/files/30_1184.jpg b/files/30_1184.jpg deleted file mode 100644 index 7d6c8ee20..000000000 Binary files a/files/30_1184.jpg and /dev/null differ diff --git a/files/30_1184.mp3 b/files/30_1184.mp3 deleted file mode 100644 index 2888b4692..000000000 Binary files a/files/30_1184.mp3 and /dev/null differ diff --git a/files/30_1184_example.mp3 b/files/30_1184_example.mp3 deleted file mode 100644 index 4dcabc687..000000000 Binary files a/files/30_1184_example.mp3 and /dev/null differ diff --git a/files/30_1184_meaning.mp3 b/files/30_1184_meaning.mp3 deleted file mode 100644 index eccf9d3ba..000000000 Binary files a/files/30_1184_meaning.mp3 and /dev/null differ diff --git a/files/30_1185.jpg b/files/30_1185.jpg deleted file mode 100644 index 4b99bd188..000000000 Binary files a/files/30_1185.jpg and /dev/null differ diff --git a/files/30_1185.mp3 b/files/30_1185.mp3 deleted file mode 100644 index ef0dbfbf4..000000000 Binary files a/files/30_1185.mp3 and /dev/null differ diff --git a/files/30_1185_example.mp3 b/files/30_1185_example.mp3 deleted file mode 100644 index 8d8f7ed28..000000000 Binary files a/files/30_1185_example.mp3 and /dev/null differ diff --git a/files/30_1185_meaning.mp3 b/files/30_1185_meaning.mp3 deleted file mode 100644 index eb21d851b..000000000 Binary files a/files/30_1185_meaning.mp3 and /dev/null differ diff --git a/files/30_1186.jpg b/files/30_1186.jpg deleted file mode 100644 index 201359476..000000000 Binary files a/files/30_1186.jpg and /dev/null differ diff --git a/files/30_1186.mp3 b/files/30_1186.mp3 deleted file mode 100644 index a1f8a327b..000000000 Binary files a/files/30_1186.mp3 and /dev/null differ diff --git a/files/30_1186_example.mp3 b/files/30_1186_example.mp3 deleted file mode 100644 index 056f1ddaa..000000000 Binary files a/files/30_1186_example.mp3 and /dev/null differ diff --git a/files/30_1186_meaning.mp3 b/files/30_1186_meaning.mp3 deleted file mode 100644 index 20d342fd7..000000000 Binary files a/files/30_1186_meaning.mp3 and /dev/null differ diff --git a/files/30_1187.jpg b/files/30_1187.jpg deleted file mode 100644 index e23fbc537..000000000 Binary files a/files/30_1187.jpg and /dev/null differ diff --git a/files/30_1187.mp3 b/files/30_1187.mp3 deleted file mode 100644 index afde9fcff..000000000 Binary files a/files/30_1187.mp3 and /dev/null differ diff --git a/files/30_1187_example.mp3 b/files/30_1187_example.mp3 deleted file mode 100644 index 03451c089..000000000 Binary files a/files/30_1187_example.mp3 and /dev/null differ diff --git a/files/30_1187_meaning.mp3 b/files/30_1187_meaning.mp3 deleted file mode 100644 index 307ca23bb..000000000 Binary files a/files/30_1187_meaning.mp3 and /dev/null differ diff --git a/files/30_1188.jpg b/files/30_1188.jpg deleted file mode 100644 index a2fd1c5d4..000000000 Binary files a/files/30_1188.jpg and /dev/null differ diff --git a/files/30_1188.mp3 b/files/30_1188.mp3 deleted file mode 100644 index 32f14624a..000000000 Binary files a/files/30_1188.mp3 and /dev/null differ diff --git a/files/30_1188_example.mp3 b/files/30_1188_example.mp3 deleted file mode 100644 index dcf570a22..000000000 Binary files a/files/30_1188_example.mp3 and /dev/null differ diff --git a/files/30_1188_meaning.mp3 b/files/30_1188_meaning.mp3 deleted file mode 100644 index c593a37f5..000000000 Binary files a/files/30_1188_meaning.mp3 and /dev/null differ diff --git a/files/30_1189.jpg b/files/30_1189.jpg deleted file mode 100644 index f6e8222f8..000000000 Binary files a/files/30_1189.jpg and /dev/null differ diff --git a/files/30_1189.mp3 b/files/30_1189.mp3 deleted file mode 100644 index 3782379eb..000000000 Binary files a/files/30_1189.mp3 and /dev/null differ diff --git a/files/30_1189_example.mp3 b/files/30_1189_example.mp3 deleted file mode 100644 index 5ecfba78c..000000000 Binary files a/files/30_1189_example.mp3 and /dev/null differ diff --git a/files/30_1189_meaning.mp3 b/files/30_1189_meaning.mp3 deleted file mode 100644 index c6a714afd..000000000 Binary files a/files/30_1189_meaning.mp3 and /dev/null differ diff --git a/files/30_1190.jpg b/files/30_1190.jpg deleted file mode 100644 index 3574318a7..000000000 Binary files a/files/30_1190.jpg and /dev/null differ diff --git a/files/30_1190.mp3 b/files/30_1190.mp3 deleted file mode 100644 index 878c52fdc..000000000 Binary files a/files/30_1190.mp3 and /dev/null differ diff --git a/files/30_1190_example.mp3 b/files/30_1190_example.mp3 deleted file mode 100644 index 36ef17a8a..000000000 Binary files a/files/30_1190_example.mp3 and /dev/null differ diff --git a/files/30_1190_meaning.mp3 b/files/30_1190_meaning.mp3 deleted file mode 100644 index 11b1a92db..000000000 Binary files a/files/30_1190_meaning.mp3 and /dev/null differ diff --git a/files/30_1191.jpg b/files/30_1191.jpg deleted file mode 100644 index 89f1277e2..000000000 Binary files a/files/30_1191.jpg and /dev/null differ diff --git a/files/30_1191.mp3 b/files/30_1191.mp3 deleted file mode 100644 index 2c04f9068..000000000 Binary files a/files/30_1191.mp3 and /dev/null differ diff --git a/files/30_1191_example.mp3 b/files/30_1191_example.mp3 deleted file mode 100644 index 02878dce0..000000000 Binary files a/files/30_1191_example.mp3 and /dev/null differ diff --git a/files/30_1191_meaning.mp3 b/files/30_1191_meaning.mp3 deleted file mode 100644 index ce6c55e7f..000000000 Binary files a/files/30_1191_meaning.mp3 and /dev/null differ diff --git a/files/30_1192.jpg b/files/30_1192.jpg deleted file mode 100644 index 80ee8d79f..000000000 Binary files a/files/30_1192.jpg and /dev/null differ diff --git a/files/30_1192.mp3 b/files/30_1192.mp3 deleted file mode 100644 index 0df95d9cd..000000000 Binary files a/files/30_1192.mp3 and /dev/null differ diff --git a/files/30_1192_example.mp3 b/files/30_1192_example.mp3 deleted file mode 100644 index 0e6ac2385..000000000 Binary files a/files/30_1192_example.mp3 and /dev/null differ diff --git a/files/30_1192_meaning.mp3 b/files/30_1192_meaning.mp3 deleted file mode 100644 index eb4406083..000000000 Binary files a/files/30_1192_meaning.mp3 and /dev/null differ diff --git a/files/30_1193.jpg b/files/30_1193.jpg deleted file mode 100644 index 05d21c472..000000000 Binary files a/files/30_1193.jpg and /dev/null differ diff --git a/files/30_1193.mp3 b/files/30_1193.mp3 deleted file mode 100644 index 0b31e2966..000000000 Binary files a/files/30_1193.mp3 and /dev/null differ diff --git a/files/30_1193_example.mp3 b/files/30_1193_example.mp3 deleted file mode 100644 index 2ca5ce78b..000000000 Binary files a/files/30_1193_example.mp3 and /dev/null differ diff --git a/files/30_1193_meaning.mp3 b/files/30_1193_meaning.mp3 deleted file mode 100644 index d7024566b..000000000 Binary files a/files/30_1193_meaning.mp3 and /dev/null differ diff --git a/files/30_1194.jpg b/files/30_1194.jpg deleted file mode 100644 index 387f8b2ce..000000000 Binary files a/files/30_1194.jpg and /dev/null differ diff --git a/files/30_1194.mp3 b/files/30_1194.mp3 deleted file mode 100644 index 453cba039..000000000 Binary files a/files/30_1194.mp3 and /dev/null differ diff --git a/files/30_1194_example.mp3 b/files/30_1194_example.mp3 deleted file mode 100644 index b71936aad..000000000 Binary files a/files/30_1194_example.mp3 and /dev/null differ diff --git a/files/30_1194_meaning.mp3 b/files/30_1194_meaning.mp3 deleted file mode 100644 index bea48f5ac..000000000 Binary files a/files/30_1194_meaning.mp3 and /dev/null differ diff --git a/files/30_1195.jpg b/files/30_1195.jpg deleted file mode 100644 index b283ad154..000000000 Binary files a/files/30_1195.jpg and /dev/null differ diff --git a/files/30_1195.mp3 b/files/30_1195.mp3 deleted file mode 100644 index 93470b29f..000000000 Binary files a/files/30_1195.mp3 and /dev/null differ diff --git a/files/30_1195_example.mp3 b/files/30_1195_example.mp3 deleted file mode 100644 index 09d5c58fd..000000000 Binary files a/files/30_1195_example.mp3 and /dev/null differ diff --git a/files/30_1195_meaning.mp3 b/files/30_1195_meaning.mp3 deleted file mode 100644 index 65a7bc350..000000000 Binary files a/files/30_1195_meaning.mp3 and /dev/null differ diff --git a/files/30_1196.jpg b/files/30_1196.jpg deleted file mode 100644 index c593988be..000000000 Binary files a/files/30_1196.jpg and /dev/null differ diff --git a/files/30_1196.mp3 b/files/30_1196.mp3 deleted file mode 100644 index 7253a6566..000000000 Binary files a/files/30_1196.mp3 and /dev/null differ diff --git a/files/30_1196_example.mp3 b/files/30_1196_example.mp3 deleted file mode 100644 index 1ea6b4e0d..000000000 Binary files a/files/30_1196_example.mp3 and /dev/null differ diff --git a/files/30_1196_meaning.mp3 b/files/30_1196_meaning.mp3 deleted file mode 100644 index b5de9df81..000000000 Binary files a/files/30_1196_meaning.mp3 and /dev/null differ diff --git a/files/30_1197.jpg b/files/30_1197.jpg deleted file mode 100644 index 7f72bfa23..000000000 Binary files a/files/30_1197.jpg and /dev/null differ diff --git a/files/30_1197.mp3 b/files/30_1197.mp3 deleted file mode 100644 index a9f3cde98..000000000 Binary files a/files/30_1197.mp3 and /dev/null differ diff --git a/files/30_1197_example.mp3 b/files/30_1197_example.mp3 deleted file mode 100644 index a4fed9ebc..000000000 Binary files a/files/30_1197_example.mp3 and /dev/null differ diff --git a/files/30_1197_meaning.mp3 b/files/30_1197_meaning.mp3 deleted file mode 100644 index 1bdf69488..000000000 Binary files a/files/30_1197_meaning.mp3 and /dev/null differ diff --git a/files/30_1198.jpg b/files/30_1198.jpg deleted file mode 100644 index e8aa8d263..000000000 Binary files a/files/30_1198.jpg and /dev/null differ diff --git a/files/30_1198.mp3 b/files/30_1198.mp3 deleted file mode 100644 index 96bf70ecf..000000000 Binary files a/files/30_1198.mp3 and /dev/null differ diff --git a/files/30_1198_example.mp3 b/files/30_1198_example.mp3 deleted file mode 100644 index addd81425..000000000 Binary files a/files/30_1198_example.mp3 and /dev/null differ diff --git a/files/30_1198_meaning.mp3 b/files/30_1198_meaning.mp3 deleted file mode 100644 index 08c9125c1..000000000 Binary files a/files/30_1198_meaning.mp3 and /dev/null differ diff --git a/files/30_1199.jpg b/files/30_1199.jpg deleted file mode 100644 index 3e34c6d9b..000000000 Binary files a/files/30_1199.jpg and /dev/null differ diff --git a/files/30_1199.mp3 b/files/30_1199.mp3 deleted file mode 100644 index c7f2721bd..000000000 Binary files a/files/30_1199.mp3 and /dev/null differ diff --git a/files/30_1199_example.mp3 b/files/30_1199_example.mp3 deleted file mode 100644 index 2410544e8..000000000 Binary files a/files/30_1199_example.mp3 and /dev/null differ diff --git a/files/30_1199_meaning.mp3 b/files/30_1199_meaning.mp3 deleted file mode 100644 index fa22c21b2..000000000 Binary files a/files/30_1199_meaning.mp3 and /dev/null differ diff --git a/files/30_1200.jpg b/files/30_1200.jpg deleted file mode 100644 index d096fef6c..000000000 Binary files a/files/30_1200.jpg and /dev/null differ diff --git a/files/30_1200.mp3 b/files/30_1200.mp3 deleted file mode 100644 index 51ae767ff..000000000 Binary files a/files/30_1200.mp3 and /dev/null differ diff --git a/files/30_1200_example.mp3 b/files/30_1200_example.mp3 deleted file mode 100644 index 68d66ad0c..000000000 Binary files a/files/30_1200_example.mp3 and /dev/null differ diff --git a/files/30_1200_meaning.mp3 b/files/30_1200_meaning.mp3 deleted file mode 100644 index 2fb19ec68..000000000 Binary files a/files/30_1200_meaning.mp3 and /dev/null differ diff --git a/files/30_1781.jpg b/files/30_1781.jpg deleted file mode 100644 index 6aab77fe5..000000000 Binary files a/files/30_1781.jpg and /dev/null differ diff --git a/files/30_1781.mp3 b/files/30_1781.mp3 deleted file mode 100644 index c55a1edd9..000000000 Binary files a/files/30_1781.mp3 and /dev/null differ diff --git a/files/30_1781_example.mp3 b/files/30_1781_example.mp3 deleted file mode 100644 index fe082ba6f..000000000 Binary files a/files/30_1781_example.mp3 and /dev/null differ diff --git a/files/30_1781_meaning.mp3 b/files/30_1781_meaning.mp3 deleted file mode 100644 index 4872aecbb..000000000 Binary files a/files/30_1781_meaning.mp3 and /dev/null differ diff --git a/files/30_1782.jpg b/files/30_1782.jpg deleted file mode 100644 index 54828e2e5..000000000 Binary files a/files/30_1782.jpg and /dev/null differ diff --git a/files/30_1782.mp3 b/files/30_1782.mp3 deleted file mode 100644 index b22fc44bb..000000000 Binary files a/files/30_1782.mp3 and /dev/null differ diff --git a/files/30_1782_example.mp3 b/files/30_1782_example.mp3 deleted file mode 100644 index 491b4bdcd..000000000 Binary files a/files/30_1782_example.mp3 and /dev/null differ diff --git a/files/30_1782_meaning.mp3 b/files/30_1782_meaning.mp3 deleted file mode 100644 index 855679034..000000000 Binary files a/files/30_1782_meaning.mp3 and /dev/null differ diff --git a/files/30_1783.jpg b/files/30_1783.jpg deleted file mode 100644 index 3134a114f..000000000 Binary files a/files/30_1783.jpg and /dev/null differ diff --git a/files/30_1783.mp3 b/files/30_1783.mp3 deleted file mode 100644 index 58018751f..000000000 Binary files a/files/30_1783.mp3 and /dev/null differ diff --git a/files/30_1783_example.mp3 b/files/30_1783_example.mp3 deleted file mode 100644 index ae8a834cf..000000000 Binary files a/files/30_1783_example.mp3 and /dev/null differ diff --git a/files/30_1783_meaning.mp3 b/files/30_1783_meaning.mp3 deleted file mode 100644 index 2fa5c064c..000000000 Binary files a/files/30_1783_meaning.mp3 and /dev/null differ diff --git a/files/30_1784.jpg b/files/30_1784.jpg deleted file mode 100644 index b1192fb23..000000000 Binary files a/files/30_1784.jpg and /dev/null differ diff --git a/files/30_1784.mp3 b/files/30_1784.mp3 deleted file mode 100644 index d25d1440b..000000000 Binary files a/files/30_1784.mp3 and /dev/null differ diff --git a/files/30_1784_example.mp3 b/files/30_1784_example.mp3 deleted file mode 100644 index 0538b6d0f..000000000 Binary files a/files/30_1784_example.mp3 and /dev/null differ diff --git a/files/30_1784_meaning.mp3 b/files/30_1784_meaning.mp3 deleted file mode 100644 index 66ace172a..000000000 Binary files a/files/30_1784_meaning.mp3 and /dev/null differ diff --git a/files/30_1785.jpg b/files/30_1785.jpg deleted file mode 100644 index e7cedc9b7..000000000 Binary files a/files/30_1785.jpg and /dev/null differ diff --git a/files/30_1785.mp3 b/files/30_1785.mp3 deleted file mode 100644 index 01e89142d..000000000 Binary files a/files/30_1785.mp3 and /dev/null differ diff --git a/files/30_1785_example.mp3 b/files/30_1785_example.mp3 deleted file mode 100644 index d27487164..000000000 Binary files a/files/30_1785_example.mp3 and /dev/null differ diff --git a/files/30_1785_meaning.mp3 b/files/30_1785_meaning.mp3 deleted file mode 100644 index f45c73c91..000000000 Binary files a/files/30_1785_meaning.mp3 and /dev/null differ diff --git a/files/30_1786.jpg b/files/30_1786.jpg deleted file mode 100644 index 2901ddd70..000000000 Binary files a/files/30_1786.jpg and /dev/null differ diff --git a/files/30_1786.mp3 b/files/30_1786.mp3 deleted file mode 100644 index 1e726da99..000000000 Binary files a/files/30_1786.mp3 and /dev/null differ diff --git a/files/30_1786_example.mp3 b/files/30_1786_example.mp3 deleted file mode 100644 index cb0962b70..000000000 Binary files a/files/30_1786_example.mp3 and /dev/null differ diff --git a/files/30_1786_meaning.mp3 b/files/30_1786_meaning.mp3 deleted file mode 100644 index b32e0f78e..000000000 Binary files a/files/30_1786_meaning.mp3 and /dev/null differ diff --git a/files/30_1787.jpg b/files/30_1787.jpg deleted file mode 100644 index c1d2293ce..000000000 Binary files a/files/30_1787.jpg and /dev/null differ diff --git a/files/30_1787.mp3 b/files/30_1787.mp3 deleted file mode 100644 index a7ae2c458..000000000 Binary files a/files/30_1787.mp3 and /dev/null differ diff --git a/files/30_1787_example.mp3 b/files/30_1787_example.mp3 deleted file mode 100644 index 432817ade..000000000 Binary files a/files/30_1787_example.mp3 and /dev/null differ diff --git a/files/30_1787_meaning.mp3 b/files/30_1787_meaning.mp3 deleted file mode 100644 index 9076d0a43..000000000 Binary files a/files/30_1787_meaning.mp3 and /dev/null differ diff --git a/files/30_1788.jpg b/files/30_1788.jpg deleted file mode 100644 index aec6b53b9..000000000 Binary files a/files/30_1788.jpg and /dev/null differ diff --git a/files/30_1788.mp3 b/files/30_1788.mp3 deleted file mode 100644 index 79f36ed00..000000000 Binary files a/files/30_1788.mp3 and /dev/null differ diff --git a/files/30_1788_example.mp3 b/files/30_1788_example.mp3 deleted file mode 100644 index 77d3b863f..000000000 Binary files a/files/30_1788_example.mp3 and /dev/null differ diff --git a/files/30_1788_meaning.mp3 b/files/30_1788_meaning.mp3 deleted file mode 100644 index 2f64339e1..000000000 Binary files a/files/30_1788_meaning.mp3 and /dev/null differ diff --git a/files/30_1789.jpg b/files/30_1789.jpg deleted file mode 100644 index 1f6d53552..000000000 Binary files a/files/30_1789.jpg and /dev/null differ diff --git a/files/30_1789.mp3 b/files/30_1789.mp3 deleted file mode 100644 index af5e42f88..000000000 Binary files a/files/30_1789.mp3 and /dev/null differ diff --git a/files/30_1789_example.mp3 b/files/30_1789_example.mp3 deleted file mode 100644 index ec611cff1..000000000 Binary files a/files/30_1789_example.mp3 and /dev/null differ diff --git a/files/30_1789_meaning.mp3 b/files/30_1789_meaning.mp3 deleted file mode 100644 index 69bd10077..000000000 Binary files a/files/30_1789_meaning.mp3 and /dev/null differ diff --git a/files/30_1790.jpg b/files/30_1790.jpg deleted file mode 100644 index a1ad4babc..000000000 Binary files a/files/30_1790.jpg and /dev/null differ diff --git a/files/30_1790.mp3 b/files/30_1790.mp3 deleted file mode 100644 index 48309b909..000000000 Binary files a/files/30_1790.mp3 and /dev/null differ diff --git a/files/30_1790_example.mp3 b/files/30_1790_example.mp3 deleted file mode 100644 index 1dd03cdf4..000000000 Binary files a/files/30_1790_example.mp3 and /dev/null differ diff --git a/files/30_1790_meaning.mp3 b/files/30_1790_meaning.mp3 deleted file mode 100644 index 431e5e026..000000000 Binary files a/files/30_1790_meaning.mp3 and /dev/null differ diff --git a/files/30_1791.jpg b/files/30_1791.jpg deleted file mode 100644 index 0a8fb9484..000000000 Binary files a/files/30_1791.jpg and /dev/null differ diff --git a/files/30_1791.mp3 b/files/30_1791.mp3 deleted file mode 100644 index d3d3e8f20..000000000 Binary files a/files/30_1791.mp3 and /dev/null differ diff --git a/files/30_1791_example.mp3 b/files/30_1791_example.mp3 deleted file mode 100644 index 7a588ab42..000000000 Binary files a/files/30_1791_example.mp3 and /dev/null differ diff --git a/files/30_1791_meaning.mp3 b/files/30_1791_meaning.mp3 deleted file mode 100644 index 01390f521..000000000 Binary files a/files/30_1791_meaning.mp3 and /dev/null differ diff --git a/files/30_1792.jpg b/files/30_1792.jpg deleted file mode 100644 index bab1d4554..000000000 Binary files a/files/30_1792.jpg and /dev/null differ diff --git a/files/30_1792.mp3 b/files/30_1792.mp3 deleted file mode 100644 index 617dd3a7a..000000000 Binary files a/files/30_1792.mp3 and /dev/null differ diff --git a/files/30_1792_example.mp3 b/files/30_1792_example.mp3 deleted file mode 100644 index d1066d19e..000000000 Binary files a/files/30_1792_example.mp3 and /dev/null differ diff --git a/files/30_1792_meaning.mp3 b/files/30_1792_meaning.mp3 deleted file mode 100644 index 570e2c9ea..000000000 Binary files a/files/30_1792_meaning.mp3 and /dev/null differ diff --git a/files/30_1793.jpg b/files/30_1793.jpg deleted file mode 100644 index 8a72df0a2..000000000 Binary files a/files/30_1793.jpg and /dev/null differ diff --git a/files/30_1793.mp3 b/files/30_1793.mp3 deleted file mode 100644 index 1b3c8189d..000000000 Binary files a/files/30_1793.mp3 and /dev/null differ diff --git a/files/30_1793_example.mp3 b/files/30_1793_example.mp3 deleted file mode 100644 index 5ad71218e..000000000 Binary files a/files/30_1793_example.mp3 and /dev/null differ diff --git a/files/30_1793_meaning.mp3 b/files/30_1793_meaning.mp3 deleted file mode 100644 index e44920ddf..000000000 Binary files a/files/30_1793_meaning.mp3 and /dev/null differ diff --git a/files/30_1794.jpg b/files/30_1794.jpg deleted file mode 100644 index 60f754b9f..000000000 Binary files a/files/30_1794.jpg and /dev/null differ diff --git a/files/30_1794.mp3 b/files/30_1794.mp3 deleted file mode 100644 index f55dcbb6c..000000000 Binary files a/files/30_1794.mp3 and /dev/null differ diff --git a/files/30_1794_example.mp3 b/files/30_1794_example.mp3 deleted file mode 100644 index 0e44a815c..000000000 Binary files a/files/30_1794_example.mp3 and /dev/null differ diff --git a/files/30_1794_meaning.mp3 b/files/30_1794_meaning.mp3 deleted file mode 100644 index 4b6698cdb..000000000 Binary files a/files/30_1794_meaning.mp3 and /dev/null differ diff --git a/files/30_1795.jpg b/files/30_1795.jpg deleted file mode 100644 index 22f577feb..000000000 Binary files a/files/30_1795.jpg and /dev/null differ diff --git a/files/30_1795.mp3 b/files/30_1795.mp3 deleted file mode 100644 index ebff9b980..000000000 Binary files a/files/30_1795.mp3 and /dev/null differ diff --git a/files/30_1795_example.mp3 b/files/30_1795_example.mp3 deleted file mode 100644 index 65430173b..000000000 Binary files a/files/30_1795_example.mp3 and /dev/null differ diff --git a/files/30_1795_meaning.mp3 b/files/30_1795_meaning.mp3 deleted file mode 100644 index 218bdf78c..000000000 Binary files a/files/30_1795_meaning.mp3 and /dev/null differ diff --git a/files/30_1796.jpg b/files/30_1796.jpg deleted file mode 100644 index caf84b3d0..000000000 Binary files a/files/30_1796.jpg and /dev/null differ diff --git a/files/30_1796.mp3 b/files/30_1796.mp3 deleted file mode 100644 index 0aa2d3767..000000000 Binary files a/files/30_1796.mp3 and /dev/null differ diff --git a/files/30_1796_example.mp3 b/files/30_1796_example.mp3 deleted file mode 100644 index 3250abb94..000000000 Binary files a/files/30_1796_example.mp3 and /dev/null differ diff --git a/files/30_1796_meaning.mp3 b/files/30_1796_meaning.mp3 deleted file mode 100644 index f502de4ed..000000000 Binary files a/files/30_1796_meaning.mp3 and /dev/null differ diff --git a/files/30_1797.jpg b/files/30_1797.jpg deleted file mode 100644 index d1e7962b7..000000000 Binary files a/files/30_1797.jpg and /dev/null differ diff --git a/files/30_1797.mp3 b/files/30_1797.mp3 deleted file mode 100644 index c924752ef..000000000 Binary files a/files/30_1797.mp3 and /dev/null differ diff --git a/files/30_1797_example.mp3 b/files/30_1797_example.mp3 deleted file mode 100644 index d728dcaa7..000000000 Binary files a/files/30_1797_example.mp3 and /dev/null differ diff --git a/files/30_1797_meaning.mp3 b/files/30_1797_meaning.mp3 deleted file mode 100644 index 0b6dd6769..000000000 Binary files a/files/30_1797_meaning.mp3 and /dev/null differ diff --git a/files/30_1798.jpg b/files/30_1798.jpg deleted file mode 100644 index 864c8d85a..000000000 Binary files a/files/30_1798.jpg and /dev/null differ diff --git a/files/30_1798.mp3 b/files/30_1798.mp3 deleted file mode 100644 index 3b5f531f6..000000000 Binary files a/files/30_1798.mp3 and /dev/null differ diff --git a/files/30_1798_example.mp3 b/files/30_1798_example.mp3 deleted file mode 100644 index e020dffbe..000000000 Binary files a/files/30_1798_example.mp3 and /dev/null differ diff --git a/files/30_1798_meaning.mp3 b/files/30_1798_meaning.mp3 deleted file mode 100644 index a2f536832..000000000 Binary files a/files/30_1798_meaning.mp3 and /dev/null differ diff --git a/files/30_1799.jpg b/files/30_1799.jpg deleted file mode 100644 index 0166176c9..000000000 Binary files a/files/30_1799.jpg and /dev/null differ diff --git a/files/30_1799.mp3 b/files/30_1799.mp3 deleted file mode 100644 index 5fed4e806..000000000 Binary files a/files/30_1799.mp3 and /dev/null differ diff --git a/files/30_1799_example.mp3 b/files/30_1799_example.mp3 deleted file mode 100644 index 400962e86..000000000 Binary files a/files/30_1799_example.mp3 and /dev/null differ diff --git a/files/30_1799_meaning.mp3 b/files/30_1799_meaning.mp3 deleted file mode 100644 index 55d1fcfaf..000000000 Binary files a/files/30_1799_meaning.mp3 and /dev/null differ diff --git a/files/30_1800.jpg b/files/30_1800.jpg deleted file mode 100644 index d22adcaa3..000000000 Binary files a/files/30_1800.jpg and /dev/null differ diff --git a/files/30_1800.mp3 b/files/30_1800.mp3 deleted file mode 100644 index e845e0025..000000000 Binary files a/files/30_1800.mp3 and /dev/null differ diff --git a/files/30_1800_example.mp3 b/files/30_1800_example.mp3 deleted file mode 100644 index 7e30abc6c..000000000 Binary files a/files/30_1800_example.mp3 and /dev/null differ diff --git a/files/30_1800_meaning.mp3 b/files/30_1800_meaning.mp3 deleted file mode 100644 index e39741e53..000000000 Binary files a/files/30_1800_meaning.mp3 and /dev/null differ diff --git a/files/30_2381.jpg b/files/30_2381.jpg deleted file mode 100644 index 0009334d4..000000000 Binary files a/files/30_2381.jpg and /dev/null differ diff --git a/files/30_2381.mp3 b/files/30_2381.mp3 deleted file mode 100644 index 633ace519..000000000 Binary files a/files/30_2381.mp3 and /dev/null differ diff --git a/files/30_2381_example.mp3 b/files/30_2381_example.mp3 deleted file mode 100644 index 4d6844d6f..000000000 Binary files a/files/30_2381_example.mp3 and /dev/null differ diff --git a/files/30_2381_meaning.mp3 b/files/30_2381_meaning.mp3 deleted file mode 100644 index 5aac2237d..000000000 Binary files a/files/30_2381_meaning.mp3 and /dev/null differ diff --git a/files/30_2382.jpg b/files/30_2382.jpg deleted file mode 100644 index 69a01b7fb..000000000 Binary files a/files/30_2382.jpg and /dev/null differ diff --git a/files/30_2382.mp3 b/files/30_2382.mp3 deleted file mode 100644 index 6b3f577c1..000000000 Binary files a/files/30_2382.mp3 and /dev/null differ diff --git a/files/30_2382_example.mp3 b/files/30_2382_example.mp3 deleted file mode 100644 index a8999662b..000000000 Binary files a/files/30_2382_example.mp3 and /dev/null differ diff --git a/files/30_2382_meaning.mp3 b/files/30_2382_meaning.mp3 deleted file mode 100644 index 1cb7db7e5..000000000 Binary files a/files/30_2382_meaning.mp3 and /dev/null differ diff --git a/files/30_2383.jpg b/files/30_2383.jpg deleted file mode 100644 index cdb93b44a..000000000 Binary files a/files/30_2383.jpg and /dev/null differ diff --git a/files/30_2383.mp3 b/files/30_2383.mp3 deleted file mode 100644 index 0f6e968e7..000000000 Binary files a/files/30_2383.mp3 and /dev/null differ diff --git a/files/30_2383_example.mp3 b/files/30_2383_example.mp3 deleted file mode 100644 index 914f81f5d..000000000 Binary files a/files/30_2383_example.mp3 and /dev/null differ diff --git a/files/30_2383_meaning.mp3 b/files/30_2383_meaning.mp3 deleted file mode 100644 index 2df0d920a..000000000 Binary files a/files/30_2383_meaning.mp3 and /dev/null differ diff --git a/files/30_2384.jpg b/files/30_2384.jpg deleted file mode 100644 index 379fa1b10..000000000 Binary files a/files/30_2384.jpg and /dev/null differ diff --git a/files/30_2384.mp3 b/files/30_2384.mp3 deleted file mode 100644 index 00746b817..000000000 Binary files a/files/30_2384.mp3 and /dev/null differ diff --git a/files/30_2384_example.mp3 b/files/30_2384_example.mp3 deleted file mode 100644 index 0b8f36a61..000000000 Binary files a/files/30_2384_example.mp3 and /dev/null differ diff --git a/files/30_2384_meaning.mp3 b/files/30_2384_meaning.mp3 deleted file mode 100644 index 24fc95925..000000000 Binary files a/files/30_2384_meaning.mp3 and /dev/null differ diff --git a/files/30_2385.jpg b/files/30_2385.jpg deleted file mode 100644 index 8e637629f..000000000 Binary files a/files/30_2385.jpg and /dev/null differ diff --git a/files/30_2385.mp3 b/files/30_2385.mp3 deleted file mode 100644 index bbd122267..000000000 Binary files a/files/30_2385.mp3 and /dev/null differ diff --git a/files/30_2385_example.mp3 b/files/30_2385_example.mp3 deleted file mode 100644 index 89ad9bcbc..000000000 Binary files a/files/30_2385_example.mp3 and /dev/null differ diff --git a/files/30_2385_meaning.mp3 b/files/30_2385_meaning.mp3 deleted file mode 100644 index 205196aec..000000000 Binary files a/files/30_2385_meaning.mp3 and /dev/null differ diff --git a/files/30_2386.jpg b/files/30_2386.jpg deleted file mode 100644 index e31352caa..000000000 Binary files a/files/30_2386.jpg and /dev/null differ diff --git a/files/30_2386.mp3 b/files/30_2386.mp3 deleted file mode 100644 index f72ff0b81..000000000 Binary files a/files/30_2386.mp3 and /dev/null differ diff --git a/files/30_2386_example.mp3 b/files/30_2386_example.mp3 deleted file mode 100644 index 6d68d6a92..000000000 Binary files a/files/30_2386_example.mp3 and /dev/null differ diff --git a/files/30_2386_meaning.mp3 b/files/30_2386_meaning.mp3 deleted file mode 100644 index 80ae2fd05..000000000 Binary files a/files/30_2386_meaning.mp3 and /dev/null differ diff --git a/files/30_2387.jpg b/files/30_2387.jpg deleted file mode 100644 index 734933fe0..000000000 Binary files a/files/30_2387.jpg and /dev/null differ diff --git a/files/30_2387.mp3 b/files/30_2387.mp3 deleted file mode 100644 index 6d4b2654b..000000000 Binary files a/files/30_2387.mp3 and /dev/null differ diff --git a/files/30_2387_example.mp3 b/files/30_2387_example.mp3 deleted file mode 100644 index 64efcadbc..000000000 Binary files a/files/30_2387_example.mp3 and /dev/null differ diff --git a/files/30_2387_meaning.mp3 b/files/30_2387_meaning.mp3 deleted file mode 100644 index 948e8b230..000000000 Binary files a/files/30_2387_meaning.mp3 and /dev/null differ diff --git a/files/30_2388.jpg b/files/30_2388.jpg deleted file mode 100644 index 78bede9a3..000000000 Binary files a/files/30_2388.jpg and /dev/null differ diff --git a/files/30_2388.mp3 b/files/30_2388.mp3 deleted file mode 100644 index c9b54a986..000000000 Binary files a/files/30_2388.mp3 and /dev/null differ diff --git a/files/30_2388_example.mp3 b/files/30_2388_example.mp3 deleted file mode 100644 index 80420aaad..000000000 Binary files a/files/30_2388_example.mp3 and /dev/null differ diff --git a/files/30_2388_meaning.mp3 b/files/30_2388_meaning.mp3 deleted file mode 100644 index e3ab4dcc9..000000000 Binary files a/files/30_2388_meaning.mp3 and /dev/null differ diff --git a/files/30_2389.jpg b/files/30_2389.jpg deleted file mode 100644 index 6cf550406..000000000 Binary files a/files/30_2389.jpg and /dev/null differ diff --git a/files/30_2389.mp3 b/files/30_2389.mp3 deleted file mode 100644 index fd6687ae3..000000000 Binary files a/files/30_2389.mp3 and /dev/null differ diff --git a/files/30_2389_example.mp3 b/files/30_2389_example.mp3 deleted file mode 100644 index 57c95830b..000000000 Binary files a/files/30_2389_example.mp3 and /dev/null differ diff --git a/files/30_2389_meaning.mp3 b/files/30_2389_meaning.mp3 deleted file mode 100644 index 814687d53..000000000 Binary files a/files/30_2389_meaning.mp3 and /dev/null differ diff --git a/files/30_2390.jpg b/files/30_2390.jpg deleted file mode 100644 index ae6842d6b..000000000 Binary files a/files/30_2390.jpg and /dev/null differ diff --git a/files/30_2390.mp3 b/files/30_2390.mp3 deleted file mode 100644 index b26456c2d..000000000 Binary files a/files/30_2390.mp3 and /dev/null differ diff --git a/files/30_2390_example.mp3 b/files/30_2390_example.mp3 deleted file mode 100644 index e88560271..000000000 Binary files a/files/30_2390_example.mp3 and /dev/null differ diff --git a/files/30_2390_meaning.mp3 b/files/30_2390_meaning.mp3 deleted file mode 100644 index edd84eacd..000000000 Binary files a/files/30_2390_meaning.mp3 and /dev/null differ diff --git a/files/30_2391.jpg b/files/30_2391.jpg deleted file mode 100644 index a96e77bda..000000000 Binary files a/files/30_2391.jpg and /dev/null differ diff --git a/files/30_2391.mp3 b/files/30_2391.mp3 deleted file mode 100644 index 2830432d2..000000000 Binary files a/files/30_2391.mp3 and /dev/null differ diff --git a/files/30_2391_example.mp3 b/files/30_2391_example.mp3 deleted file mode 100644 index 9e54210fc..000000000 Binary files a/files/30_2391_example.mp3 and /dev/null differ diff --git a/files/30_2391_meaning.mp3 b/files/30_2391_meaning.mp3 deleted file mode 100644 index f12e891d5..000000000 Binary files a/files/30_2391_meaning.mp3 and /dev/null differ diff --git a/files/30_2392.jpg b/files/30_2392.jpg deleted file mode 100644 index adbf70014..000000000 Binary files a/files/30_2392.jpg and /dev/null differ diff --git a/files/30_2392.mp3 b/files/30_2392.mp3 deleted file mode 100644 index 0f7402f5d..000000000 Binary files a/files/30_2392.mp3 and /dev/null differ diff --git a/files/30_2392_example.mp3 b/files/30_2392_example.mp3 deleted file mode 100644 index 100cc1bdf..000000000 Binary files a/files/30_2392_example.mp3 and /dev/null differ diff --git a/files/30_2392_meaning.mp3 b/files/30_2392_meaning.mp3 deleted file mode 100644 index 756654284..000000000 Binary files a/files/30_2392_meaning.mp3 and /dev/null differ diff --git a/files/30_2393.jpg b/files/30_2393.jpg deleted file mode 100644 index 6ff8b4fba..000000000 Binary files a/files/30_2393.jpg and /dev/null differ diff --git a/files/30_2393.mp3 b/files/30_2393.mp3 deleted file mode 100644 index dddb8c7f1..000000000 Binary files a/files/30_2393.mp3 and /dev/null differ diff --git a/files/30_2393_example.mp3 b/files/30_2393_example.mp3 deleted file mode 100644 index 279954192..000000000 Binary files a/files/30_2393_example.mp3 and /dev/null differ diff --git a/files/30_2393_meaning.mp3 b/files/30_2393_meaning.mp3 deleted file mode 100644 index 45aba45ad..000000000 Binary files a/files/30_2393_meaning.mp3 and /dev/null differ diff --git a/files/30_2394.jpg b/files/30_2394.jpg deleted file mode 100644 index 2991c70b5..000000000 Binary files a/files/30_2394.jpg and /dev/null differ diff --git a/files/30_2394.mp3 b/files/30_2394.mp3 deleted file mode 100644 index c747d2f89..000000000 Binary files a/files/30_2394.mp3 and /dev/null differ diff --git a/files/30_2394_example.mp3 b/files/30_2394_example.mp3 deleted file mode 100644 index 7eeba9b2e..000000000 Binary files a/files/30_2394_example.mp3 and /dev/null differ diff --git a/files/30_2394_meaning.mp3 b/files/30_2394_meaning.mp3 deleted file mode 100644 index 8f7a07352..000000000 Binary files a/files/30_2394_meaning.mp3 and /dev/null differ diff --git a/files/30_2395.jpg b/files/30_2395.jpg deleted file mode 100644 index e8968b63a..000000000 Binary files a/files/30_2395.jpg and /dev/null differ diff --git a/files/30_2395.mp3 b/files/30_2395.mp3 deleted file mode 100644 index e10a6bf7f..000000000 Binary files a/files/30_2395.mp3 and /dev/null differ diff --git a/files/30_2395_example.mp3 b/files/30_2395_example.mp3 deleted file mode 100644 index 02c9f5ed3..000000000 Binary files a/files/30_2395_example.mp3 and /dev/null differ diff --git a/files/30_2395_meaning.mp3 b/files/30_2395_meaning.mp3 deleted file mode 100644 index 6e5294534..000000000 Binary files a/files/30_2395_meaning.mp3 and /dev/null differ diff --git a/files/30_2396.jpg b/files/30_2396.jpg deleted file mode 100644 index 627925239..000000000 Binary files a/files/30_2396.jpg and /dev/null differ diff --git a/files/30_2396.mp3 b/files/30_2396.mp3 deleted file mode 100644 index 4e31ba41c..000000000 Binary files a/files/30_2396.mp3 and /dev/null differ diff --git a/files/30_2396_example.mp3 b/files/30_2396_example.mp3 deleted file mode 100644 index 275ca9965..000000000 Binary files a/files/30_2396_example.mp3 and /dev/null differ diff --git a/files/30_2396_meaning.mp3 b/files/30_2396_meaning.mp3 deleted file mode 100644 index ed3bddf0b..000000000 Binary files a/files/30_2396_meaning.mp3 and /dev/null differ diff --git a/files/30_2397.jpg b/files/30_2397.jpg deleted file mode 100644 index 303016029..000000000 Binary files a/files/30_2397.jpg and /dev/null differ diff --git a/files/30_2397.mp3 b/files/30_2397.mp3 deleted file mode 100644 index 631a52ac9..000000000 Binary files a/files/30_2397.mp3 and /dev/null differ diff --git a/files/30_2397_example.mp3 b/files/30_2397_example.mp3 deleted file mode 100644 index 1ec6f2fbb..000000000 Binary files a/files/30_2397_example.mp3 and /dev/null differ diff --git a/files/30_2397_meaning.mp3 b/files/30_2397_meaning.mp3 deleted file mode 100644 index 7ad024a28..000000000 Binary files a/files/30_2397_meaning.mp3 and /dev/null differ diff --git a/files/30_2398.jpg b/files/30_2398.jpg deleted file mode 100644 index 298592723..000000000 Binary files a/files/30_2398.jpg and /dev/null differ diff --git a/files/30_2398.mp3 b/files/30_2398.mp3 deleted file mode 100644 index ca3f00772..000000000 Binary files a/files/30_2398.mp3 and /dev/null differ diff --git a/files/30_2398_example.mp3 b/files/30_2398_example.mp3 deleted file mode 100644 index 979756393..000000000 Binary files a/files/30_2398_example.mp3 and /dev/null differ diff --git a/files/30_2398_meaning.mp3 b/files/30_2398_meaning.mp3 deleted file mode 100644 index 97a709570..000000000 Binary files a/files/30_2398_meaning.mp3 and /dev/null differ diff --git a/files/30_2399.jpg b/files/30_2399.jpg deleted file mode 100644 index 9d5da4587..000000000 Binary files a/files/30_2399.jpg and /dev/null differ diff --git a/files/30_2399.mp3 b/files/30_2399.mp3 deleted file mode 100644 index 1ff6e6dc7..000000000 Binary files a/files/30_2399.mp3 and /dev/null differ diff --git a/files/30_2399_example.mp3 b/files/30_2399_example.mp3 deleted file mode 100644 index 46d29a88e..000000000 Binary files a/files/30_2399_example.mp3 and /dev/null differ diff --git a/files/30_2399_meaning.mp3 b/files/30_2399_meaning.mp3 deleted file mode 100644 index a3a5af4fe..000000000 Binary files a/files/30_2399_meaning.mp3 and /dev/null differ diff --git a/files/30_2400.jpg b/files/30_2400.jpg deleted file mode 100644 index 3cad08ce5..000000000 Binary files a/files/30_2400.jpg and /dev/null differ diff --git a/files/30_2400.mp3 b/files/30_2400.mp3 deleted file mode 100644 index 12d0ad2b1..000000000 Binary files a/files/30_2400.mp3 and /dev/null differ diff --git a/files/30_2400_example.mp3 b/files/30_2400_example.mp3 deleted file mode 100644 index bb8b1c6e5..000000000 Binary files a/files/30_2400_example.mp3 and /dev/null differ diff --git a/files/30_2400_meaning.mp3 b/files/30_2400_meaning.mp3 deleted file mode 100644 index 52a18a82b..000000000 Binary files a/files/30_2400_meaning.mp3 and /dev/null differ diff --git a/files/30_2981.jpg b/files/30_2981.jpg deleted file mode 100644 index a39b2d64c..000000000 Binary files a/files/30_2981.jpg and /dev/null differ diff --git a/files/30_2981.mp3 b/files/30_2981.mp3 deleted file mode 100644 index 71f872f2f..000000000 Binary files a/files/30_2981.mp3 and /dev/null differ diff --git a/files/30_2981_example.mp3 b/files/30_2981_example.mp3 deleted file mode 100644 index 40eb08198..000000000 Binary files a/files/30_2981_example.mp3 and /dev/null differ diff --git a/files/30_2981_meaning.mp3 b/files/30_2981_meaning.mp3 deleted file mode 100644 index 359952249..000000000 Binary files a/files/30_2981_meaning.mp3 and /dev/null differ diff --git a/files/30_2982.jpg b/files/30_2982.jpg deleted file mode 100644 index cc7ff0a2a..000000000 Binary files a/files/30_2982.jpg and /dev/null differ diff --git a/files/30_2982.mp3 b/files/30_2982.mp3 deleted file mode 100644 index 430398528..000000000 Binary files a/files/30_2982.mp3 and /dev/null differ diff --git a/files/30_2982_example.mp3 b/files/30_2982_example.mp3 deleted file mode 100644 index 701f139af..000000000 Binary files a/files/30_2982_example.mp3 and /dev/null differ diff --git a/files/30_2982_meaning.mp3 b/files/30_2982_meaning.mp3 deleted file mode 100644 index 2296285b2..000000000 Binary files a/files/30_2982_meaning.mp3 and /dev/null differ diff --git a/files/30_2983.jpg b/files/30_2983.jpg deleted file mode 100644 index 1836b998e..000000000 Binary files a/files/30_2983.jpg and /dev/null differ diff --git a/files/30_2983.mp3 b/files/30_2983.mp3 deleted file mode 100644 index 9d6ec075b..000000000 Binary files a/files/30_2983.mp3 and /dev/null differ diff --git a/files/30_2983_example.mp3 b/files/30_2983_example.mp3 deleted file mode 100644 index e79c79fa0..000000000 Binary files a/files/30_2983_example.mp3 and /dev/null differ diff --git a/files/30_2983_meaning.mp3 b/files/30_2983_meaning.mp3 deleted file mode 100644 index 5034a3486..000000000 Binary files a/files/30_2983_meaning.mp3 and /dev/null differ diff --git a/files/30_2984.jpg b/files/30_2984.jpg deleted file mode 100644 index 39c2d34c3..000000000 Binary files a/files/30_2984.jpg and /dev/null differ diff --git a/files/30_2984.mp3 b/files/30_2984.mp3 deleted file mode 100644 index 9fa62d94c..000000000 Binary files a/files/30_2984.mp3 and /dev/null differ diff --git a/files/30_2984_example.mp3 b/files/30_2984_example.mp3 deleted file mode 100644 index cdddc3317..000000000 Binary files a/files/30_2984_example.mp3 and /dev/null differ diff --git a/files/30_2984_meaning.mp3 b/files/30_2984_meaning.mp3 deleted file mode 100644 index e75292e5a..000000000 Binary files a/files/30_2984_meaning.mp3 and /dev/null differ diff --git a/files/30_2985.jpg b/files/30_2985.jpg deleted file mode 100644 index 914a7ec5b..000000000 Binary files a/files/30_2985.jpg and /dev/null differ diff --git a/files/30_2985.mp3 b/files/30_2985.mp3 deleted file mode 100644 index 242aca4ed..000000000 Binary files a/files/30_2985.mp3 and /dev/null differ diff --git a/files/30_2985_example.mp3 b/files/30_2985_example.mp3 deleted file mode 100644 index 55c3a81ef..000000000 Binary files a/files/30_2985_example.mp3 and /dev/null differ diff --git a/files/30_2985_meaning.mp3 b/files/30_2985_meaning.mp3 deleted file mode 100644 index c270453e2..000000000 Binary files a/files/30_2985_meaning.mp3 and /dev/null differ diff --git a/files/30_2986.jpg b/files/30_2986.jpg deleted file mode 100644 index a023cfe8f..000000000 Binary files a/files/30_2986.jpg and /dev/null differ diff --git a/files/30_2986.mp3 b/files/30_2986.mp3 deleted file mode 100644 index 65e0c6847..000000000 Binary files a/files/30_2986.mp3 and /dev/null differ diff --git a/files/30_2986_example.mp3 b/files/30_2986_example.mp3 deleted file mode 100644 index dd6ca1794..000000000 Binary files a/files/30_2986_example.mp3 and /dev/null differ diff --git a/files/30_2986_meaning.mp3 b/files/30_2986_meaning.mp3 deleted file mode 100644 index 26b4156d2..000000000 Binary files a/files/30_2986_meaning.mp3 and /dev/null differ diff --git a/files/30_2987.jpg b/files/30_2987.jpg deleted file mode 100644 index fc4b5d510..000000000 Binary files a/files/30_2987.jpg and /dev/null differ diff --git a/files/30_2987.mp3 b/files/30_2987.mp3 deleted file mode 100644 index 68e91ef9d..000000000 Binary files a/files/30_2987.mp3 and /dev/null differ diff --git a/files/30_2987_example.mp3 b/files/30_2987_example.mp3 deleted file mode 100644 index 2f00b9f74..000000000 Binary files a/files/30_2987_example.mp3 and /dev/null differ diff --git a/files/30_2987_meaning.mp3 b/files/30_2987_meaning.mp3 deleted file mode 100644 index bb87dd13e..000000000 Binary files a/files/30_2987_meaning.mp3 and /dev/null differ diff --git a/files/30_2988.jpg b/files/30_2988.jpg deleted file mode 100644 index dff4832b1..000000000 Binary files a/files/30_2988.jpg and /dev/null differ diff --git a/files/30_2988.mp3 b/files/30_2988.mp3 deleted file mode 100644 index c8d095a7d..000000000 Binary files a/files/30_2988.mp3 and /dev/null differ diff --git a/files/30_2988_example.mp3 b/files/30_2988_example.mp3 deleted file mode 100644 index 7c43b1d4d..000000000 Binary files a/files/30_2988_example.mp3 and /dev/null differ diff --git a/files/30_2988_meaning.mp3 b/files/30_2988_meaning.mp3 deleted file mode 100644 index 88ec58521..000000000 Binary files a/files/30_2988_meaning.mp3 and /dev/null differ diff --git a/files/30_2989.jpg b/files/30_2989.jpg deleted file mode 100644 index af5ea0cee..000000000 Binary files a/files/30_2989.jpg and /dev/null differ diff --git a/files/30_2989.mp3 b/files/30_2989.mp3 deleted file mode 100644 index d1b46f314..000000000 Binary files a/files/30_2989.mp3 and /dev/null differ diff --git a/files/30_2989_example.mp3 b/files/30_2989_example.mp3 deleted file mode 100644 index 40283a2e0..000000000 Binary files a/files/30_2989_example.mp3 and /dev/null differ diff --git a/files/30_2989_meaning.mp3 b/files/30_2989_meaning.mp3 deleted file mode 100644 index dbc3fc509..000000000 Binary files a/files/30_2989_meaning.mp3 and /dev/null differ diff --git a/files/30_2990.jpg b/files/30_2990.jpg deleted file mode 100644 index 852e06db8..000000000 Binary files a/files/30_2990.jpg and /dev/null differ diff --git a/files/30_2990.mp3 b/files/30_2990.mp3 deleted file mode 100644 index 8692c2d2a..000000000 Binary files a/files/30_2990.mp3 and /dev/null differ diff --git a/files/30_2990_example.mp3 b/files/30_2990_example.mp3 deleted file mode 100644 index bf5f439f1..000000000 Binary files a/files/30_2990_example.mp3 and /dev/null differ diff --git a/files/30_2990_meaning.mp3 b/files/30_2990_meaning.mp3 deleted file mode 100644 index 9215896d3..000000000 Binary files a/files/30_2990_meaning.mp3 and /dev/null differ diff --git a/files/30_2991.jpg b/files/30_2991.jpg deleted file mode 100644 index aeb38d3bc..000000000 Binary files a/files/30_2991.jpg and /dev/null differ diff --git a/files/30_2991.mp3 b/files/30_2991.mp3 deleted file mode 100644 index 158c688d7..000000000 Binary files a/files/30_2991.mp3 and /dev/null differ diff --git a/files/30_2991_example.mp3 b/files/30_2991_example.mp3 deleted file mode 100644 index 37b977cdc..000000000 Binary files a/files/30_2991_example.mp3 and /dev/null differ diff --git a/files/30_2991_meaning.mp3 b/files/30_2991_meaning.mp3 deleted file mode 100644 index 6e08c3e4b..000000000 Binary files a/files/30_2991_meaning.mp3 and /dev/null differ diff --git a/files/30_2992.jpg b/files/30_2992.jpg deleted file mode 100644 index b3bddbbe3..000000000 Binary files a/files/30_2992.jpg and /dev/null differ diff --git a/files/30_2992.mp3 b/files/30_2992.mp3 deleted file mode 100644 index c15a5c407..000000000 Binary files a/files/30_2992.mp3 and /dev/null differ diff --git a/files/30_2992_example.mp3 b/files/30_2992_example.mp3 deleted file mode 100644 index dcd7cde50..000000000 Binary files a/files/30_2992_example.mp3 and /dev/null differ diff --git a/files/30_2992_meaning.mp3 b/files/30_2992_meaning.mp3 deleted file mode 100644 index 0b45eab0d..000000000 Binary files a/files/30_2992_meaning.mp3 and /dev/null differ diff --git a/files/30_2993.jpg b/files/30_2993.jpg deleted file mode 100644 index 5b221bc9c..000000000 Binary files a/files/30_2993.jpg and /dev/null differ diff --git a/files/30_2993.mp3 b/files/30_2993.mp3 deleted file mode 100644 index c5541132a..000000000 Binary files a/files/30_2993.mp3 and /dev/null differ diff --git a/files/30_2993_example.mp3 b/files/30_2993_example.mp3 deleted file mode 100644 index b0e71a3fa..000000000 Binary files a/files/30_2993_example.mp3 and /dev/null differ diff --git a/files/30_2993_meaning.mp3 b/files/30_2993_meaning.mp3 deleted file mode 100644 index 468d1022d..000000000 Binary files a/files/30_2993_meaning.mp3 and /dev/null differ diff --git a/files/30_2994.jpg b/files/30_2994.jpg deleted file mode 100644 index 8186024a4..000000000 Binary files a/files/30_2994.jpg and /dev/null differ diff --git a/files/30_2994.mp3 b/files/30_2994.mp3 deleted file mode 100644 index eab8f541c..000000000 Binary files a/files/30_2994.mp3 and /dev/null differ diff --git a/files/30_2994_example.mp3 b/files/30_2994_example.mp3 deleted file mode 100644 index 04aa24670..000000000 Binary files a/files/30_2994_example.mp3 and /dev/null differ diff --git a/files/30_2994_meaning.mp3 b/files/30_2994_meaning.mp3 deleted file mode 100644 index 8ff288ceb..000000000 Binary files a/files/30_2994_meaning.mp3 and /dev/null differ diff --git a/files/30_2995.jpg b/files/30_2995.jpg deleted file mode 100644 index 9ab600b6f..000000000 Binary files a/files/30_2995.jpg and /dev/null differ diff --git a/files/30_2995.mp3 b/files/30_2995.mp3 deleted file mode 100644 index 1f92a38a9..000000000 Binary files a/files/30_2995.mp3 and /dev/null differ diff --git a/files/30_2995_example.mp3 b/files/30_2995_example.mp3 deleted file mode 100644 index 07b4e671a..000000000 Binary files a/files/30_2995_example.mp3 and /dev/null differ diff --git a/files/30_2995_meaning.mp3 b/files/30_2995_meaning.mp3 deleted file mode 100644 index 0fb2eee85..000000000 Binary files a/files/30_2995_meaning.mp3 and /dev/null differ diff --git a/files/30_2996.jpg b/files/30_2996.jpg deleted file mode 100644 index 6d0f717b5..000000000 Binary files a/files/30_2996.jpg and /dev/null differ diff --git a/files/30_2996.mp3 b/files/30_2996.mp3 deleted file mode 100644 index c83c79062..000000000 Binary files a/files/30_2996.mp3 and /dev/null differ diff --git a/files/30_2996_example.mp3 b/files/30_2996_example.mp3 deleted file mode 100644 index 5ce8148b8..000000000 Binary files a/files/30_2996_example.mp3 and /dev/null differ diff --git a/files/30_2996_meaning.mp3 b/files/30_2996_meaning.mp3 deleted file mode 100644 index 0ca20bcd2..000000000 Binary files a/files/30_2996_meaning.mp3 and /dev/null differ diff --git a/files/30_2997.jpg b/files/30_2997.jpg deleted file mode 100644 index de827f489..000000000 Binary files a/files/30_2997.jpg and /dev/null differ diff --git a/files/30_2997.mp3 b/files/30_2997.mp3 deleted file mode 100644 index 5796024ce..000000000 Binary files a/files/30_2997.mp3 and /dev/null differ diff --git a/files/30_2997_example.mp3 b/files/30_2997_example.mp3 deleted file mode 100644 index 23a6adce7..000000000 Binary files a/files/30_2997_example.mp3 and /dev/null differ diff --git a/files/30_2997_meaning.mp3 b/files/30_2997_meaning.mp3 deleted file mode 100644 index f4231bf2c..000000000 Binary files a/files/30_2997_meaning.mp3 and /dev/null differ diff --git a/files/30_2998.jpg b/files/30_2998.jpg deleted file mode 100644 index 0c708d4ff..000000000 Binary files a/files/30_2998.jpg and /dev/null differ diff --git a/files/30_2998.mp3 b/files/30_2998.mp3 deleted file mode 100644 index fa0ac6df4..000000000 Binary files a/files/30_2998.mp3 and /dev/null differ diff --git a/files/30_2998_example.mp3 b/files/30_2998_example.mp3 deleted file mode 100644 index 0456167e6..000000000 Binary files a/files/30_2998_example.mp3 and /dev/null differ diff --git a/files/30_2998_meaning.mp3 b/files/30_2998_meaning.mp3 deleted file mode 100644 index b78ceaaed..000000000 Binary files a/files/30_2998_meaning.mp3 and /dev/null differ diff --git a/files/30_2999.jpg b/files/30_2999.jpg deleted file mode 100644 index 9f4652375..000000000 Binary files a/files/30_2999.jpg and /dev/null differ diff --git a/files/30_2999.mp3 b/files/30_2999.mp3 deleted file mode 100644 index 03fff47b4..000000000 Binary files a/files/30_2999.mp3 and /dev/null differ diff --git a/files/30_2999_example.mp3 b/files/30_2999_example.mp3 deleted file mode 100644 index 3f6da0ed8..000000000 Binary files a/files/30_2999_example.mp3 and /dev/null differ diff --git a/files/30_2999_meaning.mp3 b/files/30_2999_meaning.mp3 deleted file mode 100644 index 4ce7f578e..000000000 Binary files a/files/30_2999_meaning.mp3 and /dev/null differ diff --git a/files/30_3000.jpg b/files/30_3000.jpg deleted file mode 100644 index d6caf2d53..000000000 Binary files a/files/30_3000.jpg and /dev/null differ diff --git a/files/30_3000.mp3 b/files/30_3000.mp3 deleted file mode 100644 index 18725d9c7..000000000 Binary files a/files/30_3000.mp3 and /dev/null differ diff --git a/files/30_3000_example.mp3 b/files/30_3000_example.mp3 deleted file mode 100644 index 853f48484..000000000 Binary files a/files/30_3000_example.mp3 and /dev/null differ diff --git a/files/30_3000_meaning.mp3 b/files/30_3000_meaning.mp3 deleted file mode 100644 index c7802c7d6..000000000 Binary files a/files/30_3000_meaning.mp3 and /dev/null differ diff --git a/files/30_3581.jpg b/files/30_3581.jpg deleted file mode 100644 index 9317747b7..000000000 Binary files a/files/30_3581.jpg and /dev/null differ diff --git a/files/30_3581.mp3 b/files/30_3581.mp3 deleted file mode 100644 index 423d13eee..000000000 Binary files a/files/30_3581.mp3 and /dev/null differ diff --git a/files/30_3581_example.mp3 b/files/30_3581_example.mp3 deleted file mode 100644 index 80976fedc..000000000 Binary files a/files/30_3581_example.mp3 and /dev/null differ diff --git a/files/30_3581_meaning.mp3 b/files/30_3581_meaning.mp3 deleted file mode 100644 index be5c93cd1..000000000 Binary files a/files/30_3581_meaning.mp3 and /dev/null differ diff --git a/files/30_3582.jpg b/files/30_3582.jpg deleted file mode 100644 index 651b3311b..000000000 Binary files a/files/30_3582.jpg and /dev/null differ diff --git a/files/30_3582.mp3 b/files/30_3582.mp3 deleted file mode 100644 index 4eb321234..000000000 Binary files a/files/30_3582.mp3 and /dev/null differ diff --git a/files/30_3582_example.mp3 b/files/30_3582_example.mp3 deleted file mode 100644 index 870c6f013..000000000 Binary files a/files/30_3582_example.mp3 and /dev/null differ diff --git a/files/30_3582_meaning.mp3 b/files/30_3582_meaning.mp3 deleted file mode 100644 index df0334189..000000000 Binary files a/files/30_3582_meaning.mp3 and /dev/null differ diff --git a/files/30_3583.jpg b/files/30_3583.jpg deleted file mode 100644 index 278cafdff..000000000 Binary files a/files/30_3583.jpg and /dev/null differ diff --git a/files/30_3583.mp3 b/files/30_3583.mp3 deleted file mode 100644 index 968bede62..000000000 Binary files a/files/30_3583.mp3 and /dev/null differ diff --git a/files/30_3583_example.mp3 b/files/30_3583_example.mp3 deleted file mode 100644 index 4a0ce776b..000000000 Binary files a/files/30_3583_example.mp3 and /dev/null differ diff --git a/files/30_3583_meaning.mp3 b/files/30_3583_meaning.mp3 deleted file mode 100644 index dc14ed838..000000000 Binary files a/files/30_3583_meaning.mp3 and /dev/null differ diff --git a/files/30_3584.jpg b/files/30_3584.jpg deleted file mode 100644 index 7a2f99efc..000000000 Binary files a/files/30_3584.jpg and /dev/null differ diff --git a/files/30_3584.mp3 b/files/30_3584.mp3 deleted file mode 100644 index 7fd41726c..000000000 Binary files a/files/30_3584.mp3 and /dev/null differ diff --git a/files/30_3584_example.mp3 b/files/30_3584_example.mp3 deleted file mode 100644 index 30cace292..000000000 Binary files a/files/30_3584_example.mp3 and /dev/null differ diff --git a/files/30_3584_meaning.mp3 b/files/30_3584_meaning.mp3 deleted file mode 100644 index f5ad38b12..000000000 Binary files a/files/30_3584_meaning.mp3 and /dev/null differ diff --git a/files/30_3585.jpg b/files/30_3585.jpg deleted file mode 100644 index 1e2434eb2..000000000 Binary files a/files/30_3585.jpg and /dev/null differ diff --git a/files/30_3585.mp3 b/files/30_3585.mp3 deleted file mode 100644 index f4dcbaa46..000000000 Binary files a/files/30_3585.mp3 and /dev/null differ diff --git a/files/30_3585_example.mp3 b/files/30_3585_example.mp3 deleted file mode 100644 index da9407e5d..000000000 Binary files a/files/30_3585_example.mp3 and /dev/null differ diff --git a/files/30_3585_meaning.mp3 b/files/30_3585_meaning.mp3 deleted file mode 100644 index 77886a2c8..000000000 Binary files a/files/30_3585_meaning.mp3 and /dev/null differ diff --git a/files/30_3586.jpg b/files/30_3586.jpg deleted file mode 100644 index 20c953b18..000000000 Binary files a/files/30_3586.jpg and /dev/null differ diff --git a/files/30_3586.mp3 b/files/30_3586.mp3 deleted file mode 100644 index e3a7d5536..000000000 Binary files a/files/30_3586.mp3 and /dev/null differ diff --git a/files/30_3586_example.mp3 b/files/30_3586_example.mp3 deleted file mode 100644 index e1f713b23..000000000 Binary files a/files/30_3586_example.mp3 and /dev/null differ diff --git a/files/30_3586_meaning.mp3 b/files/30_3586_meaning.mp3 deleted file mode 100644 index 6be44f1e0..000000000 Binary files a/files/30_3586_meaning.mp3 and /dev/null differ diff --git a/files/30_3587.jpg b/files/30_3587.jpg deleted file mode 100644 index 3bafaf3a6..000000000 Binary files a/files/30_3587.jpg and /dev/null differ diff --git a/files/30_3587.mp3 b/files/30_3587.mp3 deleted file mode 100644 index 705766d33..000000000 Binary files a/files/30_3587.mp3 and /dev/null differ diff --git a/files/30_3587_example.mp3 b/files/30_3587_example.mp3 deleted file mode 100644 index 1c13f626d..000000000 Binary files a/files/30_3587_example.mp3 and /dev/null differ diff --git a/files/30_3587_meaning.mp3 b/files/30_3587_meaning.mp3 deleted file mode 100644 index 1cf26949e..000000000 Binary files a/files/30_3587_meaning.mp3 and /dev/null differ diff --git a/files/30_3588.jpg b/files/30_3588.jpg deleted file mode 100644 index 07f6e89db..000000000 Binary files a/files/30_3588.jpg and /dev/null differ diff --git a/files/30_3588.mp3 b/files/30_3588.mp3 deleted file mode 100644 index 85f70b12e..000000000 Binary files a/files/30_3588.mp3 and /dev/null differ diff --git a/files/30_3588_example.mp3 b/files/30_3588_example.mp3 deleted file mode 100644 index 3643f4dbc..000000000 Binary files a/files/30_3588_example.mp3 and /dev/null differ diff --git a/files/30_3588_meaning.mp3 b/files/30_3588_meaning.mp3 deleted file mode 100644 index e24253362..000000000 Binary files a/files/30_3588_meaning.mp3 and /dev/null differ diff --git a/files/30_3589.jpg b/files/30_3589.jpg deleted file mode 100644 index 9f783ac3b..000000000 Binary files a/files/30_3589.jpg and /dev/null differ diff --git a/files/30_3589.mp3 b/files/30_3589.mp3 deleted file mode 100644 index c3bf7b951..000000000 Binary files a/files/30_3589.mp3 and /dev/null differ diff --git a/files/30_3589_example.mp3 b/files/30_3589_example.mp3 deleted file mode 100644 index b4b16c78a..000000000 Binary files a/files/30_3589_example.mp3 and /dev/null differ diff --git a/files/30_3589_meaning.mp3 b/files/30_3589_meaning.mp3 deleted file mode 100644 index aeae2638c..000000000 Binary files a/files/30_3589_meaning.mp3 and /dev/null differ diff --git a/files/30_3590.jpg b/files/30_3590.jpg deleted file mode 100644 index 7750ef019..000000000 Binary files a/files/30_3590.jpg and /dev/null differ diff --git a/files/30_3590.mp3 b/files/30_3590.mp3 deleted file mode 100644 index fed0dc9e5..000000000 Binary files a/files/30_3590.mp3 and /dev/null differ diff --git a/files/30_3590_example.mp3 b/files/30_3590_example.mp3 deleted file mode 100644 index 0a68aa754..000000000 Binary files a/files/30_3590_example.mp3 and /dev/null differ diff --git a/files/30_3590_meaning.mp3 b/files/30_3590_meaning.mp3 deleted file mode 100644 index b27b1336d..000000000 Binary files a/files/30_3590_meaning.mp3 and /dev/null differ diff --git a/files/30_3591.jpg b/files/30_3591.jpg deleted file mode 100644 index 88168d8ce..000000000 Binary files a/files/30_3591.jpg and /dev/null differ diff --git a/files/30_3591.mp3 b/files/30_3591.mp3 deleted file mode 100644 index cbeddf4fe..000000000 Binary files a/files/30_3591.mp3 and /dev/null differ diff --git a/files/30_3591_example.mp3 b/files/30_3591_example.mp3 deleted file mode 100644 index 6c464cbe9..000000000 Binary files a/files/30_3591_example.mp3 and /dev/null differ diff --git a/files/30_3591_meaning.mp3 b/files/30_3591_meaning.mp3 deleted file mode 100644 index 52b03d337..000000000 Binary files a/files/30_3591_meaning.mp3 and /dev/null differ diff --git a/files/30_3592.jpg b/files/30_3592.jpg deleted file mode 100644 index 324b2288b..000000000 Binary files a/files/30_3592.jpg and /dev/null differ diff --git a/files/30_3592.mp3 b/files/30_3592.mp3 deleted file mode 100644 index ca97dcf15..000000000 Binary files a/files/30_3592.mp3 and /dev/null differ diff --git a/files/30_3592_example.mp3 b/files/30_3592_example.mp3 deleted file mode 100644 index e2213d365..000000000 Binary files a/files/30_3592_example.mp3 and /dev/null differ diff --git a/files/30_3592_meaning.mp3 b/files/30_3592_meaning.mp3 deleted file mode 100644 index c9b00c17e..000000000 Binary files a/files/30_3592_meaning.mp3 and /dev/null differ diff --git a/files/30_3593.jpg b/files/30_3593.jpg deleted file mode 100644 index 25d5b3425..000000000 Binary files a/files/30_3593.jpg and /dev/null differ diff --git a/files/30_3593.mp3 b/files/30_3593.mp3 deleted file mode 100644 index 51b9a5bcb..000000000 Binary files a/files/30_3593.mp3 and /dev/null differ diff --git a/files/30_3593_example.mp3 b/files/30_3593_example.mp3 deleted file mode 100644 index 33f0ff432..000000000 Binary files a/files/30_3593_example.mp3 and /dev/null differ diff --git a/files/30_3593_meaning.mp3 b/files/30_3593_meaning.mp3 deleted file mode 100644 index fe363e326..000000000 Binary files a/files/30_3593_meaning.mp3 and /dev/null differ diff --git a/files/30_3594.jpg b/files/30_3594.jpg deleted file mode 100644 index ea3373227..000000000 Binary files a/files/30_3594.jpg and /dev/null differ diff --git a/files/30_3594.mp3 b/files/30_3594.mp3 deleted file mode 100644 index ff8e699ba..000000000 Binary files a/files/30_3594.mp3 and /dev/null differ diff --git a/files/30_3594_example.mp3 b/files/30_3594_example.mp3 deleted file mode 100644 index 1d3a26b82..000000000 Binary files a/files/30_3594_example.mp3 and /dev/null differ diff --git a/files/30_3594_meaning.mp3 b/files/30_3594_meaning.mp3 deleted file mode 100644 index 30b6c6300..000000000 Binary files a/files/30_3594_meaning.mp3 and /dev/null differ diff --git a/files/30_3595.jpg b/files/30_3595.jpg deleted file mode 100644 index 3b82197ef..000000000 Binary files a/files/30_3595.jpg and /dev/null differ diff --git a/files/30_3595.mp3 b/files/30_3595.mp3 deleted file mode 100644 index 4a4f3f803..000000000 Binary files a/files/30_3595.mp3 and /dev/null differ diff --git a/files/30_3595_example.mp3 b/files/30_3595_example.mp3 deleted file mode 100644 index cf77cca57..000000000 Binary files a/files/30_3595_example.mp3 and /dev/null differ diff --git a/files/30_3595_meaning.mp3 b/files/30_3595_meaning.mp3 deleted file mode 100644 index 380522685..000000000 Binary files a/files/30_3595_meaning.mp3 and /dev/null differ diff --git a/files/30_3596.jpg b/files/30_3596.jpg deleted file mode 100644 index dbb640586..000000000 Binary files a/files/30_3596.jpg and /dev/null differ diff --git a/files/30_3596.mp3 b/files/30_3596.mp3 deleted file mode 100644 index e756c11a7..000000000 Binary files a/files/30_3596.mp3 and /dev/null differ diff --git a/files/30_3596_example.mp3 b/files/30_3596_example.mp3 deleted file mode 100644 index 4c18d78ac..000000000 Binary files a/files/30_3596_example.mp3 and /dev/null differ diff --git a/files/30_3596_meaning.mp3 b/files/30_3596_meaning.mp3 deleted file mode 100644 index f412a9b7b..000000000 Binary files a/files/30_3596_meaning.mp3 and /dev/null differ diff --git a/files/30_3597.jpg b/files/30_3597.jpg deleted file mode 100644 index e744dbb5b..000000000 Binary files a/files/30_3597.jpg and /dev/null differ diff --git a/files/30_3597.mp3 b/files/30_3597.mp3 deleted file mode 100644 index fbc2cdd24..000000000 Binary files a/files/30_3597.mp3 and /dev/null differ diff --git a/files/30_3597_example.mp3 b/files/30_3597_example.mp3 deleted file mode 100644 index 712bde619..000000000 Binary files a/files/30_3597_example.mp3 and /dev/null differ diff --git a/files/30_3597_meaning.mp3 b/files/30_3597_meaning.mp3 deleted file mode 100644 index 759f7fde6..000000000 Binary files a/files/30_3597_meaning.mp3 and /dev/null differ diff --git a/files/30_3598.jpg b/files/30_3598.jpg deleted file mode 100644 index f1654c388..000000000 Binary files a/files/30_3598.jpg and /dev/null differ diff --git a/files/30_3598.mp3 b/files/30_3598.mp3 deleted file mode 100644 index 630bb7ef8..000000000 Binary files a/files/30_3598.mp3 and /dev/null differ diff --git a/files/30_3598_example.mp3 b/files/30_3598_example.mp3 deleted file mode 100644 index ed152c285..000000000 Binary files a/files/30_3598_example.mp3 and /dev/null differ diff --git a/files/30_3598_meaning.mp3 b/files/30_3598_meaning.mp3 deleted file mode 100644 index 5f53ce518..000000000 Binary files a/files/30_3598_meaning.mp3 and /dev/null differ diff --git a/files/30_3599.jpg b/files/30_3599.jpg deleted file mode 100644 index a7a7c8c27..000000000 Binary files a/files/30_3599.jpg and /dev/null differ diff --git a/files/30_3599.mp3 b/files/30_3599.mp3 deleted file mode 100644 index f066c4343..000000000 Binary files a/files/30_3599.mp3 and /dev/null differ diff --git a/files/30_3599_example.mp3 b/files/30_3599_example.mp3 deleted file mode 100644 index d2b10e25f..000000000 Binary files a/files/30_3599_example.mp3 and /dev/null differ diff --git a/files/30_3599_meaning.mp3 b/files/30_3599_meaning.mp3 deleted file mode 100644 index 0fdd9a624..000000000 Binary files a/files/30_3599_meaning.mp3 and /dev/null differ diff --git a/files/30_3600.jpg b/files/30_3600.jpg deleted file mode 100644 index c142cb0d9..000000000 Binary files a/files/30_3600.jpg and /dev/null differ diff --git a/files/30_3600.mp3 b/files/30_3600.mp3 deleted file mode 100644 index 2b35b9046..000000000 Binary files a/files/30_3600.mp3 and /dev/null differ diff --git a/files/30_3600_example.mp3 b/files/30_3600_example.mp3 deleted file mode 100644 index 97ab14665..000000000 Binary files a/files/30_3600_example.mp3 and /dev/null differ diff --git a/files/30_3600_meaning.mp3 b/files/30_3600_meaning.mp3 deleted file mode 100644 index 8a238b4ec..000000000 Binary files a/files/30_3600_meaning.mp3 and /dev/null differ diff --git a/index.html b/index.html new file mode 100644 index 000000000..1d6d3333e --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + + + + + + RS lang + + +
+ + diff --git a/index.ts b/index.ts new file mode 100644 index 000000000..e69de29bb diff --git a/package-lock.json b/package-lock.json index d9dbe06d8..b03f23e7f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,7860 +1,16070 @@ { - "name": "learn-words-rs-rest-service", + "name": "onlinestore", "version": "1.0.0", - "lockfileVersion": 1, + "lockfileVersion": 2, "requires": true, - "dependencies": { - "@babel/code-frame": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", - "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "packages": { + "": { + "name": "onlinestore", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "axios": "^0.27.2" + }, + "devDependencies": { + "@typescript-eslint/eslint-plugin": "^5.30.0", + "@typescript-eslint/parser": "^5.30.0", + "clean-webpack-plugin": "^3.0.0", + "copy-webpack-plugin": "^7.0.0", + "css-loader": "^5.1.0", + "eslint": "^7.27.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-import": "^2.23.3", + "eslint-plugin-prettier": "^3.4.0", + "eslint-webpack-plugin": "^3.2.0", + "html-webpack-plugin": "^5.2.0", + "prettier": "2.2.1", + "style-loader": "^2.0.0", + "svg-inline-loader": "^0.8.2", + "ts-loader": "^9.3.1", + "typescript": "^4.7.4", + "webpack": "^5.37.1", + "webpack-cli": "^4.5.0", + "webpack-dev-server": "^3.11.2", + "webpack-merge": "^5.7.3" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", "dev": true, - "requires": { - "@babel/highlight": "^7.8.3" + "dependencies": { + "@babel/highlight": "^7.10.4" } }, - "@babel/helper-validator-identifier": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.0.tgz", - "integrity": "sha512-6G8bQKjOh+of4PV/ThDm/rRqlU7+IGoJuofpagU5GlEl29Vv0RGqqt86ZGRV8ZuSOY3o+8yXl5y782SMcG7SHw==", - "dev": true + "node_modules/@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } }, - "@babel/highlight": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.9.0.tgz", - "integrity": "sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==", + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.9.0", + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, - "@hapi/address": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@hapi/address/-/address-4.0.1.tgz", - "integrity": "sha512-0oEP5UiyV4f3d6cBL8F3Z5S7iWSX39Knnl0lY8i+6gfmmIBj44JCBNtcMgwyS+5v7j3VYavNay0NFHDS+UGQcw==", - "requires": { - "@hapi/hoek": "^9.0.0" + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "@hapi/formula": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@hapi/formula/-/formula-2.0.0.tgz", - "integrity": "sha512-V87P8fv7PI0LH7LiVi8Lkf3x+KCO7pQozXRssAHNXXL9L1K+uyu4XypLXwxqVDKgyQai6qj3/KteNlrqDx4W5A==" - }, - "@hapi/hoek": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.0.4.tgz", - "integrity": "sha512-EwaJS7RjoXUZ2cXXKZZxZqieGtc7RbvQhUy8FwDoMQtxWVi14tFjeFCYPZAM1mBCpOpiBpyaZbb9NeHc7eGKgw==" + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } }, - "@hapi/joi": { - "version": "17.1.1", - "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-17.1.1.tgz", - "integrity": "sha512-p4DKeZAoeZW4g3u7ZeRo+vCDuSDgSvtsB/NpfjXEHTUjSeINAi/RrVOWiVQ1isaoLzMvFEhe8n5065mQq1AdQg==", - "requires": { - "@hapi/address": "^4.0.1", - "@hapi/formula": "^2.0.0", - "@hapi/hoek": "^9.0.0", - "@hapi/pinpoint": "^2.0.0", - "@hapi/topo": "^5.0.0" + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" } }, - "@hapi/pinpoint": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@hapi/pinpoint/-/pinpoint-2.0.0.tgz", - "integrity": "sha512-vzXR5MY7n4XeIvLpfl3HtE3coZYO4raKXW766R6DZw/6aLqR26iuZ109K7a0NtF2Db0jxqh7xz2AxkUwpUFybw==" + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true }, - "@hapi/topo": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.0.0.tgz", - "integrity": "sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw==", - "requires": { - "@hapi/hoek": "^9.0.0" + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" } }, - "@nodelib/fs.scandir": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz", - "integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==", + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.3", - "run-parallel": "^1.1.9" + "engines": { + "node": ">=4" } }, - "@nodelib/fs.stat": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz", - "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz", - "integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==", + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.3", - "fastq": "^1.6.0" + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "@samverschueren/stream-to-observable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz", - "integrity": "sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg==", + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", "dev": true, - "requires": { - "any-observable": "^0.3.0" + "engines": { + "node": ">=10.0.0" } }, - "@types/bson": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/bson/-/bson-4.0.3.tgz", - "integrity": "sha512-mVRvYnTOZJz3ccpxhr3wgxVmSeiYinW+zlzQz3SXWaJmD1DuL05Jeq7nKw3SnbKmbleW5qrLG5vdyWe/A9sXhw==", - "requires": { - "@types/node": "*" + "node_modules/@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "@types/color-name": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", - "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", - "dev": true - }, - "@types/events": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", - "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==", - "dev": true + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } }, - "@types/glob": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", - "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", + "node_modules/@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", "dev": true, - "requires": { - "@types/events": "*", - "@types/minimatch": "*", - "@types/node": "*" + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" } }, - "@types/minimatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, - "@types/mongodb": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-3.6.3.tgz", - "integrity": "sha512-6YNqGP1hk5bjUFaim+QoFFuI61WjHiHE1BNeB41TA00Xd2K7zG4lcWyLLq/XtIp36uMavvS5hoAUJ+1u/GcX2Q==", - "requires": { - "@types/bson": "*", - "@types/node": "*" + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" } }, - "@types/node": { - "version": "13.11.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-13.11.0.tgz", - "integrity": "sha512-uM4mnmsIIPK/yeO+42F2RQhGUIs39K2RFmugcJANppXe6J1nvH87PvzPZYpza7Xhhs8Yn9yIAVdLZ84z61+0xQ==" - }, - "@types/normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", - "dev": true + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } }, - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" + "node_modules/@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" } }, - "acorn": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", - "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==", + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", "dev": true }, - "acorn-jsx": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz", - "integrity": "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==", - "dev": true + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.14", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz", + "integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } }, - "aggregate-error": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz", - "integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==", + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" } }, - "ajv": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.0.tgz", - "integrity": "sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw==", + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "engines": { + "node": ">= 8" } }, - "ansi-align": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", - "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, - "requires": { - "string-width": "^2.0.0" + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/eslint": { + "version": "8.4.5", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.5.tgz", + "integrity": "sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==", + "dev": true, "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } + "@types/estree": "*", + "@types/json-schema": "*" } }, - "ansi-escapes": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", - "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "dev": true, - "requires": { - "type-fest": "^0.11.0" - }, "dependencies": { - "type-fest": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", - "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", - "dev": true - } + "@types/eslint": "*", + "@types/estree": "*" } }, - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", "dev": true }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", "dev": true, - "requires": { - "color-convert": "^1.9.0" + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" } }, - "any-observable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz", - "integrity": "sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==", + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", "dev": true }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + "node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true }, - "are-we-there-yet": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" - } + "node_modules/@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + "node_modules/@types/node": { + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz", + "integrity": "sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==", + "dev": true }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "node_modules/@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", "dev": true }, - "astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "node_modules/@types/tapable": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz", + "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==", "dev": true }, - "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "requires": { - "lodash": "^4.17.14" + "node_modules/@types/uglify-js": { + "version": "3.16.0", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.16.0.tgz", + "integrity": "sha512-0yeUr92L3r0GLRnBOvtYK1v2SjqMIqQDHMl7GLb+l2L8+6LSFWEEWEIgVsPdMn5ImLM8qzWT8xFPtQYpp8co0g==", + "dev": true, + "dependencies": { + "source-map": "^0.6.1" } }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", - "requires": { - "safe-buffer": "5.1.2" + "node_modules/@types/webpack": { + "version": "4.41.32", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.32.tgz", + "integrity": "sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" } }, - "bcrypt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-5.0.0.tgz", - "integrity": "sha512-jB0yCBl4W/kVHM2whjfyqnxTmOHkCX4kHEa5nYKSoGeYe8YrjTYTc87/6bwt1g8cmV0QrbhKriETg9jWtcREhg==", - "requires": { - "node-addon-api": "^3.0.0", - "node-pre-gyp": "0.15.0" + "node_modules/@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" } }, - "binary-extensions": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz", - "integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==", - "dev": true - }, - "bl": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/bl/-/bl-2.2.1.tgz", - "integrity": "sha512-6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g==", - "requires": { - "readable-stream": "^2.3.5", - "safe-buffer": "^5.1.1" + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" } }, - "bluebird": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz", - "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==" - }, - "body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", - "requires": { - "bytes": "3.1.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" - }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.5.tgz", + "integrity": "sha512-lftkqRoBvc28VFXEoRgyZuztyVUQ04JvUnATSPtIRFAccbXTWL6DEtXGYMcbg998kXw1NLUJm7rTQ9eUt+q6Ig==", + "dev": true, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - } + "@typescript-eslint/scope-manager": "5.30.5", + "@typescript-eslint/type-utils": "5.30.5", + "@typescript-eslint/utils": "5.30.5", + "debug": "^4.3.4", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.2.0", + "regexpp": "^3.2.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } } }, - "bowser": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.9.0.tgz", - "integrity": "sha512-2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA==" - }, - "boxen": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", - "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", + "node_modules/@typescript-eslint/parser": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.5.tgz", + "integrity": "sha512-zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q==", "dev": true, - "requires": { - "ansi-align": "^2.0.0", - "camelcase": "^4.0.0", - "chalk": "^2.0.1", - "cli-boxes": "^1.0.0", - "string-width": "^2.0.0", - "term-size": "^1.2.0", - "widest-line": "^2.0.0" - }, "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } + "@typescript-eslint/scope-manager": "5.30.5", + "@typescript-eslint/types": "5.30.5", + "@typescript-eslint/typescript-estree": "5.30.5", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } } }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.5.tgz", + "integrity": "sha512-NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Ydg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.30.5", + "@typescript-eslint/visitor-keys": "5.30.5" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "bson": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/bson/-/bson-1.1.5.tgz", - "integrity": "sha512-kDuEzldR21lHciPQAIulLs1LZlCXdLziXI6Mb/TDkwXhb//UORJNPXgcRs2CuO4H0DcMkpfT3/ySsP3unoZjBg==" + "node_modules/@typescript-eslint/type-utils": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.5.tgz", + "integrity": "sha512-k9+ejlv1GgwN1nN7XjVtyCgE0BTzhzT1YsQF0rv4Vfj2U9xnslBgMYYvcEYAFVdvhuEscELJsB7lDkN7WusErw==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "5.30.5", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } }, - "buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" + "node_modules/@typescript-eslint/types": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.5.tgz", + "integrity": "sha512-kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } }, - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.5.tgz", + "integrity": "sha512-qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.30.5", + "@typescript-eslint/visitor-keys": "5.30.5", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } }, - "caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "node_modules/@typescript-eslint/utils": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.5.tgz", + "integrity": "sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA==", "dev": true, - "requires": { - "callsites": "^2.0.0" + "dependencies": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.30.5", + "@typescript-eslint/types": "5.30.5", + "@typescript-eslint/typescript-estree": "5.30.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.5.tgz", + "integrity": "sha512-D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA==", + "dev": true, "dependencies": { - "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", - "dev": true - } + "@typescript-eslint/types": "5.30.5", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "caller-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", "dev": true, - "requires": { - "caller-callsite": "^2.0.0" + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" } }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", "dev": true }, - "camelize": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", - "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true }, - "capture-stack-trace": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz", - "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==", + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", "dev": true }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" } }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", "dev": true }, - "chokidar": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.3.1.tgz", - "integrity": "sha512-4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg==", + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", "dev": true, - "requires": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.1.2", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.3.0" - }, "dependencies": { - "anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "fsevents": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz", - "integrity": "sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==", - "dev": true, - "optional": true - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - } + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" } }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - }, - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "dev": true + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } }, - "cli-boxes": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", - "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=", + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", "dev": true }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", "dev": true, - "requires": { - "restore-cursor": "^3.1.0" + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" } }, - "cli-truncate": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz", - "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=", + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", "dev": true, - "requires": { - "slice-ansi": "0.0.4", - "string-width": "^1.0.1" - }, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "slice-ansi": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", - "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", - "dev": true - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" } }, - "cli-width": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", - "dev": true - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } }, - "color": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/color/-/color-3.0.0.tgz", - "integrity": "sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==", - "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.2" + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" } }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" } }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + "node_modules/@webpack-cli/configtest": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", + "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", + "dev": true, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x", + "webpack-cli": "4.x.x" + } }, - "color-string": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz", - "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==", - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" + "node_modules/@webpack-cli/info": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", + "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", + "dev": true, + "dependencies": { + "envinfo": "^7.7.3" + }, + "peerDependencies": { + "webpack-cli": "4.x.x" } }, - "colornames": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/colornames/-/colornames-1.1.1.tgz", - "integrity": "sha1-+IiQMGhcfE/54qVZ9Qd+t2qBb5Y=" + "node_modules/@webpack-cli/serve": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", + "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", + "dev": true, + "peerDependencies": { + "webpack-cli": "4.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } }, - "colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true }, - "colorspace": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.2.tgz", - "integrity": "sha512-vt+OoIP2d76xLhjwbBaucYlNSpPsrJWPlBTtwCpQKIu6/CSMutyzX93O/Do0qzpH3YoHEes8YEFXyZ797rEhzQ==", - "requires": { - "color": "3.0.x", - "text-hex": "1.0.x" - } + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "configstore": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz", - "integrity": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==", + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, - "requires": { - "dot-prop": "^4.1.0", - "graceful-fs": "^4.1.2", - "make-dir": "^1.0.0", - "unique-string": "^1.0.0", - "write-file-atomic": "^2.0.0", - "xdg-basedir": "^3.0.0" - }, "dependencies": { - "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dev": true, - "requires": { - "pify": "^3.0.0" - } - } + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" } }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" - }, - "content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", - "requires": { - "safe-buffer": "5.1.2" + "node_modules/acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, - "content-security-policy-builder": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz", - "integrity": "sha512-/MtLWhJVvJNkA9dVLAp6fg9LxD2gfI6R2Fi1hPmfjYXSahJJzcfvoeDOxSyp4NvxMuwWv3WMssE9o31DoULHrQ==" - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - }, - "cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + "node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } }, - "cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "requires": { - "object-assign": "^4", - "vary": "^1" + "node_modules/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true, + "peerDependencies": { + "ajv": ">=5.0.0" } }, - "cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, - "requires": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" - }, "dependencies": { - "import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", - "dev": true, - "requires": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" - } - }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "dev": true + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true } } }, - "create-error-class": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", - "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", "dev": true, - "requires": { - "capture-stack-trace": "^1.0.0" + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "cross-env": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-6.0.3.tgz", - "integrity": "sha512-+KqxF6LCvfhWvADcDPqo64yVIB31gv/jQulX2NGzKS/g3GEVz6/pt4wjHFtFWsHMddebWD/sDthJemzM4MaAag==", - "requires": { - "cross-spawn": "^7.0.0" + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" } }, - "cross-spawn": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.2.tgz", - "integrity": "sha512-PD6G8QG3S4FK/XCGFbEQrDqO2AnMMsy0meR7lerlIOHAAbkuavGU/pOqprrlvfTNjvowivTeBsjebAL0NSoMxw==", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" } }, - "crypto-random-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", - "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", - "dev": true + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } }, - "dasherize": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dasherize/-/dasherize-2.0.0.tgz", - "integrity": "sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg=" + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "date-fns": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz", - "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==", - "dev": true + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "dev": true, - "requires": { - "ms": "^2.1.1" + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, "dependencies": { - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } + "sprintf-js": "~1.0.2" } }, - "dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", - "dev": true + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", "dev": true }, - "del": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/del/-/del-5.1.0.tgz", - "integrity": "sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==", + "node_modules/array-includes": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", + "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", "dev": true, - "requires": { - "globby": "^10.0.1", - "graceful-fs": "^4.2.2", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.1", - "p-map": "^3.0.0", - "rimraf": "^3.0.0", - "slash": "^3.0.0" - }, "dependencies": { - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" - }, - "denque": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/denque/-/denque-1.5.0.tgz", - "integrity": "sha512-CYiCSgIF1p6EUByQPlGkKnP1M9g0ZV3qMIrqMqZqdwazygIA/YP2vrbcyl1h/WppKJTdl1F85cXIle+394iDAQ==" - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "detect-libc": { + "node_modules/array-uniq": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=" + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "diagnostics": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/diagnostics/-/diagnostics-1.1.1.tgz", - "integrity": "sha512-8wn1PmdunLJ9Tqbx+Fx/ZEuHfJf4NKSN2ZBj7SJC/OWRWha843+WsTjqMe1B5E3p28jqBlp+mJ2fPVxPyNgYKQ==", - "requires": { - "colorspace": "1.1.x", - "enabled": "1.0.x", - "kuler": "1.0.x" + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "node_modules/array.prototype.flat": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz", + "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==", "dev": true, - "requires": { - "path-type": "^4.0.0" - }, "dependencies": { - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - } + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "dns-prefetch-control": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dns-prefetch-control/-/dns-prefetch-control-0.2.0.tgz", - "integrity": "sha512-hvSnros73+qyZXhHFjx2CMLwoj3Fe7eR9EJsFsqmcI1bB2OBWL/+0YzaEaKssCHnj/6crawNnUyw74Gm2EKe+Q==" - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", "dev": true, - "requires": { - "esutils": "^2.0.2" + "engines": { + "node": ">=0.10.0" } }, - "dont-sniff-mimetype": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz", - "integrity": "sha512-ZjI4zqTaxveH2/tTlzS1wFp+7ncxNZaIEWYg3lzZRHkKf5zPT/MnEG6WL0BhHMJUabkh8GeU5NL5j+rEUCb7Ug==" - }, - "dot-prop": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.1.tgz", - "integrity": "sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==", + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true, - "requires": { - "is-obj": "^1.0.0" + "engines": { + "node": ">=8" } }, - "dotenv": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", - "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" - }, - "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", - "dev": true - }, - "ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "requires": { - "safe-buffer": "^5.0.1" + "node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" } }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + "node_modules/async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true }, - "elegant-spinner": { + "node_modules/async-limiter": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz", - "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", "dev": true }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, - "enabled": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-1.0.2.tgz", - "integrity": "sha1-ll9lE9LC0cX0ZStkouM5ZGf8L5M=", - "requires": { - "env-variable": "0.0.x" + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" } }, - "encodeurl": { + "node_modules/axios": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "dependencies": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + } + }, + "node_modules/balanced-match": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "dev": true, - "requires": { - "once": "^1.4.0" + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "env-variable": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/env-variable/-/env-variable-0.0.6.tgz", - "integrity": "sha512-bHz59NlBbtS0NhftmR8+ExBEekE7br0e01jw+kk0NDro7TtZzBYZ5ScGPs3OmwnpyfHTHOtr1Y6uedCdrIldtg==" + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "node_modules/base/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, - "requires": { - "is-arrayish": "^0.2.1" + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + "node_modules/base/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true - }, - "eslint": { - "version": "6.7.2", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.7.2.tgz", - "integrity": "sha512-qMlSWJaCSxDFr8fBPvJM9kJwbazrhNcBU3+DszDW1OlEwKBBRWsJc7NJFelvwQpanHCR14cOLD41x8Eqvo3Nng==", + "node_modules/base/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "ajv": "^6.10.0", - "chalk": "^2.1.0", - "cross-spawn": "^6.0.5", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^1.4.3", - "eslint-visitor-keys": "^1.1.0", - "espree": "^6.1.2", - "esquery": "^1.0.1", - "esutils": "^2.0.2", - "file-entry-cache": "^5.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.0.0", - "globals": "^12.1.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "inquirer": "^7.0.0", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.3.0", - "lodash": "^4.17.14", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "optionator": "^0.8.3", - "progress": "^2.0.0", - "regexpp": "^2.0.1", - "semver": "^6.1.2", - "strip-ansi": "^5.2.0", - "strip-json-comments": "^3.0.1", - "table": "^5.2.3", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "eslint-config-prettier": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.7.0.tgz", - "integrity": "sha512-FamQVKM3jjUVwhG4hEMnbtsq7xOIDm+SY5iBPfR8gKsJoAB2IQnNF+bk1+8Fy44Nq7PPJaLvkRxILYdJWoguKQ==", + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true, - "requires": { - "get-stdin": "^6.0.0" + "engines": { + "node": "*" } }, - "eslint-plugin-es": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-2.0.0.tgz", - "integrity": "sha512-f6fceVtg27BR02EYnBhgWLFQfK6bN4Ll0nQFrBHOlCsAyxeZkn0NHns5O0YZOPrV1B3ramd6cgFwaoFLcSkwEQ==", + "node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", "dev": true, - "requires": { - "eslint-utils": "^1.4.2", - "regexpp": "^3.0.0" - }, - "dependencies": { - "regexpp": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", - "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", - "dev": true - } + "engines": { + "node": ">=0.10.0" } }, - "eslint-plugin-node": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-10.0.0.tgz", - "integrity": "sha512-1CSyM/QCjs6PXaT18+zuAXsjXGIGo5Rw630rSKwokSs2jrYURQc4R5JZpoanNCqwNmepg+0eZ9L7YiRUJb8jiQ==", + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", "dev": true, - "requires": { - "eslint-plugin-es": "^2.0.0", - "eslint-utils": "^1.4.2", - "ignore": "^5.1.1", - "minimatch": "^3.0.4", - "resolve": "^1.10.1", - "semver": "^6.1.0" - }, + "optional": true, "dependencies": { - "ignore": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.4.tgz", - "integrity": "sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==", - "dev": true - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "file-uri-to-path": "1.0.0" } }, - "eslint-plugin-prettier": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.1.tgz", - "integrity": "sha512-A+TZuHZ0KU0cnn56/9mfR7/KjUJ9QNVXUhwvRFSR7PGPe0zQR6PTkmyqg1AtUUEOzTqeRsUwyKFh0oVZKVCrtA==", + "node_modules/body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", "dev": true, - "requires": { - "prettier-linter-helpers": "^1.0.0" + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "eslint-scope": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.0.0.tgz", - "integrity": "sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==", + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" + "engines": { + "node": ">= 0.8" } }, - "eslint-utils": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", - "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" + "dependencies": { + "ms": "2.0.0" } }, - "eslint-visitor-keys": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz", - "integrity": "sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==", + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", "dev": true, - "requires": { - "acorn": "^7.1.1", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" } }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true }, - "esquery": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.2.0.tgz", - "integrity": "sha512-weltsSqdeWIX9G2qQZz7KlTRJdkkOCTPgLYJUz1Hacf48R4YOwGPHO3+ORfWedqJKbq5WQmsgK90n+pFLIKt/Q==", + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "requires": { - "estraverse": "^5.0.0" - }, "dependencies": { - "estraverse": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.0.0.tgz", - "integrity": "sha512-j3acdrMzqrxmJTNj5dbr1YbjacrYgAxVMeF0gK16E3j494mOe7xygM/ZLIguEQ0ETwAg2hlJCtHRGav+y0Ny5A==", - "dev": true - } + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "esrecurse": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, - "requires": { - "estraverse": "^4.1.0" + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" } }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/browserslist": { + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", + "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001359", + "electron-to-chromium": "^1.4.172", + "node-releases": "^2.0.5", + "update-browserslist-db": "^1.0.4" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", "dev": true }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "dev": true, - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "expect-ct": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/expect-ct/-/expect-ct-0.2.0.tgz", - "integrity": "sha512-6SK3MG/Bbhm8MsgyJAylg+ucIOU71/FzyFalcfu5nY19dH8y/z0tBJU0wrNBXD4B27EoQtqPF/9wqH0iYAd04g==" + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } }, - "express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", - "requires": { - "accepts": "~1.3.7", - "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", - "content-type": "~1.0.4", - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "~1.1.2", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - } + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" } }, - "express-async-errors": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/express-async-errors/-/express-async-errors-3.1.1.tgz", - "integrity": "sha512-h6aK1da4tpqWSbyCa3FxB/V6Ehd4EEB15zyQq9qe75OZBp0krinNKuH4rAY+S/U/2I36vdLAUFSjQJ+TFmODng==" + "node_modules/camel-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" + "engines": { + "node": ">=6" } }, - "fast-deep-equal": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", - "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==", - "dev": true - }, - "fast-diff": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", - "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", - "dev": true + "node_modules/caniuse-lite": { + "version": "1.0.30001364", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001364.tgz", + "integrity": "sha512-9O0xzV3wVyX0SlegIQ6knz+okhBB5pE0PC40MNdwcipjwpxoUEHL24uJ+gG42cgklPjfO5ZjZPme9FTSN3QT2Q==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] }, - "fast-glob": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.2.tgz", - "integrity": "sha512-UDV82o4uQyljznxwMxyVRJgZZt3O5wENYojjzbaGEGZgeOxkLFf+V4cnUD+krzb2F72E18RhamkMZ7AdeggF7A==", + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.0", - "merge2": "^1.3.0", - "micromatch": "^4.0.2", - "picomatch": "^2.2.1" - }, "dependencies": { - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "micromatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", - "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", - "dev": true, - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.0.5" - } - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", - "dev": true - }, - "fast-safe-stringify": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz", - "integrity": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==" - }, - "fastq": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.7.0.tgz", - "integrity": "sha512-YOadQRnHd5q6PogvAR/x62BGituF2ufiEA6s8aavQANw5YKHERI4AREboX6KotzP8oX2klxYF2wcV/7bn1clfQ==", + "node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", "dev": true, - "requires": { - "reusify": "^1.0.4" + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" } }, - "feature-policy": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/feature-policy/-/feature-policy-0.3.0.tgz", - "integrity": "sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ==" - }, - "fecha": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-2.3.3.tgz", - "integrity": "sha512-lUGBnIamTAwk4znq5BcqsDaxSmZ9nDVJaij6NvRt/Tg4R69gERA+otPKbS86ROw9nxVMw2/mp1fnaiWqbs6Sdg==" - }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "node_modules/chokidar/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" } }, - "file-entry-cache": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "node_modules/chokidar/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", "dev": true, - "requires": { - "flat-cache": "^2.0.1" + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - }, + "node_modules/chokidar/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - } + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/chokidar/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "flat-cache": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "node_modules/chokidar/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", "dev": true, - "requires": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", - "dev": true - }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" - }, - "frameguard": { + "node_modules/chokidar/node_modules/glob-parent": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/frameguard/-/frameguard-3.1.0.tgz", - "integrity": "sha512-TxgSKM+7LTA6sidjOiSZK9wxY0ffMPY3Wta//MqwmX0nZuEHc8QrkV8Fh3ZhMJeiH+Uyh/tcaarImRy8u77O7g==" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } }, - "fs-minipass": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", - "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", - "requires": { - "minipass": "^2.6.0" + "node_modules/chokidar/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "fs.realpath": { + "node_modules/chokidar/node_modules/is-accessor-descriptor": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", - "dev": true - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - }, + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - } + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "get-own-enumerable-property-symbols": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", - "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", - "dev": true - }, - "get-stdin": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", - "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", - "dev": true - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "node_modules/chokidar/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, - "requires": { - "pump": "^3.0.0" + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "node_modules/chokidar/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "node_modules/chokidar/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, - "requires": { - "is-glob": "^4.0.1" + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" } }, - "global-dirs": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", - "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", + "node_modules/chokidar/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "dev": true, - "requires": { - "ini": "^1.3.4" + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "globals": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", - "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "node_modules/chokidar/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "requires": { - "type-fest": "^0.8.1" + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" } }, - "globby": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", - "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "node_modules/chokidar/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, - "requires": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" - }, "dependencies": { - "ignore": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.4.tgz", - "integrity": "sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==", - "dev": true - } + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "got": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", - "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", + "node_modules/chokidar/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "dev": true, - "requires": { - "create-error-class": "^3.0.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-redirect": "^1.0.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "lowercase-keys": "^1.0.0", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "unzip-response": "^2.0.1", - "url-parse-lax": "^1.0.0" - }, "dependencies": { - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", - "dev": true - } + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "graceful-fs": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", - "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==", - "dev": true - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "node_modules/chokidar/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - }, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - } + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } }, - "helmet": { - "version": "3.22.0", - "resolved": "https://registry.npmjs.org/helmet/-/helmet-3.22.0.tgz", - "integrity": "sha512-Xrqicn2nm1ZIUxP3YGuTBmbDL04neKsIT583Sjh0FkiwKDXYCMUqGqC88w3NUvVXtA75JyR2Jn6jw6ZEMOD+ZA==", - "requires": { - "depd": "2.0.0", - "dns-prefetch-control": "0.2.0", - "dont-sniff-mimetype": "1.1.0", - "expect-ct": "0.2.0", - "feature-policy": "0.3.0", - "frameguard": "3.1.0", - "helmet-crossdomain": "0.4.0", - "helmet-csp": "2.10.0", - "hide-powered-by": "1.1.0", - "hpkp": "2.0.0", - "hsts": "2.2.0", - "ienoopen": "1.1.0", - "nocache": "2.1.0", - "referrer-policy": "1.2.0", - "x-xss-protection": "1.3.0" + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-css": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz", + "integrity": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==", + "dev": true, "dependencies": { - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" } }, - "helmet-crossdomain": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz", - "integrity": "sha512-AB4DTykRw3HCOxovD1nPR16hllrVImeFp5VBV9/twj66lJ2nU75DP8FPL0/Jp4jj79JhTfG+pFI2MD02kWJ+fA==" + "node_modules/clean-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==", + "dev": true, + "dependencies": { + "@types/webpack": "^4.4.31", + "del": "^4.1.1" + }, + "engines": { + "node": ">=8.9.0" + }, + "peerDependencies": { + "webpack": "*" + } }, - "helmet-csp": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/helmet-csp/-/helmet-csp-2.10.0.tgz", - "integrity": "sha512-Rz953ZNEFk8sT2XvewXkYN0Ho4GEZdjAZy4stjiEQV3eN7GDxg1QKmYggH7otDyIA7uGA6XnUMVSgeJwbR5X+w==", - "requires": { - "bowser": "2.9.0", - "camelize": "1.0.0", - "content-security-policy-builder": "2.1.0", - "dasherize": "2.0.0" + "node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" } }, - "hide-powered-by": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hide-powered-by/-/hide-powered-by-1.1.0.tgz", - "integrity": "sha512-Io1zA2yOA1YJslkr+AJlWSf2yWFkKjvkcL9Ni1XSUqnGLr/qRQe2UI3Cn/J9MsJht7yEVCe0SscY1HgVMujbgg==" + "node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } }, - "hosted-git-info": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", - "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", + "node_modules/cliui/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", "dev": true }, - "hpkp": { + "node_modules/cliui/node_modules/is-fullwidth-code-point": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hpkp/-/hpkp-2.0.0.tgz", - "integrity": "sha1-EOFCJk52IVpdMMROxD3mTe5tFnI=" + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "hsts": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/hsts/-/hsts-2.2.0.tgz", - "integrity": "sha512-ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ==", - "requires": { - "depd": "2.0.0" - }, + "node_modules/cliui/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, "dependencies": { - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" } }, - "http-errors": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", - "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, "dependencies": { - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - } + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" } }, - "http-status-codes": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/http-status-codes/-/http-status-codes-1.4.0.tgz", - "integrity": "sha512-JrT3ua+WgH8zBD3HEJYbeEgnuQaAnUeRRko/YojPAJjGmIfGD3KPU/asLdsLwKjfxOmQe5nXMQ0pt/7MyapVbQ==" - }, - "husky": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/husky/-/husky-3.1.0.tgz", - "integrity": "sha512-FJkPoHHB+6s4a+jwPqBudBDvYZsoQW5/HBuMSehC8qDiCe50kpcxeqFoDSlow+9I6wg47YxBoT3WxaURlrDIIQ==", + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, - "requires": { - "chalk": "^2.4.2", - "ci-info": "^2.0.0", - "cosmiconfig": "^5.2.1", - "execa": "^1.0.0", - "get-stdin": "^7.0.0", - "opencollective-postinstall": "^2.0.2", - "pkg-dir": "^4.2.0", - "please-upgrade-node": "^3.2.0", - "read-pkg": "^5.2.0", - "run-node": "^1.0.0", - "slash": "^3.0.0" + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" }, + "engines": { + "node": ">=6" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, "dependencies": { - "get-stdin": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-7.0.0.tgz", - "integrity": "sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==", - "dev": true - } + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "ienoopen": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ienoopen/-/ienoopen-1.1.0.tgz", - "integrity": "sha512-MFs36e/ca6ohEKtinTJ5VvAJ6oDRAYFdYXweUnGY9L9vcoqFOU4n2ZhmJ0C4z/cwGZ3YIQRSB3XZ1+ghZkY5NQ==" + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "node_modules/colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", "dev": true }, - "ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=", + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, - "ignore-walk": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz", - "integrity": "sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==", - "requires": { - "minimatch": "^3.0.4" + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" } }, - "import-fresh": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", - "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - } + "ms": "2.0.0" } }, - "import-lazy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { - "once": "^1.3.0", - "wrappy": "1" + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true, + "engines": { + "node": ">=0.8" } }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "inquirer": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.1.0.tgz", - "integrity": "sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^3.0.0", - "cli-cursor": "^3.1.0", - "cli-width": "^2.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.15", - "mute-stream": "0.0.8", - "run-async": "^2.4.0", - "rxjs": "^6.5.3", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6" - }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, "dependencies": { - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" } }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", "dev": true, - "requires": { - "binary-extensions": "^2.0.0" + "engines": { + "node": ">= 0.6" } }, - "is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", - "dev": true - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, - "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", "dev": true, - "requires": { - "is-extglob": "^2.1.1" + "engines": { + "node": ">=0.10.0" } }, - "is-installed-globally": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", - "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", + "node_modules/copy-webpack-plugin": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-7.0.0.tgz", + "integrity": "sha512-SLjQNa5iE3BoCP76ESU9qYo9ZkEWtXoZxDurHoqPchAFRblJ9g96xTeC560UXBMre1Nx6ixIIUfiY3VcjpJw3g==", "dev": true, - "requires": { - "global-dirs": "^0.1.0", - "is-path-inside": "^1.0.0" + "dependencies": { + "fast-glob": "^3.2.4", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, + "peerDependencies": { + "webpack": "^5.1.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dev": true, "dependencies": { - "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", - "dev": true, - "requires": { - "path-is-inside": "^1.0.1" - } - } + "randombytes": "^2.1.0" } }, - "is-npm": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", - "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=", + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", "dev": true }, - "is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", - "dev": true - }, - "is-observable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz", - "integrity": "sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==", + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, - "requires": { - "symbol-observable": "^1.1.0" + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" } }, - "is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true + "node_modules/css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } }, - "is-path-inside": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz", - "integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==", - "dev": true + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } }, - "is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", - "dev": true + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } }, - "is-redirect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", - "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=", - "dev": true + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } }, - "is-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", - "dev": true + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } }, - "is-retry-allowed": { + "node_modules/decamelize": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", - "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", - "dev": true - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==", + "dev": true, + "engines": { + "node": ">=0.10" + } }, - "joi-objectid": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/joi-objectid/-/joi-objectid-3.0.1.tgz", - "integrity": "sha512-V/3hbTlGpvJ03Me6DJbdBI08hBTasFOmipsauOsxOSnsF1blxV537WTl1zPwbfcKle4AK0Ma4OPnzMH4LlvTpQ==" + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, - "js-yaml": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", - "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" } }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true + "node_modules/define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "dev": true, + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", - "dev": true + "node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } }, - "jsonwebtoken": { - "version": "8.5.1", - "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz", - "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==", - "requires": { - "jws": "^3.2.2", - "lodash.includes": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isinteger": "^4.0.4", - "lodash.isnumber": "^3.0.3", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.once": "^4.0.0", - "ms": "^2.1.1", - "semver": "^5.6.0" + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" }, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, "dependencies": { - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", - "requires": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" + "node_modules/del/node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "requires": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" + "node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "kareem": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.3.2.tgz", - "integrity": "sha512-STHz9P7X2L4Kwn72fA4rGyqyXdmrMSdxqHx9IXon/FXluXieaFA6KJ2upcHAHxQPQ0LeM/OjLrhFxifHewOALQ==" + "node_modules/del/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } }, - "kuler": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-1.0.1.tgz", - "integrity": "sha512-J9nVUucG1p/skKul6DU3PUZrhs0LPulNaeUOox0IyXDi8S4CztTHs1gQphhuZmzXG7VOQSf6NJfKuzteQLv9gQ==", - "requires": { - "colornames": "^1.1.1" + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" } }, - "latest-version": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", - "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true, - "requires": { - "package-json": "^4.0.0" + "engines": { + "node": ">= 0.8" } }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, - "lint-staged": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-9.5.0.tgz", - "integrity": "sha512-nawMob9cb/G1J98nb8v3VC/E8rcX1rryUYXVZ69aT9kde6YWX+uvNOEHY5yf2gcWcTJGiD0kqXmCnS3oD75GIA==", + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, - "requires": { - "chalk": "^2.4.2", - "commander": "^2.20.0", - "cosmiconfig": "^5.2.1", - "debug": "^4.1.1", - "dedent": "^0.7.0", - "del": "^5.0.0", - "execa": "^2.0.3", - "listr": "^0.14.3", - "log-symbols": "^3.0.0", - "micromatch": "^4.0.2", - "normalize-path": "^3.0.0", - "please-upgrade-node": "^3.1.1", - "string-argv": "^0.3.0", - "stringify-object": "^3.3.0" + "dependencies": { + "path-type": "^4.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "node_modules/dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, "dependencies": { - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "execa": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-2.1.0.tgz", - "integrity": "sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^3.0.0", - "onetime": "^5.1.0", - "p-finally": "^2.0.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "get-stream": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz", - "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", - "dev": true - }, - "micromatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", - "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", - "dev": true, - "requires": { - "braces": "^3.0.1", - "picomatch": "^2.0.5" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "npm-run-path": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", - "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, - "p-finally": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz", - "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - } + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" } }, - "listr": { - "version": "0.14.3", - "resolved": "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz", - "integrity": "sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==", + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", "dev": true, - "requires": { - "@samverschueren/stream-to-observable": "^0.3.0", - "is-observable": "^1.1.0", - "is-promise": "^2.1.0", - "is-stream": "^1.1.0", - "listr-silent-renderer": "^1.1.1", - "listr-update-renderer": "^0.5.0", - "listr-verbose-renderer": "^0.5.0", - "p-map": "^2.0.0", - "rxjs": "^6.3.3" + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, "dependencies": { - "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true - } + "utila": "~0.4" } }, - "listr-silent-renderer": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz", - "integrity": "sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=", - "dev": true + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } }, - "listr-update-renderer": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz", - "integrity": "sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==", + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true, - "requires": { - "chalk": "^1.1.3", - "cli-truncate": "^0.2.1", - "elegant-spinner": "^1.0.1", - "figures": "^1.7.0", - "indent-string": "^3.0.0", - "log-symbols": "^1.0.2", - "log-update": "^2.3.0", - "strip-ansi": "^3.0.1" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "figures": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5", - "object-assign": "^4.1.0" - } - }, - "indent-string": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", - "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", - "dev": true - }, - "log-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", - "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", - "dev": true, - "requires": { - "chalk": "^1.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - } - } - }, - "listr-verbose-renderer": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz", - "integrity": "sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "cli-cursor": "^2.1.0", - "date-fns": "^1.27.2", - "figures": "^2.0.0" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" }, - "dependencies": { - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "dev": true, - "requires": { - "restore-cursor": "^2.0.0" - } - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true - }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "dev": true, - "requires": { - "mimic-fn": "^1.0.0" - } - }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", - "dev": true, - "requires": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" - } - } + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, - "requires": { - "p-locate": "^4.1.0" + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "lodash": { - "version": "4.17.20", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", - "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" - }, - "lodash.includes": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", - "integrity": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=" - }, - "lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" - }, - "lodash.isinteger": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", - "integrity": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=" - }, - "lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" + "node_modules/dot-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true }, - "lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true }, - "lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + "node_modules/electron-to-chromium": { + "version": "1.4.185", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.185.tgz", + "integrity": "sha512-9kV/isoOGpKkBt04yYNaSWIBn3187Q5VZRtoReq8oz5NY/A4XmU6cAoqgQlDp7kKJCZMRjWZ8nsQyxfpFHvfyw==", + "dev": true }, - "lodash.once": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=" + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true }, - "log-symbols": { + "node_modules/emojis-list": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", - "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true, - "requires": { - "chalk": "^2.4.2" + "engines": { + "node": ">= 4" } }, - "log-update": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", - "integrity": "sha1-iDKP19HOeTiykoN0bwsbwSayRwg=", + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true, - "requires": { - "ansi-escapes": "^3.0.0", - "cli-cursor": "^2.0.0", - "wrap-ansi": "^3.0.1" - }, - "dependencies": { - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "dev": true - }, - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "dev": true, - "requires": { - "restore-cursor": "^2.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true - }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "dev": true, - "requires": { - "mimic-fn": "^1.0.0" - } - }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", - "dev": true, - "requires": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" - } - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "wrap-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", - "integrity": "sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=", - "dev": true, - "requires": { - "string-width": "^2.1.1", - "strip-ansi": "^4.0.0" - } - } + "engines": { + "node": ">= 0.8" } }, - "logform": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.1.2.tgz", - "integrity": "sha512-+lZh4OpERDBLqjiwDLpAWNQu6KMjnlXH2ByZwCuSqVPJletw0kTWJf5CgSNAUKn1KUkv3m2cUz/LK8zyEy7wzQ==", - "requires": { - "colors": "^1.2.1", - "fast-safe-stringify": "^2.0.4", - "fecha": "^2.3.3", - "ms": "^2.1.1", - "triple-beam": "^1.3.0" - }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, "dependencies": { - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } + "once": "^1.4.0" } }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "dev": true - }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "node_modules/enhanced-resolve": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz", + "integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==", "dev": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" } }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" - }, - "memory-pager": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", - "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", - "optional": true - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "merge2": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz", - "integrity": "sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==", - "dev": true + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "dependencies": { + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" + } }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + "node_modules/envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } }, - "mime-db": { - "version": "1.43.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz", - "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==" + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } }, - "mime-types": { - "version": "2.1.26", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz", - "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==", - "requires": { - "mime-db": "1.43.0" + "node_modules/es-abstract": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.1.tgz", + "integrity": "sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "regexp.prototype.flags": "^1.4.3", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", "dev": true }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "^1.1.7" + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dev": true, + "dependencies": { + "has": "^1.0.3" } }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - }, - "minipass": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, "dependencies": { - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "minizlib": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", - "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", - "requires": { - "minipass": "^2.9.0" + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" } }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "requires": { - "minimist": "^1.2.5" - } - }, - "mongodb": { - "version": "3.6.3", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-3.6.3.tgz", - "integrity": "sha512-rOZuR0QkodZiM+UbQE5kDsJykBqWi0CL4Ec2i1nrGrUI3KO11r6Fbxskqmq3JK2NH7aW4dcccBuUujAP0ERl5w==", - "requires": { - "bl": "^2.2.1", - "bson": "^1.1.4", - "denque": "^1.4.1", - "require_optional": "^1.0.1", - "safe-buffer": "^5.1.2", - "saslprep": "^1.0.0" - } - }, - "mongoose": { - "version": "5.11.11", - "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-5.11.11.tgz", - "integrity": "sha512-JgKKAosJf6medPOZi2LmO7sMz7Sg00mgjyPAKari3alzL+R/n8D+zKK29iGtJpNNtv9IKy14H37CWuiaZ7016w==", - "requires": { - "@types/mongodb": "^3.5.27", - "bson": "^1.1.4", - "kareem": "2.3.2", - "mongodb": "3.6.3", - "mongoose-legacy-pluralize": "1.0.2", - "mpath": "0.8.3", - "mquery": "3.2.3", - "ms": "2.1.2", - "regexp-clone": "1.0.0", - "safe-buffer": "5.2.1", - "sift": "7.0.1", - "sliced": "1.0.1" + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" }, - "dependencies": { - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "mongoose-legacy-pluralize": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/mongoose-legacy-pluralize/-/mongoose-legacy-pluralize-1.0.2.tgz", - "integrity": "sha512-Yo/7qQU4/EyIS8YDFSeenIvXxZN+ld7YdV9LqFVQJzTLye8unujAWPZ4NWKfFA+RNjh+wvTWKY9Z3E5XM6ZZiQ==" - }, - "morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", - "requires": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" - }, + "node_modules/eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", + "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" } }, - "mpath": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.8.3.tgz", - "integrity": "sha512-eb9rRvhDltXVNL6Fxd2zM9D4vKBxjVVQNLNijlj7uoXUy19zNDsIif5zR+pWmPCWNKwAtqyo4JveQm4nfD5+eA==" + "node_modules/eslint-import-resolver-node": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", + "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + } }, - "mquery": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/mquery/-/mquery-3.2.3.tgz", - "integrity": "sha512-cIfbP4TyMYX+SkaQ2MntD+F2XbqaBHUYWk3j+kqdDztPWok3tgyssOZxMHMtzbV1w9DaSlvEea0Iocuro41A4g==", - "requires": { - "bluebird": "3.5.1", - "debug": "3.1.0", - "regexp-clone": "^1.0.0", - "safe-buffer": "5.1.2", - "sliced": "1.0.1" + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz", + "integrity": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "find-up": "^2.1.0" }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - } + "ms": "^2.1.1" } }, - "ms": { + "node_modules/eslint-plugin-import": { + "version": "2.26.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", + "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.3", + "has": "^1.0.3", + "is-core-module": "^2.8.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.5", + "resolve": "^1.22.0", + "tsconfig-paths": "^3.14.1" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", - "dev": true + "node_modules/eslint-plugin-prettier": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz", + "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0" + }, + "engines": { + "node": ">=6.0.0" + }, + "peerDependencies": { + "eslint": ">=5.0.0", + "prettier": ">=1.13.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true + } + } }, - "needle": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/needle/-/needle-2.6.0.tgz", - "integrity": "sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg==", - "requires": { - "debug": "^3.2.6", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" } }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dev": true, + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.1.tgz", + "integrity": "sha512-Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "nocache": { + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/eslint/node_modules/eslint-utils": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz", - "integrity": "sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==" + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } }, - "node-addon-api": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.1.0.tgz", - "integrity": "sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw==" - }, - "node-pre-gyp": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.15.0.tgz", - "integrity": "sha512-7QcZa8/fpaU/BKenjcaeFF9hLz2+7S9AqyXFhlH/rilsQ/hPZKK32RtR5EQHJElgu+q5RfbJ34KriI79UWaorA==", - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.3", - "needle": "^2.5.0", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.2.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4.4.2" - }, - "dependencies": { - "nopt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", - "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - } + "node_modules/eslint/node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" } }, - "nodemon": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.2.tgz", - "integrity": "sha512-GWhYPMfde2+M0FsHnggIHXTqPDHXia32HRhh6H0d75Mt9FKUoCBvumNHr7LdrpPBTKxsWmIEOjoN+P4IU6Hcaw==", + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, - "requires": { - "chokidar": "^3.2.2", - "debug": "^3.2.6", - "ignore-by-default": "^1.0.1", - "minimatch": "^3.0.4", - "pstree.remy": "^1.1.7", - "semver": "^5.7.1", - "supports-color": "^5.5.0", - "touch": "^3.1.0", - "undefsafe": "^2.0.2", - "update-notifier": "^2.5.0" + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" } }, - "nopt": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", - "dev": true, - "requires": { - "abbrev": "1" - } - }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "npm": { - "version": "6.14.11", - "resolved": "https://registry.npmjs.org/npm/-/npm-6.14.11.tgz", - "integrity": "sha512-1Zh7LjuIoEhIyjkBflSSGzfjuPQwDlghNloppjruOH5bmj9midT9qcNT0tRUZRR04shU9ekrxNy9+UTBrqeBpQ==", - "requires": { - "JSONStream": "^1.3.5", - "abbrev": "~1.1.1", - "ansicolors": "~0.3.2", - "ansistyles": "~0.1.3", - "aproba": "^2.0.0", - "archy": "~1.0.0", - "bin-links": "^1.1.8", - "bluebird": "^3.5.5", - "byte-size": "^5.0.1", - "cacache": "^12.0.3", - "call-limit": "^1.1.1", - "chownr": "^1.1.4", - "ci-info": "^2.0.0", - "cli-columns": "^3.1.2", - "cli-table3": "^0.5.1", - "cmd-shim": "^3.0.3", - "columnify": "~1.5.4", - "config-chain": "^1.1.12", - "debuglog": "*", - "detect-indent": "~5.0.0", - "detect-newline": "^2.1.0", - "dezalgo": "~1.0.3", - "editor": "~1.0.0", - "figgy-pudding": "^3.5.1", - "find-npm-prefix": "^1.0.2", - "fs-vacuum": "~1.2.10", - "fs-write-stream-atomic": "~1.0.10", - "gentle-fs": "^2.3.1", - "glob": "^7.1.6", - "graceful-fs": "^4.2.4", - "has-unicode": "~2.0.1", - "hosted-git-info": "^2.8.8", - "iferr": "^1.0.2", - "imurmurhash": "*", - "infer-owner": "^1.0.4", - "inflight": "~1.0.6", - "inherits": "^2.0.4", - "ini": "^1.3.8", - "init-package-json": "^1.10.3", - "is-cidr": "^3.0.0", - "json-parse-better-errors": "^1.0.2", - "lazy-property": "~1.0.0", - "libcipm": "^4.0.8", - "libnpm": "^3.0.1", - "libnpmaccess": "^3.0.2", - "libnpmhook": "^5.0.3", - "libnpmorg": "^1.0.1", - "libnpmsearch": "^2.0.2", - "libnpmteam": "^1.0.2", - "libnpx": "^10.2.4", - "lock-verify": "^2.1.0", - "lockfile": "^1.0.4", - "lodash._baseindexof": "*", - "lodash._baseuniq": "~4.6.0", - "lodash._bindcallback": "*", - "lodash._cacheindexof": "*", - "lodash._createcache": "*", - "lodash._getnative": "*", - "lodash.clonedeep": "~4.5.0", - "lodash.restparam": "*", - "lodash.union": "~4.6.0", - "lodash.uniq": "~4.5.0", - "lodash.without": "~4.4.0", - "lru-cache": "^5.1.1", - "meant": "^1.0.2", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.5", - "move-concurrently": "^1.0.1", - "node-gyp": "^5.1.0", - "nopt": "^4.0.3", - "normalize-package-data": "^2.5.0", - "npm-audit-report": "^1.3.3", - "npm-cache-filename": "~1.0.2", - "npm-install-checks": "^3.0.2", - "npm-lifecycle": "^3.1.5", - "npm-package-arg": "^6.1.1", - "npm-packlist": "^1.4.8", - "npm-pick-manifest": "^3.0.2", - "npm-profile": "^4.0.4", - "npm-registry-fetch": "^4.0.7", - "npm-user-validate": "^1.0.1", - "npmlog": "~4.1.2", - "once": "~1.4.0", - "opener": "^1.5.2", - "osenv": "^0.1.5", - "pacote": "^9.5.12", - "path-is-inside": "~1.0.2", - "promise-inflight": "~1.0.1", - "qrcode-terminal": "^0.12.0", - "query-string": "^6.8.2", - "qw": "~1.0.1", - "read": "~1.0.7", - "read-cmd-shim": "^1.0.5", - "read-installed": "~4.0.3", - "read-package-json": "^2.1.1", - "read-package-tree": "^5.3.1", - "readable-stream": "^3.6.0", - "readdir-scoped-modules": "^1.1.0", - "request": "^2.88.0", - "retry": "^0.12.0", - "rimraf": "^2.7.1", - "safe-buffer": "^5.1.2", - "semver": "^5.7.1", - "sha": "^3.0.0", - "slide": "~1.1.6", - "sorted-object": "~2.0.1", - "sorted-union-stream": "~2.1.3", - "ssri": "^6.0.1", - "stringify-package": "^1.0.1", - "tar": "^4.4.13", - "text-table": "~0.2.0", - "tiny-relative-date": "^1.3.0", - "uid-number": "0.0.6", - "umask": "~1.1.0", - "unique-filename": "^1.1.1", - "unpipe": "~1.0.0", - "update-notifier": "^2.5.0", - "uuid": "^3.3.3", - "validate-npm-package-license": "^3.0.4", - "validate-npm-package-name": "~3.0.0", - "which": "^1.3.1", - "worker-farm": "^1.7.0", - "write-file-atomic": "^2.4.3" - }, - "dependencies": { - "JSONStream": { - "version": "1.3.5", - "bundled": true, - "requires": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" - } - }, - "abbrev": { - "version": "1.1.1", - "bundled": true - }, - "agent-base": { - "version": "4.3.0", - "bundled": true, - "requires": { - "es6-promisify": "^5.0.0" - } - }, - "agentkeepalive": { - "version": "3.5.2", - "bundled": true, - "requires": { - "humanize-ms": "^1.2.1" - } - }, - "ansi-align": { - "version": "2.0.0", - "bundled": true, - "requires": { - "string-width": "^2.0.0" - } - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true - }, - "ansi-styles": { - "version": "3.2.1", - "bundled": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "ansicolors": { - "version": "0.3.2", - "bundled": true - }, - "ansistyles": { - "version": "0.1.3", - "bundled": true - }, - "aproba": { - "version": "2.0.0", - "bundled": true - }, - "archy": { - "version": "1.0.0", - "bundled": true - }, - "are-we-there-yet": { - "version": "1.1.4", - "bundled": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "asap": { - "version": "2.0.6", - "bundled": true - }, - "asn1": { - "version": "0.2.4", - "bundled": true, - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "assert-plus": { - "version": "1.0.0", - "bundled": true - }, - "asynckit": { - "version": "0.4.0", - "bundled": true - }, - "aws-sign2": { - "version": "0.7.0", - "bundled": true - }, - "aws4": { - "version": "1.8.0", - "bundled": true - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "bundled": true, - "optional": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "bin-links": { - "version": "1.1.8", - "bundled": true, - "requires": { - "bluebird": "^3.5.3", - "cmd-shim": "^3.0.0", - "gentle-fs": "^2.3.0", - "graceful-fs": "^4.1.15", - "npm-normalize-package-bin": "^1.0.0", - "write-file-atomic": "^2.3.0" - } - }, - "bluebird": { - "version": "3.5.5", - "bundled": true - }, - "boxen": { - "version": "1.3.0", - "bundled": true, - "requires": { - "ansi-align": "^2.0.0", - "camelcase": "^4.0.0", - "chalk": "^2.0.1", - "cli-boxes": "^1.0.0", - "string-width": "^2.0.0", - "term-size": "^1.2.0", - "widest-line": "^2.0.0" - } - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "buffer-from": { - "version": "1.0.0", - "bundled": true - }, - "builtins": { - "version": "1.0.3", - "bundled": true - }, - "byline": { - "version": "5.0.0", - "bundled": true - }, - "byte-size": { - "version": "5.0.1", - "bundled": true - }, - "cacache": { - "version": "12.0.3", - "bundled": true, - "requires": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - } - }, - "call-limit": { - "version": "1.1.1", - "bundled": true - }, - "camelcase": { - "version": "4.1.0", - "bundled": true - }, - "capture-stack-trace": { - "version": "1.0.0", - "bundled": true - }, - "caseless": { - "version": "0.12.0", - "bundled": true - }, - "chalk": { - "version": "2.4.1", - "bundled": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "chownr": { - "version": "1.1.4", - "bundled": true - }, - "ci-info": { - "version": "2.0.0", - "bundled": true - }, - "cidr-regex": { - "version": "2.0.10", - "bundled": true, - "requires": { - "ip-regex": "^2.1.0" - } - }, - "cli-boxes": { - "version": "1.0.0", - "bundled": true - }, - "cli-columns": { - "version": "3.1.2", - "bundled": true, - "requires": { - "string-width": "^2.0.0", - "strip-ansi": "^3.0.1" - } - }, - "cli-table3": { - "version": "0.5.1", - "bundled": true, - "requires": { - "colors": "^1.1.2", - "object-assign": "^4.1.0", - "string-width": "^2.1.1" - } - }, - "cliui": { - "version": "5.0.0", - "bundled": true, - "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "bundled": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "bundled": true - }, - "string-width": { - "version": "3.1.0", - "bundled": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "bundled": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "clone": { - "version": "1.0.4", - "bundled": true - }, - "cmd-shim": { - "version": "3.0.3", - "bundled": true, - "requires": { - "graceful-fs": "^4.1.2", - "mkdirp": "~0.5.0" - } - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true - }, - "color-convert": { - "version": "1.9.1", - "bundled": true, - "requires": { - "color-name": "^1.1.1" - } + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", + "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", + "dev": true, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/execa/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz", + "integrity": "sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", + "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/globals": { + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "dev": true, + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", + "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "dev": true + }, + "node_modules/loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lower-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", + "dev": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", + "dev": true + }, + "node_modules/nan": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", + "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==", + "dev": true, + "optional": true + }, + "node_modules/nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/no-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/param-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", + "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/readdirp/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dev": true, + "dependencies": { + "resolve": "^1.9.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dev": true, + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selfsigned": { + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", + "dev": true, + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/simple-html-tokenizer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/simple-html-tokenizer/-/simple-html-tokenizer-0.1.1.tgz", + "integrity": "sha512-Mc/gH3RvlKvB/gkp9XwgDKEWrSYyefIJPGG8Jk1suZms/rISdUuVEMx5O1WBnTWaScvxXDvGJrZQWblUmQHjkQ==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", + "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "eventsource": "^2.0.2", + "faye-websocket": "^0.11.4", + "inherits": "^2.0.4", + "url-parse": "^1.5.10" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://tidelift.com/funding/github/npm/sockjs-client" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dev": true, + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", + "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", + "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", + "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-inline-loader": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/svg-inline-loader/-/svg-inline-loader-0.8.2.tgz", + "integrity": "sha512-kbrcEh5n5JkypaSC152eGfGcnT4lkR0eSfvefaUJkLqgGjRQJyKDvvEE/CCv5aTSdfXuc+N98w16iAojhShI3g==", + "dev": true, + "dependencies": { + "loader-utils": "^1.1.0", + "object-assign": "^4.0.1", + "simple-html-tokenizer": "^0.1.1" + } + }, + "node_modules/svg-inline-loader/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/svg-inline-loader/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/table": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz", + "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.14.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", + "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.3.tgz", + "integrity": "sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.7", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "terser": "^5.7.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true }, - "color-name": { - "version": "1.1.3", - "bundled": true + "esbuild": { + "optional": true }, - "colors": { - "version": "1.3.3", - "bundled": true, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/to-regex/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/ts-loader": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.3.1.tgz", + "integrity": "sha512-OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "*", + "webpack": "^5.0.0" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", + "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typescript": { + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", + "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist-lint": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true + }, + "node_modules/url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", + "dev": true, + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", + "dev": true + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webpack": { + "version": "5.73.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.73.0.tgz", + "integrity": "sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.9.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz", + "integrity": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==", + "dev": true, + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.2.0", + "@webpack-cli/info": "^1.5.0", + "@webpack-cli/serve": "^1.7.0", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "cross-spawn": "^7.0.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "4.x.x || 5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { "optional": true }, - "columnify": { - "version": "1.5.4", - "bundled": true, - "requires": { - "strip-ansi": "^3.0.0", - "wcwidth": "^1.0.0" - } - }, - "combined-stream": { - "version": "1.0.6", - "bundled": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "concat-map": { - "version": "0.0.1", - "bundled": true - }, - "concat-stream": { - "version": "1.6.2", - "bundled": true, - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "config-chain": { - "version": "1.1.12", - "bundled": true, - "requires": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, - "configstore": { - "version": "3.1.5", - "bundled": true, - "requires": { - "dot-prop": "^4.2.1", - "graceful-fs": "^4.1.2", - "make-dir": "^1.0.0", - "unique-string": "^1.0.0", - "write-file-atomic": "^2.0.0", - "xdg-basedir": "^3.0.0" - } - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true - }, - "copy-concurrently": { - "version": "1.0.5", - "bundled": true, - "requires": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - }, - "dependencies": { - "aproba": { - "version": "1.2.0", - "bundled": true - }, - "iferr": { - "version": "0.1.5", - "bundled": true - } - } - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true - }, - "create-error-class": { - "version": "3.0.2", - "bundled": true, - "requires": { - "capture-stack-trace": "^1.0.0" - } - }, - "cross-spawn": { - "version": "5.1.0", - "bundled": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "dependencies": { - "lru-cache": { - "version": "4.1.5", - "bundled": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "yallist": { - "version": "2.1.2", - "bundled": true - } - } - }, - "crypto-random-string": { - "version": "1.0.0", - "bundled": true + "@webpack-cli/migrate": { + "optional": true }, - "cyclist": { - "version": "0.2.2", - "bundled": true + "webpack-bundle-analyzer": { + "optional": true }, - "dashdash": { - "version": "1.14.1", - "bundled": true, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", + "dev": true, + "dependencies": { + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", + "dev": true, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack-dev-server/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-log/node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-log/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "dev": true, + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", + "dev": true + }, + "node_modules/wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dev": true, + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "node_modules/yargs/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yargs/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", + "dev": true + }, + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "requires": { - "assert-plus": "^1.0.0" + "color-convert": "^1.9.0" } }, - "debug": { - "version": "3.1.0", - "bundled": true, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "bundled": true - } + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" } }, - "debuglog": { - "version": "1.0.1", - "bundled": true - }, - "decamelize": { - "version": "1.2.0", - "bundled": true - }, - "decode-uri-component": { - "version": "0.2.0", - "bundled": true - }, - "deep-extend": { - "version": "0.6.0", - "bundled": true - }, - "defaults": { - "version": "1.0.3", - "bundled": true, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, "requires": { - "clone": "^1.0.2" + "color-name": "1.1.3" } }, - "define-properties": { + "color-name": { "version": "1.1.3", - "bundled": true, - "requires": { - "object-keys": "^1.0.12" - } - }, - "delayed-stream": { - "version": "1.0.0", - "bundled": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true - }, - "detect-indent": { - "version": "5.0.0", - "bundled": true - }, - "detect-newline": { - "version": "2.1.0", - "bundled": true - }, - "dezalgo": { - "version": "1.0.3", - "bundled": true, - "requires": { - "asap": "^2.0.0", - "wrappy": "1" - } - }, - "dot-prop": { - "version": "4.2.1", - "bundled": true, - "requires": { - "is-obj": "^1.0.0" - } - }, - "dotenv": { - "version": "5.0.1", - "bundled": true - }, - "duplexer3": { - "version": "0.1.4", - "bundled": true - }, - "duplexify": { - "version": "3.6.0", - "bundled": true, - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "ecc-jsbn": { - "version": "0.1.2", - "bundled": true, - "optional": true, - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "editor": { - "version": "1.0.0", - "bundled": true - }, - "emoji-regex": { - "version": "7.0.3", - "bundled": true - }, - "encoding": { - "version": "0.1.12", - "bundled": true, - "requires": { - "iconv-lite": "~0.4.13" - } - }, - "end-of-stream": { - "version": "1.4.1", - "bundled": true, - "requires": { - "once": "^1.4.0" - } - }, - "env-paths": { - "version": "2.2.0", - "bundled": true - }, - "err-code": { - "version": "1.1.2", - "bundled": true - }, - "errno": { - "version": "0.1.7", - "bundled": true, - "requires": { - "prr": "~1.0.1" - } - }, - "es-abstract": { - "version": "1.12.0", - "bundled": true, - "requires": { - "es-to-primitive": "^1.1.1", - "function-bind": "^1.1.1", - "has": "^1.0.1", - "is-callable": "^1.1.3", - "is-regex": "^1.0.4" - } - }, - "es-to-primitive": { - "version": "1.2.0", - "bundled": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es6-promise": { - "version": "4.2.8", - "bundled": true - }, - "es6-promisify": { - "version": "5.0.0", - "bundled": true, - "requires": { - "es6-promise": "^4.0.3" - } + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true }, "escape-string-regexp": { "version": "1.0.5", - "bundled": true - }, - "execa": { - "version": "0.7.0", - "bundled": true, - "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "dependencies": { - "get-stream": { - "version": "3.0.0", - "bundled": true - } - } - }, - "extend": { - "version": "3.0.2", - "bundled": true - }, - "extsprintf": { - "version": "1.3.0", - "bundled": true - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "bundled": true - }, - "figgy-pudding": { - "version": "3.5.1", - "bundled": true - }, - "find-npm-prefix": { - "version": "1.0.2", - "bundled": true - }, - "flush-write-stream": { - "version": "1.0.3", - "bundled": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.4" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "forever-agent": { - "version": "0.6.1", - "bundled": true - }, - "form-data": { - "version": "2.3.2", - "bundled": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "1.0.6", - "mime-types": "^2.1.12" - } - }, - "from2": { - "version": "2.3.0", - "bundled": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "fs-minipass": { - "version": "1.2.7", - "bundled": true, - "requires": { - "minipass": "^2.6.0" - }, - "dependencies": { - "minipass": { - "version": "2.9.0", - "bundled": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - } - } - }, - "fs-vacuum": { - "version": "1.2.10", - "bundled": true, - "requires": { - "graceful-fs": "^4.1.2", - "path-is-inside": "^1.0.1", - "rimraf": "^2.5.2" - } - }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "bundled": true, - "requires": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - }, - "dependencies": { - "iferr": { - "version": "0.1.5", - "bundled": true - }, - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true - }, - "function-bind": { - "version": "1.1.1", - "bundled": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - }, - "dependencies": { - "aproba": { - "version": "1.2.0", - "bundled": true - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - } - } - }, - "genfun": { - "version": "5.0.0", - "bundled": true - }, - "gentle-fs": { - "version": "2.3.1", - "bundled": true, - "requires": { - "aproba": "^1.1.2", - "chownr": "^1.1.2", - "cmd-shim": "^3.0.3", - "fs-vacuum": "^1.2.10", - "graceful-fs": "^4.1.11", - "iferr": "^0.1.5", - "infer-owner": "^1.0.4", - "mkdirp": "^0.5.1", - "path-is-inside": "^1.0.2", - "read-cmd-shim": "^1.0.1", - "slide": "^1.1.6" - }, - "dependencies": { - "aproba": { - "version": "1.2.0", - "bundled": true - }, - "iferr": { - "version": "0.1.5", - "bundled": true - } - } - }, - "get-caller-file": { - "version": "2.0.5", - "bundled": true - }, - "get-stream": { - "version": "4.1.0", - "bundled": true, - "requires": { - "pump": "^3.0.0" - } - }, - "getpass": { - "version": "0.1.7", - "bundled": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "glob": { - "version": "7.1.6", - "bundled": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "global-dirs": { - "version": "0.1.1", - "bundled": true, - "requires": { - "ini": "^1.3.4" - } - }, - "got": { - "version": "6.7.1", - "bundled": true, - "requires": { - "create-error-class": "^3.0.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-redirect": "^1.0.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "lowercase-keys": "^1.0.0", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "unzip-response": "^2.0.1", - "url-parse-lax": "^1.0.0" - }, - "dependencies": { - "get-stream": { - "version": "3.0.0", - "bundled": true - } - } - }, - "graceful-fs": { - "version": "4.2.4", - "bundled": true - }, - "har-schema": { - "version": "2.0.0", - "bundled": true - }, - "har-validator": { - "version": "5.1.5", - "bundled": true, - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "dependencies": { - "ajv": { - "version": "6.12.6", - "bundled": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "fast-deep-equal": { - "version": "3.1.3", - "bundled": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "bundled": true - } - } - }, - "has": { - "version": "1.0.3", - "bundled": true, - "requires": { - "function-bind": "^1.1.1" - } + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true }, "has-flag": { "version": "3.0.0", - "bundled": true - }, - "has-symbols": { - "version": "1.0.0", - "bundled": true - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true - }, - "hosted-git-info": { - "version": "2.8.8", - "bundled": true - }, - "http-cache-semantics": { - "version": "3.8.1", - "bundled": true + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true }, - "http-proxy-agent": { - "version": "2.1.0", - "bundled": true, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "requires": { - "agent-base": "4", - "debug": "3.1.0" + "has-flag": "^3.0.0" } - }, - "http-signature": { - "version": "1.2.0", - "bundled": true, + } + } + }, + "@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", + "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^13.9.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + } + } + }, + "@humanwhocodes/config-array": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", + "integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.0", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + } + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.14", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz", + "integrity": "sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@types/eslint": { + "version": "8.4.5", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.5.tgz", + "integrity": "sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true + }, + "@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true + }, + "@types/node": { + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz", + "integrity": "sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==", + "dev": true + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "dev": true + }, + "@types/tapable": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz", + "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==", + "dev": true + }, + "@types/uglify-js": { + "version": "3.16.0", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.16.0.tgz", + "integrity": "sha512-0yeUr92L3r0GLRnBOvtYK1v2SjqMIqQDHMl7GLb+l2L8+6LSFWEEWEIgVsPdMn5ImLM8qzWT8xFPtQYpp8co0g==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + } + }, + "@types/webpack": { + "version": "4.41.32", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.32.tgz", + "integrity": "sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true + } + } + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.5.tgz", + "integrity": "sha512-lftkqRoBvc28VFXEoRgyZuztyVUQ04JvUnATSPtIRFAccbXTWL6DEtXGYMcbg998kXw1NLUJm7rTQ9eUt+q6Ig==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "5.30.5", + "@typescript-eslint/type-utils": "5.30.5", + "@typescript-eslint/utils": "5.30.5", + "debug": "^4.3.4", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.2.0", + "regexpp": "^3.2.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/parser": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.5.tgz", + "integrity": "sha512-zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "5.30.5", + "@typescript-eslint/types": "5.30.5", + "@typescript-eslint/typescript-estree": "5.30.5", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.5.tgz", + "integrity": "sha512-NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Ydg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.30.5", + "@typescript-eslint/visitor-keys": "5.30.5" + } + }, + "@typescript-eslint/type-utils": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.5.tgz", + "integrity": "sha512-k9+ejlv1GgwN1nN7XjVtyCgE0BTzhzT1YsQF0rv4Vfj2U9xnslBgMYYvcEYAFVdvhuEscELJsB7lDkN7WusErw==", + "dev": true, + "requires": { + "@typescript-eslint/utils": "5.30.5", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/types": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.5.tgz", + "integrity": "sha512-kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.5.tgz", + "integrity": "sha512-qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.30.5", + "@typescript-eslint/visitor-keys": "5.30.5", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/utils": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.5.tgz", + "integrity": "sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.30.5", + "@typescript-eslint/types": "5.30.5", + "@typescript-eslint/typescript-estree": "5.30.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.30.5", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.5.tgz", + "integrity": "sha512-D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.30.5", + "eslint-visitor-keys": "^3.3.0" + } + }, + "@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dev": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webpack-cli/configtest": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.2.0.tgz", + "integrity": "sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==", + "dev": true, + "requires": {} + }, + "@webpack-cli/info": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.5.0.tgz", + "integrity": "sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==", + "dev": true, + "requires": { + "envinfo": "^7.7.3" + } + }, + "@webpack-cli/serve": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.7.0.tgz", + "integrity": "sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==", + "dev": true, + "requires": {} + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "8.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", + "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "dev": true + }, + "acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, + "requires": {} + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true, + "requires": {} + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "https-proxy-agent": { - "version": "2.2.4", - "bundled": true, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "array-includes": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", + "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true + }, + "array.prototype.flat": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz", + "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-shim-unscopables": "^1.0.0" + } + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, + "async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "axios": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "requires": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, "requires": { - "agent-base": "^4.3.0", - "debug": "^3.1.0" + "is-descriptor": "^1.0.0" } }, - "humanize-ms": { - "version": "1.2.1", - "bundled": true, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { - "ms": "^2.0.0" + "kind-of": "^6.0.0" } }, - "iconv-lite": { - "version": "0.4.23", - "bundled": true, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { - "safer-buffer": ">= 2.1.2 < 3" + "kind-of": "^6.0.0" } }, - "iferr": { + "is-descriptor": { "version": "1.0.2", - "bundled": true - }, - "ignore-walk": { - "version": "3.0.3", - "bundled": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "import-lazy": { - "version": "2.1.0", - "bundled": true - }, - "imurmurhash": { - "version": "0.1.4", - "bundled": true - }, - "infer-owner": { - "version": "1.0.4", - "bundled": true - }, - "inflight": { - "version": "1.0.6", - "bundled": true, + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { - "once": "^1.3.0", - "wrappy": "1" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } + } + } + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true }, - "inherits": { - "version": "2.0.4", - "bundled": true - }, - "ini": { - "version": "1.3.8", - "bundled": true - }, - "init-package-json": { - "version": "1.10.3", - "bundled": true, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { - "glob": "^7.1.1", - "npm-package-arg": "^4.0.0 || ^5.0.0 || ^6.0.0", - "promzard": "^0.3.0", - "read": "~1.0.1", - "read-package-json": "1 || 2", - "semver": "2.x || 3.x || 4 || 5", - "validate-npm-package-license": "^3.0.1", - "validate-npm-package-name": "^3.0.0" + "ms": "2.0.0" } }, - "ip": { - "version": "1.1.5", - "bundled": true - }, - "ip-regex": { - "version": "2.1.0", - "bundled": true - }, - "is-callable": { - "version": "1.1.4", - "bundled": true - }, - "is-ci": { - "version": "1.2.1", - "bundled": true, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", + "dev": true, + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", + "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001359", + "electron-to-chromium": "^1.4.172", + "node-releases": "^2.0.5", + "update-browserslist-db": "^1.0.4" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001364", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001364.tgz", + "integrity": "sha512-9O0xzV3wVyX0SlegIQ6knz+okhBB5pE0PC40MNdwcipjwpxoUEHL24uJ+gG42cgklPjfO5ZjZPme9FTSN3QT2Q==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, "requires": { - "ci-info": "^1.5.0" + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" }, "dependencies": { - "ci-info": { - "version": "1.6.0", - "bundled": true + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } } } }, - "is-cidr": { - "version": "3.0.0", - "bundled": true, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, "requires": { - "cidr-regex": "^2.0.10" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" } }, - "is-date-object": { - "version": "1.0.1", - "bundled": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, "requires": { - "number-is-nan": "^1.0.0" + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" } }, - "is-installed-globally": { - "version": "0.1.0", - "bundled": true, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, "requires": { - "global-dirs": "^0.1.0", - "is-path-inside": "^1.0.0" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" } }, - "is-npm": { - "version": "1.0.0", - "bundled": true - }, - "is-obj": { - "version": "1.0.1", - "bundled": true - }, - "is-path-inside": { - "version": "1.0.1", - "bundled": true, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, "requires": { - "path-is-inside": "^1.0.1" + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } } }, - "is-redirect": { + "is-accessor-descriptor": { "version": "1.0.0", - "bundled": true - }, - "is-regex": { - "version": "1.0.4", - "bundled": true, - "requires": { - "has": "^1.0.1" - } - }, - "is-retry-allowed": { - "version": "1.2.0", - "bundled": true - }, - "is-stream": { - "version": "1.1.0", - "bundled": true - }, - "is-symbol": { - "version": "1.0.2", - "bundled": true, + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { - "has-symbols": "^1.0.0" + "kind-of": "^6.0.0" } }, - "is-typedarray": { + "is-data-descriptor": { "version": "1.0.0", - "bundled": true - }, - "isarray": { - "version": "1.0.0", - "bundled": true - }, - "isexe": { - "version": "2.0.0", - "bundled": true - }, - "isstream": { - "version": "0.1.2", - "bundled": true - }, - "jsbn": { - "version": "0.1.1", - "bundled": true, - "optional": true - }, - "json-parse-better-errors": { - "version": "1.0.2", - "bundled": true - }, - "json-schema": { - "version": "0.2.3", - "bundled": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "bundled": true - }, - "jsonparse": { - "version": "1.3.1", - "bundled": true - }, - "jsprim": { - "version": "1.4.1", - "bundled": true, + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" + "kind-of": "^6.0.0" } }, - "latest-version": { - "version": "3.1.0", - "bundled": true, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { - "package-json": "^4.0.0" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, - "lazy-property": { - "version": "1.0.0", - "bundled": true - }, - "libcipm": { - "version": "4.0.8", - "bundled": true, - "requires": { - "bin-links": "^1.1.2", - "bluebird": "^3.5.1", - "figgy-pudding": "^3.5.1", - "find-npm-prefix": "^1.0.2", - "graceful-fs": "^4.1.11", - "ini": "^1.3.5", - "lock-verify": "^2.1.0", - "mkdirp": "^0.5.1", - "npm-lifecycle": "^3.0.0", - "npm-logical-tree": "^1.2.1", - "npm-package-arg": "^6.1.0", - "pacote": "^9.1.0", - "read-package-json": "^2.0.13", - "rimraf": "^2.6.2", - "worker-farm": "^1.6.0" - } - }, - "libnpm": { - "version": "3.0.1", - "bundled": true, - "requires": { - "bin-links": "^1.1.2", - "bluebird": "^3.5.3", - "find-npm-prefix": "^1.0.2", - "libnpmaccess": "^3.0.2", - "libnpmconfig": "^1.2.1", - "libnpmhook": "^5.0.3", - "libnpmorg": "^1.0.1", - "libnpmpublish": "^1.1.2", - "libnpmsearch": "^2.0.2", - "libnpmteam": "^1.0.2", - "lock-verify": "^2.0.2", - "npm-lifecycle": "^3.0.0", - "npm-logical-tree": "^1.2.1", - "npm-package-arg": "^6.1.0", - "npm-profile": "^4.0.2", - "npm-registry-fetch": "^4.0.0", - "npmlog": "^4.1.2", - "pacote": "^9.5.3", - "read-package-json": "^2.0.13", - "stringify-package": "^1.0.0" - } - }, - "libnpmaccess": { - "version": "3.0.2", - "bundled": true, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, "requires": { - "aproba": "^2.0.0", - "get-stream": "^4.0.0", - "npm-package-arg": "^6.1.0", - "npm-registry-fetch": "^4.0.0" + "is-plain-object": "^2.0.4" } }, - "libnpmconfig": { - "version": "1.2.1", - "bundled": true, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, "requires": { - "figgy-pudding": "^3.5.1", - "find-up": "^3.0.0", - "ini": "^1.3.5" + "kind-of": "^3.0.2" }, "dependencies": { - "find-up": { - "version": "3.0.0", - "bundled": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "bundled": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.2.0", - "bundled": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "bundled": true, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, "requires": { - "p-limit": "^2.0.0" + "is-buffer": "^1.1.5" } - }, - "p-try": { - "version": "2.2.0", - "bundled": true } } }, - "libnpmhook": { - "version": "5.0.3", - "bundled": true, - "requires": { - "aproba": "^2.0.0", - "figgy-pudding": "^3.4.1", - "get-stream": "^4.0.0", - "npm-registry-fetch": "^4.0.0" - } - }, - "libnpmorg": { - "version": "1.0.1", - "bundled": true, - "requires": { - "aproba": "^2.0.0", - "figgy-pudding": "^3.4.1", - "get-stream": "^4.0.0", - "npm-registry-fetch": "^4.0.0" - } - }, - "libnpmpublish": { - "version": "1.1.2", - "bundled": true, - "requires": { - "aproba": "^2.0.0", - "figgy-pudding": "^3.5.1", - "get-stream": "^4.0.0", - "lodash.clonedeep": "^4.5.0", - "normalize-package-data": "^2.4.0", - "npm-package-arg": "^6.1.0", - "npm-registry-fetch": "^4.0.0", - "semver": "^5.5.1", - "ssri": "^6.0.1" - } - }, - "libnpmsearch": { - "version": "2.0.2", - "bundled": true, - "requires": { - "figgy-pudding": "^3.5.1", - "get-stream": "^4.0.0", - "npm-registry-fetch": "^4.0.0" - } - }, - "libnpmteam": { - "version": "1.0.2", - "bundled": true, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, "requires": { - "aproba": "^2.0.0", - "figgy-pudding": "^3.4.1", - "get-stream": "^4.0.0", - "npm-registry-fetch": "^4.0.0" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + } } }, - "libnpx": { - "version": "10.2.4", - "bundled": true, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, "requires": { - "dotenv": "^5.0.1", - "npm-package-arg": "^6.0.0", - "rimraf": "^2.6.2", - "safe-buffer": "^5.1.0", - "update-notifier": "^2.3.0", - "which": "^1.3.0", - "y18n": "^4.0.0", - "yargs": "^14.2.3" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" } + } + } + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + } + }, + "clean-css": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz", + "integrity": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, + "clean-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==", + "dev": true, + "requires": { + "@types/webpack": "^4.4.31", + "del": "^4.1.1" + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true }, - "lock-verify": { - "version": "2.1.0", - "bundled": true, - "requires": { - "npm-package-arg": "^6.1.0", - "semver": "^5.4.1" - } + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true }, - "lockfile": { - "version": "1.0.4", - "bundled": true, - "requires": { - "signal-exit": "^3.0.2" - } + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true }, - "lodash._baseindexof": { + "string-width": { "version": "3.1.0", - "bundled": true - }, - "lodash._baseuniq": { - "version": "4.6.0", - "bundled": true, + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, "requires": { - "lodash._createset": "~4.0.0", - "lodash._root": "~3.0.0" + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" } }, - "lodash._bindcallback": { - "version": "3.0.1", - "bundled": true - }, - "lodash._cacheindexof": { - "version": "3.0.2", - "bundled": true - }, - "lodash._createcache": { - "version": "3.1.2", - "bundled": true, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, "requires": { - "lodash._getnative": "^3.0.0" + "ansi-regex": "^4.1.0" } - }, - "lodash._createset": { - "version": "4.0.3", - "bundled": true - }, - "lodash._getnative": { - "version": "3.9.1", - "bundled": true - }, - "lodash._root": { - "version": "3.0.1", - "bundled": true - }, - "lodash.clonedeep": { - "version": "4.5.0", - "bundled": true - }, - "lodash.restparam": { - "version": "3.6.1", - "bundled": true - }, - "lodash.union": { - "version": "4.6.0", - "bundled": true - }, - "lodash.uniq": { - "version": "4.5.0", - "bundled": true - }, - "lodash.without": { - "version": "4.4.0", - "bundled": true - }, - "lowercase-keys": { - "version": "1.0.1", - "bundled": true - }, - "lru-cache": { - "version": "5.1.1", - "bundled": true, + } + } + }, + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { - "yallist": "^3.0.2" + "ms": "2.0.0" } }, - "make-dir": { - "version": "1.3.0", - "bundled": true, - "requires": { - "pify": "^3.0.0" - } + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, - "make-fetch-happen": { - "version": "5.0.2", - "bundled": true, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true + }, + "copy-webpack-plugin": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-7.0.0.tgz", + "integrity": "sha512-SLjQNa5iE3BoCP76ESU9qYo9ZkEWtXoZxDurHoqPchAFRblJ9g96xTeC560UXBMre1Nx6ixIIUfiY3VcjpJw3g==", + "dev": true, + "requires": { + "fast-glob": "^3.2.4", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1" + }, + "dependencies": { + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dev": true, "requires": { - "agentkeepalive": "^3.4.1", - "cacache": "^12.0.0", - "http-cache-semantics": "^3.8.1", - "http-proxy-agent": "^2.1.0", - "https-proxy-agent": "^2.2.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "node-fetch-npm": "^2.0.2", - "promise-retry": "^1.1.1", - "socks-proxy-agent": "^4.0.0", - "ssri": "^6.0.0" + "randombytes": "^2.1.0" } - }, - "meant": { + } + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dev": true, + "requires": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + } + }, + "css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==", + "dev": true + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dev": true, + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + } + }, + "define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "dev": true, + "requires": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "array-union": { "version": "1.0.2", - "bundled": true - }, - "mime-db": { - "version": "1.35.0", - "bundled": true - }, - "mime-types": { - "version": "2.1.19", - "bundled": true, - "requires": { - "mime-db": "~1.35.0" - } - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, "requires": { - "brace-expansion": "^1.1.7" + "array-uniq": "^1.0.1" } }, - "minimist": { - "version": "1.2.5", - "bundled": true - }, - "minizlib": { - "version": "1.3.3", - "bundled": true, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, "requires": { - "minipass": "^2.9.0" + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" }, "dependencies": { - "minipass": { - "version": "2.9.0", - "bundled": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true } } }, - "mississippi": { - "version": "3.0.0", - "bundled": true, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, "requires": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" + "glob": "^7.1.3" } - }, - "mkdirp": { - "version": "0.5.5", - "bundled": true, + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dev": true, + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", + "dev": true, + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.185", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.185.tgz", + "integrity": "sha512-9kV/isoOGpKkBt04yYNaSWIBn3187Q5VZRtoReq8oz5NY/A4XmU6cAoqgQlDp7kKJCZMRjWZ8nsQyxfpFHvfyw==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz", + "integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "dev": true + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "es-abstract": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.1.tgz", + "integrity": "sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "regexp.prototype.flags": "^1.4.3", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" + } + }, + "es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true + }, + "es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint": { + "version": "7.32.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz", + "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", + "dev": true, + "requires": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.3", + "@humanwhocodes/config-array": "^0.5.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.1.2", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.9", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, "requires": { - "minimist": "^1.2.5" - }, - "dependencies": { - "minimist": { - "version": "1.2.5", - "bundled": true - } - } - }, - "move-concurrently": { - "version": "1.0.1", - "bundled": true, - "requires": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" + "eslint-visitor-keys": "^1.1.0" }, "dependencies": { - "aproba": { - "version": "1.2.0", - "bundled": true + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true } } }, - "ms": { - "version": "2.1.1", - "bundled": true - }, - "mute-stream": { - "version": "0.0.7", - "bundled": true - }, - "node-fetch-npm": { - "version": "2.0.2", - "bundled": true, - "requires": { - "encoding": "^0.1.11", - "json-parse-better-errors": "^1.0.0", - "safe-buffer": "^5.1.1" - } - }, - "node-gyp": { - "version": "5.1.0", - "bundled": true, - "requires": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.2", - "mkdirp": "^0.5.1", - "nopt": "^4.0.1", - "npmlog": "^4.1.2", - "request": "^2.88.0", - "rimraf": "^2.6.3", - "semver": "^5.7.1", - "tar": "^4.4.12", - "which": "^1.3.1" - } + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true }, - "nopt": { - "version": "4.0.3", - "bundled": true, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + } + } + }, + "eslint-config-prettier": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", + "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", + "dev": true, + "requires": {} + }, + "eslint-import-resolver-node": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", + "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "dev": true, + "requires": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, "requires": { - "abbrev": "1", - "osenv": "^0.1.4" + "ms": "^2.1.1" } - }, - "normalize-package-data": { - "version": "2.5.0", - "bundled": true, + } + } + }, + "eslint-module-utils": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz", + "integrity": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==", + "dev": true, + "requires": { + "debug": "^3.2.7", + "find-up": "^2.1.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - }, - "dependencies": { - "resolve": { - "version": "1.10.0", - "bundled": true, - "requires": { - "path-parse": "^1.0.6" - } - } + "ms": "^2.1.1" } - }, - "npm-audit-report": { - "version": "1.3.3", - "bundled": true, + } + } + }, + "eslint-plugin-import": { + "version": "2.26.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", + "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", + "dev": true, + "requires": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.3", + "has": "^1.0.3", + "is-core-module": "^2.8.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.5", + "resolve": "^1.22.0", + "tsconfig-paths": "^3.14.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { - "cli-table3": "^0.5.0", - "console-control-strings": "^1.1.0" + "ms": "2.0.0" } }, - "npm-bundled": { - "version": "1.1.1", - "bundled": true, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, "requires": { - "npm-normalize-package-bin": "^1.0.1" + "esutils": "^2.0.2" } }, - "npm-cache-filename": { - "version": "1.0.2", - "bundled": true - }, - "npm-install-checks": { - "version": "3.0.2", - "bundled": true, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "eslint-plugin-prettier": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz", + "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", + "dev": true, + "requires": { + "prettier-linter-helpers": "^1.0.0" + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "dependencies": { + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + } + } + }, + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true + }, + "eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dev": true, + "requires": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, "requires": { - "semver": "^2.3.0 || 3.x || 4 || 5" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "npm-lifecycle": { - "version": "3.1.5", - "bundled": true, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, "requires": { - "byline": "^5.0.0", - "graceful-fs": "^4.1.15", - "node-gyp": "^5.0.2", - "resolve-from": "^4.0.0", - "slide": "^1.1.6", - "uid-number": "0.0.6", - "umask": "^1.1.0", - "which": "^1.3.1" + "fast-deep-equal": "^3.1.3" } }, - "npm-logical-tree": { - "version": "1.2.1", - "bundled": true - }, - "npm-normalize-package-bin": { - "version": "1.0.1", - "bundled": true - }, - "npm-package-arg": { - "version": "6.1.1", - "bundled": true, + "jest-worker": { + "version": "28.1.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.1.tgz", + "integrity": "sha512-Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ==", + "dev": true, "requires": { - "hosted-git-info": "^2.7.1", - "osenv": "^0.1.5", - "semver": "^5.6.0", - "validate-npm-package-name": "^3.0.0" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" } }, - "npm-packlist": { - "version": "1.4.8", - "bundled": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1", - "npm-normalize-package-bin": "^1.0.1" - } + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true }, - "npm-pick-manifest": { - "version": "3.0.2", - "bundled": true, + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, "requires": { - "figgy-pudding": "^3.5.1", - "npm-package-arg": "^6.0.0", - "semver": "^5.4.1" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" } }, - "npm-profile": { - "version": "4.0.4", - "bundled": true, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, "requires": { - "aproba": "^1.1.2 || 2", - "figgy-pudding": "^3.4.1", - "npm-registry-fetch": "^4.0.0" + "has-flag": "^4.0.0" } + } + } + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true }, - "npm-registry-fetch": { - "version": "4.0.7", - "bundled": true, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "eventsource": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz", + "integrity": "sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==", + "dev": true + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, "requires": { - "JSONStream": "^1.3.4", - "bluebird": "^3.5.1", - "figgy-pudding": "^3.4.1", - "lru-cache": "^5.1.1", - "make-fetch-happen": "^5.0.0", - "npm-package-arg": "^6.1.0", - "safe-buffer": "^5.2.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "bundled": true - } + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, - "npm-run-path": { - "version": "2.0.2", - "bundled": true, - "requires": { - "path-key": "^2.0.0" - } + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true }, - "npm-user-validate": { - "version": "1.0.1", - "bundled": true + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true }, - "npmlog": { - "version": "4.1.2", - "bundled": true, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" + "shebang-regex": "^1.0.0" } }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true - }, - "oauth-sign": { - "version": "0.9.0", - "bundled": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true - }, - "object-keys": { - "version": "1.0.12", - "bundled": true + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true }, - "object.getownpropertydescriptors": { - "version": "2.0.3", - "bundled": true, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, "requires": { - "define-properties": "^1.1.2", - "es-abstract": "^1.5.1" + "isexe": "^2.0.0" } - }, - "once": { - "version": "1.4.0", - "bundled": true, + } + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { - "wrappy": "1" + "ms": "2.0.0" } }, - "opener": { - "version": "1.5.2", - "bundled": true - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "dev": true, + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true }, - "osenv": { - "version": "0.1.5", - "bundled": true, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" + "ms": "2.0.0" } }, - "p-finally": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { "version": "1.0.0", - "bundled": true - }, - "package-json": { - "version": "4.0.1", - "bundled": true, - "requires": { - "got": "^6.7.1", - "registry-auth-token": "^3.0.1", - "registry-url": "^3.0.3", - "semver": "^5.1.0" - } - }, - "pacote": { - "version": "9.5.12", - "bundled": true, - "requires": { - "bluebird": "^3.5.3", - "cacache": "^12.0.2", - "chownr": "^1.1.2", - "figgy-pudding": "^3.5.1", - "get-stream": "^4.1.0", - "glob": "^7.1.3", - "infer-owner": "^1.0.4", - "lru-cache": "^5.1.1", - "make-fetch-happen": "^5.0.0", - "minimatch": "^3.0.4", - "minipass": "^2.3.5", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "normalize-package-data": "^2.4.0", - "npm-normalize-package-bin": "^1.0.0", - "npm-package-arg": "^6.1.0", - "npm-packlist": "^1.1.12", - "npm-pick-manifest": "^3.0.0", - "npm-registry-fetch": "^4.0.0", - "osenv": "^0.1.5", - "promise-inflight": "^1.0.1", - "promise-retry": "^1.1.1", - "protoduck": "^5.0.1", - "rimraf": "^2.6.2", - "safe-buffer": "^5.1.2", - "semver": "^5.6.0", - "ssri": "^6.0.1", - "tar": "^4.4.10", - "unique-filename": "^1.1.1", - "which": "^1.3.1" - }, - "dependencies": { - "minipass": { - "version": "2.9.0", - "bundled": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - } + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" } }, - "parallel-transform": { - "version": "1.1.0", - "bundled": true, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { - "cyclist": "~0.2.2", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } + "kind-of": "^6.0.0" } }, - "path-exists": { - "version": "3.0.0", - "bundled": true - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true - }, - "path-is-inside": { - "version": "1.0.2", - "bundled": true - }, - "path-key": { - "version": "2.0.1", - "bundled": true - }, - "path-parse": { - "version": "1.0.6", - "bundled": true - }, - "performance-now": { - "version": "2.1.0", - "bundled": true - }, - "pify": { - "version": "3.0.0", - "bundled": true - }, - "prepend-http": { - "version": "1.0.4", - "bundled": true - }, - "process-nextick-args": { - "version": "2.0.0", - "bundled": true - }, - "promise-inflight": { - "version": "1.0.1", - "bundled": true - }, - "promise-retry": { - "version": "1.1.1", - "bundled": true, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { - "err-code": "^1.0.0", - "retry": "^0.10.0" - }, - "dependencies": { - "retry": { - "version": "0.10.1", - "bundled": true - } + "kind-of": "^6.0.0" } }, - "promzard": { - "version": "0.3.0", - "bundled": true, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { - "read": "1" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } - }, - "proto-list": { - "version": "1.2.4", - "bundled": true - }, - "protoduck": { - "version": "5.0.1", - "bundled": true, + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "requires": { - "genfun": "^5.0.0" + "ms": "2.0.0" } }, - "prr": { - "version": "1.0.1", - "bundled": true - }, - "pseudomap": { - "version": "1.0.2", - "bundled": true - }, - "psl": { - "version": "1.1.29", - "bundled": true - }, - "pump": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz", + "integrity": "sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==", + "dev": true + }, + "follow-redirects": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true + }, + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", + "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "globals": { + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.16.0.tgz", + "integrity": "sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { "version": "3.0.0", - "bundled": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "1.5.1", - "bundled": true, + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" + "kind-of": "^3.0.2" }, "dependencies": { - "pump": { - "version": "2.0.1", - "bundled": true, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "is-buffer": "^1.1.5" } } } }, - "punycode": { - "version": "1.4.1", - "bundled": true - }, - "qrcode-terminal": { - "version": "0.12.0", - "bundled": true - }, - "qs": { - "version": "6.5.2", - "bundled": true - }, - "query-string": { - "version": "6.8.2", - "bundled": true, - "requires": { - "decode-uri-component": "^0.2.0", - "split-on-first": "^1.0.0", - "strict-uri-encode": "^2.0.0" - } - }, - "qw": { - "version": "1.0.1", - "bundled": true - }, - "rc": { - "version": "1.2.8", - "bundled": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - } - }, - "read": { - "version": "1.0.7", - "bundled": true, - "requires": { - "mute-stream": "~0.0.4" - } - }, - "read-cmd-shim": { - "version": "1.0.5", - "bundled": true, - "requires": { - "graceful-fs": "^4.1.2" - } - }, - "read-installed": { - "version": "4.0.3", - "bundled": true, - "requires": { - "debuglog": "^1.0.1", - "graceful-fs": "^4.1.2", - "read-package-json": "^2.0.0", - "readdir-scoped-modules": "^1.0.0", - "semver": "2 || 3 || 4 || 5", - "slide": "~1.1.3", - "util-extend": "^1.0.1" - } - }, - "read-package-json": { - "version": "2.1.1", - "bundled": true, - "requires": { - "glob": "^7.1.1", - "graceful-fs": "^4.1.2", - "json-parse-better-errors": "^1.0.1", - "normalize-package-data": "^2.0.0", - "npm-normalize-package-bin": "^1.0.0" - } - }, - "read-package-tree": { - "version": "5.3.1", - "bundled": true, - "requires": { - "read-package-json": "^2.0.0", - "readdir-scoped-modules": "^1.0.0", - "util-promisify": "^2.1.0" - } - }, - "readable-stream": { - "version": "3.6.0", - "bundled": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "readdir-scoped-modules": { - "version": "1.1.0", - "bundled": true, - "requires": { - "debuglog": "^1.0.1", - "dezalgo": "^1.0.0", - "graceful-fs": "^4.1.2", - "once": "^1.3.0" - } - }, - "registry-auth-token": { - "version": "3.4.0", - "bundled": true, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, "requires": { - "rc": "^1.1.6", - "safe-buffer": "^5.0.1" + "is-buffer": "^1.1.5" } - }, - "registry-url": { - "version": "3.1.0", - "bundled": true, - "requires": { - "rc": "^1.0.1" - } - }, - "request": { - "version": "2.88.0", - "bundled": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.0", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.4.3", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - } - }, - "require-directory": { - "version": "2.1.1", - "bundled": true - }, - "require-main-filename": { - "version": "2.0.0", - "bundled": true - }, - "resolve-from": { - "version": "4.0.0", - "bundled": true - }, - "retry": { - "version": "0.12.0", - "bundled": true - }, - "rimraf": { - "version": "2.7.1", - "bundled": true, + } + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "dev": true + }, + "html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dev": true, + "requires": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "dependencies": { + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true + } + } + }, + "html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "dev": true, + "requires": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, "requires": { - "glob": "^7.1.3" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" } }, - "run-queue": { - "version": "1.0.3", - "bundled": true, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, "requires": { - "aproba": "^1.1.1" - }, - "dependencies": { - "aproba": { - "version": "1.2.0", - "bundled": true - } + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" } }, - "safe-buffer": { - "version": "5.1.2", - "bundled": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true - }, - "semver": { - "version": "5.7.1", - "bundled": true - }, - "semver-diff": { - "version": "2.1.0", - "bundled": true, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, "requires": { - "semver": "^5.0.3" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" } }, - "set-blocking": { - "version": "2.0.0", - "bundled": true - }, - "sha": { - "version": "3.0.0", - "bundled": true, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { - "graceful-fs": "^4.1.2" + "kind-of": "^6.0.0" } }, - "shebang-command": { - "version": "1.2.0", - "bundled": true, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { - "shebang-regex": "^1.0.0" + "kind-of": "^6.0.0" } }, - "shebang-regex": { - "version": "1.0.0", - "bundled": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true - }, - "slide": { - "version": "1.1.6", - "bundled": true - }, - "smart-buffer": { - "version": "4.1.0", - "bundled": true + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } }, - "socks": { - "version": "2.3.3", - "bundled": true, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, "requires": { - "ip": "1.1.5", - "smart-buffer": "^4.1.0" + "is-plain-object": "^2.0.4" } }, - "socks-proxy-agent": { - "version": "4.0.2", - "bundled": true, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, "requires": { - "agent-base": "~4.2.1", - "socks": "~2.3.2" + "kind-of": "^3.0.2" }, "dependencies": { - "agent-base": { - "version": "4.2.1", - "bundled": true, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, "requires": { - "es6-promisify": "^5.0.0" + "is-buffer": "^1.1.5" } } } }, - "sorted-object": { - "version": "2.0.1", - "bundled": true - }, - "sorted-union-stream": { - "version": "2.1.3", - "bundled": true, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, "requires": { - "from2": "^1.3.0", - "stream-iterate": "^1.1.0" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" }, "dependencies": { - "from2": { - "version": "1.3.0", - "bundled": true, - "requires": { - "inherits": "~2.0.1", - "readable-stream": "~1.1.10" - } - }, - "isarray": { - "version": "0.0.1", - "bundled": true - }, - "readable-stream": { - "version": "1.1.14", - "bundled": true, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" } - }, - "string_decoder": { - "version": "0.10.31", - "bundled": true } } }, - "spdx-correct": { - "version": "3.0.0", - "bundled": true, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" } - }, - "spdx-exceptions": { - "version": "2.1.0", - "bundled": true - }, - "spdx-expression-parse": { - "version": "3.0.0", - "bundled": true, + } + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "requires": {} + }, + "ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true + }, + "ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", + "dev": true + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "is-buffer": "^1.1.5" } - }, - "spdx-license-ids": { - "version": "3.0.5", - "bundled": true - }, - "split-on-first": { - "version": "1.1.0", - "bundled": true - }, - "sshpk": { - "version": "1.14.2", - "bundled": true, + } + } + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "dev": true + }, + "is-core-module": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", + "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true + }, + "jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" + "has-flag": "^4.0.0" } - }, - "ssri": { - "version": "6.0.1", - "bundled": true, + } + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "json5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true + }, + "loader-utils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", + "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "dev": true + }, + "loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "dev": true + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, "requires": { - "figgy-pudding": "^3.5.1" + "is-plain-object": "^2.0.4" } - }, - "stream-each": { - "version": "1.2.2", - "bundled": true, + } + } + }, + "mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "requires": { + "minimist": "^1.2.6" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==", + "dev": true + }, + "nan": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", + "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==", + "dev": true, + "optional": true + }, + "nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "dev": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, "requires": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" } }, - "stream-iterate": { - "version": "1.2.0", - "bundled": true, - "requires": { - "readable-stream": "^2.1.5", - "stream-shift": "^1.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" } }, - "stream-shift": { + "is-accessor-descriptor": { "version": "1.0.0", - "bundled": true - }, - "strict-uri-encode": { - "version": "2.0.0", - "bundled": true + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } }, - "string-width": { - "version": "2.1.1", - "bundled": true, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "bundled": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "bundled": true - }, - "strip-ansi": { - "version": "4.0.0", - "bundled": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } + "kind-of": "^6.0.0" } }, - "string_decoder": { - "version": "1.3.0", - "bundled": true, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { - "safe-buffer": "~5.2.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.0", - "bundled": true - } + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, - "stringify-package": { + "is-extendable": { "version": "1.0.1", - "bundled": true - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, "requires": { - "ansi-regex": "^2.0.0" + "is-plain-object": "^2.0.4" } - }, - "strip-eof": { - "version": "1.0.0", - "bundled": true - }, - "strip-json-comments": { + } + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "dev": true + }, + "node-releases": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", + "dev": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": { + "path-key": { "version": "2.0.1", - "bundled": true - }, - "supports-color": { - "version": "5.4.0", - "bundled": true, + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true + } + } + }, + "nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, "requires": { - "has-flag": "^3.0.0" + "is-buffer": "^1.1.5" } - }, - "tar": { - "version": "4.4.13", - "bundled": true, + } + } + }, + "object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "dev": true + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + }, + "dependencies": { + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.8.6", - "minizlib": "^1.2.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.3" - }, - "dependencies": { - "minipass": { - "version": "2.9.0", - "bundled": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - } + "p-try": "^1.0.0" } - }, - "term-size": { - "version": "1.2.0", - "bundled": true, + } + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "requires": { + "retry": "^0.12.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + } + } + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, "requires": { - "execa": "^0.7.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" } }, - "text-table": { - "version": "0.2.0", - "bundled": true - }, - "through": { - "version": "2.3.8", - "bundled": true - }, - "through2": { - "version": "2.0.3", - "bundled": true, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, "requires": { - "readable-stream": "^2.1.5", - "xtend": "~4.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } + "p-locate": "^4.1.0" } }, - "timed-out": { - "version": "4.0.1", - "bundled": true - }, - "tiny-relative-date": { - "version": "1.3.0", - "bundled": true - }, - "tough-cookie": { - "version": "2.4.3", - "bundled": true, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, "requires": { - "psl": "^1.1.24", - "punycode": "^1.4.1" + "p-try": "^2.0.0" } }, - "tunnel-agent": { - "version": "0.6.0", - "bundled": true, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, "requires": { - "safe-buffer": "^5.0.1" + "p-limit": "^2.2.0" } }, - "tweetnacl": { - "version": "0.14.5", - "bundled": true, - "optional": true - }, - "typedarray": { - "version": "0.0.6", - "bundled": true - }, - "uid-number": { - "version": "0.0.6", - "bundled": true - }, - "umask": { - "version": "1.1.0", - "bundled": true + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true }, - "unique-filename": { - "version": "1.1.1", - "bundled": true, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + } + } + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dev": true, + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, "requires": { - "unique-slug": "^2.0.0" + "ms": "^2.1.1" } - }, - "unique-slug": { - "version": "2.0.0", - "bundled": true, + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true + }, + "postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "dev": true, + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "requires": {} + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "prettier": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", + "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", + "dev": true + }, + "prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "requires": { + "fast-diff": "^1.1.2" + } + }, + "pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dev": true, + "requires": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "requires": { + "side-channel": "^1.0.4" + } + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", + "dev": true + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true + }, + "raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + } + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, "requires": { - "imurmurhash": "^0.1.4" + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" } }, - "unique-string": { - "version": "1.0.0", - "bundled": true, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, "requires": { - "crypto-random-string": "^1.0.0" + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" } }, - "unpipe": { - "version": "1.0.0", - "bundled": true - }, - "unzip-response": { - "version": "2.0.1", - "bundled": true - }, - "update-notifier": { - "version": "2.5.0", - "bundled": true, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, "requires": { - "boxen": "^1.2.1", - "chalk": "^2.0.1", - "configstore": "^3.0.0", - "import-lazy": "^2.1.0", - "is-ci": "^1.0.10", - "is-installed-globally": "^0.1.0", - "is-npm": "^1.0.0", - "latest-version": "^3.0.0", - "semver-diff": "^2.0.0", - "xdg-basedir": "^3.0.0" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" } }, - "uri-js": { - "version": "4.4.0", - "bundled": true, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, "requires": { - "punycode": "^2.1.0" - }, - "dependencies": { - "punycode": { - "version": "2.1.1", - "bundled": true - } + "kind-of": "^6.0.0" } }, - "url-parse-lax": { + "is-data-descriptor": { "version": "1.0.0", - "bundled": true, + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, "requires": { - "prepend-http": "^1.0.1" + "kind-of": "^6.0.0" } }, - "util-deprecate": { + "is-descriptor": { "version": "1.0.2", - "bundled": true - }, - "util-extend": { - "version": "1.0.3", - "bundled": true - }, - "util-promisify": { - "version": "2.1.0", - "bundled": true, - "requires": { - "object.getownpropertydescriptors": "^2.0.3" - } - }, - "uuid": { - "version": "3.3.3", - "bundled": true - }, - "validate-npm-package-license": { - "version": "3.0.4", - "bundled": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "validate-npm-package-name": { - "version": "3.0.0", - "bundled": true, - "requires": { - "builtins": "^1.0.3" - } - }, - "verror": { - "version": "1.10.0", - "bundled": true, + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, - "wcwidth": { + "is-extendable": { "version": "1.0.1", - "bundled": true, - "requires": { - "defaults": "^1.0.3" - } - }, - "which": { - "version": "1.3.1", - "bundled": true, + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, "requires": { - "isexe": "^2.0.0" + "is-plain-object": "^2.0.4" } }, - "which-module": { - "version": "2.0.0", - "bundled": true - }, - "wide-align": { - "version": "1.1.2", - "bundled": true, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, "requires": { - "string-width": "^1.0.2" + "kind-of": "^3.0.2" }, "dependencies": { - "string-width": { - "version": "1.0.2", - "bundled": true, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "is-buffer": "^1.1.5" } } } }, - "widest-line": { - "version": "2.0.1", - "bundled": true, - "requires": { - "string-width": "^2.1.1" - } - }, - "worker-farm": { - "version": "1.7.0", - "bundled": true, - "requires": { - "errno": "~0.1.7" - } - }, - "wrap-ansi": { - "version": "5.1.0", - "bundled": true, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" }, "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "bundled": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "bundled": true - }, - "string-width": { - "version": "3.1.0", - "bundled": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "bundled": true, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, "requires": { - "ansi-regex": "^4.1.0" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" } } } }, - "wrappy": { - "version": "1.0.2", - "bundled": true - }, - "write-file-atomic": { - "version": "2.4.3", - "bundled": true, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, "requires": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" } - }, - "xdg-basedir": { - "version": "3.0.0", - "bundled": true - }, - "xtend": { - "version": "4.0.1", - "bundled": true - }, - "y18n": { - "version": "4.0.0", - "bundled": true - }, - "yallist": { - "version": "3.0.3", - "bundled": true - }, - "yargs": { - "version": "14.2.3", - "bundled": true, - "requires": { - "cliui": "^5.0.0", - "decamelize": "^1.2.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^15.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "bundled": true - }, - "find-up": { - "version": "3.0.0", - "bundled": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "bundled": true - }, - "locate-path": { - "version": "3.0.0", - "bundled": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "bundled": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "bundled": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "bundled": true - }, - "string-width": { - "version": "3.1.0", - "bundled": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "bundled": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } + } + } + }, + "rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "dev": true, + "requires": { + "resolve": "^1.9.0" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" } }, - "yargs-parser": { - "version": "15.0.1", - "bundled": true, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "bundled": true - } + "is-plain-object": "^2.0.4" } } } }, - "npm-bundled": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.1.tgz", - "integrity": "sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==", + "regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dev": true, "requires": { - "npm-normalize-package-bin": "^1.0.1" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" } }, - "npm-normalize-package-bin": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", - "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true }, - "npm-packlist": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz", - "integrity": "sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==", + "renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dev": true, "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1", - "npm-normalize-package-bin": "^1.0.1" + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" } }, - "npm-run-path": { + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "require-from-string": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", "dev": true, "requires": { - "path-key": "^2.0.0" + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" }, "dependencies": { - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true } } }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "dev": true + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" + "glob": "^7.1.3" } }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, "requires": { - "ee-first": "1.1.1" + "ret": "~0.1.10" } }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "selfsigned": { + "version": "1.10.14", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", + "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", + "dev": true, + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "7.3.7", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", + "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } + } + }, + "serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, "requires": { - "wrappy": "1" + "randombytes": "^2.1.0" } }, - "one-time": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-0.0.4.tgz", - "integrity": "sha1-+M33eISCb+Tf+T46nMN7HkSAdC4=" - }, - "onetime": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz", - "integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==", + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dev": true, "requires": { - "mimic-fn": "^2.1.0" + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true + } } }, - "opencollective-postinstall": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz", - "integrity": "sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw==", - "dev": true - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" } }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true }, - "osenv": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", - "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" } }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, "requires": { - "p-try": "^2.0.0" + "kind-of": "^6.0.2" } }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "requires": { - "p-limit": "^2.2.0" + "shebang-regex": "^3.0.0" } }, - "p-map": { + "shebang-regex": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", - "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "dev": true, "requires": { - "aggregate-error": "^3.0.0" + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" } }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "package-json": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", - "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", + "simple-html-tokenizer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/simple-html-tokenizer/-/simple-html-tokenizer-0.1.1.tgz", + "integrity": "sha512-Mc/gH3RvlKvB/gkp9XwgDKEWrSYyefIJPGG8Jk1suZms/rISdUuVEMx5O1WBnTWaScvxXDvGJrZQWblUmQHjkQ==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, "requires": { - "got": "^6.7.1", - "registry-auth-token": "^3.0.1", - "registry-url": "^3.0.3", - "semver": "^5.1.0" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" } }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", "dev": true, "requires": { - "callsites": "^3.0.0" + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true + } } }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "dev": true, "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } } }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", - "dev": true - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", - "dev": true - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "picomatch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", - "dev": true - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "dev": true, "requires": { - "find-up": "^4.0.0" + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, - "please-upgrade-node": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", - "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "dev": true, "requires": { - "semver-compare": "^1.0.0" + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" } }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "dev": true - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", - "dev": true - }, - "prettier": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz", - "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==", - "dev": true - }, - "prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "sockjs-client": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz", + "integrity": "sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==", "dev": true, "requires": { - "fast-diff": "^1.1.2" + "debug": "^3.2.7", + "eventsource": "^2.0.2", + "faye-websocket": "^0.11.4", + "inherits": "^2.0.4", + "url-parse": "^1.5.10" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } } }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true }, - "proxy-addr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", - "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", - "requires": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.9.1" - } - }, - "pseudomap": { + "source-map-js": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, - "pstree.remy": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.7.tgz", - "integrity": "sha512-xsMgrUwRpuGskEzBFkH8NmTimbZ5PcPup0LA8JJkHIm2IMUbQcpo3yeLNWVrufEYjh8YwtSVh0xz6UeWc5Oh5A==", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "dev": true }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", "dev": true, "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" } }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true }, - "raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, "requires": { - "bytes": "3.1.0", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "dependencies": { - "http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - } - } + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" } }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" }, "dependencies": { - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } } } }, - "read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "dev": true, "requires": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" + "extend-shallow": "^3.0.0" }, "dependencies": { - "parse-json": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz", - "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==", + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", "dev": true, "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1", - "lines-and-columns": "^1.1.6" + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" } }, - "type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } } } }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true }, - "readdirp": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.3.0.tgz", - "integrity": "sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ==", + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", "dev": true, "requires": { - "picomatch": "^2.0.7" + "define-property": "^0.2.5", + "object-copy": "^0.1.0" } }, - "referrer-policy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/referrer-policy/-/referrer-policy-1.2.0.tgz", - "integrity": "sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA==" - }, - "regexp-clone": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/regexp-clone/-/regexp-clone-1.0.0.tgz", - "integrity": "sha512-TuAasHQNamyyJ2hb97IuBEif4qBHGjPHBS64sZwytpLEqtBQ1gPJTnOaQ6qmpET16cK14kkjbazl6+p0RRv0yw==" - }, - "regexpp": { + "statuses": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", - "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "dev": true }, - "registry-auth-token": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz", - "integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==", + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "requires": { - "rc": "^1.1.6", - "safe-buffer": "^5.0.1" + "safe-buffer": "~5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } } }, - "registry-url": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", - "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "requires": { - "rc": "^1.0.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" } }, - "require_optional": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require_optional/-/require_optional-1.0.1.tgz", - "integrity": "sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g==", + "string.prototype.trimend": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", + "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "dev": true, "requires": { - "resolve-from": "^2.0.0", - "semver": "^5.1.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" } }, - "resolve": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz", - "integrity": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==", + "string.prototype.trimstart": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", + "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", "dev": true, "requires": { - "path-parse": "^1.0.6" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" } }, - "resolve-from": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz", - "integrity": "sha1-lICrIOlP+h2egKgEx+oUdhGWa1c=" - }, - "restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "ansi-regex": "^5.0.1" } }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "requires": { - "glob": "^7.1.3" - } - }, - "run-async": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.0.tgz", - "integrity": "sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg==", - "dev": true, - "requires": { - "is-promise": "^2.1.0" - } - }, - "run-node": { + "strip-eof": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/run-node/-/run-node-1.0.0.tgz", - "integrity": "sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A==", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", "dev": true }, - "run-parallel": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz", - "integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==", + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true }, - "rxjs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.5.tgz", - "integrity": "sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ==", + "style-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", + "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", "dev": true, "requires": { - "tslib": "^1.9.0" + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" } }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "saslprep": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", - "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", - "optional": true, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "requires": { - "sparse-bitfield": "^3.0.3" + "has-flag": "^4.0.0" } }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "semver-compare": { + "supports-preserve-symlinks-flag": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", - "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true }, - "semver-diff": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", - "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", + "svg-inline-loader": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/svg-inline-loader/-/svg-inline-loader-0.8.2.tgz", + "integrity": "sha512-kbrcEh5n5JkypaSC152eGfGcnT4lkR0eSfvefaUJkLqgGjRQJyKDvvEE/CCv5aTSdfXuc+N98w16iAojhShI3g==", "dev": true, "requires": { - "semver": "^5.0.3" + "loader-utils": "^1.1.0", + "object-assign": "^4.0.1", + "simple-html-tokenizer": "^0.1.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } } }, - "send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "table": { + "version": "6.8.0", + "resolved": "https://registry.npmjs.org/table/-/table-6.8.0.tgz", + "integrity": "sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==", + "dev": true, "requires": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.7.2", - "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", - "range-parser": "~1.2.1", - "statuses": "~1.5.0" + "ajv": "^8.0.1", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" }, "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true } } }, - "serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + }, + "terser": { + "version": "5.14.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz", + "integrity": "sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==", + "dev": true, "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.17.1" + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" } }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - }, - "setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "terser-webpack-plugin": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.3.tgz", + "integrity": "sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==", + "dev": true, "requires": { - "shebang-regex": "^3.0.0" + "@jridgewell/trace-mapping": "^0.3.7", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "terser": "^5.7.2" } }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true }, - "sift": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/sift/-/sift-7.0.1.tgz", - "integrity": "sha512-oqD7PMJ+uO6jV9EQCl0LrRw1OwsiPsiFQR5AR30heR+4Dl7jBBbDLnNvWiak20tzZlSE1H7RB30SX/1j/YYT7g==" + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true }, - "signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, "requires": { - "is-arrayish": "^0.3.1" + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" }, "dependencies": { - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } } } }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "dev": true }, - "slice-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "ts-loader": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.3.1.tgz", + "integrity": "sha512-OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw==", "dev": true, "requires": { - "ansi-styles": "^3.2.0", - "astral-regex": "^1.0.0", - "is-fullwidth-code-point": "^2.0.0" + "chalk": "^4.1.0", + "enhanced-resolve": "^5.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + } + }, + "tsconfig-paths": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", + "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "dev": true, + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" }, "dependencies": { - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } } } }, - "sliced": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz", - "integrity": "sha1-CzpmK10Ewxd7GSa+qCsD+Dei70E=" + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, - "sparse-bitfield": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", - "integrity": "sha1-/0rm5oZWBWuks+eSqzM004JzyhE=", - "optional": true, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, "requires": { - "memory-pager": "^1.0.2" + "tslib": "^1.8.1" } }, - "spdx-correct": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", - "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "prelude-ls": "^1.2.1" } }, - "spdx-exceptions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", - "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==", + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true }, - "spdx-expression-parse": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "media-typer": "0.3.0", + "mime-types": "~2.1.24" } }, - "spdx-license-ids": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", - "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", + "typescript": { + "version": "4.7.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", + "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", "dev": true }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, - "stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } }, - "string-argv": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", - "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", "dev": true, "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" + "has-value": "^0.3.1", + "isobject": "^3.0.0" }, "dependencies": { - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", "dev": true, "requires": { - "ansi-regex": "^5.0.0" + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true } } }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", + "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", + "dev": true, "requires": { - "safe-buffer": "~5.1.0" + "escalade": "^3.1.1", + "picocolors": "^1.0.0" } }, - "stringify-object": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", - "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "requires": { - "get-own-enumerable-property-symbols": "^3.0.0", - "is-obj": "^1.0.1", - "is-regexp": "^1.0.0" + "punycode": "^2.1.0" } }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", "dev": true, "requires": { - "ansi-regex": "^4.1.0" + "punycode": "1.3.2", + "querystring": "0.2.0" }, "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==", "dev": true } } }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", "dev": true }, - "strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, - "strip-json-comments": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.0.tgz", - "integrity": "sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w==", + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", "dev": true }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true + }, + "watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dev": true, "requires": { - "has-flag": "^3.0.0" + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" } }, - "swagger-ui-dist": { - "version": "3.25.0", - "resolved": "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.25.0.tgz", - "integrity": "sha512-vwvJPPbdooTvDwLGzjIXinOXizDJJ6U1hxnJL3y6U3aL1d2MSXDmKg2139XaLBhsVZdnQJV2bOkX4reB+RXamg==" - }, - "swagger-ui-express": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/swagger-ui-express/-/swagger-ui-express-4.1.2.tgz", - "integrity": "sha512-bVT16qj6WdNlEKFkSLOoTeGuqEm2lfOFRq6mVHAx+viA/ikORE+n4CS3WpVcYmQzM4HE6+DUFgAWcMRBJNpjcw==", + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, "requires": { - "swagger-ui-dist": "^3.18.1" + "minimalistic-assert": "^1.0.0" } }, - "symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", - "dev": true - }, - "table": { - "version": "5.4.6", - "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", - "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", + "webpack": { + "version": "5.73.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.73.0.tgz", + "integrity": "sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.4.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.9.3", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.3.1", + "webpack-sources": "^3.2.3" + } + }, + "webpack-cli": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.10.0.tgz", + "integrity": "sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==", "dev": true, "requires": { - "ajv": "^6.10.2", - "lodash": "^4.17.14", - "slice-ansi": "^2.1.0", - "string-width": "^3.0.0" + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^1.2.0", + "@webpack-cli/info": "^1.5.0", + "@webpack-cli/serve": "^1.7.0", + "colorette": "^2.0.14", + "commander": "^7.0.0", + "cross-spawn": "^7.0.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^2.2.0", + "rechoir": "^0.7.0", + "webpack-merge": "^5.7.3" }, "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "dev": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } } } }, - "tar": { - "version": "4.4.13", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz", - "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==", + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dev": true, "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.8.6", - "minizlib": "^1.2.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.3" + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" }, "dependencies": { - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + "mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "dev": true } } }, - "term-size": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", - "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", + "webpack-dev-server": { + "version": "3.11.3", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz", + "integrity": "sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==", "dev": true, "requires": { - "execa": "^0.7.0" + "ansi-html-community": "0.0.8", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" }, "dependencies": { - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "locate-path": "^3.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" } }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "p-try": "^2.0.0" } }, - "get-stream": { + "p-locate": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", "dev": true, "requires": { - "shebang-regex": "^1.0.0" + "find-up": "^3.0.0" } }, - "shebang-regex": { + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "dev": true + }, + "schema-utils": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", "dev": true, "requires": { - "isexe": "^2.0.0" + "ansi-regex": "^2.0.0" } - } - } - }, - "text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", - "dev": true - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true - }, - "timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", - "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", "dev": true, "requires": { - "os-tmpdir": "~1.0.2" + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + } } }, - "toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" - }, - "touch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", + "webpack-merge": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", "dev": true, "requires": { - "nopt": "~1.0.10" + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" } }, - "triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" - }, - "tslib": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.11.1.tgz", - "integrity": "sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==", + "webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "dev": true }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, "requires": { - "prelude-ls": "~1.1.2" + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" } }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "dev": true }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "undefsafe": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.3.tgz", - "integrity": "sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A==", + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "requires": { - "debug": "^2.2.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - } + "isexe": "^2.0.0" } }, - "unique-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", - "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, "requires": { - "crypto-random-string": "^1.0.0" + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" } }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", + "dev": true }, - "unzip-response": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", - "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=", + "wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true }, - "update-notifier": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", - "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", "dev": true, "requires": { - "boxen": "^1.2.1", - "chalk": "^2.0.1", - "configstore": "^3.0.0", - "import-lazy": "^2.1.0", - "is-ci": "^1.0.10", - "is-installed-globally": "^0.1.0", - "is-npm": "^1.0.0", - "latest-version": "^3.0.0", - "semver-diff": "^2.0.0", - "xdg-basedir": "^3.0.0" + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" }, "dependencies": { - "ci-info": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", - "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", "dev": true }, - "is-ci": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", - "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { - "ci-info": "^1.5.0" + "ansi-regex": "^4.1.0" } } } }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", - "dev": true, - "requires": { - "prepend-http": "^1.0.1" - } - }, - "util-deprecate": { + "wrappy": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" - }, - "uuid": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz", - "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==" - }, - "v8-compile-cache": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz", - "integrity": "sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", "dev": true, "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" + "async-limiter": "~1.0.0" } }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "requires": { - "isexe": "^2.0.0" - } + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, "requires": { - "string-width": "^1.0.2 || 2" + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" }, "dependencies": { "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "find-up": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } }, "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "dev": true }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" } }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, "requires": { - "ansi-regex": "^3.0.0" + "p-try": "^2.0.0" } - } - } - }, - "widest-line": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", - "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", - "dev": true, - "requires": { - "string-width": "^2.1.1" - }, - "dependencies": { - "ansi-regex": { + }, + "p-locate": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": { + "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" + "strip-ansi": "^5.1.0" } }, "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "winston": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.2.1.tgz", - "integrity": "sha512-zU6vgnS9dAWCEKg/QYigd6cgMVVNwyTzKs81XZtTFuRwJOcDdBg7AU0mXVyNbs7O5RH2zdv+BdNZUlx7mXPuOw==", - "requires": { - "async": "^2.6.1", - "diagnostics": "^1.1.1", - "is-stream": "^1.1.0", - "logform": "^2.1.1", - "one-time": "0.0.4", - "readable-stream": "^3.1.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.3.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "ansi-regex": "^4.1.0" } } } }, - "winston-transport": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.3.0.tgz", - "integrity": "sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A==", - "requires": { - "readable-stream": "^2.3.6", - "triple-beam": "^1.2.0" - } - }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, - "write": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", - "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", - "dev": true, - "requires": { - "mkdirp": "^0.5.1" - } - }, - "write-file-atomic": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", - "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", "dev": true, "requires": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" } }, - "x-xss-protection": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/x-xss-protection/-/x-xss-protection-1.3.0.tgz", - "integrity": "sha512-kpyBI9TlVipZO4diReZMAHWtS0MMa/7Kgx8hwG/EuZLiA6sg4Ah/4TRdASHhRRN3boobzcYgFRUFSgHRge6Qhg==" - }, - "xdg-basedir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", - "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=", - "dev": true - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true - }, - "yamljs": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/yamljs/-/yamljs-0.3.0.tgz", - "integrity": "sha512-C/FsVVhht4iPQYXOInoxUM/1ELSf9EsgKH34FofQOp6hwCPrW4vG4w5++TED3xRUo8gD7l0P1J1dLlDYzODsTQ==", - "requires": { - "argparse": "^1.0.7", - "glob": "^7.0.5" - } } } } diff --git a/package.json b/package.json index b889e18e9..3fd4feb37 100644 --- a/package.json +++ b/package.json @@ -1,71 +1,39 @@ { - "name": "learn-words-rs-rest-service", + "name": "onlinestore", "version": "1.0.0", - "repository": { - "type": "git", - "url": "" - }, - "type": "commonjs", - "description": "LearnWords REST service for RS School", - "main": "src/server.js", + "description": "", + "main": "script.js", "scripts": { - "start": "node src/server.js", - "start:dev": "nodemon src/server.js", - "lint": "eslint ./ --ignore-path .gitignore --fix", - "heroku-postbuild": "npm install --only=dev" + "start": "webpack serve --open --config ./webpack.config.js --env mode=dev", + "build": "webpack --config ./webpack.config.js --env mode=prod", + "lint": "eslint . --ext .ts" }, - "keywords": [ - "rs", - "school", - "rest", - "node", - "express", - "LearnWords" - ], + "keywords": [], + "author": "", "license": "ISC", - "engines": { - "node": "12.16.x" - }, - "husky": { - "hooks": { - "pre-commit": "lint-staged" - } - }, - "lint-staged": { - "*.js": [ - "npm run lint", - "git add" - ] + "devDependencies": { + "@typescript-eslint/eslint-plugin": "^5.30.0", + "@typescript-eslint/parser": "^5.30.0", + "clean-webpack-plugin": "^3.0.0", + "copy-webpack-plugin": "^7.0.0", + "css-loader": "^5.1.0", + "eslint": "^7.27.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-import": "^2.23.3", + "eslint-plugin-prettier": "^3.4.0", + "eslint-webpack-plugin": "^3.2.0", + "html-webpack-plugin": "^5.2.0", + "prettier": "2.2.1", + "style-loader": "^2.0.0", + "svg-inline-loader": "^0.8.2", + "ts-loader": "^9.3.1", + "typescript": "^4.7.4", + "webpack": "^5.37.1", + "webpack-cli": "^4.5.0", + "webpack-dev-server": "^3.11.2", + "webpack-merge": "^5.7.3" }, "dependencies": { - "@hapi/joi": "^17.1.1", - "bcrypt": "^5.0.0", - "cors": "^2.8.5", - "cross-env": "6.0.3", - "dotenv": "8.2.0", - "express": "4.17.1", - "express-async-errors": "^3.1.1", - "helmet": "^3.22.0", - "http-errors": "^1.7.3", - "http-status-codes": "^1.4.0", - "joi-objectid": "^3.0.1", - "jsonwebtoken": "^8.5.1", - "mongoose": "^5.11.11", - "morgan": "^1.10.0", - "npm": "^6.14.11", - "swagger-ui-express": "4.1.2", - "uuid": "3.3.3", - "winston": "^3.2.1", - "yamljs": "0.3.0" - }, - "devDependencies": { - "eslint": "6.7.2", - "eslint-config-prettier": "6.7.0", - "eslint-plugin-node": "10.0.0", - "eslint-plugin-prettier": "3.1.1", - "husky": "3.1.0", - "lint-staged": "9.5.0", - "nodemon": "^2.0.2", - "prettier": "1.19.1" + "axios": "^0.27.2" } } diff --git a/sprintGame/scriptSprint.ts b/sprintGame/scriptSprint.ts new file mode 100644 index 000000000..043035d19 --- /dev/null +++ b/sprintGame/scriptSprint.ts @@ -0,0 +1,18 @@ +import "./style.css"; +import { startPages } from "./ts/content"; +import { startPageListener } from "./ts/listener"; +import { createArrayWords } from "./ts/requestAPI"; +import { IWords, IflagLevel } from "./ts/interface"; +import { sortArrayWords } from "./ts/function"; + +export const difficultyLevel: IflagLevel = { level: 0 }; +export const arrWords: Array = []; + +export function startGameSprint() { + startPages(); + createArrayWords(difficultyLevel.level).then((res) => { + arrWords.push(...res); + sortArrayWords(arrWords); + }); + startPageListener(); +} \ No newline at end of file diff --git a/sprintGame/style.css b/sprintGame/style.css new file mode 100644 index 000000000..bb8833a1d --- /dev/null +++ b/sprintGame/style.css @@ -0,0 +1,200 @@ +* { + box-sizing: border-box; + margin: 0; +} +.container-wrapper { + padding-top: 50px; + display: flex; + justify-content: center; + align-items: center; + background-color: rgba(235, 249, 250, 0.411); +} + +.container-sprint { + width: 420px; + border: 3px solid rgb(13, 109, 13); + border-radius: 10px; +} + +.header-sprint{ + text-align: center; + margin: 10px 0; +} + +.block-description { + text-align: center; +} + +.description-style { + margin: 10px 0; + font-size: 17px; +} + +.btm-start-sprint { + display: block; + width: 100px; + height: 30px; + margin: 15px auto; + font-size: 17px; + border-radius: 5px; + background-color: rgb(245, 194, 228); +} + +.container-start-game { + background-color: rgba(235, 249, 250, 0.411); + padding-top: 40px; + display: flex; + justify-content: center; + position: relative; +} + + +.timer { + position: absolute; + left: 50px; + top: 40px; + width: 50px; + height: 50px; + border: 2px solid rgb(13, 109, 13); + border-radius: 25px; + text-align: center; + line-height: 45px; + font-size: 24px; +} + +.block-game-sprint { + padding-top: 20px; + width: 500px; + background-color: blanchedalmond; + border: 2px solid rgb(13, 109, 13); + border-radius: 25px; + text-align: center; + +} + +.flag-sprint { + width: 20px; + height: 20px; + border-radius: 10px; + background-color: rgba(169, 175, 173); + margin: 0 5px; +} + +.counter-sprint { + width: 20px; + margin: 0 auto; + font-size: 25px; +} + +.container-flag-sprint { + padding: 20px 0; + display: flex; + justify-content: center; +} + +.button-answer-sprint { + display: flex; + justify-content: space-around; + padding: 20px 0; +} + +.active { + background-color: rgba(37, 116, 21, 0.719); +} + +.additional-counter-sprint { + display: none; + font-size: 25px; + padding-bottom: 5px; +} + +.eng-word-sprint, .ru-word-sprint { + font-size: 25px; + padding: 10px 0; +} + +.btn-answer { + width: 150px; + height: 40px; + font-size: 20px; + border-radius: 10px; +} + +#falseSprint { + background-color: rgb(252, 27, 27); +} + +#trueSprint { + background-color: rgb(10, 173, 31); +} + +.separator-true-answer { + display: none; + position: absolute; + top: 0; + left: 223px; + width: 50px; + height: 50px; + border: 2px solid black; + background-color: rgb(10, 173, 31); + border-radius: 25px; + font-size: 25px; + line-height: 45px; +} + +.separator-false-answer { + display: none; + position: absolute; + top: 0; + left: 223px; + width: 50px; + height: 50px; + border: 2px solid black; + background-color: rgb(252, 27, 27); + border-radius: 25px; + font-size: 25px; + line-height: 45px; +} + +.separator-block-sprint { + position: relative; + padding-top: 15px; +} + +.container-end-game { + padding-top: 30px; + display: flex; + flex-direction: column; + align-items: center; + width: 420px; + border: 3px solid rgb(13, 109, 13); + border-radius: 10px; + justify-content: center; +} + +.header-result-sprint { + font-size: 30px; +} + +.result-sprint { + font-size: 25px; + padding-top: 20px; +} + +.words-answer-block { +width: 120px; +height: 100px; +overflow: auto; +font-size: 20px; +padding: 5px 0; + +} + +.block-cont-result { + padding: 15px 0; + font-size: 20px; +} + +.learn-word { + text-align: center; +} \ No newline at end of file diff --git a/sprintGame/ts/content.ts b/sprintGame/ts/content.ts new file mode 100644 index 000000000..f38718f08 --- /dev/null +++ b/sprintGame/ts/content.ts @@ -0,0 +1,96 @@ +import { IWords, IanswerSprint } from "./interface"; +import { getramdomWord } from "./function"; + + + +export const startPages = async () => { + const mainInfoContainer = document.querySelector(".main") as HTMLElement; + const html = ` +
+
+

Спринт

+
+

Мини-игра Спринит проверит на сколько хорошо ты знаешь переведо слов

+

Игра длится 1 минуту или пока не закончаться слова.

+

Чтобы сделать выбор, кликай мышью или клавишами → / ←

+ +
+ +
+
+`; + if(mainInfoContainer) { + mainInfoContainer.innerHTML = html; + } +}; + +//export const flagTrueFalse: IflagTrueFalse = {value: null}; +export const startGame = async (arr: Array) => { + const mainInfoContainer = document.querySelector(".main") as HTMLElement; + const count = getramdomWord(); + const html = ` +
+
59
+
+
0
+
+
+
+
+
+
+ 0 очков
+

${arr[count.numWord].word}

+

${arr[count.wordTranslate].wordTranslate}

+
+ -------------------------------------------------------------------------- +
+
+
+
+ + +
+
+
+`; + if(mainInfoContainer) { + mainInfoContainer.innerHTML = html; + } + +}; + +export const endGame = async (result: string | null, countObj: IanswerSprint) => { + const mainInfoContainer = document.querySelector(".main") as HTMLElement; + let wordsAnswerBlock = ``; + countObj.wordsAnswer.forEach(elem => { + wordsAnswerBlock += `
${elem}
` + }) + const html = ` +
+
+
Ваш результат
+
${result}
+
+ Количество ошибок: + ${countObj.countErr} +
+
+ Выучено слов: + ${countObj.countAnswer} +
+
${wordsAnswerBlock}
+
+
+`; + if(mainInfoContainer) { + mainInfoContainer.innerHTML = html; + } +}; + diff --git a/sprintGame/ts/function.ts b/sprintGame/ts/function.ts new file mode 100644 index 000000000..3dc6fe68d --- /dev/null +++ b/sprintGame/ts/function.ts @@ -0,0 +1,102 @@ +import { endGame } from "./content"; +import { IWords, IRamdom, IflagStartGame } from "./interface"; +import { answerSprint, getGameListener } from "./listener"; + +const audio = new Audio(); +export const flagStartGame: IflagStartGame = { + value: null, + indexStart: 0, +}; + +export function startTimer() { + playAudioTimer(); + let timerId; + const timer = document.querySelector(".timer"); + if (!(timer?.textContent === "0")) { + timer.textContent = `${Number(timer.textContent) - 1}`; + timerId = setTimeout(startTimer, 1000); + } else { + flagStartGame.indexStart = 0; + const counterSprint = document.querySelector(".counter-sprint"); + if (counterSprint) { + const buttonAnswer = document.querySelectorAll(".btn-answer"); + buttonAnswer.forEach((elem) => + elem.removeEventListener("click", getGameListener) + ); + const resultSprint = counterSprint?.textContent; + clearTimeout(timerId); + endGame(resultSprint, answerSprint); + } + } +} + +export function getramdomWord() { + const ar = [true, false]; + let rand = Math.round(Math.random()); + flagStartGame.value = String(ar[rand]); + const obj: IRamdom = { + bool: ar[rand], + numWord: NaN, + wordTranslate: NaN, + }; + + if (ar[rand]) { + obj.numWord = flagStartGame.indexStart; + obj.wordTranslate = flagStartGame.indexStart; + } else { + const count = random(flagStartGame.indexStart) + console.log(count); + obj.numWord = flagStartGame.indexStart; + if(count) { + obj.wordTranslate = count; + } + } + flagStartGame.indexStart += 1; + return obj; +} + +export function replaceWord(arr: Array) { + try { + const engWordSprint = document.querySelector(".eng-word-sprint"); + const ruWordSprint = document.querySelector(".ru-word-sprint"); + const count = getramdomWord(); + if (count) { + if (engWordSprint) { + engWordSprint.textContent = arr[count.numWord].word; + } + if (ruWordSprint) { + ruWordSprint.textContent = arr[count.wordTranslate].wordTranslate; + } + } + } catch { + flagStartGame.indexStart = 0; + const counterSprint = document.querySelector(".counter-sprint"); + if (counterSprint) { + const resultSprint = counterSprint?.textContent; + endGame(resultSprint, answerSprint); + } + } +} + +function playAudioTimer() { + //audio.src = 'https://vsezvuki.com/data/629-oplata-applepay-podtverzhdenie-v-appstore-iphone.mp3'; + audio.src = + "https://vsezvuki.com/data/629-klaviatura-iphone-nabor-teksta.mp3"; + audio.currentTime = 0; + audio.play(); +} + +export function sortArrayWords(array : Array | Array) { + for (let i = array.length - 1; i > 0; i--) { + let j = Math.floor(Math.random() * (i + 1)); + [array[i], array[j]] = [array[j], array[i]]; + } +} + +function random(num: number) { + const randomNum = Math.floor(Math.random() * 100); + if(!(num === randomNum)) { + return randomNum + } + else { random(num) } +} diff --git a/sprintGame/ts/interface.ts b/sprintGame/ts/interface.ts new file mode 100644 index 000000000..6a2d8e766 --- /dev/null +++ b/sprintGame/ts/interface.ts @@ -0,0 +1,37 @@ +export interface IWords { + id: string; + group: number; + page: number; + word: string; + image: string; + audio: string; + audioMeaning: string; + audioExample: string; + textMeaning: string; + textExample: string; + transcription: string; + wordTranslate: string; + textMeaningTranslate: string; + textExampleTranslate: string; +}; + +export interface IRamdom { + bool: boolean, + numWord: number, + wordTranslate: number +}; + +export interface IflagStartGame { + value: string | null, + indexStart: number +}; + +export interface IflagLevel { + level: number +}; + +export interface IanswerSprint { + countErr: number, + countAnswer: number, + wordsAnswer: Array +}; \ No newline at end of file diff --git a/sprintGame/ts/listener.ts b/sprintGame/ts/listener.ts new file mode 100644 index 000000000..aea6b52ca --- /dev/null +++ b/sprintGame/ts/listener.ts @@ -0,0 +1,194 @@ +import { difficultyLevel, arrWords } from "../scriptSprint"; +import { createArrayWords } from "./requestAPI"; +import { startGame } from "./content"; +import { startTimer, flagStartGame, replaceWord } from "./function"; +import { IanswerSprint } from "./interface"; + +const audio = new Audio(); + +export const answerSprint: IanswerSprint = { + countErr: 0, + countAnswer: 0, + wordsAnswer: [] +}; +let countflag = -1; + +export function startPageListener() { + const levelWordsSprint = ( + document.getElementById("level-words-sprint") + ); + levelWordsSprint?.addEventListener("change", async () => { + difficultyLevel.level = Number(levelWordsSprint.value); + arrWords.splice(0, arrWords.length); + arrWords.push(...(await createArrayWords(difficultyLevel.level))); + }); + + const btmStartSprint = document.querySelector(".btm-start-sprint"); + btmStartSprint?.addEventListener("click", () => { + startGame(arrWords); + startGameListener(); + setTimeout(startTimer, 1000); + }); +} + +function startGameListener() { + const buttonAnswer = document.querySelectorAll(".btn-answer"); + buttonAnswer.forEach((elem) => { + elem.addEventListener("click", getGameListener); + }); + window.addEventListener("keydown", getGameListenerKeydown); +} + +export function getGameListener(event: Event) { + const counterSprint = document.querySelector(".counter-sprint"); + const flagSprint = document.querySelectorAll(".flag-sprint"); + const valueCounterSprint = document.querySelector(".value-counter-sprint"); + const engWordSprint = document.querySelector(".eng-word-sprint"); + const separatorTrueAnswer = document.querySelector(".separator-true-answer"); + const separatorFalseAnswer = document.querySelector(".separator-false-answer"); + const additionalCounterSprint = ( + document.querySelector(".additional-counter-sprint") + ); + const engWordSprintNow = engWordSprint?.textContent; + if ((event.target as HTMLElement)?.dataset.btn === flagStartGame.value) { + playAudioCool() + if (flagStartGame.value === 'true') { + answerSprint.countAnswer += 1; + if (engWordSprintNow) { + answerSprint.wordsAnswer.push(engWordSprintNow); + } + } + separatorTrueAnswer.style.display = "inline-block"; + setTimeout(() => { + separatorTrueAnswer.style.display = "none"; + }, 500) + if (counterSprint) { + counterSprint.textContent = ( + Number(counterSprint.textContent) + + 10 + + Number(valueCounterSprint?.textContent) + ).toString(); + } + if (countflag < 2) { + countflag += 1; + flagSprint[countflag].classList.add("active"); + } else if (countflag === 2) { + flagSprint.forEach((elem) => elem.classList.remove("active")); + countflag = -1; + if ( + valueCounterSprint && + Number(valueCounterSprint.textContent) <= 60 + ) { + valueCounterSprint.textContent = `${ + Number(valueCounterSprint.textContent) + 20 + }`; + + } else { + const flag1 = flagSprint[0]; + const flag2 = flagSprint[1]; + const flag3 = flagSprint[2]; + flag1.style.display = "none"; + flag3.style.display = "none"; + flag2.classList.remove("active"); + } + additionalCounterSprint.style.display = "block"; + } + } else { + playAudioError() + separatorFalseAnswer.style.display = "inline-block"; + setTimeout(() => { + separatorFalseAnswer.style.display = "none"; + }, 500) + flagSprint.forEach((elem) => elem.classList.remove("active")); + countflag = -1; + answerSprint.countErr += 1; + } +replaceWord(arrWords); +} + +function playAudioError() { + audio.src = 'https://vsezvuki.com/data/905-gudok-kak-pomekha.mp3'; + audio.currentTime = 0; + audio.play(); +} + +function playAudioCool() { + audio.src = 'https://vsezvuki.com/data/630-whatsapp-korotky-rington.mp3'; + audio.currentTime = 0; + audio.play(); +} + +function getGameListenerKeydown(event: KeyboardEvent) { + const counterSprint = document.querySelector(".counter-sprint"); + const flagSprint = document.querySelectorAll(".flag-sprint"); + const valueCounterSprint = document.querySelector(".value-counter-sprint"); + const engWordSprint = document.querySelector(".eng-word-sprint"); + const separatorTrueAnswer = document.querySelector(".separator-true-answer"); + const separatorFalseAnswer = document.querySelector(".separator-false-answer"); + const additionalCounterSprint = ( + document.querySelector(".additional-counter-sprint") + ); + const engWordSprintNow = engWordSprint?.textContent; + + if (event.key === 'ArrowLeft' || event.key === 'ArrowRight') { + if ((event.key === 'ArrowRight' && flagStartGame.value === "true") || (event.key === 'ArrowLeft' && flagStartGame.value === "false") ) { + console.log('true') + playAudioCool() + if (flagStartGame.value === 'true') { + answerSprint.countAnswer += 1; + if (engWordSprintNow) { + answerSprint.wordsAnswer.push(engWordSprintNow); + } + } + separatorTrueAnswer.style.display = "inline-block"; + setTimeout(() => { + separatorTrueAnswer.style.display = "none"; + }, 500) + if (counterSprint) { + counterSprint.textContent = ( + Number(counterSprint.textContent) + + 10 + + Number(valueCounterSprint?.textContent) + ).toString(); + } + if (countflag < 2) { + countflag += 1; + flagSprint[countflag].classList.add("active"); + } else if (countflag === 2) { + flagSprint.forEach((elem) => elem.classList.remove("active")); + countflag = -1; + if ( + valueCounterSprint && + Number(valueCounterSprint.textContent) <= 60 + ) { + valueCounterSprint.textContent = `${ + Number(valueCounterSprint.textContent) + 20 + }`; + + } else { + const flag1 = flagSprint[0]; + const flag2 = flagSprint[1]; + const flag3 = flagSprint[2]; + flag1.style.display = "none"; + flag3.style.display = "none"; + flag2.classList.remove("active"); + } + additionalCounterSprint.style.display = "block"; + } + } + + if ((event.key === 'ArrowLeft' && flagStartGame.value === "true") || (event.key === 'ArrowRight' && flagStartGame.value === "false")) { + console.log('false') + playAudioError() + separatorFalseAnswer.style.display = "inline-block"; + setTimeout(() => { + separatorFalseAnswer.style.display = "none"; + }, 500) + flagSprint.forEach((elem) => elem.classList.remove("active")); + countflag = -1; + answerSprint.countErr += 1; + } + +replaceWord(arrWords); + } +} \ No newline at end of file diff --git a/sprintGame/ts/requestAPI.ts b/sprintGame/ts/requestAPI.ts new file mode 100644 index 000000000..02f69394f --- /dev/null +++ b/sprintGame/ts/requestAPI.ts @@ -0,0 +1,23 @@ +import { IWords } from "./interface"; +import { sortArrayWords } from "./function"; + +const getWords = async (page: number, group: number) => { + const wordsResponse = await fetch( + `https://react-learnwords-184.herokuapp.com/words?page=${page}&group=${group}` + ); + const words = await wordsResponse.json(); + return words; +}; + +export const createArrayWords = async (level: number) => { + const arrNum = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]; + sortArrayWords(arrNum); + const arrWords = []; + for (let i = 0; i < 5; i++) { + let words = (await getWords(arrNum[i], level)).map((elem: IWords) => { + return { word: elem.word, wordTranslate: elem.wordTranslate }; + }); + arrWords.push(...words); + } + return arrWords; +}; diff --git a/src/app.js b/src/app.js deleted file mode 100644 index 73c38fdb9..000000000 --- a/src/app.js +++ /dev/null @@ -1,76 +0,0 @@ -require('express-async-errors'); -const express = require('express'); -const createError = require('http-errors'); -const swaggerUI = require('swagger-ui-express'); -const path = require('path'); -const YAML = require('yamljs'); -const morgan = require('morgan'); -const cors = require('cors'); -const helmet = require('helmet'); -require('express-async-errors'); -const { NOT_FOUND } = require('http-status-codes'); - -const winston = require('./common/logging'); -const wordRouter = require('./resources/words/word.router'); -const signinRouter = require('./resources/authentication/signin.router'); -const userRouter = require('./resources/users/user.router'); -const userTokenRouter = require('./resources/token/token.router'); -const userWordsRouter = require('./resources/userWords/userWord.router'); -const aggregatedWordsRouter = require('./resources/aggregatedWords/aggregatedWord.router'); -const statisticRouter = require('./resources/statistics/statistic.router'); -const settingRouter = require('./resources/settings/setting.router'); -const errorHandler = require('./errors/errorHandler'); -const checkAuthentication = require('./resources/authentication/checkAuthentication'); -const { userIdValidator } = require('./utils/validation/validator'); - -const app = express(); -const swaggerDocument = YAML.load(path.join(__dirname, '../doc/api.yaml')); - -app.use(helmet()); -app.use(cors()); -app.use(express.json()); - -app.use('/files', express.static(path.join(__dirname, '../files'))); - -app.use(checkAuthentication); - -app.use('/doc', swaggerUI.serve, swaggerUI.setup(swaggerDocument)); - -app.use('/', (req, res, next) => { - if (req.originalUrl === '/') { - res.send('Service is running!'); - return; - } - next(); -}); - -app.use( - morgan( - ':method :status :url :userId size req :req[content-length] res :res[content-length] - :response-time ms', - { - stream: winston.stream - } - ) -); - -app.use('/words', wordRouter); - -app.use('/signin', signinRouter); - -app.use('/users', userRouter); - -userRouter.use('/:id/tokens', userIdValidator, userTokenRouter); - -userRouter.use('/:id/words', userIdValidator, userWordsRouter); - -userRouter.use('/:id/aggregatedWords', userIdValidator, aggregatedWordsRouter); - -userRouter.use('/:id/statistics', userIdValidator, statisticRouter); - -userRouter.use('/:id/settings', userIdValidator, settingRouter); - -app.use((req, res, next) => next(createError(NOT_FOUND))); - -app.use(errorHandler); - -module.exports = app; diff --git a/src/common/config.js b/src/common/config.js deleted file mode 100644 index 62391515a..000000000 --- a/src/common/config.js +++ /dev/null @@ -1,21 +0,0 @@ -const dotenv = require('dotenv'); -const path = require('path'); - -dotenv.config({ - path: path.join(__dirname, '../../.env') -}); - -module.exports = { - PORT: process.env.PORT, - NODE_ENV: process.env.NODE_ENV, - MONGO_CONNECTION_STRING: process.env.MONGO_CONNECTION_STRING, - AUTH_MODE: process.env.AUTH_MODE === 'true', - MAX_SYMBOLS_PER_OBJECT: 10000, - MAX_OPTIONAL_PROPERTIES: 100, - MIN_PASSWORD_LENGTH: 8, - LOGS_DIR: path.join(__dirname, '../../logs'), - JWT_SECRET_KEY: process.env.JWT_SECRET_KEY, - JWT_EXPIRE_TIME: '4h', - JWT_REFRESH_SECRET_KEY: process.env.JWT_REFRESH_SECRET_KEY, - JWT_REFRESH_EXPIRE_TIME: 4.5 * 60 * 60 -}; diff --git a/src/common/logging.js b/src/common/logging.js deleted file mode 100644 index 939d98105..000000000 --- a/src/common/logging.js +++ /dev/null @@ -1,63 +0,0 @@ -const winston = require('winston'); -const morgan = require('morgan'); -const { combine, timestamp, prettyPrint, colorize, cli } = winston.format; -const { LOGS_DIR } = require('./config'); - -morgan.token('userId', req => JSON.stringify(req.userId)); - -const format = combine(timestamp(), prettyPrint()); -const options = { - fileUnhandled: { - format, - level: 'error', - filename: `${LOGS_DIR}/exceptions.log`, - handleExceptions: true, - json: true, - maxsize: 1024 * 5000, - maxFiles: 5, - colorize: false - }, - fileError: { - format, - level: 'error', - filename: `${LOGS_DIR}/errors.log`, - json: true, - maxsize: 1024 * 5000, - maxFiles: 5, - colorize: false - }, - fileInfo: { - format, - level: 'info', - filename: `${LOGS_DIR}/app.log`, - handleExceptions: true, - json: true, - maxsize: 1024 * 5000, - maxFiles: 5, - colorize: false - } -}; - -const logger = winston.createLogger({ - transports: [ - new winston.transports.File(options.fileError), - new winston.transports.File(options.fileInfo) - ], - exceptionHandlers: [new winston.transports.File(options.fileUnhandled)] -}); - -// if (process.env.NODE_ENV === 'development') { -logger.add( - new winston.transports.Console({ - format: combine(colorize(), cli()), - handleExceptions: true, - colorize: true - }) -); -// } - -logger.stream = { - write: message => logger.info(message) -}; - -module.exports = logger; diff --git a/src/errors/appErrors.js b/src/errors/appErrors.js deleted file mode 100644 index 386ed1402..000000000 --- a/src/errors/appErrors.js +++ /dev/null @@ -1,59 +0,0 @@ -const { - NOT_FOUND, - EXPECTATION_FAILED, - UNAUTHORIZED, - FORBIDDEN, - BAD_REQUEST, - getStatusText -} = require('http-status-codes'); - -class AppError extends Error { - constructor(message) { - super(message); - } -} - -class NotFoundError extends AppError { - constructor(entity, params, message) { - super( - message || `Couldn't find a(an) ${entity} with: ${JSON.stringify(params)}` - ); - this.status = NOT_FOUND; - } -} - -class BadRequestError extends AppError { - constructor(message) { - super(message); - this.status = BAD_REQUEST; - } -} - -class EntityExistsError extends AppError { - constructor(message) { - super(message); - this.status = EXPECTATION_FAILED; - } -} - -class AuthorizationError extends AppError { - constructor(message) { - super(message || getStatusText(UNAUTHORIZED)); - this.status = UNAUTHORIZED; - } -} - -class AuthenticationError extends AppError { - constructor(message) { - super(message || getStatusText(FORBIDDEN)); - this.status = FORBIDDEN; - } -} - -module.exports = { - NOT_FOUND_ERROR: NotFoundError, - BAD_REQUEST_ERROR: BadRequestError, - AUTHORIZATION_ERROR: AuthorizationError, - AUTHENTICATION_ERROR: AuthenticationError, - ENTITY_EXISTS: EntityExistsError -}; diff --git a/src/errors/errorHandler.js b/src/errors/errorHandler.js deleted file mode 100644 index 85331a273..000000000 --- a/src/errors/errorHandler.js +++ /dev/null @@ -1,16 +0,0 @@ -const { INTERNAL_SERVER_ERROR, getStatusText } = require('http-status-codes'); -const logger = require('../common/logging'); - -const handle = (err, req, res, next) => { - if (err.status) { - res.status(err.status).send(err.message); - } else { - logger.error(err.stack); - res - .status(INTERNAL_SERVER_ERROR) - .send(getStatusText(INTERNAL_SERVER_ERROR)); - } - next(); -}; - -module.exports = handle; diff --git a/src/resources/aggregatedWords/aggregatedWord.db.repository.js b/src/resources/aggregatedWords/aggregatedWord.db.repository.js deleted file mode 100644 index 3020bca9e..000000000 --- a/src/resources/aggregatedWords/aggregatedWord.db.repository.js +++ /dev/null @@ -1,99 +0,0 @@ -const mongoose = require('mongoose'); - -const Word = require('../words/word.model'); -const { NOT_FOUND_ERROR } = require('../../errors/appErrors'); -const ENTITY_NAME = 'user word'; - -const lookup = { - $lookup: { - from: 'userWords', - let: { word_id: '$_id' }, - pipeline: [ - { - $match: { - $expr: { - $and: [ - { $eq: ['$userId', null] }, - { $eq: ['$wordId', '$$word_id'] } - ] - } - } - } - ], - as: 'userWord' - } -}; - -const pipeline = [ - { - $unwind: { - path: '$userWord', - preserveNullAndEmptyArrays: true - } - }, - { - $unset: [ - '__v', - 'userWord._id', - 'userWord.wordId', - 'userWord.userId', - 'userWord.__v' - ] - } -]; - -const getAll = async (userId, group, page, perPage, filter) => { - lookup.$lookup.pipeline[0].$match.$expr.$and[0].$eq[1] = mongoose.Types.ObjectId( - userId - ); - - const matches = []; - - if (group || group === 0) { - matches.push({ - $match: { - group - } - }); - } - - if (filter) { - matches.push({ - $match: { - ...filter - } - }); - } - const facet = { - $facet: { - paginatedResults: [{ $skip: page * perPage }, { $limit: perPage }], - totalCount: [ - { - $count: 'count' - } - ] - } - }; - return await Word.aggregate([lookup, ...pipeline, ...matches, facet]); -}; - -const get = async (wordId, userId) => { - lookup.$lookup.pipeline[0].$match.$expr.$and[0].$eq[1] = mongoose.Types.ObjectId( - userId - ); - - const match = { - $match: { - _id: mongoose.Types.ObjectId(wordId) - } - }; - - const userWord = await Word.aggregate([match, lookup, ...pipeline]); - if (!userWord) { - throw new NOT_FOUND_ERROR(ENTITY_NAME, { wordId, userId }); - } - - return userWord; -}; - -module.exports = { getAll, get }; diff --git a/src/resources/aggregatedWords/aggregatedWord.model.js b/src/resources/aggregatedWords/aggregatedWord.model.js deleted file mode 100644 index 9abf0025f..000000000 --- a/src/resources/aggregatedWords/aggregatedWord.model.js +++ /dev/null @@ -1,22 +0,0 @@ -const mongoose = require('mongoose'); -const Schema = mongoose.Schema; -const { addMethods } = require('../../utils/toResponse'); - -const UserWordsSchema = new Schema( - { - wordId: { type: String, required: true }, - userId: { type: String, required: true }, - difficulty: { type: String, required: false }, - optional: { - type: Object, - required: false - } - }, - { collection: 'userWords' } -); - -UserWordsSchema.index({ wordId: 1, userId: 1 }, { unique: true }); - -addMethods(UserWordsSchema); - -module.exports = mongoose.model('UserWords', UserWordsSchema); diff --git a/src/resources/aggregatedWords/aggregatedWord.router.js b/src/resources/aggregatedWords/aggregatedWord.router.js deleted file mode 100644 index dfd558436..000000000 --- a/src/resources/aggregatedWords/aggregatedWord.router.js +++ /dev/null @@ -1,39 +0,0 @@ -const { OK } = require('http-status-codes'); -const router = require('express').Router({ mergeParams: true }); - -const { wordId } = require('../../utils/validation/schemas'); -const { validator } = require('../../utils/validation/validator'); -const aggregatedWordsService = require('./aggregatedWord.service'); -const { BAD_REQUEST_ERROR } = require('../../errors/appErrors'); -const extractQueryParam = require('../../utils/getQueryNumberParameter'); - -router.get('/', async (req, res) => { - const perPage = extractQueryParam(req.query.wordsPerPage, 10); - const page = extractQueryParam(req.query.page, 0); - const group = extractQueryParam(req.query.group); - - if ((req.query.group && isNaN(group)) || isNaN(page) || isNaN(perPage)) { - throw new BAD_REQUEST_ERROR( - 'Wrong query parameters: the group, page and words-per-page numbers should be valid integers' - ); - } - - const filter = req.query.filter ? JSON.parse(req.query.filter) : null; - - const words = await aggregatedWordsService.getAll( - req.userId, - group, - page, - perPage, - filter - ); - res.status(OK).send(words); -}); - -router.get('/:wordId', validator(wordId, 'params'), async (req, res) => { - const word = await aggregatedWordsService.get(req.params.wordId, req.userId); - - res.status(OK).send(word); -}); - -module.exports = router; diff --git a/src/resources/aggregatedWords/aggregatedWord.service.js b/src/resources/aggregatedWords/aggregatedWord.service.js deleted file mode 100644 index f2307989b..000000000 --- a/src/resources/aggregatedWords/aggregatedWord.service.js +++ /dev/null @@ -1,8 +0,0 @@ -const wordRepo = require('./aggregatedWord.db.repository'); - -const getAll = async (userId, group, page, perPage, filter) => - wordRepo.getAll(userId, group, page, perPage, filter); - -const get = async (wordId, userId) => wordRepo.get(wordId, userId); - -module.exports = { getAll, get }; diff --git a/src/resources/authentication/checkAuthentication.js b/src/resources/authentication/checkAuthentication.js deleted file mode 100644 index 21a72fd54..000000000 --- a/src/resources/authentication/checkAuthentication.js +++ /dev/null @@ -1,52 +0,0 @@ -const jwt = require('jsonwebtoken'); -const { - JWT_SECRET_KEY, - JWT_REFRESH_SECRET_KEY -} = require('../../common/config'); -const { AUTHORIZATION_ERROR } = require('../../errors/appErrors'); - -const ALLOWED_PATHS = ['/signin', '/signup']; -const DOC_PATH_REGEX = /^\/doc\/?$/; -const DOC_PATH_RESOURCES_REGEX = /^\/doc\/.+$/; -const WORDS_PATH_REGEX = /^\/words.*$/; -const USERS_PATH = '/users'; - -function isOpenPath(path) { - return ( - ALLOWED_PATHS.includes(path) || - DOC_PATH_REGEX.test(path) || - DOC_PATH_RESOURCES_REGEX.test(path) || - WORDS_PATH_REGEX.test(path) - ); -} - -const checkAuthentication = (req, res, next) => { - if (isOpenPath(req.path)) { - return next(); - } - - if (req.path === USERS_PATH && req.method === 'POST') { - return next(); - } - - const rawToken = req.headers.authorization; - if (!rawToken) { - throw new AUTHORIZATION_ERROR(); - } - - try { - const token = rawToken.slice(7, rawToken.length); - const secret = req.path.includes('tokens') - ? JWT_REFRESH_SECRET_KEY - : JWT_SECRET_KEY; - const { id, tokenId } = jwt.verify(token, secret); - req.userId = id; - req.tokenId = tokenId; - } catch (error) { - throw new AUTHORIZATION_ERROR(); - } - - next(); -}; - -module.exports = checkAuthentication; diff --git a/src/resources/authentication/signin.router.js b/src/resources/authentication/signin.router.js deleted file mode 100644 index 9368c09df..000000000 --- a/src/resources/authentication/signin.router.js +++ /dev/null @@ -1,15 +0,0 @@ -const router = require('express').Router(); -const { OK } = require('http-status-codes'); - -const userService = require('../users/user.service'); - -router.route('/').post(async (req, res) => { - const auth = await userService.authenticate(req.body); - - res.status(OK).json({ - message: 'Authenticated', - ...auth - }); -}); - -module.exports = router; diff --git a/src/resources/settings/setting.db.repository.js b/src/resources/settings/setting.db.repository.js deleted file mode 100644 index de9f3bcdd..000000000 --- a/src/resources/settings/setting.db.repository.js +++ /dev/null @@ -1,22 +0,0 @@ -const Settings = require('./setting.model'); -const { NOT_FOUND_ERROR } = require('../../errors/appErrors'); - -const get = async userId => { - const setting = await Settings.findOne({ userId }); - if (!setting) { - throw new NOT_FOUND_ERROR('Cannot find setting'); - } - - return setting; -}; - -const upsert = async (userId, setting) => - Settings.findOneAndUpdate( - { userId }, - { $set: setting }, - { upsert: true, new: true } - ); - -const remove = async userId => Settings.deleteOne({ userId }); - -module.exports = { get, upsert, remove }; diff --git a/src/resources/settings/setting.model.js b/src/resources/settings/setting.model.js deleted file mode 100644 index 58321bc1d..000000000 --- a/src/resources/settings/setting.model.js +++ /dev/null @@ -1,24 +0,0 @@ -const mongoose = require('mongoose'); -const Schema = mongoose.Schema; -const { addMethods } = require('../../utils/toResponse'); - -const SettingsSchema = new Schema( - { - userId: { - type: String, - required: true - }, - wordsPerDay: { - type: Number - }, - optional: { - type: Object, - required: false - } - }, - { collection: 'setting' } -); - -addMethods(SettingsSchema); - -module.exports = mongoose.model('Settings', SettingsSchema); diff --git a/src/resources/settings/setting.router.js b/src/resources/settings/setting.router.js deleted file mode 100644 index 3379e578e..000000000 --- a/src/resources/settings/setting.router.js +++ /dev/null @@ -1,17 +0,0 @@ -const { OK } = require('http-status-codes'); -const router = require('express').Router({ mergeParams: true }); -const settingService = require('./setting.service'); -const { settings } = require('../../utils/validation/schemas'); -const { validator } = require('../../utils/validation/validator'); - -router.get('/', async (req, res) => { - const setting = await settingService.get(req.userId); - res.status(OK).send(setting.toResponse()); -}); - -router.put('/', validator(settings, 'body'), async (req, res) => { - const setting = await settingService.upsert(req.userId, req.body); - res.status(OK).send(setting.toResponse()); -}); - -module.exports = router; diff --git a/src/resources/settings/setting.service.js b/src/resources/settings/setting.service.js deleted file mode 100644 index 070a943bc..000000000 --- a/src/resources/settings/setting.service.js +++ /dev/null @@ -1,10 +0,0 @@ -const settingRepo = require('./setting.db.repository'); - -const get = async userId => settingRepo.get(userId); - -const upsert = async (userId, statistic) => - settingRepo.upsert(userId, { ...statistic, userId }); - -const remove = async userId => settingRepo.remove(userId); - -module.exports = { get, upsert, remove }; diff --git a/src/resources/statistics/statistic.db.repository.js b/src/resources/statistics/statistic.db.repository.js deleted file mode 100644 index 4eb2e7eb3..000000000 --- a/src/resources/statistics/statistic.db.repository.js +++ /dev/null @@ -1,22 +0,0 @@ -const Statistics = require('./statistic.model'); -const { NOT_FOUND_ERROR } = require('../../errors/appErrors'); - -const get = async userId => { - const statistic = await Statistics.findOne({ userId }); - if (!statistic) { - throw new NOT_FOUND_ERROR('statistic', `userId: ${userId}`); - } - - return statistic; -}; - -const upsert = async (userId, statistic) => - Statistics.findOneAndUpdate( - { userId }, - { $set: statistic }, - { upsert: true, new: true } - ); - -const remove = async userId => Statistics.deleteOne({ userId }); - -module.exports = { get, upsert, remove }; diff --git a/src/resources/statistics/statistic.model.js b/src/resources/statistics/statistic.model.js deleted file mode 100644 index 9ac6f52e5..000000000 --- a/src/resources/statistics/statistic.model.js +++ /dev/null @@ -1,24 +0,0 @@ -const mongoose = require('mongoose'); -const Schema = mongoose.Schema; -const { addMethods } = require('../../utils/toResponse'); - -const StatisticSchema = new Schema( - { - userId: { - type: String, - required: true - }, - learnedWords: { - type: Number - }, - optional: { - type: Object, - required: false - } - }, - { collection: 'statistic' } -); - -addMethods(StatisticSchema); - -module.exports = mongoose.model('Statistic', StatisticSchema); diff --git a/src/resources/statistics/statistic.router.js b/src/resources/statistics/statistic.router.js deleted file mode 100644 index 6b305a4a9..000000000 --- a/src/resources/statistics/statistic.router.js +++ /dev/null @@ -1,17 +0,0 @@ -const { OK } = require('http-status-codes'); -const router = require('express').Router({ mergeParams: true }); -const statisticService = require('./statistic.service'); -const { statistics } = require('../../utils/validation/schemas'); -const { validator } = require('../../utils/validation/validator'); - -router.get('/', async (req, res) => { - const statistic = await statisticService.get(req.userId); - res.status(OK).send(statistic.toResponse()); -}); - -router.put('/', validator(statistics, 'body'), async (req, res) => { - const statistic = await statisticService.upsert(req.userId, req.body); - res.status(OK).send(statistic.toResponse()); -}); - -module.exports = router; diff --git a/src/resources/statistics/statistic.service.js b/src/resources/statistics/statistic.service.js deleted file mode 100644 index 85ca10831..000000000 --- a/src/resources/statistics/statistic.service.js +++ /dev/null @@ -1,10 +0,0 @@ -const statisticRepo = require('./statistic.db.repository'); - -const get = async userId => statisticRepo.get(userId); - -const upsert = async (userId, statistic) => - statisticRepo.upsert(userId, { ...statistic, userId }); - -const remove = async userId => statisticRepo.remove(userId); - -module.exports = { get, upsert, remove }; diff --git a/src/resources/token/token.db.repository.js b/src/resources/token/token.db.repository.js deleted file mode 100644 index b055d59be..000000000 --- a/src/resources/token/token.db.repository.js +++ /dev/null @@ -1,20 +0,0 @@ -const Token = require('./token.model'); -const { AUTHENTICATION_ERROR } = require('../../errors/appErrors'); - -const get = async (userId, tokenId) => { - const token = await Token.findOne({ userId, tokenId }); - if (!token) { - throw new AUTHENTICATION_ERROR('Token is not found!'); - } - - return token; -}; - -const upsert = async token => - Token.findOneAndUpdate( - { userId: token.userId }, - { $set: token }, - { upsert: true, new: true } - ); - -module.exports = { get, upsert }; diff --git a/src/resources/token/token.model.js b/src/resources/token/token.model.js deleted file mode 100644 index f6a39219d..000000000 --- a/src/resources/token/token.model.js +++ /dev/null @@ -1,18 +0,0 @@ -const mongoose = require('mongoose'); -const Schema = mongoose.Schema; - -const Token = new Schema( - { - userId: { - type: mongoose.Schema.Types.ObjectID, - required: true - }, - tokenId: { type: String, required: true }, - expire: { type: Number, required: true } - }, - { collection: 'tokens' } -); - -Token.index({ userId: 1 }, { unique: true }); - -module.exports = mongoose.model('tokens', Token); diff --git a/src/resources/token/token.router.js b/src/resources/token/token.router.js deleted file mode 100644 index 491305270..000000000 --- a/src/resources/token/token.router.js +++ /dev/null @@ -1,11 +0,0 @@ -const { OK } = require('http-status-codes'); -const router = require('express').Router({ mergeParams: true }); - -const tokenService = require('./token.service'); - -router.get('/', async (req, res) => { - const tokens = await tokenService.refresh(req.userId, req.tokenId); - res.status(OK).send(tokens); -}); - -module.exports = router; diff --git a/src/resources/token/token.service.js b/src/resources/token/token.service.js deleted file mode 100644 index b5b8a716a..000000000 --- a/src/resources/token/token.service.js +++ /dev/null @@ -1,47 +0,0 @@ -const jwt = require('jsonwebtoken'); -const uuid = require('uuid'); -const { AUTHENTICATION_ERROR } = require('../../errors/appErrors'); - -const tokenRepo = require('./token.db.repository'); -const { - JWT_SECRET_KEY, - JWT_EXPIRE_TIME, - JWT_REFRESH_SECRET_KEY, - JWT_REFRESH_EXPIRE_TIME -} = require('../../common/config'); - -const refresh = async (userId, tokenId) => { - const token = await tokenRepo.get(userId, tokenId); - if (Date.now() > token.expire) { - throw new AUTHENTICATION_ERROR('Token is expired'); - } - - return getTokens(userId); -}; - -const getTokens = async userId => { - const token = jwt.sign({ id: userId }, JWT_SECRET_KEY, { - expiresIn: JWT_EXPIRE_TIME - }); - - const tokenId = uuid(); - const refreshToken = jwt.sign( - { id: userId, tokenId }, - JWT_REFRESH_SECRET_KEY, - { - expiresIn: JWT_REFRESH_EXPIRE_TIME - } - ); - - await tokenRepo.upsert({ - userId, - tokenId, - expire: Date.now() + JWT_REFRESH_EXPIRE_TIME * 1000 - }); - - return { token, refreshToken }; -}; - -const upsert = token => tokenRepo.upsert(token); - -module.exports = { refresh, getTokens, upsert }; diff --git a/src/resources/userWords/userWord.db.repository.js b/src/resources/userWords/userWord.db.repository.js deleted file mode 100644 index fd4f66bad..000000000 --- a/src/resources/userWords/userWord.db.repository.js +++ /dev/null @@ -1,44 +0,0 @@ -const UserWord = require('./userWord.model'); -const { NOT_FOUND_ERROR, ENTITY_EXISTS } = require('../../errors/appErrors'); -const ENTITY_NAME = 'user word'; -const MONGO_ENTITY_EXISTS_ERROR_CODE = 11000; - -const getAll = async userId => UserWord.find({ userId }); - -const get = async (wordId, userId) => { - const userWord = await UserWord.findOne({ wordId, userId }); - if (!userWord) { - throw new NOT_FOUND_ERROR(ENTITY_NAME, { wordId, userId }); - } - - return userWord; -}; - -const save = async (wordId, userId, userWord) => { - try { - return await UserWord.create(userWord); - } catch (err) { - if (err.code === MONGO_ENTITY_EXISTS_ERROR_CODE) { - throw new ENTITY_EXISTS(`such ${ENTITY_NAME} already exists`); - } else { - throw err; - } - } -}; - -const update = async (wordId, userId, userWord) => { - const updatedWord = await UserWord.findOneAndUpdate( - { wordId, userId }, - { $set: userWord }, - { new: true } - ); - if (!updatedWord) { - throw new NOT_FOUND_ERROR(ENTITY_NAME, { wordId, userId }); - } - - return updatedWord; -}; - -const remove = async (wordId, userId) => UserWord.deleteOne({ wordId, userId }); - -module.exports = { getAll, get, save, update, remove }; diff --git a/src/resources/userWords/userWord.model.js b/src/resources/userWords/userWord.model.js deleted file mode 100644 index 9ca0217af..000000000 --- a/src/resources/userWords/userWord.model.js +++ /dev/null @@ -1,22 +0,0 @@ -const mongoose = require('mongoose'); -const Schema = mongoose.Schema; -const { addMethods } = require('../../utils/toResponse'); - -const UserWordsSchema = new Schema( - { - wordId: { type: mongoose.Schema.Types.ObjectID, required: true }, - userId: { type: mongoose.Schema.Types.ObjectID, required: true }, - difficulty: { type: String, required: false }, - optional: { - type: Object, - required: false - } - }, - { collection: 'userWords' } -); - -UserWordsSchema.index({ wordId: 1, userId: 1 }, { unique: true }); - -addMethods(UserWordsSchema); - -module.exports = mongoose.model('UserWords', UserWordsSchema); diff --git a/src/resources/userWords/userWord.router.js b/src/resources/userWords/userWord.router.js deleted file mode 100644 index eb5262113..000000000 --- a/src/resources/userWords/userWord.router.js +++ /dev/null @@ -1,51 +0,0 @@ -const { OK, NO_CONTENT } = require('http-status-codes'); -const router = require('express').Router({ mergeParams: true }); -const { userWord, wordId } = require('../../utils/validation/schemas'); -const { validator } = require('../../utils/validation/validator'); - -const userWordService = require('./userWord.service'); - -router.get('/', async (req, res) => { - const userWords = await userWordService.getAll(req.userId); - res.status(OK).send(userWords.map(w => w.toResponse())); -}); - -router.get('/:wordId', validator(wordId, 'params'), async (req, res) => { - const word = await userWordService.get(req.params.wordId, req.userId); - res.status(OK).send(word.toResponse()); -}); - -router.post( - '/:wordId', - validator(wordId, 'params'), - validator(userWord, 'body'), - async (req, res) => { - const word = await userWordService.save( - req.params.wordId, - req.userId, - req.body - ); - res.status(OK).send(word.toResponse()); - } -); - -router.put( - '/:wordId', - validator(wordId, 'params'), - validator(userWord, 'body'), - async (req, res) => { - const word = await userWordService.update( - req.params.wordId, - req.userId, - req.body - ); - res.status(OK).send(word.toResponse()); - } -); - -router.delete('/:wordId', validator(wordId, 'params'), async (req, res) => { - await userWordService.remove(req.params.wordId, req.userId); - res.sendStatus(NO_CONTENT); -}); - -module.exports = router; diff --git a/src/resources/userWords/userWord.service.js b/src/resources/userWords/userWord.service.js deleted file mode 100644 index 5ac2a8593..000000000 --- a/src/resources/userWords/userWord.service.js +++ /dev/null @@ -1,15 +0,0 @@ -const wordRepo = require('./userWord.db.repository'); - -const getAll = async userId => wordRepo.getAll(userId); - -const get = async (wordId, userId) => wordRepo.get(wordId, userId); - -const save = async (wordId, userId, userWord) => - wordRepo.save(wordId, userId, { ...userWord, wordId, userId }); - -const update = async (wordId, userId, userWord) => - wordRepo.update(wordId, userId, { ...userWord, wordId, userId }); - -const remove = async (wordId, userId) => wordRepo.remove(wordId, userId); - -module.exports = { getAll, get, save, update, remove }; diff --git a/src/resources/users/user.db.repository.js b/src/resources/users/user.db.repository.js deleted file mode 100644 index 55bad6e59..000000000 --- a/src/resources/users/user.db.repository.js +++ /dev/null @@ -1,41 +0,0 @@ -const User = require('./user.model'); -const { NOT_FOUND_ERROR, ENTITY_EXISTS } = require('../../errors/appErrors'); -const ENTITY_NAME = 'user'; -const MONGO_ENTITY_EXISTS_ERROR_CODE = 11000; - -const getUserByEmail = async email => { - const user = await User.findOne({ email }); - if (!user) { - throw new NOT_FOUND_ERROR(ENTITY_NAME, { email }); - } - - return user; -}; - -const get = async id => { - const user = await User.findOne({ _id: id }); - if (!user) { - throw new NOT_FOUND_ERROR(ENTITY_NAME, { id }); - } - - return user; -}; - -const save = async user => { - try { - return await User.create(user); - } catch (err) { - if (err.code === MONGO_ENTITY_EXISTS_ERROR_CODE) { - throw new ENTITY_EXISTS(`${ENTITY_NAME} with this e-mail exists`); - } else { - throw err; - } - } -}; - -const update = async (id, user) => - User.findOneAndUpdate({ _id: id }, { $set: user }, { new: true }); - -const remove = async id => User.deleteOne({ _id: id }); - -module.exports = { get, getUserByEmail, save, update, remove }; diff --git a/src/resources/users/user.model.js b/src/resources/users/user.model.js deleted file mode 100644 index 943410481..000000000 --- a/src/resources/users/user.model.js +++ /dev/null @@ -1,42 +0,0 @@ -const mongoose = require('mongoose'); -const bcrypt = require('bcrypt'); -const { addMethods } = require('../../utils/toResponse'); -const Schema = mongoose.Schema; - -const User = new Schema( - { - name: String, - email: { - type: String, - required: true, - unique: true - }, - password: { - type: String, - required: true, - trim: true, - minlength: 8 - } - }, - { collection: 'users' } -); - -User.pre('save', async function preSave(next) { - this.password = await bcrypt.hash(this.password, 10); - next(); -}); - -User.pre('findOneAndUpdate', async function preUpdate(next) { - if (this._update.$set.password) { - this._update.$set.password = await bcrypt.hash( - this._update.$set.password, - 10 - ); - } - - next(); -}); - -addMethods(User); - -module.exports = mongoose.model('users', User); diff --git a/src/resources/users/user.router.js b/src/resources/users/user.router.js deleted file mode 100644 index b7d0bc0e4..000000000 --- a/src/resources/users/user.router.js +++ /dev/null @@ -1,47 +0,0 @@ -const { OK, NO_CONTENT } = require('http-status-codes'); -const router = require('express').Router(); - -const userService = require('./user.service'); -const { id, user } = require('../../utils/validation/schemas'); -const { - validator, - userIdValidator -} = require('../../utils/validation/validator'); - -router.post('/', validator(user, 'body'), async (req, res) => { - const userEntity = await userService.save(req.body); - res.status(OK).send(userEntity.toResponse()); -}); - -router.get( - '/:id', - userIdValidator, - validator(id, 'params'), - async (req, res) => { - const userEntity = await userService.get(req.params.id); - res.status(OK).send(userEntity.toResponse()); - } -); - -router.put( - '/:id', - userIdValidator, - validator(id, 'params'), - validator(user, 'body'), - async (req, res) => { - const userEntity = await userService.update(req.userId, req.body); - res.status(OK).send(userEntity.toResponse()); - } -); - -router.delete( - '/:id', - userIdValidator, - validator(id, 'params'), - async (req, res) => { - await userService.remove(req.params.id); - res.sendStatus(NO_CONTENT); - } -); - -module.exports = router; diff --git a/src/resources/users/user.service.js b/src/resources/users/user.service.js deleted file mode 100644 index 3c3689741..000000000 --- a/src/resources/users/user.service.js +++ /dev/null @@ -1,34 +0,0 @@ -const bcrypt = require('bcrypt'); - -const usersRepo = require('./user.db.repository'); -const tokenService = require('../token/token.service'); -const settingsService = require('../settings/setting.service'); -const statisticService = require('../statistics/statistic.service'); -const { AUTHENTICATION_ERROR } = require('../../errors/appErrors'); - -const authenticate = async user => { - const userEntity = await usersRepo.getUserByEmail(user.email); - - const isValidated = await bcrypt.compare(user.password, userEntity.password); - if (!isValidated) { - throw new AUTHENTICATION_ERROR(); - } - - const tokens = await tokenService.getTokens(userEntity._id); - - return { ...tokens, userId: userEntity._id, name: userEntity.name }; -}; - -const get = id => usersRepo.get(id); - -const save = user => usersRepo.save(user); - -const update = (id, user) => usersRepo.update(id, user); - -const remove = async id => { - await statisticService.remove(id); - await settingsService.remove(id); - await usersRepo.remove(id); -}; - -module.exports = { authenticate, get, save, update, remove }; diff --git a/src/resources/words/word.db.repository.js b/src/resources/words/word.db.repository.js deleted file mode 100644 index 279fbdd23..000000000 --- a/src/resources/words/word.db.repository.js +++ /dev/null @@ -1,19 +0,0 @@ -const Word = require('./word.model'); -const { NOT_FOUND_ERROR } = require('../../errors/appErrors'); -const ENTITY_NAME = 'word'; - -const getAll = async conditions => { - const { group, page } = conditions; - - return Word.find({ group, page }); -}; - -const get = async id => { - const word = await Word.findOne({ _id: id }); - if (!word) { - throw new NOT_FOUND_ERROR(ENTITY_NAME, { id }); - } - return word; -}; - -module.exports = { getAll, get }; diff --git a/src/resources/words/word.model.js b/src/resources/words/word.model.js deleted file mode 100644 index 8c66c2e70..000000000 --- a/src/resources/words/word.model.js +++ /dev/null @@ -1,26 +0,0 @@ -const mongoose = require('mongoose'); -const Schema = mongoose.Schema; -const { addMethods } = require('../../utils/toResponse'); - -const WordsSchema = new Schema( - { - group: { type: Number, required: true }, - page: { type: Number, required: true }, - word: { type: String, required: true, max: 100 }, - image: { type: String, required: false, max: 150 }, - audio: { type: String, required: false, max: 150 }, - audioMeaning: { type: String, required: false, max: 150 }, - audioExample: { type: String, required: false, max: 150 }, - textMeaning: { type: String, required: false, max: 300 }, - textExample: { type: String, required: false, max: 300 }, - transcription: { type: String, required: false, max: 100 }, - wordTranslate: String, - textMeaningTranslate: String, - textExampleTranslate: String - }, - { collection: 'words' } -); - -addMethods(WordsSchema); - -module.exports = mongoose.model('Words', WordsSchema); diff --git a/src/resources/words/word.router.js b/src/resources/words/word.router.js deleted file mode 100644 index 5bac8e523..000000000 --- a/src/resources/words/word.router.js +++ /dev/null @@ -1,30 +0,0 @@ -const { OK } = require('http-status-codes'); -const router = require('express').Router(); - -const wordService = require('./word.service'); -const { BAD_REQUEST_ERROR } = require('../../errors/appErrors'); -const extractQueryParam = require('../../utils/getQueryNumberParameter'); - -router.route('/').get(async (req, res) => { - const page = extractQueryParam(req.query.page, 0); - const group = extractQueryParam(req.query.group, 0); - - if (isNaN(page) || isNaN(group)) { - throw new BAD_REQUEST_ERROR( - 'Wrong query parameters: the group, page numbers should be valid integers' - ); - } - - const words = await wordService.getAll({ - page, - group - }); - res.status(OK).send(words.map(word => word.toResponse())); -}); - -router.route('/:id').get(async (req, res) => { - const word = await wordService.get(req.params.id); - res.status(OK).send(word.toResponse()); -}); - -module.exports = router; diff --git a/src/resources/words/word.service.js b/src/resources/words/word.service.js deleted file mode 100644 index 2aea50753..000000000 --- a/src/resources/words/word.service.js +++ /dev/null @@ -1,11 +0,0 @@ -const wordRepo = require('./word.db.repository'); - -const getAll = async conditions => wordRepo.getAll(conditions); - -const get = async wordId => { - const word = await wordRepo.get(wordId); - - return word; -}; - -module.exports = { getAll, get }; diff --git a/src/server.js b/src/server.js deleted file mode 100644 index 0621fa92a..000000000 --- a/src/server.js +++ /dev/null @@ -1,29 +0,0 @@ -const logger = require('./common/logging'); - -// uncaughtException is been catching by Winston -process.on('unhandledRejection', reason => { - process.emit('uncaughtException', reason); -}); - -const mongoose = require('mongoose'); -const { PORT, MONGO_CONNECTION_STRING } = require('./common/config'); -const app = require('./app'); - -mongoose.connect(MONGO_CONNECTION_STRING, { - useNewUrlParser: true, - useUnifiedTopology: true, - useFindAndModify: false, - useCreateIndex: true -}); - -const db = mongoose.connection; - -db.on('error', () => logger.error('MongoDB connection error:')).once( - 'open', - () => { - logger.info('Successfully connect to DB'); - app.listen(PORT, () => - logger.info(`App is running on http://localhost:${PORT}`) - ); - } -); diff --git a/src/utils/getQueryNumberParameter.js b/src/utils/getQueryNumberParameter.js deleted file mode 100644 index d6c01c08b..000000000 --- a/src/utils/getQueryNumberParameter.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = (param, defaultValue) => { - return param ? parseInt(param, 10) : defaultValue; -}; diff --git a/src/utils/toResponse.js b/src/utils/toResponse.js deleted file mode 100644 index 86e55bf45..000000000 --- a/src/utils/toResponse.js +++ /dev/null @@ -1,13 +0,0 @@ -/* eslint-disable prettier/prettier */ -const addMethods = schema => { - // eslint-disable-next-line func-names - schema.method('toResponse', function () { - const { _id, ...rest } = this.toJSON(); - delete rest.password; - delete rest.__v; - delete rest.userId; - return { id: _id, ...rest }; - }); -}; - -module.exports = { addMethods }; diff --git a/src/utils/validation/schemas.js b/src/utils/validation/schemas.js deleted file mode 100644 index 9bd9b51cb..000000000 --- a/src/utils/validation/schemas.js +++ /dev/null @@ -1,73 +0,0 @@ -const Joi = require('@hapi/joi'); -Joi.objectId = require('joi-objectid')(Joi); -const { - MAX_OPTIONAL_PROPERTIES, - MAX_SYMBOLS_PER_OBJECT, - MIN_PASSWORD_LENGTH -} = require('../../common/config'); - -const optionalScheme = Joi.object() - .max(MAX_OPTIONAL_PROPERTIES) - .pattern(/.*/, [ - Joi.string(), - Joi.number(), - Joi.boolean(), - Joi.date(), - Joi.object() - ]) - .custom(optionalValidator, 'optional object validation') - .error(errors => { - errors - .filter(err => err.code === 'object.length') - .forEach( - err => - (err.message = `Optional field exceeds the limit of ${MAX_SYMBOLS_PER_OBJECT} symbols per object`) - ); - return errors; - }); - -const schemas = { - id: Joi.object({ id: Joi.objectId() }), - wordId: Joi.object({ id: Joi.objectId(), wordId: Joi.objectId() }), - user: Joi.object() - .options({ abortEarly: false, allowUnknown: true }) - .keys({ - name: Joi.string().max(200), - email: Joi.string().email({ tlds: { allow: false } }), - password: Joi.string().min(MIN_PASSWORD_LENGTH) - }), - userWord: Joi.object() - .options({ abortEarly: false, allowUnknown: false }) - .keys({ - difficulty: Joi.string().max(50), - optional: optionalScheme - }), - statistics: Joi.object() - .options({ abortEarly: false, allowUnknown: false }) - .keys({ - learnedWords: Joi.number() - .integer() - .min(0) - .max(100000), - optional: optionalScheme - }), - settings: Joi.object() - .options({ abortEarly: false, allowUnknown: false }) - .keys({ - wordsPerDay: Joi.number() - .integer() - .min(1) - .max(1000), - optional: optionalScheme - }) -}; - -function optionalValidator(value, helpers) { - if (JSON.stringify(value).length > MAX_SYMBOLS_PER_OBJECT) { - return helpers.error('object.length'); - } - - return value; -} - -module.exports = schemas; diff --git a/src/utils/validation/validator.js b/src/utils/validation/validator.js deleted file mode 100644 index c594dde23..000000000 --- a/src/utils/validation/validator.js +++ /dev/null @@ -1,38 +0,0 @@ -const { - BAD_REQUEST, - UNPROCESSABLE_ENTITY, - FORBIDDEN -} = require('http-status-codes'); - -const errorResponse = errors => { - return { - status: 'failed', - errors: errors.map(err => { - const { path, message } = err; - return { path, message }; - }) - }; -}; - -const validator = (schema, property) => { - return (req, res, next) => { - const { error } = schema.validate(req[property]); - if (error) { - res - .status(property === 'body' ? UNPROCESSABLE_ENTITY : BAD_REQUEST) - .json({ error: errorResponse(error.details) }); - } else { - return next(); - } - }; -}; - -const userIdValidator = (req, res, next) => { - if (req.userId !== req.params.id) { - res.sendStatus(FORBIDDEN); - } else { - return next(); - } -}; - -module.exports = { validator, userIdValidator }; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..4631902e9 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,104 @@ +{ + "compilerOptions": { + "module": "esnext", + /* Visit https://aka.ms/tsconfig to read more about this file */ + + /* Projects */ + // "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */ + // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */ + // "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */ + // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */ + // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */ + // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ + + /* Language and Environment */ + "target": "es2017" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, + // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + // "jsx": "preserve", /* Specify what JSX code is generated. */ + // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */ + // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */ + // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */ + // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */ + // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */ + // "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */ + // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */ + // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */ + // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */ + + /* Modules */ + // "module": "commonjs", /* Specify what module code is generated. */ + // "rootDir": "./", /* Specify the root folder within your source files. */ + "moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */, + // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ + // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */ + // "types": [], /* Specify type package names to be included without being referenced in a source file. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */ + // "resolveJsonModule": true, /* Enable importing .json files. */ + // "noResolve": true, /* Disallow 'import's, 'require's or ''s from expanding the number of files TypeScript should add to a project. */ + + /* JavaScript Support */ + // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */ + // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */ + // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */ + + /* Emit */ + // "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ + // "declarationMap": true, /* Create sourcemaps for d.ts files. */ + // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ + // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ + // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */ + // "outDir": "./", /* Specify an output folder for all emitted files. */ + // "removeComments": true, /* Disable emitting comments. */ + // "noEmit": true, /* Disable emitting files from a compilation. */ + // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */ + // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */ + // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */ + // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ + // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */ + // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */ + // "newLine": "crlf", /* Set the newline character for emitting files. */ + // "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */ + // "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */ + // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */ + // "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */ + // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ + // "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */ + + /* Interop Constraints */ + // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ + // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */ + "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */, + // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */ + "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, + + /* Type Checking */ + "strict": true /* Enable all strict type-checking options. */, + "noImplicitAny": true /* Enable error reporting for expressions and declarations with an implied 'any' type. */, + // "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */ + // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */ + // "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */ + // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */ + // "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */ + // "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */ + // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */ + // "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */ + // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */ + // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ + // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ + // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ + // "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */ + // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ + // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */ + // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */ + // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */ + + /* Completeness */ + // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ + "skipLibCheck": true /* Skip type checking all .d.ts files. */ + } +} diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 000000000..c111328d6 --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,52 @@ +const path = require("path"); +const { merge } = require("webpack-merge"); +const HtmlWebpackPlugin = require("html-webpack-plugin"); +const { CleanWebpackPlugin } = require("clean-webpack-plugin"); +const EslingPlugin = require("eslint-webpack-plugin"); +const CopyPlugin = require("copy-webpack-plugin"); + +const baseConfig = { + entry: path.resolve(__dirname, "./index.ts"), + mode: "development", + module: { + rules: [ + { test: /\.ts$/i, use: "ts-loader" }, + { + test: /\.css$/i, + use: ["style-loader", "css-loader"], + }, + ], + }, + resolve: { + extensions: [".ts", ".js"], + }, + output: { + filename: "index.js", + path: path.resolve(__dirname, "./dist"), + }, + plugins: [ + new HtmlWebpackPlugin({ + template: path.resolve(__dirname, "./index.html"), + filename: "index.html", + }), + new CleanWebpackPlugin(), + new EslingPlugin({ extensions: "ts" }), + new CopyPlugin({ + patterns: [ + { + from: path.resolve(__dirname, "./src/assets"), + to: path.resolve(__dirname, "dist/assets"), + }, + ], + }), + ], +}; + +module.exports = ({ mode }) => { + const isProductionMode = mode === "prod"; + const envConfig = isProductionMode + ? require("./webpack.prod.config") + : require("./webpack.dev.config"); + + return merge(baseConfig, envConfig); +}; diff --git a/webpack.dev.config.js b/webpack.dev.config.js new file mode 100644 index 000000000..b2bdda454 --- /dev/null +++ b/webpack.dev.config.js @@ -0,0 +1,9 @@ +const path = require('path'); + +module.exports = { + mode: 'development', + devtool: 'inline-source-map', + devServer: { + contentBase: path.resolve(__dirname, '../dist'), + }, +}; diff --git a/webpack.prod.config.js b/webpack.prod.config.js new file mode 100644 index 000000000..5b69c7021 --- /dev/null +++ b/webpack.prod.config.js @@ -0,0 +1,3 @@ +module.exports = { + mode: 'production', +}; diff --git a/words/words.json b/words/words.json deleted file mode 100644 index f293dc651..000000000 --- a/words/words.json +++ /dev/null @@ -1,64801 +0,0 @@ -[{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4a0" - }, - "group": 0, - "page": 0, - "word": "alcohol", - "image": "files/01_0002.jpg", - "audio": "files/01_0002.mp3", - "audioMeaning": "files/01_0002_meaning.mp3", - "audioExample": "files/01_0002_example.mp3", - "textMeaning": "Alcohol is a type of drink that can make people drunk.", - "textExample": "A person should not drive a car after he or she has been drinking alcohol.", - "transcription": "[ǽlkəhɔ̀ːl]", - "__v": 0, - "textExampleTranslate": "Человек не должен водить машину после того, как он выпил алкоголь", - "textMeaningTranslate": "Алкоголь - это тип напитка, который может сделать людей пьяными", - "wordTranslate": "алкоголь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4a2" - }, - "group": 0, - "page": 0, - "word": "boat", - "image": "files/01_0005.jpg", - "audio": "files/01_0005.mp3", - "audioMeaning": "files/01_0005_meaning.mp3", - "audioExample": "files/01_0005_example.mp3", - "textMeaning": "A boat is a vehicle that moves across water.", - "textExample": "There is a small boat on the lake.", - "transcription": "[bout]", - "__v": 0, - "textExampleTranslate": "На озере есть маленькая лодка", - "textMeaningTranslate": "Лодка - это транспортное средство, которое движется по воде", - "wordTranslate": "лодка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4a1" - }, - "group": 0, - "page": 0, - "word": "agree", - "image": "files/01_0001.jpg", - "audio": "files/01_0001.mp3", - "audioMeaning": "files/01_0001_meaning.mp3", - "audioExample": "files/01_0001_example.mp3", - "textMeaning": "To agree is to have the same opinion or belief as another person.", - "textExample": "The students agree they have too much homework.", - "transcription": "[əgríː]", - "__v": 0, - "textExampleTranslate": "Студенты согласны, что у них слишком много домашней работы", - "textMeaningTranslate": "Согласиться - значит иметь то же мнение или убеждение, что и другой человек", - "wordTranslate": "согласна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4a3" - }, - "group": 0, - "page": 0, - "word": "arrive", - "image": "files/01_0003.jpg", - "audio": "files/01_0003.mp3", - "audioMeaning": "files/01_0003_meaning.mp3", - "audioExample": "files/01_0003_example.mp3", - "textMeaning": "To arrive is to get somewhere.", - "textExample": "They arrived at school at 7 a.m.", - "transcription": "[əráiv]", - "__v": 0, - "textExampleTranslate": "Они прибыли в школу в 7 часов утра", - "textMeaningTranslate": "Приехать значит попасть куда-то", - "wordTranslate": "прибыть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4a4" - }, - "group": 0, - "page": 0, - "word": "August", - "image": "files/01_0004.jpg", - "audio": "files/01_0004.mp3", - "audioMeaning": "files/01_0004_meaning.mp3", - "audioExample": "files/01_0004_example.mp3", - "textMeaning": "August is the eighth month of the year.", - "textExample": "Is your birthday in August?", - "transcription": "[ɔ́ːgəst]", - "__v": 0, - "textExampleTranslate": "У тебя день рождения в августе?", - "textMeaningTranslate": "Август - восьмой месяц года", - "wordTranslate": "август" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4a5" - }, - "group": 0, - "page": 0, - "word": "breakfast", - "image": "files/01_0006.jpg", - "audio": "files/01_0006.mp3", - "audioMeaning": "files/01_0006_meaning.mp3", - "audioExample": "files/01_0006_example.mp3", - "textMeaning": "Breakfast is the morning meal.", - "textExample": "I ate eggs for breakfast.", - "transcription": "[brekfəst]", - "__v": 0, - "textExampleTranslate": "Я ел яйца на завтрак", - "textMeaningTranslate": "Завтрак - это утренняя трапеза", - "wordTranslate": "завтрак" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4a6" - }, - "group": 0, - "page": 0, - "word": "camera", - "image": "files/01_0007.jpg", - "audio": "files/01_0007.mp3", - "audioMeaning": "files/01_0007_meaning.mp3", - "audioExample": "files/01_0007_example.mp3", - "textMeaning": "A camera is a piece of equipment that takes pictures.", - "textExample": "I brought my camera on my vacation.", - "transcription": "[kǽmərə]", - "__v": 0, - "textExampleTranslate": "Я принес свою камеру в отпуск", - "textMeaningTranslate": "Камера - это часть оборудования, которая делает снимки", - "wordTranslate": "камера" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4a7" - }, - "group": 0, - "page": 0, - "word": "capital", - "image": "files/01_0008.jpg", - "audio": "files/01_0008.mp3", - "audioMeaning": "files/01_0008_meaning.mp3", - "audioExample": "files/01_0008_example.mp3", - "textMeaning": "A capital is a city where a country’s government is based.", - "textExample": "The capital of the United States is Washington, D.C.", - "transcription": "[kæpətl]", - "__v": 0, - "textExampleTranslate": "Столица Соединенных Штатов - Вашингтон, округ Колумбия", - "textMeaningTranslate": "Столица - это город, в котором базируется правительство страны", - "wordTranslate": "столица" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4a8" - }, - "group": 0, - "page": 0, - "word": "catch", - "image": "files/01_0009.jpg", - "audio": "files/01_0009.mp3", - "audioMeaning": "files/01_0009_meaning.mp3", - "audioExample": "files/01_0009_example.mp3", - "textMeaning": "To catch is to grab or get something.", - "textExample": "Did you catch the ball during the baseball game?", - "transcription": "[kætʃ]", - "__v": 0, - "textExampleTranslate": "Вы поймали мяч во время игры в бейсбол?", - "textMeaningTranslate": "Поймать - значит схватить или получить что-то", - "wordTranslate": "поймать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4a9" - }, - "group": 0, - "page": 0, - "word": "duck", - "image": "files/01_0010.jpg", - "audio": "files/01_0010.mp3", - "audioMeaning": "files/01_0010_meaning.mp3", - "audioExample": "files/01_0010_example.mp3", - "textMeaning": "A duck is a small water bird.", - "textExample": "People feed ducks at the lake.", - "transcription": "[dʌk]", - "__v": 0, - "textExampleTranslate": "Люди кормят уток у озера", - "textMeaningTranslate": "Утка - маленькая водяная птица", - "wordTranslate": "утка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4aa" - }, - "group": 0, - "page": 0, - "word": "enjoy", - "image": "files/01_0011.jpg", - "audio": "files/01_0011.mp3", - "audioMeaning": "files/01_0011_meaning.mp3", - "audioExample": "files/01_0011_example.mp3", - "textMeaning": "To enjoy is to like something.", - "textExample": "The woman enjoys riding her bicycle.", - "transcription": "[indʒɔ́i]", - "__v": 0, - "textExampleTranslate": "Женщина любит кататься на велосипеде", - "textMeaningTranslate": "Наслаждаться значит любить что-то", - "wordTranslate": "наслаждаться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ab" - }, - "group": 0, - "page": 0, - "word": "invite", - "image": "files/01_0012.jpg", - "audio": "files/01_0012.mp3", - "audioMeaning": "files/01_0012_meaning.mp3", - "audioExample": "files/01_0012_example.mp3", - "textMeaning": "To invite is to ask someone to come to a place or event.", - "textExample": "I will invite my friends to my birthday party.", - "transcription": "[inváit]", - "__v": 0, - "textExampleTranslate": "Я приглашаю своих друзей на мой день рождения", - "textMeaningTranslate": "Пригласить - это попросить кого-нибудь прийти на место или событие", - "wordTranslate": "пригласить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ac" - }, - "group": 0, - "page": 0, - "word": "month", - "image": "files/01_0014.jpg", - "audio": "files/01_0014.mp3", - "audioMeaning": "files/01_0014_meaning.mp3", - "audioExample": "files/01_0014_example.mp3", - "textMeaning": "A month is one of 12 periods of time in one year.", - "textExample": "January is the first month of the year.", - "transcription": "[mʌnθ]", - "__v": 0, - "textExampleTranslate": "январь - первый месяц года", - "textMeaningTranslate": "Месяц - это один из 12 периодов времени в году", - "wordTranslate": "месяц" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ad" - }, - "group": 0, - "page": 0, - "word": "travel", - "image": "files/01_0015.jpg", - "audio": "files/01_0015.mp3", - "audioMeaning": "files/01_0015_meaning.mp3", - "audioExample": "files/01_0015_example.mp3", - "textMeaning": "To travel is to go to a faraway place on vacation or business.", - "textExample": "They will travel to Argentina this summer.", - "transcription": "[trǽvəl]", - "__v": 0, - "textExampleTranslate": "Этим летом они отправятся в Аргентину", - "textMeaningTranslate": "Путешествовать - это отправиться в далекое место на отдых или по делам", - "wordTranslate": "путешествовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ae" - }, - "group": 0, - "page": 0, - "word": "love", - "image": "files/01_0013.jpg", - "audio": "files/01_0013.mp3", - "audioMeaning": "files/01_0013_meaning.mp3", - "audioExample": "files/01_0013_example.mp3", - "textMeaning": "To love is to like something or someone a lot.", - "textExample": "I love my family very much.", - "transcription": "[lʌv]", - "__v": 0, - "textExampleTranslate": "Я очень люблю свою семью", - "textMeaningTranslate": "Любить значит любить что-то или кого-то много", - "wordTranslate": "любовь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4af" - }, - "group": 0, - "page": 0, - "word": "typical", - "image": "files/01_0016.jpg", - "audio": "files/01_0016.mp3", - "audioMeaning": "files/01_0016_meaning.mp3", - "audioExample": "files/01_0016_example.mp3", - "textMeaning": "If something is typical, it is normal, or something that usually happens.", - "textExample": "My typical breakfast is toast and eggs.", - "transcription": "[típikəl]", - "__v": 0, - "textExampleTranslate": "Мой типичный завтрак - тост и яйца", - "textMeaningTranslate": "Если что-то типичное, это нормально, или что-то, что обычно происходит", - "wordTranslate": "типичный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4b0" - }, - "group": 0, - "page": 0, - "word": "visit", - "image": "files/01_0017.jpg", - "audio": "files/01_0017.mp3", - "audioMeaning": "files/01_0017_meaning.mp3", - "audioExample": "files/01_0017_example.mp3", - "textMeaning": "To visit is to go and spend time in another place or see another person.", - "textExample": "She wants to visit her grandmother.", - "transcription": "[vízit]", - "__v": 0, - "textExampleTranslate": "Она хочет навестить свою бабушку", - "textMeaningTranslate": "Посетить - значит пойти и провести время в другом месте или увидеть другого человека", - "wordTranslate": "посещение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4b1" - }, - "group": 0, - "page": 0, - "word": "weather", - "image": "files/01_0018.jpg", - "audio": "files/01_0018.mp3", - "audioMeaning": "files/01_0018_meaning.mp3", - "audioExample": "files/01_0018_example.mp3", - "textMeaning": "Weather is the temperature and the state of the outdoors.", - "textExample": "Today’s weather is rainy and cloudy.", - "transcription": "[weðər]", - "__v": 0, - "textExampleTranslate": "Сегодня погода дождливая и облачная", - "textMeaningTranslate": "Погода это температура и состояние на улице", - "wordTranslate": "погода" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4b2" - }, - "group": 0, - "page": 0, - "word": "wine", - "image": "files/01_0020.jpg", - "audio": "files/01_0020.mp3", - "audioMeaning": "files/01_0020_meaning.mp3", - "audioExample": "files/01_0020_example.mp3", - "textMeaning": "Wine is an alcoholic drink made from grapes.", - "textExample": "The store carried both red and white wine.", - "transcription": "[wain]", - "__v": 0, - "textExampleTranslate": "В магазине было красное и белое вино", - "textMeaningTranslate": "Вино - это алкогольный напиток из винограда", - "wordTranslate": "вино" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4b4" - }, - "group": 0, - "page": 1, - "word": "adventure", - "image": "files/02_0021.jpg", - "audio": "files/02_0021.mp3", - "audioMeaning": "files/02_0021_meaning.mp3", - "audioExample": "files/02_0021_example.mp3", - "textMeaning": "An adventure is a fun or exciting thing that you do.", - "textExample": "Riding in the rough water was an adventure.", - "transcription": "[ədvéntʃər]", - "__v": 0, - "textExampleTranslate": "Езда в бурной воде была приключением", - "textMeaningTranslate": "Приключение - это забавная или захватывающая вещь, которую ты делаешь", - "wordTranslate": "приключение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4b3" - }, - "group": 0, - "page": 0, - "word": "week", - "image": "files/01_0019.jpg", - "audio": "files/01_0019.mp3", - "audioMeaning": "files/01_0019_meaning.mp3", - "audioExample": "files/01_0019_example.mp3", - "textMeaning": "A week is a period of time that is seven days long.", - "textExample": "What are you doing next week?", - "transcription": "[wiːk]", - "__v": 0, - "textExampleTranslate": "Что ты делаешь на следующей неделе?", - "textMeaningTranslate": "Неделя - это период времени, который длится семь дней", - "wordTranslate": "неделя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4b5" - }, - "group": 0, - "page": 1, - "word": "approach", - "image": "files/02_0022.jpg", - "audio": "files/02_0022.mp3", - "audioMeaning": "files/02_0022_meaning.mp3", - "audioExample": "files/02_0022_example.mp3", - "textMeaning": "To approach something means to move close to it.", - "textExample": "The boy approached his school.", - "transcription": "[əpróutʃ]", - "__v": 0, - "textExampleTranslate": "Мальчик приблизился к своей школе", - "textMeaningTranslate": "Подойти к чему-то - значит приблизиться к нему", - "wordTranslate": "подходить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4b6" - }, - "group": 0, - "page": 1, - "word": "chemical", - "image": "files/02_0024.jpg", - "audio": "files/02_0024.mp3", - "audioMeaning": "files/02_0024_meaning.mp3", - "audioExample": "files/02_0024_example.mp3", - "textMeaning": "A chemical is something that scientists use in chemistry.", - "textExample": "The scientist mixed the chemicals.", - "transcription": "[kémikəl]", - "__v": 0, - "textExampleTranslate": "Ученый смешал химикаты", - "textMeaningTranslate": "Химическое вещество - это то, что ученые используют в химии", - "wordTranslate": "химический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4b7" - }, - "group": 0, - "page": 1, - "word": "carefully", - "image": "files/02_0023.jpg", - "audio": "files/02_0023.mp3", - "audioMeaning": "files/02_0023_meaning.mp3", - "audioExample": "files/02_0023_example.mp3", - "textMeaning": "Carefully means with great attention, especially to detail or safety.", - "textExample": "The baby carefully climbed down the stairs.", - "transcription": "[kɛ́ərfəli]", - "__v": 0, - "textExampleTranslate": "Малыш осторожно спускался по лестнице", - "textMeaningTranslate": "Осторожно означает с большим вниманием, особенно к деталям или безопасности", - "wordTranslate": "внимательно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4b8" - }, - "group": 0, - "page": 1, - "word": "create", - "image": "files/02_0025.jpg", - "audio": "files/02_0025.mp3", - "audioMeaning": "files/02_0025_meaning.mp3", - "audioExample": "files/02_0025_example.mp3", - "textMeaning": "To create means to make something new.", - "textExample": "She created an igloo from blocks of snow.", - "transcription": "[kriéit]", - "__v": 0, - "textExampleTranslate": "Она создала иглу из снежных глыб", - "textMeaningTranslate": "Создать значит создать что-то новое", - "wordTranslate": "создайте" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4b9" - }, - "group": 0, - "page": 1, - "word": "evil", - "image": "files/02_0026.jpg", - "audio": "files/02_0026.mp3", - "audioMeaning": "files/02_0026_meaning.mp3", - "audioExample": "files/02_0026_example.mp3", - "textMeaning": "Evil describes something or someone bad or cruel, not good.", - "textExample": "They felt a strange, evil presence as they got closer to the house.", - "transcription": "[íːvəl]", - "__v": 0, - "textExampleTranslate": "Они почувствовали странное злое присутствие, когда приблизились к дому", - "textMeaningTranslate": "Зло описывает что-то или кого-то плохого или жестокого, а не хорошего", - "wordTranslate": "злой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ba" - }, - "group": 0, - "page": 1, - "word": "experiment", - "image": "files/02_0027.jpg", - "audio": "files/02_0027.mp3", - "audioMeaning": "files/02_0027_meaning.mp3", - "audioExample": "files/02_0027_example.mp3", - "textMeaning": "An experiment is a test that you do to see what will happen.", - "textExample": "The student did an experiment in science class.", - "transcription": "[ikspérəmənt]", - "__v": 0, - "textExampleTranslate": "Студент сделал эксперимент в классе науки", - "textMeaningTranslate": "Эксперимент - это тест, который вы проводите, чтобы увидеть, что произойдет", - "wordTranslate": "эксперимент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4bb" - }, - "group": 0, - "page": 1, - "word": "laboratory", - "image": "files/02_0029.jpg", - "audio": "files/02_0029.mp3", - "audioMeaning": "files/02_0029_meaning.mp3", - "audioExample": "files/02_0029_example.mp3", - "textMeaning": "A laboratory is a room where a scientist works.", - "textExample": "My mother works in a laboratory.", - "transcription": "[lǽbərətɔ̀ːri]", - "__v": 0, - "textExampleTranslate": "Моя мама работает в лаборатории", - "textMeaningTranslate": "Лаборатория - это комната, где работает ученый", - "wordTranslate": "лаборатория" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4bc" - }, - "group": 0, - "page": 1, - "word": "kill", - "image": "files/02_0028.jpg", - "audio": "files/02_0028.mp3", - "audioMeaning": "files/02_0028_meaning.mp3", - "audioExample": "files/02_0028_example.mp3", - "textMeaning": "To kill someone or something is to make them die.", - "textExample": "I killed the fly.", - "transcription": "[kil]", - "__v": 0, - "textExampleTranslate": "Я убил муху", - "textMeaningTranslate": "Убить кого-то или что-то значит заставить их умереть", - "wordTranslate": "убийство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4bd" - }, - "group": 0, - "page": 1, - "word": "laugh", - "image": "files/02_0030.jpg", - "audio": "files/02_0030.mp3", - "audioMeaning": "files/02_0030_meaning.mp3", - "audioExample": "files/02_0030_example.mp3", - "textMeaning": "Laugh is the sound made when someone is happy or a funny thing occurs.", - "textExample": "The sound of her laugh filled the room.", - "transcription": "[læf]", - "__v": 0, - "textExampleTranslate": "Звук ее смеха заполнил комнату", - "textMeaningTranslate": "Смех - это звук, который звучит, когда кто-то счастлив или происходит смешная вещь", - "wordTranslate": "смех" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4be" - }, - "group": 0, - "page": 1, - "word": "loud", - "image": "files/02_0031.jpg", - "audio": "files/02_0031.mp3", - "audioMeaning": "files/02_0031_meaning.mp3", - "audioExample": "files/02_0031_example.mp3", - "textMeaning": "If a sound is loud, it is strong and very easy to hear.", - "textExample": "The man’s voice was so loud that we all could hear him.", - "transcription": "[laud]", - "__v": 0, - "textExampleTranslate": "Голос этого человека был настолько громким, что мы все могли слышать его", - "textMeaningTranslate": "Если звук громкий, он сильный и очень легко слышимый", - "wordTranslate": "громкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4bf" - }, - "group": 0, - "page": 1, - "word": "nervous", - "image": "files/02_0032.jpg", - "audio": "files/02_0032.mp3", - "audioMeaning": "files/02_0032_meaning.mp3", - "audioExample": "files/02_0032_example.mp3", - "textMeaning": "When a person is nervous, they think something bad will happen.", - "textExample": "The boy became nervous when he heard the news.", - "transcription": "[nə́ːrvəs]", - "__v": 0, - "textExampleTranslate": "Мальчик стал нервным, когда услышал новости", - "textMeaningTranslate": "Когда человек нервничает, он думает, что случится что-то плохое", - "wordTranslate": "нервная" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4c0" - }, - "group": 0, - "page": 1, - "word": "noise", - "image": "files/02_0033.jpg", - "audio": "files/02_0033.mp3", - "audioMeaning": "files/02_0033_meaning.mp3", - "audioExample": "files/02_0033_example.mp3", - "textMeaning": "A noise is an unpleasant sound.", - "textExample": "The crying baby made a loud noise.", - "transcription": "[nɔiz]", - "__v": 0, - "textExampleTranslate": "Плачущий ребенок издал громкий шум", - "textMeaningTranslate": "Шум - это неприятный звук", - "wordTranslate": "шум" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4c1" - }, - "group": 0, - "page": 1, - "word": "scare", - "image": "files/02_0035.jpg", - "audio": "files/02_0035.mp3", - "audioMeaning": "files/02_0035_meaning.mp3", - "audioExample": "files/02_0035_example.mp3", - "textMeaning": "To scare someone is to make them feel afraid.", - "textExample": "My uncle was scared by what he saw in the room.", - "transcription": "[skɛəːr]", - "__v": 0, - "textExampleTranslate": "Мой дядя испугался увиденного в комнате", - "textMeaningTranslate": "Напугать кого-то - значит заставить его бояться", - "wordTranslate": "попугать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4c2" - }, - "group": 0, - "page": 1, - "word": "project", - "image": "files/02_0034.jpg", - "audio": "files/02_0034.mp3", - "audioMeaning": "files/02_0034_meaning.mp3", - "audioExample": "files/02_0034_example.mp3", - "textMeaning": "A project is a type of work that you do for school or a job.", - "textExample": "His afternoon work project was to paint the room green.", - "transcription": "[prάdʒekt]", - "__v": 0, - "textExampleTranslate": "Его дневной рабочий проект должен был покрасить комнату в зеленый цвет", - "textMeaningTranslate": "Проект - это вид работы, которую вы делаете для школы или работы", - "wordTranslate": "проект" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4c3" - }, - "group": 0, - "page": 1, - "word": "secret", - "image": "files/02_0036.jpg", - "audio": "files/02_0036.mp3", - "audioMeaning": "files/02_0036_meaning.mp3", - "audioExample": "files/02_0036_example.mp3", - "textMeaning": "A secret is something that you do not tell other people.", - "textExample": "The two boys were sharing a secret.", - "transcription": "[síːkrit]", - "__v": 0, - "textExampleTranslate": "Два мальчика делились секретом", - "textMeaningTranslate": "Секрет это то, что вы не говорите другим людям", - "wordTranslate": "секрет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4c4" - }, - "group": 0, - "page": 1, - "word": "shout", - "image": "files/02_0037.jpg", - "audio": "files/02_0037.mp3", - "audioMeaning": "files/02_0037_meaning.mp3", - "audioExample": "files/02_0037_example.mp3", - "textMeaning": "To shout is to say something loudly.", - "textExample": "My boss shouted at me because I was late for work.", - "transcription": "[ʃaut]", - "__v": 0, - "textExampleTranslate": "Мой начальник кричал на меня, потому что я опоздал на работу", - "textMeaningTranslate": "Кричать - это говорить что-то громко", - "wordTranslate": "кричать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4c5" - }, - "group": 0, - "page": 1, - "word": "smell", - "image": "files/02_0038.jpg", - "audio": "files/02_0038.mp3", - "audioMeaning": "files/02_0038_meaning.mp3", - "audioExample": "files/02_0038_example.mp3", - "textMeaning": "To smell something means to use your nose to sense it.", - "textExample": "The two friends smelled the flower.", - "transcription": "[smel]", - "__v": 0, - "textExampleTranslate": "Два друга понюхали цветок", - "textMeaningTranslate": "Обонять что-то значит использовать свой нос, чтобы почувствовать это", - "wordTranslate": "запах" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4c6" - }, - "group": 0, - "page": 1, - "word": "terrible", - "image": "files/02_0039.jpg", - "audio": "files/02_0039.mp3", - "audioMeaning": "files/02_0039_meaning.mp3", - "audioExample": "files/02_0039_example.mp3", - "textMeaning": "If something is terrible, it is very bad.", - "textExample": "The way he treated his classmate was terrible.", - "transcription": "[térəbəl]", - "__v": 0, - "textExampleTranslate": "То, как он относился к своему однокласснику, было ужасно", - "textMeaningTranslate": "Если что-то ужасно, это очень плохо", - "wordTranslate": "ужасный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4c7" - }, - "group": 0, - "page": 1, - "word": "worse", - "image": "files/02_0040.jpg", - "audio": "files/02_0040.mp3", - "audioMeaning": "files/02_0040_meaning.mp3", - "audioExample": "files/02_0040_example.mp3", - "textMeaning": "If something is worse, it is of poorer quality than another thing.", - "textExample": "Business was worse this month than last month.", - "transcription": "[wəːrs]", - "__v": 0, - "textExampleTranslate": "Бизнес был хуже в этом месяце, чем в прошлом месяце", - "textMeaningTranslate": "Если что-то хуже, это хуже, чем что-то другое", - "wordTranslate": "хуже" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4c8" - }, - "group": 0, - "page": 2, - "word": "alien", - "image": "files/03_0041.jpg", - "audio": "files/03_0041.mp3", - "audioMeaning": "files/03_0041_meaning.mp3", - "audioExample": "files/03_0041_example.mp3", - "textMeaning": "An alien is a creature from a different world.", - "textExample": "The alien came in peace.", - "transcription": "[éiljən]", - "__v": 0, - "textExampleTranslate": "пришелец пришел с миром", - "textMeaningTranslate": "Инопланетянин - это существо из другого мира", - "wordTranslate": "инопланетянин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4c9" - }, - "group": 0, - "page": 2, - "word": "among", - "image": "files/03_0042.jpg", - "audio": "files/03_0042.mp3", - "audioMeaning": "files/03_0042_meaning.mp3", - "audioExample": "files/03_0042_example.mp3", - "textMeaning": "If you are among certain things, they are all around you.", - "textExample": "There was a red apple among the green ones.", - "transcription": "[əmʌ̀ŋ]", - "__v": 0, - "textExampleTranslate": "Среди зеленых было красное яблоко", - "textMeaningTranslate": "Если вы среди определенных вещей, они все вокруг вас", - "wordTranslate": "среди" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ca" - }, - "group": 0, - "page": 2, - "word": "chart", - "image": "files/03_0043.jpg", - "audio": "files/03_0043.mp3", - "audioMeaning": "files/03_0043_meaning.mp3", - "audioExample": "files/03_0043_example.mp3", - "textMeaning": "A chart is a list of information.", - "textExample": "We used a chart to see how we had improved.", - "transcription": "[tʃɑːrt]", - "__v": 0, - "textExampleTranslate": "Мы использовали график, чтобы увидеть, как мы улучшили", - "textMeaningTranslate": "Диаграмма - это список информации", - "wordTranslate": "диаграмма" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4cb" - }, - "group": 0, - "page": 2, - "word": "cloud", - "image": "files/03_0044.jpg", - "audio": "files/03_0044.mp3", - "audioMeaning": "files/03_0044_meaning.mp3", - "audioExample": "files/03_0044_example.mp3", - "textMeaning": "A cloud is a group of water drops in the sky.", - "textExample": "The sky was filled with white clouds.", - "transcription": "[klaud]", - "__v": 0, - "textExampleTranslate": "Небо было наполнено белыми облаками", - "textMeaningTranslate": "Облако - это группа капель воды в небе", - "wordTranslate": "облако" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4cc" - }, - "group": 0, - "page": 2, - "word": "describe", - "image": "files/03_0045.jpg", - "audio": "files/03_0045.mp3", - "audioMeaning": "files/03_0045_meaning.mp3", - "audioExample": "files/03_0045_example.mp3", - "textMeaning": "To describe is to say or write what someone or something is like.", - "textExample": "They described their tree as colorful, with gold ribbon and a star.", - "transcription": "[diskráib]", - "__v": 0, - "textExampleTranslate": "Они описали свое дерево как красочное, с золотой лентой и звездой", - "textMeaningTranslate": "Описать - это сказать или написать, на что похож кто-то или что-то", - "wordTranslate": "описать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4cd" - }, - "group": 0, - "page": 2, - "word": "ever", - "image": "files/03_0046.jpg", - "audio": "files/03_0046.mp3", - "audioMeaning": "files/03_0046_meaning.mp3", - "audioExample": "files/03_0046_example.mp3", - "textMeaning": "Ever means at any time.", - "textExample": "Going skiing last winter was the most fun I’ve ever had.", - "transcription": "[évər]", - "__v": 0, - "textExampleTranslate": "Кататься на лыжах прошлой зимой было самым веселым из всего, что я когда-либо ел", - "textMeaningTranslate": "Всегда означает в любое время", - "wordTranslate": "когда-либо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ce" - }, - "group": 0, - "page": 2, - "word": "fail", - "image": "files/03_0047.jpg", - "audio": "files/03_0047.mp3", - "audioMeaning": "files/03_0047_meaning.mp3", - "audioExample": "files/03_0047_example.mp3", - "textMeaning": "To fail means you do not succeed in what you try to do.", - "textExample": "Since he failed to get the job, he was sad.", - "transcription": "[feil]", - "__v": 0, - "textExampleTranslate": "Так как он не смог получить работу, ему было грустно", - "textMeaningTranslate": "Неудача означает, что вам не удается то, что вы пытаетесь сделать", - "wordTranslate": "потерпеть поражение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4cf" - }, - "group": 0, - "page": 2, - "word": "grade", - "image": "files/03_0048.jpg", - "audio": "files/03_0048.mp3", - "audioMeaning": "files/03_0048_meaning.mp3", - "audioExample": "files/03_0048_example.mp3", - "textMeaning": "A grade is a score or mark given to someone’s work.", - "textExample": "I managed to get good grades on my report card.", - "transcription": "[greid]", - "__v": 0, - "textExampleTranslate": "Мне удалось получить хорошие оценки на моем табеле", - "textMeaningTranslate": "Оценка - это оценка или оценка, присвоенная чьей-либо работе", - "wordTranslate": "класс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4d0" - }, - "group": 0, - "page": 2, - "word": "instead", - "image": "files/03_0049.jpg", - "audio": "files/03_0049.mp3", - "audioMeaning": "files/03_0049_meaning.mp3", - "audioExample": "files/03_0049_example.mp3", - "textMeaning": "Instead means in place of.", - "textExample": "He ate the carrot instead of the ice cream.", - "transcription": "[instéd]", - "__v": 0, - "textExampleTranslate": "Он съел морковку вместо мороженого", - "textMeaningTranslate": "Вместо означает вместо", - "wordTranslate": "вместо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4d1" - }, - "group": 0, - "page": 2, - "word": "library", - "image": "files/03_0050.jpg", - "audio": "files/03_0050.mp3", - "audioMeaning": "files/03_0050_meaning.mp3", - "audioExample": "files/03_0050_example.mp3", - "textMeaning": "A library is a place where you go to read books.", - "textExample": "The library at school is full of books.", - "transcription": "[láibrèri]", - "__v": 0, - "textExampleTranslate": "Библиотека в школе полна книг", - "textMeaningTranslate": "Библиотека - это место, куда вы ходите читать книги", - "wordTranslate": "библиотека" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4d2" - }, - "group": 0, - "page": 2, - "word": "photograph", - "image": "files/03_0051.jpg", - "audio": "files/03_0051.mp3", - "audioMeaning": "files/03_0051_meaning.mp3", - "audioExample": "files/03_0051_example.mp3", - "textMeaning": "I like taking photographs.", - "textExample": "I took this photograph with my cell phone.", - "transcription": "[fóutəgrӕf]", - "__v": 0, - "textExampleTranslate": "Я сделал эту фотографию на свой мобильный", - "textMeaningTranslate": "Мне нравится фотографировать", - "wordTranslate": "фотография" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4d3" - }, - "group": 0, - "page": 2, - "word": "planet", - "image": "files/03_0052.jpg", - "audio": "files/03_0052.mp3", - "audioMeaning": "files/03_0052_meaning.mp3", - "audioExample": "files/03_0052_example.mp3", - "textMeaning": "A planet is a large round thing in space.", - "textExample": "Saturn is the planet with the ring around it.", - "transcription": "[plǽnət]", - "__v": 0, - "textExampleTranslate": "Сатурн - планета с кольцом вокруг него", - "textMeaningTranslate": "Планета - это большая круглая вещь в космосе", - "wordTranslate": "планета" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4d4" - }, - "group": 0, - "page": 2, - "word": "report", - "image": "files/03_0053.jpg", - "audio": "files/03_0053.mp3", - "audioMeaning": "files/03_0053_meaning.mp3", - "audioExample": "files/03_0053_example.mp3", - "textMeaning": "A report is something someone writes for school or work.", - "textExample": "Karen had trouble writing her report.", - "transcription": "[ripɔ́ːrt]", - "__v": 0, - "textExampleTranslate": "Карен не могла написать свой отчет", - "textMeaningTranslate": "Отчет - это то, что кто-то пишет для школы или работы", - "wordTranslate": "отчет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4d5" - }, - "group": 0, - "page": 2, - "word": "several", - "image": "files/03_0054.jpg", - "audio": "files/03_0054.mp3", - "audioMeaning": "files/03_0054_meaning.mp3", - "audioExample": "files/03_0054_example.mp3", - "textMeaning": "Several is more than two but not many.", - "textExample": "He had to read several books for class.", - "transcription": "[sévərəl]", - "__v": 0, - "textExampleTranslate": "Он должен был прочитать несколько книг для класса", - "textMeaningTranslate": "Несколько больше двух, но не много", - "wordTranslate": "несколько" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4d6" - }, - "group": 0, - "page": 2, - "word": "shape", - "image": "files/03_0055.jpg", - "audio": "files/03_0055.mp3", - "audioMeaning": "files/03_0055_meaning.mp3", - "audioExample": "files/03_0055_example.mp3", - "textMeaning": "An object’s shape is the arrangement of its sides and surfaces.", - "textExample": "Even with your eyes closed you can feel the shape of it.", - "transcription": "[ʃeip]", - "__v": 0, - "textExampleTranslate": "Даже с закрытыми глазами вы можете почувствовать его форму", - "textMeaningTranslate": "Форма объекта - это расположение его сторон и поверхностей", - "wordTranslate": "форма" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4d7" - }, - "group": 0, - "page": 2, - "word": "solve", - "image": "files/03_0056.jpg", - "audio": "files/03_0056.mp3", - "audioMeaning": "files/03_0056_meaning.mp3", - "audioExample": "files/03_0056_example.mp3", - "textMeaning": "To solve something is to find an answer to it.", - "textExample": "All the students could easily solve the math problem.", - "transcription": "[sɑlv]", - "__v": 0, - "textExampleTranslate": "Все ученики могли легко решить математическую задачу", - "textMeaningTranslate": "Решить что-то - значит найти ответ", - "wordTranslate": "решать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4d8" - }, - "group": 0, - "page": 2, - "word": "suddenly", - "image": "files/03_0057.jpg", - "audio": "files/03_0057.mp3", - "audioMeaning": "files/03_0057_meaning.mp3", - "audioExample": "files/03_0057_example.mp3", - "textMeaning": "If something happens suddenly, it happens quickly and unexpectedly.", - "textExample": "I was surprised when my friends suddenly shouted, “Happy birthday!”", - "transcription": "[sʌ́dnli]", - "__v": 0, - "textExampleTranslate": "Я был удивлен, когда мои друзья вдруг закричали: 'С днем рождения!'", - "textMeaningTranslate": "Если что-то происходит внезапно, это происходит быстро и неожиданно", - "wordTranslate": "вдруг, внезапно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4d9" - }, - "group": 0, - "page": 2, - "word": "suppose", - "image": "files/03_0058.jpg", - "audio": "files/03_0058.mp3", - "audioMeaning": "files/03_0058_meaning.mp3", - "audioExample": "files/03_0058_example.mp3", - "textMeaning": "To suppose is to guess.", - "textExample": "I suppose I should go home now.", - "transcription": "[səpóuz]", - "__v": 0, - "textExampleTranslate": "Полагаю, мне пора домой", - "textMeaningTranslate": "Предположить, значит угадать", - "wordTranslate": "предположим" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4da" - }, - "group": 0, - "page": 2, - "word": "understand", - "image": "files/03_0059.jpg", - "audio": "files/03_0059.mp3", - "audioMeaning": "files/03_0059_meaning.mp3", - "audioExample": "files/03_0059_example.mp3", - "textMeaning": "To understand something you need to know what it means.", - "textExample": "Henry could not understand the message.", - "transcription": "[Λndərstǽnd]", - "__v": 0, - "textExampleTranslate": "Генри не мог понять сообщение", - "textMeaningTranslate": "Чтобы понять что-то, нужно знать, что это значит", - "wordTranslate": "понимаю" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4db" - }, - "group": 0, - "page": 2, - "word": "view", - "image": "files/03_0060.jpg", - "audio": "files/03_0060.mp3", - "audioMeaning": "files/03_0060_meaning.mp3", - "audioExample": "files/03_0060_example.mp3", - "textMeaning": "To view is to look at something.", - "textExample": "Michael likes to view himself in the mirror.", - "transcription": "[vjuː]", - "__v": 0, - "textExampleTranslate": "Михаилу нравится видеть себя в зеркале", - "textMeaningTranslate": "Смотреть - значит смотреть на что-то", - "wordTranslate": "посмотреть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4dc" - }, - "group": 0, - "page": 3, - "word": "appropriate", - "image": "files/04_0061.jpg", - "audio": "files/04_0061.mp3", - "audioMeaning": "files/04_0061_meaning.mp3", - "audioExample": "files/04_0061_example.mp3", - "textMeaning": "When a thing is appropriate, it is right or normal.", - "textExample": "It’s appropriate to wear a suit when you go to the office.", - "transcription": "[əpróuprièit]", - "__v": 0, - "textExampleTranslate": "Уместно носить костюм, когда вы идете в офис", - "textMeaningTranslate": "Когда вещь уместна, она правильная или нормальная", - "wordTranslate": "подходящее" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4dd" - }, - "group": 0, - "page": 3, - "word": "avoid", - "image": "files/04_0062.jpg", - "audio": "files/04_0062.mp3", - "audioMeaning": "files/04_0062_meaning.mp3", - "audioExample": "files/04_0062_example.mp3", - "textMeaning": "To avoid something is to stay away from it.", - "textExample": "Avoid the broken bottle on the floor.", - "transcription": "[əvɔ́id]", - "__v": 0, - "textExampleTranslate": "Избегайте разбитой бутылки на полу", - "textMeaningTranslate": "Избегать чего-либо - значит держаться подальше от этого", - "wordTranslate": "избегать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4de" - }, - "group": 0, - "page": 3, - "word": "behave", - "image": "files/04_0063.jpg", - "audio": "files/04_0063.mp3", - "audioMeaning": "files/04_0063_meaning.mp3", - "audioExample": "files/04_0063_example.mp3", - "textMeaning": "To behave is to act in a particular way, especially to be good.", - "textExample": "She always behaves well when her father is around.", - "transcription": "[bihéiv]", - "__v": 0, - "textExampleTranslate": "Она всегда ведет себя хорошо, когда ее отец рядом", - "textMeaningTranslate": "Вести себя - значит действовать определенным образом, особенно быть хорошим", - "wordTranslate": "вести себя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4df" - }, - "group": 0, - "page": 3, - "word": "calm", - "image": "files/04_0064.jpg", - "audio": "files/04_0064.mp3", - "audioMeaning": "files/04_0064_meaning.mp3", - "audioExample": "files/04_0064_example.mp3", - "textMeaning": "When someone is calm, they do not get excited or upset.", - "textExample": "A nice warm bath makes me feel so calm.", - "transcription": "[kɑːm]", - "__v": 0, - "textExampleTranslate": "Хорошая теплая ванна заставляет меня чувствовать себя так спокойно", - "textMeaningTranslate": "Когда кто-то спокоен, он не волнуется и не расстраивается", - "wordTranslate": "спокойный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4e0" - }, - "group": 0, - "page": 3, - "word": "concern", - "image": "files/04_0065.jpg", - "audio": "files/04_0065.mp3", - "audioMeaning": "files/04_0065_meaning.mp3", - "audioExample": "files/04_0065_example.mp3", - "textMeaning": "Concern is a feeling of worry.", - "textExample": "I was filled with concern after reading the newspaper.", - "transcription": "[kənsə́ːrn]", - "__v": 0, - "textExampleTranslate": "Я был полон беспокойства после прочтения газеты", - "textMeaningTranslate": "Беспокойство - это чувство беспокойства", - "wordTranslate": "беспокойство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4e1" - }, - "group": 0, - "page": 3, - "word": "content", - "image": "files/04_0066.jpg", - "audio": "files/04_0066.mp3", - "audioMeaning": "files/04_0066_meaning.mp3", - "audioExample": "files/04_0066_example.mp3", - "textMeaning": "To be content is to be happy and not want more.", - "textExample": "The baby looked very content sitting on the floor.", - "transcription": "[kəntént]", - "__v": 0, - "textExampleTranslate": "Ребенок выглядел очень довольным, сидя на полу", - "textMeaningTranslate": "Быть довольным значит быть счастливым и не хотеть большего", - "wordTranslate": "содержание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4e2" - }, - "group": 0, - "page": 3, - "word": "expect", - "image": "files/04_0067.jpg", - "audio": "files/04_0067.mp3", - "audioMeaning": "files/04_0067_meaning.mp3", - "audioExample": "files/04_0067_example.mp3", - "textMeaning": "If you expect something to happen, you believe it will happen.", - "textExample": "I expect the bus to be here very soon.", - "transcription": "[ikspékt]", - "__v": 0, - "textExampleTranslate": "Я ожидаю, что автобус будет здесь очень скоро", - "textMeaningTranslate": "Если вы ожидаете, что что-то случится, вы верите, что это произойдет", - "wordTranslate": "ожидать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4e3" - }, - "group": 0, - "page": 3, - "word": "frequently", - "image": "files/04_0068.jpg", - "audio": "files/04_0068.mp3", - "audioMeaning": "files/04_0068_meaning.mp3", - "audioExample": "files/04_0068_example.mp3", - "textMeaning": "When something happens frequently, it happens often.", - "textExample": "We meet frequently, either at the beginning or end of the week.", - "transcription": "[fríːkwəntli]", - "__v": 0, - "textExampleTranslate": "Мы часто встречаемся, либо в начале, либо в конце недели", - "textMeaningTranslate": "Когда что-то случается часто, это случается часто", - "wordTranslate": "часто" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4e4" - }, - "group": 0, - "page": 3, - "word": "habit", - "image": "files/04_0069.jpg", - "audio": "files/04_0069.mp3", - "audioMeaning": "files/04_0069_meaning.mp3", - "audioExample": "files/04_0069_example.mp3", - "textMeaning": "A habit is a thing that you do often.", - "textExample": "Smoking is a bad habit that can kill you.", - "transcription": "[hǽbit]", - "__v": 0, - "textExampleTranslate": "Курение - это вредная привычка, которая может тебя убить", - "textMeaningTranslate": "Привычка - это то, что вы часто делаете", - "wordTranslate": "привычка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4e5" - }, - "group": 0, - "page": 3, - "word": "instruct", - "image": "files/04_0070.jpg", - "audio": "files/04_0070.mp3", - "audioMeaning": "files/04_0070_meaning.mp3", - "audioExample": "files/04_0070_example.mp3", - "textMeaning": "To instruct is to teach.", - "textExample": "My teacher instructs us in several subjects.", - "transcription": "[instrʌ́kt]", - "__v": 0, - "textExampleTranslate": "Мой учитель учит нас нескольким предметам", - "textMeaningTranslate": "Обучать - значит учить", - "wordTranslate": "инструктирует" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4e6" - }, - "group": 0, - "page": 3, - "word": "issue", - "image": "files/04_0071.jpg", - "audio": "files/04_0071.mp3", - "audioMeaning": "files/04_0071_meaning.mp3", - "audioExample": "files/04_0071_example.mp3", - "textMeaning": "An issue is an important topic.", - "textExample": "The men spoke about issues that were important to the people.", - "transcription": "[íʃuː]", - "__v": 0, - "textExampleTranslate": "Мужчины говорили о проблемах, которые были важны для людей", - "textMeaningTranslate": "Проблема - важная тема", - "wordTranslate": "проблема" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4e7" - }, - "group": 0, - "page": 3, - "word": "none", - "image": "files/04_0072.jpg", - "audio": "files/04_0072.mp3", - "audioMeaning": "files/04_0072_meaning.mp3", - "audioExample": "files/04_0072_example.mp3", - "textMeaning": "None means not any of something.", - "textExample": "He spent all his money. There is none left.", - "transcription": "[nʌn]", - "__v": 0, - "textExampleTranslate": "Он потратил все свои деньги. Там ничего не осталось", - "textMeaningTranslate": "Никто не означает не что-то", - "wordTranslate": "никто" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4e8" - }, - "group": 0, - "page": 3, - "word": "patient", - "image": "files/04_0073.jpg", - "audio": "files/04_0073.mp3", - "audioMeaning": "files/04_0073_meaning.mp3", - "audioExample": "files/04_0073_example.mp3", - "textMeaning": "If people are patient, they don’t become angry or upset easily.", - "textExample": "I had to be patient and wait until 5 o’clock to leave.", - "transcription": "[péiʃənt]", - "__v": 0, - "textExampleTranslate": "Я должен был быть терпеливым и ждать, пока 5 часов, чтобы уйти", - "textMeaningTranslate": "Если люди терпеливы, они не сердятся и не расстраиваются", - "wordTranslate": "пациент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4e9" - }, - "group": 0, - "page": 3, - "word": "positive", - "image": "files/04_0074.jpg", - "audio": "files/04_0074.mp3", - "audioMeaning": "files/04_0074_meaning.mp3", - "audioExample": "files/04_0074_example.mp3", - "textMeaning": "If something is positive, it is good.", - "textExample": "She has a positive future ahead of her after finishing college.", - "transcription": "[pɑ́zətiv]", - "__v": 0, - "textExampleTranslate": "У нее впереди хорошее будущее после окончания колледжа", - "textMeaningTranslate": "Если что-то положительное, это хорошо", - "wordTranslate": "позитивный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ea" - }, - "group": 0, - "page": 3, - "word": "punish", - "image": "files/04_0075.jpg", - "audio": "files/04_0075.mp3", - "audioMeaning": "files/04_0075_meaning.mp3", - "audioExample": "files/04_0075_example.mp3", - "textMeaning": "To punish means to make someone suffer for breaking the rules or laws.", - "textExample": "To punish me, my teacher had me stand in the corner.", - "transcription": "[pʌ́niʃ]", - "__v": 0, - "textExampleTranslate": "Чтобы наказать меня, мой учитель заставил меня встать в углу", - "textMeaningTranslate": "Наказать значит заставить кого-то страдать за нарушение правил или законов", - "wordTranslate": "наказать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4eb" - }, - "group": 0, - "page": 3, - "word": "represent", - "image": "files/04_0076.jpg", - "audio": "files/04_0076.mp3", - "audioMeaning": "files/04_0076_meaning.mp3", - "audioExample": "files/04_0076_example.mp3", - "textMeaning": "To represent is to speak or act for a person or group.", - "textExample": "My lawyer will represent me in court.", - "transcription": "[rèprizént]", - "__v": 0, - "textExampleTranslate": "Мой адвокат будет представлять меня в суде", - "textMeaningTranslate": "Представлять - значит говорить или действовать от лица или группы", - "wordTranslate": "представлять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ec" - }, - "group": 0, - "page": 3, - "word": "shake", - "image": "files/04_0077.jpg", - "audio": "files/04_0077.mp3", - "audioMeaning": "files/04_0077_meaning.mp3", - "audioExample": "files/04_0077_example.mp3", - "textMeaning": "To shake is to move back and forth or up and down quickly.", - "textExample": "When people shake hands, it usually means they agree.", - "transcription": "[ʃeik]", - "__v": 0, - "textExampleTranslate": "Когда люди пожимают друг другу руки, это обычно означает, что они согласны", - "textMeaningTranslate": "Трясти - значит быстро двигаться вперед-назад или вверх-вниз", - "wordTranslate": "трясти" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ed" - }, - "group": 0, - "page": 3, - "word": "spread", - "image": "files/04_0078.jpg", - "audio": "files/04_0078.mp3", - "audioMeaning": "files/04_0078_meaning.mp3", - "audioExample": "files/04_0078_example.mp3", - "textMeaning": "To spread is to move out to cover a larger area.", - "textExample": "I like to spread butter on my toast.", - "transcription": "[spred]", - "__v": 0, - "textExampleTranslate": "Мне нравится разливать масло по моему тосту", - "textMeaningTranslate": "Распространение означает выход на большую площадь", - "wordTranslate": "распространение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ee" - }, - "group": 0, - "page": 3, - "word": "stroll", - "image": "files/04_0079.jpg", - "audio": "files/04_0079.mp3", - "audioMeaning": "files/04_0079_meaning.mp3", - "audioExample": "files/04_0079_example.mp3", - "textMeaning": "To stroll means to walk slowly and calmly.", - "textExample": "My dog and I strolled through the park today.", - "transcription": "[stroul]", - "__v": 0, - "textExampleTranslate": "Сегодня мы с собакой прогулялись по парку", - "textMeaningTranslate": "Гулять значит ходить медленно и спокойно", - "wordTranslate": "прогулка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ef" - }, - "group": 0, - "page": 3, - "word": "village", - "image": "files/04_0080.jpg", - "audio": "files/04_0080.mp3", - "audioMeaning": "files/04_0080_meaning.mp3", - "audioExample": "files/04_0080_example.mp3", - "textMeaning": "A village is a very small town.", - "textExample": "There are only a few houses in my village.", - "transcription": "[vílidʒ]", - "__v": 0, - "textExampleTranslate": "В моей деревне всего несколько домов", - "textMeaningTranslate": "Деревня очень маленький город", - "wordTranslate": "деревня" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4f0" - }, - "group": 0, - "page": 4, - "word": "active", - "image": "files/05_0081.jpg", - "audio": "files/05_0081.mp3", - "audioMeaning": "files/05_0081_meaning.mp3", - "audioExample": "files/05_0081_example.mp3", - "textMeaning": "When someone is active, they move a lot or have a lot of things to do.", - "textExample": "It is important to be active and not sit around all the time.", - "transcription": "[ǽktiv]", - "__v": 0, - "textExampleTranslate": "Важно быть активным, а не сидеть без дела все время", - "textMeaningTranslate": "Когда кто-то активен, он много двигается или у него много дел", - "wordTranslate": "активный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4f1" - }, - "group": 0, - "page": 4, - "word": "adult", - "image": "files/05_0082.jpg", - "audio": "files/05_0082.mp3", - "audioMeaning": "files/05_0082_meaning.mp3", - "audioExample": "files/05_0082_example.mp3", - "textMeaning": "An adult is a person who is more than 18 years old.", - "textExample": "My mom and dad are adults.", - "transcription": "[ədΛlt]", - "__v": 0, - "textExampleTranslate": "Мои мама и папа взрослые", - "textMeaningTranslate": "Взрослый - это человек старше 18 лет", - "wordTranslate": "взрослый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4f2" - }, - "group": 0, - "page": 4, - "word": "balance", - "image": "files/05_0085.jpg", - "audio": "files/05_0085.mp3", - "audioMeaning": "files/05_0085_meaning.mp3", - "audioExample": "files/05_0085_example.mp3", - "textMeaning": "Balance is when two or more things are equal.", - "textExample": "A good balance between work and fun helps keep you healthy.", - "transcription": "[bǽləns]", - "__v": 0, - "textExampleTranslate": "Хороший баланс между работой и весельем помогает поддерживать здоровье", - "textMeaningTranslate": "Баланс - это когда две или более вещи равны", - "wordTranslate": "баланс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4f3" - }, - "group": 0, - "page": 4, - "word": "bad", - "image": "files/05_0084.jpg", - "audio": "files/05_0084.mp3", - "audioMeaning": "files/05_0084_meaning.mp3", - "audioExample": "files/05_0084_example.mp3", - "textMeaning": "When something is bad, it is not good.", - "textExample": "She is unhappy because she had a bad day.", - "transcription": "[bæd]", - "__v": 0, - "textExampleTranslate": "Она несчастна, потому что у нее был плохой день", - "textMeaningTranslate": "Когда что-то плохо, это не хорошо", - "wordTranslate": "плохой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4f4" - }, - "group": 0, - "page": 4, - "word": "age", - "image": "files/05_0083.jpg", - "audio": "files/05_0083.mp3", - "audioMeaning": "files/05_0083_meaning.mp3", - "audioExample": "files/05_0083_example.mp3", - "textMeaning": "Age is how many years someone has lived.", - "textExample": "She died at the age of 80.", - "transcription": "[eidʒ]", - "__v": 0, - "textExampleTranslate": "Она умерла в возрасте 80 лет", - "textMeaningTranslate": "Возраст - это сколько лет кто-то прожил", - "wordTranslate": "возраст" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4f5" - }, - "group": 0, - "page": 4, - "word": "bike", - "image": "files/05_0086.jpg", - "audio": "files/05_0086.mp3", - "audioMeaning": "files/05_0086_meaning.mp3", - "audioExample": "files/05_0086_example.mp3", - "textMeaning": "A bike is a vehicle with two wheels powered by a human.", - "textExample": "He rides his bike to school every day.", - "transcription": "[baik]", - "__v": 0, - "textExampleTranslate": "Он ездит на велосипеде в школу каждый день", - "textMeaningTranslate": "Велосипед - это автомобиль с двумя колесами, приводимый в движение человеком", - "wordTranslate": "велосипед" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4f6" - }, - "group": 0, - "page": 4, - "word": "choose", - "image": "files/05_0087.jpg", - "audio": "files/05_0087.mp3", - "audioMeaning": "files/05_0087_meaning.mp3", - "audioExample": "files/05_0087_example.mp3", - "textMeaning": "To choose is to pick something or make a decision.", - "textExample": "I have to choose between taking art classes and sports lessons.", - "transcription": "[tʃuːz]", - "__v": 0, - "textExampleTranslate": "Мне нужно выбирать между занятиями искусством и занятиями спортом", - "textMeaningTranslate": "Выбрать - это выбрать что-то или принять решение", - "wordTranslate": "выбирать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4f7" - }, - "group": 0, - "page": 4, - "word": "doctor", - "image": "files/05_0088.jpg", - "audio": "files/05_0088.mp3", - "audioMeaning": "files/05_0088_meaning.mp3", - "audioExample": "files/05_0088_example.mp3", - "textMeaning": "A doctor is a person who studies medicine and helps sick people.", - "textExample": "You should go to the doctor when you are sick.", - "transcription": "[dάktər]", - "__v": 0, - "textExampleTranslate": "Вы должны идти к врачу, когда вы больны", - "textMeaningTranslate": "Врач - это человек, который изучает медицину и помогает больным людям", - "wordTranslate": "доктор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4f8" - }, - "group": 0, - "page": 4, - "word": "during", - "image": "files/05_0089.jpg", - "audio": "files/05_0089.mp3", - "audioMeaning": "files/05_0089_meaning.mp3", - "audioExample": "files/05_0089_example.mp3", - "textMeaning": "During an event means while the event was happening.", - "textExample": "Did you sleep during the movie?", - "transcription": "[djúəriŋ]", - "__v": 0, - "textExampleTranslate": "Ты спал во время фильма?", - "textMeaningTranslate": "Во время события означает, что событие происходило", - "wordTranslate": "в течение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4f9" - }, - "group": 0, - "page": 4, - "word": "football", - "image": "files/05_0090.jpg", - "audio": "files/05_0090.mp3", - "audioMeaning": "files/05_0090_meaning.mp3", - "audioExample": "files/05_0090_example.mp3", - "textMeaning": "Football is a sport with eleven members and an oval-shaped ball.", - "textExample": "Football is a popular sport in the United States.", - "transcription": "[fʊtbɒːl]", - "__v": 0, - "textExampleTranslate": "Футбол - популярный вид спорта в Соединенных Штатах", - "textMeaningTranslate": "Футбол - это спорт с одиннадцатью членами и мячом овальной формы", - "wordTranslate": "футбол" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4fa" - }, - "group": 0, - "page": 4, - "word": "fun", - "image": "files/05_0091.jpg", - "audio": "files/05_0091.mp3", - "audioMeaning": "files/05_0091_meaning.mp3", - "audioExample": "files/05_0091_example.mp3", - "textMeaning": "When something is fun, it is enjoyable.", - "textExample": "We had a fun time at the birthday party.", - "transcription": "[fʌn]", - "__v": 0, - "textExampleTranslate": "Мы весело провели время на вечеринке по случаю дня рождения", - "textMeaningTranslate": "Когда что-то весело, это приятно", - "wordTranslate": "веселье" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4fb" - }, - "group": 0, - "page": 4, - "word": "game", - "image": "files/05_0092.jpg", - "audio": "files/05_0092.mp3", - "audioMeaning": "files/05_0092_meaning.mp3", - "audioExample": "files/05_0092_example.mp3", - "textMeaning": "A game is an activity where people compete against each other.", - "textExample": "Let’s play a board game tonight.", - "transcription": "[geim]", - "__v": 0, - "textExampleTranslate": "Давай поиграем в настольную игру сегодня вечером", - "textMeaningTranslate": "Игра - это игра, в которой люди соревнуются друг с другом", - "wordTranslate": "игра" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4fc" - }, - "group": 0, - "page": 4, - "word": "heart", - "image": "files/05_0093.jpg", - "audio": "files/05_0093.mp3", - "audioMeaning": "files/05_0093_meaning.mp3", - "audioExample": "files/05_0093_example.mp3", - "textMeaning": "A heart is an organ that keeps the body alive.", - "textExample": "My heart beats fast when I am nervous.", - "transcription": "[hɑːrt]", - "__v": 0, - "textExampleTranslate": "Мое сердце бьется быстро, когда я нервничаю", - "textMeaningTranslate": "Сердце - это орган, который поддерживает жизнь тела", - "wordTranslate": "сердце" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4fd" - }, - "group": 0, - "page": 4, - "word": "golf", - "image": "files/05_0094.jpg", - "audio": "files/05_0094.mp3", - "audioMeaning": "files/05_0094_meaning.mp3", - "audioExample": "files/05_0094_example.mp3", - "textMeaning": "Golf is a sport with clubs and a small white ball.", - "textExample": "People play golf in nice weather.", - "transcription": "[galf]", - "__v": 0, - "textExampleTranslate": "Люди играют в гольф в хорошую погоду", - "textMeaningTranslate": "Гольф - это спорт с клюшками и маленьким белым шариком", - "wordTranslate": "гольф" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4fe" - }, - "group": 0, - "page": 4, - "word": "increase", - "image": "files/05_0095.jpg", - "audio": "files/05_0095.mp3", - "audioMeaning": "files/05_0095_meaning.mp3", - "audioExample": "files/05_0095_example.mp3", - "textMeaning": "To increase is to make something larger.", - "textExample": "I will increase my score if I study for the test.", - "transcription": "[inkríːs]", - "__v": 0, - "textExampleTranslate": "Я увеличу свой счет, если я буду готовиться к экзамену", - "textMeaningTranslate": "Увеличить значит сделать что-то большее", - "wordTranslate": "увеличение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af4ff" - }, - "group": 0, - "page": 4, - "word": "life", - "image": "files/05_0096.jpg", - "audio": "files/05_0096.mp3", - "audioMeaning": "files/05_0096_meaning.mp3", - "audioExample": "files/05_0096_example.mp3", - "textMeaning": "Life is the time when a person is alive.", - "textExample": "My grandfather had a long life.", - "transcription": "[laif]", - "__v": 0, - "textExampleTranslate": "У моего деда была долгая жизнь", - "textMeaningTranslate": "Жизнь - это время, когда человек жив", - "wordTranslate": "жизнь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af500" - }, - "group": 0, - "page": 4, - "word": "kilometer", - "image": "files/05_0097.jpg", - "audio": "files/05_0097.mp3", - "audioMeaning": "files/05_0097_meaning.mp3", - "audioExample": "files/05_0097_example.mp3", - "textMeaning": "A kilometer is a unit of measurement that is 1,000 meters.", - "textExample": "A marathon is 42.2 kilometers.", - "transcription": "[kilάmətər]", - "__v": 0, - "textExampleTranslate": "Марафон 42,2 километра", - "textMeaningTranslate": "Километр - это единица измерения, которая составляет 1000 метров", - "wordTranslate": "километр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af501" - }, - "group": 0, - "page": 4, - "word": "often", - "image": "files/05_0098.jpg", - "audio": "files/05_0098.mp3", - "audioMeaning": "files/05_0098_meaning.mp3", - "audioExample": "files/05_0098_example.mp3", - "textMeaning": "Often is when something happens many times.", - "textExample": "He often goes to bed early during the week.", - "transcription": "[ɔ́ːfən]", - "__v": 0, - "textExampleTranslate": "Он часто ложится спать рано в течение недели", - "textMeaningTranslate": "Часто бывает, когда что-то случается много раз", - "wordTranslate": "довольно часто" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af504" - }, - "group": 0, - "page": 5, - "word": "apart", - "image": "files/06_0101.jpg", - "audio": "files/06_0101.mp3", - "audioMeaning": "files/06_0101_meaning.mp3", - "audioExample": "files/06_0101_example.mp3", - "textMeaning": "When people or things are apart, they are not next to each other.", - "textExample": "They moved apart and then came back together.", - "transcription": "[əpάːrt]", - "__v": 0, - "textExampleTranslate": "Они раздвинулись, а затем вернулись вместе", - "textMeaningTranslate": "Когда люди или вещи разлучены, они не рядом друг с другом", - "wordTranslate": "отдельно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af502" - }, - "group": 0, - "page": 4, - "word": "plenty", - "image": "files/05_0099.jpg", - "audio": "files/05_0099.mp3", - "audioMeaning": "files/05_0099_meaning.mp3", - "audioExample": "files/05_0099_example.mp3", - "textMeaning": "If you have plenty of something, there is a lot of it.", - "textExample": "We have plenty of fruit, so help yourself.", - "transcription": "[plenti]", - "__v": 0, - "textExampleTranslate": "У нас много фруктов, так что помогите себе", - "textMeaningTranslate": "Если у вас много чего-то, то этого много", - "wordTranslate": "много" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af503" - }, - "group": 0, - "page": 4, - "word": "weight", - "image": "files/05_0100.jpg", - "audio": "files/05_0100.mp3", - "audioMeaning": "files/05_0100_meaning.mp3", - "audioExample": "files/05_0100_example.mp3", - "textMeaning": "Weight is how heavy something or someone is.", - "textExample": "I gained weight because I ate a lot of pizza.", - "transcription": "[weit]", - "__v": 0, - "textExampleTranslate": "Я набрал вес, потому что я ел много пиццы", - "textMeaningTranslate": "Вес - это то, как тяжело что-то или кто-то", - "wordTranslate": "вес" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af505" - }, - "group": 0, - "page": 5, - "word": "attribute", - "image": "files/06_0102.jpg", - "audio": "files/06_0102.mp3", - "audioMeaning": "files/06_0102_meaning.mp3", - "audioExample": "files/06_0102_example.mp3", - "textMeaning": "An attribute is a characteristic of a person or thing.", - "textExample": "He isn’t very clever, but he does have some other positive attributes.", - "transcription": "[ǽtribjùːt]", - "__v": 0, - "textExampleTranslate": "Он не очень умен, но у него есть некоторые другие положительные качества", - "textMeaningTranslate": "Атрибут является характеристикой человека или вещи", - "wordTranslate": "атрибут" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af506" - }, - "group": 0, - "page": 5, - "word": "bilingual", - "image": "files/06_0103.jpg", - "audio": "files/06_0103.mp3", - "audioMeaning": "files/06_0103_meaning.mp3", - "audioExample": "files/06_0103_example.mp3", - "textMeaning": "A bilingual person can speak two languages.", - "textExample": "Since you already know English, after learning French you’ll be bilingual.", - "transcription": "[bailíŋgwəl]", - "__v": 0, - "textExampleTranslate": "Так как вы уже знаете английский, изучая французский, вы станете двуязычным", - "textMeaningTranslate": "Двуязычный человек может говорить на двух языках", - "wordTranslate": "двуязычный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af508" - }, - "group": 0, - "page": 5, - "word": "dash", - "image": "files/06_0105.jpg", - "audio": "files/06_0105.mp3", - "audioMeaning": "files/06_0105_meaning.mp3", - "audioExample": "files/06_0105_example.mp3", - "textMeaning": "To dash means to run or move quickly.", - "textExample": "Helen dashed up the stairs so she wouldn’t be late for her appointment.", - "transcription": "[dæʃ]", - "__v": 0, - "textExampleTranslate": "Хелен бросилась вверх по лестнице, чтобы она не опоздала на встречу", - "textMeaningTranslate": "Бежать - значит бегать или двигаться быстро", - "wordTranslate": "тире" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af507" - }, - "group": 0, - "page": 5, - "word": "completely", - "image": "files/06_0104.jpg", - "audio": "files/06_0104.mp3", - "audioMeaning": "files/06_0104_meaning.mp3", - "audioExample": "files/06_0104_example.mp3", - "textMeaning": "Something completely different is very, very different from before.", - "textExample": "I was completely wrong.", - "transcription": "[kəmplíːtli]", - "__v": 0, - "textExampleTranslate": "Я был совершенно неправ", - "textMeaningTranslate": "Что-то совершенно другое, очень, очень отличается от ранее", - "wordTranslate": "полностью" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af509" - }, - "group": 0, - "page": 5, - "word": "disgust", - "image": "files/06_0106.jpg", - "audio": "files/06_0106.mp3", - "audioMeaning": "files/06_0106_meaning.mp3", - "audioExample": "files/06_0106_example.mp3", - "textMeaning": "Disgust is a feeling of distaste and anger caused by something rude or unpleasant.", - "textExample": "He felt disgust toward his date because she had such terrible eating habits.", - "transcription": "[disgʌ́st]", - "__v": 0, - "textExampleTranslate": "Он чувствовал отвращение к своему свиданию, потому что у нее были такие асные едпочтения в еде", - "textMeaningTranslate": "Отвращение - это чувство отвращения и гнева, вызванное чем-то грубым или неприятным", - "wordTranslate": "отвращение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af50a" - }, - "group": 0, - "page": 5, - "word": "fashionable", - "image": "files/06_0107.jpg", - "audio": "files/06_0107.mp3", - "audioMeaning": "files/06_0107_meaning.mp3", - "audioExample": "files/06_0107_example.mp3", - "textMeaning": "Something fashionable is what people like to wear and do now.", - "textExample": "It is very fashionable to wear a hat.", - "transcription": "[fǽʃənəbl]", - "__v": 0, - "textExampleTranslate": "Очень модно носить шляпу", - "textMeaningTranslate": "Что-то модное - это то, что люди любят носить и делать сейчас", - "wordTranslate": "модно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af50b" - }, - "group": 0, - "page": 5, - "word": "foreign", - "image": "files/06_0108.jpg", - "audio": "files/06_0108.mp3", - "audioMeaning": "files/06_0108_meaning.mp3", - "audioExample": "files/06_0108_example.mp3", - "textMeaning": "Something foreign is something we are not used to.", - "textExample": "He has travelled widely in foreign countries.", - "transcription": "[fάrən]", - "__v": 0, - "textExampleTranslate": "Он много путешествовал по зарубежным странам", - "textMeaningTranslate": "Что-то чужое - это то, к чему мы не привыкли", - "wordTranslate": "иностранные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af50d" - }, - "group": 0, - "page": 5, - "word": "mirror", - "image": "files/06_0110.jpg", - "audio": "files/06_0110.mp3", - "audioMeaning": "files/06_0110_meaning.mp3", - "audioExample": "files/06_0110_example.mp3", - "textMeaning": "A mirror is usually made of glass, and you can see yourself in it.", - "textExample": "He used the mirror to shine light in their eyes.", - "transcription": "[mírə(r)]", - "__v": 0, - "textExampleTranslate": "Он использовал зеркало, чтобы светить им в глаза", - "textMeaningTranslate": "Зеркало обычно делается из стекла, и вы можете увидеть себя в нем", - "wordTranslate": "зеркало" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af50c" - }, - "group": 0, - "page": 5, - "word": "gulf", - "image": "files/06_0109.jpg", - "audio": "files/06_0109.mp3", - "audioMeaning": "files/06_0109_meaning.mp3", - "audioExample": "files/06_0109_example.mp3", - "textMeaning": "A gulf is a gap between people who do not understand each other.", - "textExample": "There has been a gulf between James and Tony since their parents died.", - "transcription": "[gʌlf]", - "__v": 0, - "textExampleTranslate": "Между Джеймсом и Тони была пропасть с тех пор, как умерли их родители", - "textMeaningTranslate": "Пропасть - это пропасть между людьми, которые не понимают друг друга", - "wordTranslate": "залив" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af50e" - }, - "group": 0, - "page": 5, - "word": "natural", - "image": "files/06_0111.jpg", - "audio": "files/06_0111.mp3", - "audioMeaning": "files/06_0111_meaning.mp3", - "audioExample": "files/06_0111_example.mp3", - "textMeaning": "Things that are natural are not made by people.", - "textExample": "We need to take care of the natural world.", - "transcription": "[nǽʧərəl]", - "__v": 0, - "textExampleTranslate": "Нам нужно заботиться о мире природы", - "textMeaningTranslate": "Вещи, которые естественны, не сделаны людьми", - "wordTranslate": "естественный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af50f" - }, - "group": 0, - "page": 5, - "word": "nowadays", - "image": "files/06_0112.jpg", - "audio": "files/06_0112.mp3", - "audioMeaning": "files/06_0112_meaning.mp3", - "audioExample": "files/06_0112_example.mp3", - "textMeaning": "Nowadays means at the present time.", - "textExample": "Nowadays, not so many people smoke.", - "transcription": "[náuədèiz]", - "__v": 0, - "textExampleTranslate": "В настоящее время не так много людей курят", - "textMeaningTranslate": "В настоящее время значит в настоящее время", - "wordTranslate": "в наше время" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af510" - }, - "group": 0, - "page": 5, - "word": "participant", - "image": "files/06_0113.jpg", - "audio": "files/06_0113.mp3", - "audioMeaning": "files/06_0113_meaning.mp3", - "audioExample": "files/06_0113_example.mp3", - "textMeaning": "A participant is someone who joins in a social event or competition.", - "textExample": "There were thousands of participants in this year’s marathon.", - "transcription": "[pɑːrtísəpənt]", - "__v": 0, - "textExampleTranslate": "В этом году в марафоне приняли участие тысячи человек", - "textMeaningTranslate": "Участник - это тот, кто участвует в общественном мероприятии или конкурсе", - "wordTranslate": "участник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af511" - }, - "group": 0, - "page": 5, - "word": "ritual", - "image": "files/06_0114.jpg", - "audio": "files/06_0114.mp3", - "audioMeaning": "files/06_0114_meaning.mp3", - "audioExample": "files/06_0114_example.mp3", - "textMeaning": "A ritual is a formal custom that people do regularly.", - "textExample": "Ken was very interested to learn about the religious rituals of the natives.", - "transcription": "[rítʃuəl]", - "__v": 0, - "textExampleTranslate": "Кену было очень интересно узнать о религиозных ритуалах туземцев", - "textMeaningTranslate": "Ритуал - это формальный обычай, который регулярно делают люди", - "wordTranslate": "ритуал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af512" - }, - "group": 0, - "page": 5, - "word": "spoken", - "image": "files/06_0115.jpg", - "audio": "files/06_0115.mp3", - "audioMeaning": "files/06_0115_meaning.mp3", - "audioExample": "files/06_0115_example.mp3", - "textMeaning": "Spoken language is what we say.", - "textExample": "We cannot take back what has been spoken.", - "transcription": "[spóukən]", - "__v": 0, - "textExampleTranslate": "Мы не можем забрать то, что было сказано", - "textMeaningTranslate": "Разговорный язык - это то, что мы говорим", - "wordTranslate": "знание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af513" - }, - "group": 0, - "page": 5, - "word": "sport", - "image": "files/06_0116.jpg", - "audio": "files/06_0116.mp3", - "audioMeaning": "files/06_0116_meaning.mp3", - "audioExample": "files/06_0116_example.mp3", - "textMeaning": "Sport involves games like running, jumping, football, and tennis.", - "textExample": "She loves watching sport on TV.", - "transcription": "[spɔːrt]", - "__v": 0, - "textExampleTranslate": "Она любит смотреть спорт по телевизору", - "textMeaningTranslate": "Спорт включает в себя такие игры, как бег, прыжки, футбол и теннис", - "wordTranslate": "спорт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af514" - }, - "group": 0, - "page": 5, - "word": "surprised", - "image": "files/06_0117.jpg", - "audio": "files/06_0117.mp3", - "audioMeaning": "files/06_0117_meaning.mp3", - "audioExample": "files/06_0117_example.mp3", - "textMeaning": "You are surprised when something unexpected happens.", - "textExample": "He didn’t appear at all surprised when he read the article.", - "transcription": "[sərpráizd]", - "__v": 0, - "textExampleTranslate": "Он совсем не удивился, когда прочитал статью", - "textMeaningTranslate": "Вы удивляетесь, когда происходит что-то неожиданное", - "wordTranslate": "удивил" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af515" - }, - "group": 0, - "page": 5, - "word": "tense", - "image": "files/06_0118.jpg", - "audio": "files/06_0118.mp3", - "audioMeaning": "files/06_0118_meaning.mp3", - "audioExample": "files/06_0118_example.mp3", - "textMeaning": "When you are tense, you are not comfortable and feel unhappy.", - "textExample": "I felt very tense waiting to hear the result of the vote.", - "transcription": "[tens]", - "__v": 0, - "textExampleTranslate": "Я чувствовал себя очень напряженным, ожидая результатов голосования", - "textMeaningTranslate": "Когда вы напряжены, вы не чувствуете себя комфортно и чувствуете себя несчастным", - "wordTranslate": "время" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af516" - }, - "group": 0, - "page": 5, - "word": "totally", - "image": "files/06_0119.jpg", - "audio": "files/06_0119.mp3", - "audioMeaning": "files/06_0119_meaning.mp3", - "audioExample": "files/06_0119_example.mp3", - "textMeaning": "If you totally agree, you agree with everything just said.", - "textExample": "I am totally against that.", - "transcription": "[tóutəli]", - "__v": 0, - "textExampleTranslate": "Я полностью против этого", - "textMeaningTranslate": "Если вы полностью согласны, вы соглашаетесь со всем только что сказанным", - "wordTranslate": "полностью" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af517" - }, - "group": 0, - "page": 5, - "word": "vague", - "image": "files/06_0120.jpg", - "audio": "files/06_0120.mp3", - "audioMeaning": "files/06_0120_meaning.mp3", - "audioExample": "files/06_0120_example.mp3", - "textMeaning": "If something is vague, it is not clear and gives very few details.", - "textExample": "I asked him about his mother’s health, but he was very vague about it.", - "transcription": "[veig]", - "__v": 0, - "textExampleTranslate": "Я спросил его о здоровье его матери, но он был очень смутным об этом", - "textMeaningTranslate": "Если что-то расплывчато, это не ясно и дает очень мало деталей", - "wordTranslate": "расплывчатый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af518" - }, - "group": 0, - "page": 6, - "word": "allow", - "image": "files/07_0121.jpg", - "audio": "files/07_0121.mp3", - "audioMeaning": "files/07_0121_meaning.mp3", - "audioExample": "files/07_0121_example.mp3", - "textMeaning": "To allow something to happen means to let it happen.", - "textExample": "Having a ticket will allow you to enter the show.", - "transcription": "[əláu]", - "__v": 0, - "textExampleTranslate": "Наличие билета позволит вам войти в шоу", - "textMeaningTranslate": "Позволить чему-то случиться - значит позволить этому случиться", - "wordTranslate": "позволять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af519" - }, - "group": 0, - "page": 6, - "word": "announce", - "image": "files/07_0122.jpg", - "audio": "files/07_0122.mp3", - "audioMeaning": "files/07_0122_meaning.mp3", - "audioExample": "files/07_0122_example.mp3", - "textMeaning": "To announce something is to make it known.", - "textExample": "He announced to everyone his new idea for the company.", - "transcription": "[ənáuns]", - "__v": 0, - "textExampleTranslate": "Он объявил всем свою новую идею для компании", - "textMeaningTranslate": "Объявить что-то значит сделать это известным", - "wordTranslate": "объявить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af51a" - }, - "group": 0, - "page": 6, - "word": "beside", - "image": "files/07_0123.jpg", - "audio": "files/07_0123.mp3", - "audioMeaning": "files/07_0123_meaning.mp3", - "audioExample": "files/07_0123_example.mp3", - "textMeaning": "Someone or something beside you is next to you.", - "textExample": "The two brothers stood beside each other.", - "transcription": "[bisáid]", - "__v": 0, - "textExampleTranslate": "Два брата стояли рядом друг с другом", - "textMeaningTranslate": "Кто-то или что-то рядом с тобой рядом с тобой", - "wordTranslate": "ряд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af51b" - }, - "group": 0, - "page": 6, - "word": "challenge", - "image": "files/07_0124.jpg", - "audio": "files/07_0124.mp3", - "audioMeaning": "files/07_0124_meaning.mp3", - "audioExample": "files/07_0124_example.mp3", - "textMeaning": "A challenge is something difficult to complete.", - "textExample": "It was a challenge to climb to the top of the mountain.", - "transcription": "[tʃǽlindʒ]", - "__v": 0, - "textExampleTranslate": "Это была проблема - подняться на вершину горы", - "textMeaningTranslate": "Задача - это нечто сложное", - "wordTranslate": "вызов" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af51c" - }, - "group": 0, - "page": 6, - "word": "claim", - "image": "files/07_0125.jpg", - "audio": "files/07_0125.mp3", - "audioMeaning": "files/07_0125_meaning.mp3", - "audioExample": "files/07_0125_example.mp3", - "textMeaning": "To claim means to say that something is true.", - "textExample": "He claimed to know why the country’s laws were weak.", - "transcription": "[kleim]", - "__v": 0, - "textExampleTranslate": "Он утверждал, что знает, почему законы страны были слабыми", - "textMeaningTranslate": "Утверждать - значит говорить, что что-то верно", - "wordTranslate": "запрос" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af51d" - }, - "group": 0, - "page": 6, - "word": "condition", - "image": "files/07_0126.jpg", - "audio": "files/07_0126.mp3", - "audioMeaning": "files/07_0126_meaning.mp3", - "audioExample": "files/07_0126_example.mp3", - "textMeaning": "The condition of someone or something is the state that they are in.", - "textExample": "The patient’s condition was very good.", - "transcription": "[kəndíʃən]", - "__v": 0, - "textExampleTranslate": "Состояние пациента было очень хорошим", - "textMeaningTranslate": "Состояние кого-то или чего-то - это состояние, в котором они находятся", - "wordTranslate": "состояние" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af51e" - }, - "group": 0, - "page": 6, - "word": "contribute", - "image": "files/07_0127.jpg", - "audio": "files/07_0127.mp3", - "audioMeaning": "files/07_0127_meaning.mp3", - "audioExample": "files/07_0127_example.mp3", - "textMeaning": "To contribute to something means to do something to make it successful.", - "textExample": "We decided to contribute money to the new hospital.", - "transcription": "[kəntríbjuːt]", - "__v": 0, - "textExampleTranslate": "Мы решили внести деньги в новую больницу", - "textMeaningTranslate": "Помогать чему-то - значит делать что-то, чтобы сделать это успешным", - "wordTranslate": "делать вклад" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af51f" - }, - "group": 0, - "page": 6, - "word": "difference", - "image": "files/07_0128.jpg", - "audio": "files/07_0128.mp3", - "audioMeaning": "files/07_0128_meaning.mp3", - "audioExample": "files/07_0128_example.mp3", - "textMeaning": "A difference is a way that something is not like other things.", - "textExample": "The biggest difference between the birds is the color of their feathers.", - "transcription": "[dífərəns]", - "__v": 0, - "textExampleTranslate": "Самая большая разница между птицами - это цвет их перьев", - "textMeaningTranslate": "Разница - это то, что что-то не так, как другие", - "wordTranslate": "разница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af520" - }, - "group": 0, - "page": 6, - "word": "divide", - "image": "files/07_0129.jpg", - "audio": "files/07_0129.mp3", - "audioMeaning": "files/07_0129_meaning.mp3", - "audioExample": "files/07_0129_example.mp3", - "textMeaning": "To divide something is to split it into smaller parts.", - "textExample": "We divided the pizza.", - "transcription": "[diváid]", - "__v": 0, - "textExampleTranslate": "Мы разделили пиццу", - "textMeaningTranslate": "Делить что-то - значит делить это на более мелкие части", - "wordTranslate": "делить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af521" - }, - "group": 0, - "page": 6, - "word": "expert", - "image": "files/07_0130.jpg", - "audio": "files/07_0130.mp3", - "audioMeaning": "files/07_0130_meaning.mp3", - "audioExample": "files/07_0130_example.mp3", - "textMeaning": "An expert is someone who is very good at doing something.", - "textExample": "The wizard was an expert at magic.", - "transcription": "[ékspəːrt]", - "__v": 0, - "textExampleTranslate": "Волшебник был экспертом в магии", - "textMeaningTranslate": "Эксперт - это тот, кто очень хорошо делает что-то", - "wordTranslate": "эксперт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af522" - }, - "group": 0, - "page": 6, - "word": "famous", - "image": "files/07_0131.jpg", - "audio": "files/07_0131.mp3", - "audioMeaning": "files/07_0131_meaning.mp3", - "audioExample": "files/07_0131_example.mp3", - "textMeaning": "A famous person or thing is well known.", - "textExample": "The Eiffel Tower in Paris is very famous.", - "transcription": "[féiməs]", - "__v": 0, - "textExampleTranslate": "Эйфелева башня в Париже очень известна", - "textMeaningTranslate": "Известный человек или вещь хорошо известна", - "wordTranslate": "известный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af523" - }, - "group": 0, - "page": 6, - "word": "force", - "image": "files/07_0132.jpg", - "audio": "files/07_0132.mp3", - "audioMeaning": "files/07_0132_meaning.mp3", - "audioExample": "files/07_0132_example.mp3", - "textMeaning": "Force is a person’s strength or power.", - "textExample": "He used all his force to try and open the door.", - "transcription": "[fɔːrs]", - "__v": 0, - "textExampleTranslate": "Он использовал все свои силы, чтобы попытаться открыть дверь", - "textMeaningTranslate": "Сила - это сила или сила человека", - "wordTranslate": "сила" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af524" - }, - "group": 0, - "page": 6, - "word": "harm", - "image": "files/07_0133.jpg", - "audio": "files/07_0133.mp3", - "audioMeaning": "files/07_0133_meaning.mp3", - "audioExample": "files/07_0133_example.mp3", - "textMeaning": "To cause harm is to hurt someone or damage something.", - "textExample": "A hot iron can cause great harm if you are not careful.", - "transcription": "[hɑːrm]", - "__v": 0, - "textExampleTranslate": "Горячий утюг может причинить большой вред, если вы не будете осторожны", - "textMeaningTranslate": "Причинить вред - значит причинить кому-то боль или что-то повредить", - "wordTranslate": "вред" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af525" - }, - "group": 0, - "page": 6, - "word": "lay", - "image": "files/07_0134.jpg", - "audio": "files/07_0134.mp3", - "audioMeaning": "files/07_0134_meaning.mp3", - "audioExample": "files/07_0134_example.mp3", - "textMeaning": "To lay means to put or place in a horizontal or flat position.", - "textExample": "Don’t lay your socks on the floor.", - "transcription": "[lei]", - "__v": 0, - "textExampleTranslate": "Не кладите носки на пол", - "textMeaningTranslate": "Уложить означает положить или поместить в горизонтальное или плоское положение", - "wordTranslate": "лежал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af526" - }, - "group": 0, - "page": 6, - "word": "peace", - "image": "files/07_0135.jpg", - "audio": "files/07_0135.mp3", - "audioMeaning": "files/07_0135_meaning.mp3", - "audioExample": "files/07_0135_example.mp3", - "textMeaning": "Peace is a time without war.", - "textExample": "A white dove is a symbol of peace.", - "transcription": "[piːs]", - "__v": 0, - "textExampleTranslate": "Белый голубь - символ мира", - "textMeaningTranslate": "Мир - это время без войны", - "wordTranslate": "мир" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af527" - }, - "group": 0, - "page": 6, - "word": "prince", - "image": "files/07_0136.jpg", - "audio": "files/07_0136.mp3", - "audioMeaning": "files/07_0136_meaning.mp3", - "audioExample": "files/07_0136_example.mp3", - "textMeaning": "A prince is the son of a king.", - "textExample": "The prince and the princess were married.", - "transcription": "[prins]", - "__v": 0, - "textExampleTranslate": "Принц и принцесса были женаты", - "textMeaningTranslate": "Принц - сын короля", - "wordTranslate": "принц" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af528" - }, - "group": 0, - "page": 6, - "word": "protect", - "image": "files/07_0137.jpg", - "audio": "files/07_0137.mp3", - "audioMeaning": "files/07_0137_meaning.mp3", - "audioExample": "files/07_0137_example.mp3", - "textMeaning": "To protect someone is to stop them from getting hurt.", - "textExample": "Firemen protect us from fires.", - "transcription": "[prətékt]", - "__v": 0, - "textExampleTranslate": "Пожарные защищают нас от пожаров", - "textMeaningTranslate": "Защищать кого-то - значит не дать им пострадать", - "wordTranslate": "защита" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af529" - }, - "group": 0, - "page": 6, - "word": "sense", - "image": "files/07_0138.jpg", - "audio": "files/07_0138.mp3", - "audioMeaning": "files/07_0138_meaning.mp3", - "audioExample": "files/07_0138_example.mp3", - "textMeaning": "To sense something is to know about it without being told.", - "textExample": "I could sense that he was watching me.", - "transcription": "[sens]", - "__v": 0, - "textExampleTranslate": "Я чувствовал, что он смотрит на меня", - "textMeaningTranslate": "Чувствовать что-то значит знать об этом, не сказав ничего", - "wordTranslate": "смысл" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af52a" - }, - "group": 0, - "page": 6, - "word": "sudden", - "image": "files/07_0139.jpg", - "audio": "files/07_0139.mp3", - "audioMeaning": "files/07_0139_meaning.mp3", - "audioExample": "files/07_0139_example.mp3", - "textMeaning": "When something is sudden, it happens very quickly.", - "textExample": "He felt a sudden pain in his chest.", - "transcription": "[sʌ́dn]", - "__v": 0, - "textExampleTranslate": "Он почувствовал внезапную боль в груди", - "textMeaningTranslate": "Когда что-то внезапно, это происходит очень быстро", - "wordTranslate": "внезапное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af52b" - }, - "group": 0, - "page": 6, - "word": "therefore", - "image": "files/07_0140.jpg", - "audio": "files/07_0140.mp3", - "audioMeaning": "files/07_0140_meaning.mp3", - "audioExample": "files/07_0140_example.mp3", - "textMeaning": "Therefore means for this reason.", - "textExample": "He is fat. Therefore, he should go on a diet.", - "transcription": "[ðɛ́əːrfɔ̀ːr]", - "__v": 0, - "textExampleTranslate": "Он толстый. Поэтому ему следует сесть на диету", - "textMeaningTranslate": "Поэтому значит по этой причине", - "wordTranslate": "следовательно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af52c" - }, - "group": 0, - "page": 7, - "word": "accept", - "image": "files/08_0141.jpg", - "audio": "files/08_0141.mp3", - "audioMeaning": "files/08_0141_meaning.mp3", - "audioExample": "files/08_0141_example.mp3", - "textMeaning": "To accept something that is offered is to take it.", - "textExample": "I accepted the girl’s very nice gift.", - "transcription": "[æksépt]", - "__v": 0, - "textExampleTranslate": "Я принял очень хороший подарок девушки", - "textMeaningTranslate": "Принять то, что предлагается, значит принять", - "wordTranslate": "принять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af52d" - }, - "group": 0, - "page": 7, - "word": "arrange", - "image": "files/08_0142.jpg", - "audio": "files/08_0142.mp3", - "audioMeaning": "files/08_0142_meaning.mp3", - "audioExample": "files/08_0142_example.mp3", - "textMeaning": "To arrange things is to put them in the right place.", - "textExample": "Please arrange the words in order from A to Z.", - "transcription": "[əréindʒ]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, расположите слова в порядке от А до Я", - "textMeaningTranslate": "Расставить вещи - значит поставить их в нужное место", - "wordTranslate": "организовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af52e" - }, - "group": 0, - "page": 7, - "word": "attend", - "image": "files/08_0143.jpg", - "audio": "files/08_0143.mp3", - "audioMeaning": "files/08_0143_meaning.mp3", - "audioExample": "files/08_0143_example.mp3", - "textMeaning": "To attend something is to go to it.", - "textExample": "My sister and I attend the same school.", - "transcription": "[əténd]", - "__v": 0, - "textExampleTranslate": "Мы с сестрой учимся в одной школе", - "textMeaningTranslate": "Побывать на чем-то - значит пойти на это", - "wordTranslate": "присутствовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af52f" - }, - "group": 0, - "page": 7, - "word": "chase", - "image": "files/08_0144.jpg", - "audio": "files/08_0144.mp3", - "audioMeaning": "files/08_0144_meaning.mp3", - "audioExample": "files/08_0144_example.mp3", - "textMeaning": "You chase people when you run after them and try to catch them.", - "textExample": "I was chased by a dog.", - "transcription": "[ʧeis]", - "__v": 0, - "textExampleTranslate": "Меня преследовала собака", - "textMeaningTranslate": "Вы преследуете людей, когда бежите за ними и пытаетесь поймать их", - "wordTranslate": "гнаться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af530" - }, - "group": 0, - "page": 7, - "word": "contrast", - "image": "files/08_0145.jpg", - "audio": "files/08_0145.mp3", - "audioMeaning": "files/08_0145_meaning.mp3", - "audioExample": "files/08_0145_example.mp3", - "textMeaning": "A contrast is a sharp difference between two things.", - "textExample": "The contrast between my parents is very noticeable.", - "transcription": "[kɑ́ntræst]", - "__v": 0, - "textExampleTranslate": "Контраст между моими родителями очень заметен", - "textMeaningTranslate": "Контраст - это резкая разница между двумя вещами", - "wordTranslate": "контраст" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af531" - }, - "group": 0, - "page": 7, - "word": "encourage", - "image": "files/08_0146.jpg", - "audio": "files/08_0146.mp3", - "audioMeaning": "files/08_0146_meaning.mp3", - "audioExample": "files/08_0146_example.mp3", - "textMeaning": "To encourage people is to make them want to do something.", - "textExample": "My football coach will encourage us when we are losing.", - "transcription": "[inkə́ːridʒ]", - "__v": 0, - "textExampleTranslate": "Мой футбольный тренер будет воодушевлять нас, когда мы проигрываем", - "textMeaningTranslate": "Воодушевлять людей - значит заставлять их хотеть что-то делать", - "wordTranslate": "поощрять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af532" - }, - "group": 0, - "page": 7, - "word": "familiar", - "image": "files/08_0147.jpg", - "audio": "files/08_0147.mp3", - "audioMeaning": "files/08_0147_meaning.mp3", - "audioExample": "files/08_0147_example.mp3", - "textMeaning": "People or things familiar to you are those you know well.", - "textExample": "The two friends were very familiar with each other.", - "transcription": "[fəmíljər]", - "__v": 0, - "textExampleTranslate": "Два друга были очень знакомы друг с другом", - "textMeaningTranslate": "Люди или вещи, которые вам знакомы, это те, кого вы хорошо знаете", - "wordTranslate": "знакомые" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af533" - }, - "group": 0, - "page": 7, - "word": "grab", - "image": "files/08_0148.jpg", - "audio": "files/08_0148.mp3", - "audioMeaning": "files/08_0148_meaning.mp3", - "audioExample": "files/08_0148_example.mp3", - "textMeaning": "To grab is to take a hold of someone or something suddenly.", - "textExample": "I grabbed a pear from the tree.", - "transcription": "[græb]", - "__v": 0, - "textExampleTranslate": "Я схватил грушу с дерева", - "textMeaningTranslate": "Захватить - значит схватить кого-то или что-то внезапно", - "wordTranslate": "захват" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af534" - }, - "group": 0, - "page": 7, - "word": "hang", - "image": "files/08_0149.jpg", - "audio": "files/08_0149.mp3", - "audioMeaning": "files/08_0149_meaning.mp3", - "audioExample": "files/08_0149_example.mp3", - "textMeaning": "To hang something is to keep it above the ground.", - "textExample": "I drew a picture of my family, and my mother hung it on the wall.", - "transcription": "[hæŋ]", - "__v": 0, - "textExampleTranslate": "Я нарисовал картину своей семьи, а мама повесила ее на стену", - "textMeaningTranslate": "Повесить что-то значит держать его над землей", - "wordTranslate": "повесить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af535" - }, - "group": 0, - "page": 7, - "word": "huge", - "image": "files/08_0150.jpg", - "audio": "files/08_0150.mp3", - "audioMeaning": "files/08_0150_meaning.mp3", - "audioExample": "files/08_0150_example.mp3", - "textMeaning": "If something is huge, it is very big.", - "textExample": "At work, my father drives a huge truck.", - "transcription": "[hjuːdʒ]", - "__v": 0, - "textExampleTranslate": "На работе мой отец водит огромный грузовик", - "textMeaningTranslate": "Если что-то огромное, оно очень большое", - "wordTranslate": "огромный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af536" - }, - "group": 0, - "page": 7, - "word": "necessary", - "image": "files/08_0151.jpg", - "audio": "files/08_0151.mp3", - "audioMeaning": "files/08_0151_meaning.mp3", - "audioExample": "files/08_0151_example.mp3", - "textMeaning": "If something is necessary, you must do it.", - "textExample": "A passport is necessary if you travel to other countries.", - "transcription": "[nésəsèri]", - "__v": 0, - "textExampleTranslate": "Паспорт необходим, если вы путешествуете в другие страны", - "textMeaningTranslate": "Если что-то нужно, ты должен это сделать", - "wordTranslate": "нужно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af537" - }, - "group": 0, - "page": 7, - "word": "propose", - "image": "files/08_0153.jpg", - "audio": "files/08_0153.mp3", - "audioMeaning": "files/08_0153_meaning.mp3", - "audioExample": "files/08_0153_example.mp3", - "textMeaning": "To propose something is to say that it should be done.", - "textExample": "My grandmother proposed that we have our picture taken with Santa.", - "transcription": "[prəpóuz]", - "__v": 0, - "textExampleTranslate": "Моя бабушка предложила сфотографироваться с Санта", - "textMeaningTranslate": "Предложить что-то - значит сказать, что это должно быть сделано", - "wordTranslate": "предложить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af538" - }, - "group": 0, - "page": 7, - "word": "pattern", - "image": "files/08_0152.jpg", - "audio": "files/08_0152.mp3", - "audioMeaning": "files/08_0152_meaning.mp3", - "audioExample": "files/08_0152_example.mp3", - "textMeaning": "A pattern is a way in which something is done or organized.", - "textExample": "My pattern of brushing my teeth is the same as most people’s.", - "transcription": "[pǽtərn]", - "__v": 0, - "textExampleTranslate": "Мой порядок чистки зубов такой же, как у большинства людей", - "textMeaningTranslate": "Шаблон - это способ, которым что-то делается или организовано", - "wordTranslate": "шаблон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af539" - }, - "group": 0, - "page": 7, - "word": "purpose", - "image": "files/08_0154.jpg", - "audio": "files/08_0154.mp3", - "audioMeaning": "files/08_0154_meaning.mp3", - "audioExample": "files/08_0154_example.mp3", - "textMeaning": "A purpose is the reason that you do something.", - "textExample": "The purpose of exercising is to get into shape.", - "transcription": "[pə́ːrpəs]", - "__v": 0, - "textExampleTranslate": "Цель упражнений - прийти в форму", - "textMeaningTranslate": "Цель - это причина, по которой ты что-то делаешь", - "wordTranslate": "цель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af53a" - }, - "group": 0, - "page": 7, - "word": "release", - "image": "files/08_0155.jpg", - "audio": "files/08_0155.mp3", - "audioMeaning": "files/08_0155_meaning.mp3", - "audioExample": "files/08_0155_example.mp3", - "textMeaning": "To release something is to stop holding it.", - "textExample": "She released the bird from her hands.", - "transcription": "[rilíːs]", - "__v": 0, - "textExampleTranslate": "Она выпустила птицу из рук", - "textMeaningTranslate": "Выпустить что-то - значит перестать держать это", - "wordTranslate": "релиз" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af53b" - }, - "group": 0, - "page": 7, - "word": "require", - "image": "files/08_0156.jpg", - "audio": "files/08_0156.mp3", - "audioMeaning": "files/08_0156_meaning.mp3", - "audioExample": "files/08_0156_example.mp3", - "textMeaning": "To require something is to say that it is necessary.", - "textExample": "We require teachers to have a university degree.", - "transcription": "[rikwáiəːr]", - "__v": 0, - "textExampleTranslate": "Мы требуем, чтобы преподаватели имели высшее образование", - "textMeaningTranslate": "Требовать чего-то - значит говорить, что это необходимо", - "wordTranslate": "требуют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af53c" - }, - "group": 0, - "page": 7, - "word": "single", - "image": "files/08_0158.jpg", - "audio": "files/08_0158.mp3", - "audioMeaning": "files/08_0158_meaning.mp3", - "audioExample": "files/08_0158_example.mp3", - "textMeaning": "If something is single, then there is only one.", - "textExample": "I have a single key in my hand.", - "transcription": "[síŋgəl]", - "__v": 0, - "textExampleTranslate": "У меня в руке один ключ", - "textMeaningTranslate": "Если что-то одно, то есть только одно", - "wordTranslate": "один" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af53d" - }, - "group": 0, - "page": 7, - "word": "satisfied", - "image": "files/08_0157.jpg", - "audio": "files/08_0157.mp3", - "audioMeaning": "files/08_0157_meaning.mp3", - "audioExample": "files/08_0157_example.mp3", - "textMeaning": "You are satisfied when you have what you wanted.", - "textExample": "I am very satisfied with your work.", - "transcription": "[sǽtisfàid]", - "__v": 0, - "textExampleTranslate": "Я очень доволен вашей работой", - "textMeaningTranslate": "Вы удовлетворены, когда у вас есть то, что вы хотели", - "wordTranslate": "доволен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af53e" - }, - "group": 0, - "page": 7, - "word": "tear", - "image": "files/08_0159.jpg", - "audio": "files/08_0159.mp3", - "audioMeaning": "files/08_0159_meaning.mp3", - "audioExample": "files/08_0159_example.mp3", - "textMeaning": "To tear something means to pull it apart.", - "textExample": "It is easy to tear paper.", - "transcription": "[teər]", - "__v": 0, - "textExampleTranslate": "Бумагу легко порвать", - "textMeaningTranslate": "Разорвать что-то - значит разорвать это на части", - "wordTranslate": "слеза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af53f" - }, - "group": 0, - "page": 7, - "word": "theory", - "image": "files/08_0160.jpg", - "audio": "files/08_0160.mp3", - "audioMeaning": "files/08_0160_meaning.mp3", - "audioExample": "files/08_0160_example.mp3", - "textMeaning": "A theory is an idea about how something works.", - "textExample": "We talked about Einstein’s theory of relativity in class.", - "transcription": "[θíːəri]", - "__v": 0, - "textExampleTranslate": "Мы говорили о теории относительности Эйнштейна в классе", - "textMeaningTranslate": "Теория - это идея о том, как что-то работает", - "wordTranslate": "теория" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af540" - }, - "group": 0, - "page": 8, - "word": "animal", - "image": "files/09_0161.jpg", - "audio": "files/09_0161.mp3", - "audioMeaning": "files/09_0161_meaning.mp3", - "audioExample": "files/09_0161_example.mp3", - "textMeaning": "An animal is a living thing that can move.", - "textExample": "My favorite animal is the panda.", - "transcription": "[ǽnəməl]", - "__v": 0, - "textExampleTranslate": "Мое любимое животное - панда", - "textMeaningTranslate": "Животное - это живое существо, которое может двигаться", - "wordTranslate": "животное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af541" - }, - "group": 0, - "page": 8, - "word": "bus", - "image": "files/09_0162.jpg", - "audio": "files/09_0162.mp3", - "audioMeaning": "files/09_0162_meaning.mp3", - "audioExample": "files/09_0162_example.mp3", - "textMeaning": "A bus is a large vehicle that people travel on.", - "textExample": "My father takes the bus to work.", - "transcription": "[bʌs]", - "__v": 0, - "textExampleTranslate": "Мой отец садится на автобус на работу", - "textMeaningTranslate": "Автобус - это большой транспорт, по которому люди едут", - "wordTranslate": "автобус" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af542" - }, - "group": 0, - "page": 8, - "word": "cat", - "image": "files/09_0163.jpg", - "audio": "files/09_0163.mp3", - "audioMeaning": "files/09_0163_meaning.mp3", - "audioExample": "files/09_0163_example.mp3", - "textMeaning": "A cat is a small animal related to lions and tigers that is kept as a pet.", - "textExample": "This cat is playing with a ball.", - "transcription": "[kæt]", - "__v": 0, - "textExampleTranslate": "Этот кот играет с мячом", - "textMeaningTranslate": "Кошка - это маленькое животное, связанное со львами и тиграми, которое содержится как домашнее животное", - "wordTranslate": "кошка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af543" - }, - "group": 0, - "page": 8, - "word": "command", - "image": "files/09_0164.jpg", - "audio": "files/09_0164.mp3", - "audioMeaning": "files/09_0164_meaning.mp3", - "audioExample": "files/09_0164_example.mp3", - "textMeaning": "A command is an order given to a person or animal to do something.", - "textExample": "Joe gave the students a command to stand up.", - "transcription": "[kəmǽnd]", - "__v": 0, - "textExampleTranslate": "Джо дал студентам команду встать", - "textMeaningTranslate": "Команда - это приказ человеку или животному что-то делать", - "wordTranslate": "команда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af544" - }, - "group": 0, - "page": 8, - "word": "depend", - "image": "files/09_0165.jpg", - "audio": "files/09_0165.mp3", - "audioMeaning": "files/09_0165_meaning.mp3", - "audioExample": "files/09_0165_example.mp3", - "textMeaning": "To depend on something is to need it for support or help.", - "textExample": "My grandfather depends on a cane when he walks.", - "transcription": "[dipénd]", - "__v": 0, - "textExampleTranslate": "Мой дедушка зависит от трости, когда он гуляет", - "textMeaningTranslate": "Чтобы зависеть от чего-то, нужно нуждаться в поддержке или помощи", - "wordTranslate": "зависит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af545" - }, - "group": 0, - "page": 8, - "word": "dog", - "image": "files/09_0166.jpg", - "audio": "files/09_0166.mp3", - "audioMeaning": "files/09_0166_meaning.mp3", - "audioExample": "files/09_0166_example.mp3", - "textMeaning": "A dog is an animal with four legs and a tail that is kept as a pet or trained to work.", - "textExample": "This woman’s best friend is her dog.", - "transcription": "[dɔːg]", - "__v": 0, - "textExampleTranslate": "Лучший друг этой женщины - ее собака", - "textMeaningTranslate": "Собака - это животное с четырьмя ногами и хвостом, которого держат в качестве домашнего животного или обучают работать", - "wordTranslate": "собака" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af546" - }, - "group": 0, - "page": 8, - "word": "door", - "image": "files/09_0167.jpg", - "audio": "files/09_0167.mp3", - "audioMeaning": "files/09_0167_meaning.mp3", - "audioExample": "files/09_0167_example.mp3", - "textMeaning": "A door is an object that swings or slides open and shut.", - "textExample": "Can you close the door, please?", - "transcription": "[dɔːr]", - "__v": 0, - "textExampleTranslate": "Можете ли вы закрыть дверь, пожалуйста?", - "textMeaningTranslate": "Дверь - это объект, который распахивается или скользит, открывается и закрывается", - "wordTranslate": "дверь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af547" - }, - "group": 0, - "page": 8, - "word": "friend", - "image": "files/09_0168.jpg", - "audio": "files/09_0168.mp3", - "audioMeaning": "files/09_0168_meaning.mp3", - "audioExample": "files/09_0168_example.mp3", - "textMeaning": "A friend is someone a person knows and likes spending time with.", - "textExample": "Brian’s friend is very sad.", - "transcription": "[frend]", - "__v": 0, - "textExampleTranslate": "Друг Брайана очень грустный", - "textMeaningTranslate": "Друг - это тот, с кем знаком и любит проводить время", - "wordTranslate": "друг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af548" - }, - "group": 0, - "page": 8, - "word": "hear", - "image": "files/09_0169.jpg", - "audio": "files/09_0169.mp3", - "audioMeaning": "files/09_0169_meaning.mp3", - "audioExample": "files/09_0169_example.mp3", - "textMeaning": "To hear is to be aware of sound through your ears.", - "textExample": "Michelle cannot hear what you are saying.", - "transcription": "[hiər]", - "__v": 0, - "textExampleTranslate": "Мишель не слышит, что ты говоришь", - "textMeaningTranslate": "Слышать - значит осознавать звук через уши", - "wordTranslate": "слышать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af549" - }, - "group": 0, - "page": 8, - "word": "help", - "image": "files/09_0170.jpg", - "audio": "files/09_0170.mp3", - "audioMeaning": "files/09_0170_meaning.mp3", - "audioExample": "files/09_0170_example.mp3", - "textMeaning": "To help is to do something that makes something easier for someone else.", - "textExample": "Jane can help Nathan climb up the rock.", - "transcription": "[help]", - "__v": 0, - "textExampleTranslate": "Джейн может помочь Натану взобраться на скалу", - "textMeaningTranslate": "Помочь - сделать что-то, что облегчает кому-то еще", - "wordTranslate": "помогите" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af54a" - }, - "group": 0, - "page": 8, - "word": "horse", - "image": "files/09_0171.jpg", - "audio": "files/09_0171.mp3", - "audioMeaning": "files/09_0171_meaning.mp3", - "audioExample": "files/09_0171_example.mp3", - "textMeaning": "A horse is a big, strong animal that people ride and use for pulling heavy things.", - "textExample": "I went to a farm and saw a horse.", - "transcription": "[hɔːrs]", - "__v": 0, - "textExampleTranslate": "Я пошел на ферму и увидел лошадь", - "textMeaningTranslate": "Лошадь - это большое, сильное животное, которого люди едут и используют для того, чтобы тянуть тяжелые вещи", - "wordTranslate": "лошадь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af54b" - }, - "group": 0, - "page": 8, - "word": "hospital", - "image": "files/09_0172.jpg", - "audio": "files/09_0172.mp3", - "audioMeaning": "files/09_0172_meaning.mp3", - "audioExample": "files/09_0172_example.mp3", - "textMeaning": "A hospital is where sick or hurt people receive care or treatment.", - "textExample": "The doctor talks to a patient at the hospital.", - "transcription": "[hάspitl]", - "__v": 0, - "textExampleTranslate": "Доктор разговаривает с пациентом в больнице", - "textMeaningTranslate": "Больница - это место, где больные или пострадавшие получают помощь или лечение", - "wordTranslate": "больница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af54c" - }, - "group": 0, - "page": 8, - "word": "leg", - "image": "files/09_0173.jpg", - "audio": "files/09_0173.mp3", - "audioMeaning": "files/09_0173_meaning.mp3", - "audioExample": "files/09_0173_example.mp3", - "textMeaning": "A leg is a body part used for standing and walking.", - "textExample": "She hurt her leg.", - "transcription": "[leg]", - "__v": 0, - "textExampleTranslate": "Она повредила ногу", - "textMeaningTranslate": "Нога - это часть тела, используемая для стояния и ходьбы", - "wordTranslate": "нога" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af54d" - }, - "group": 0, - "page": 8, - "word": "medical", - "image": "files/09_0174.jpg", - "audio": "files/09_0174.mp3", - "audioMeaning": "files/09_0174_meaning.mp3", - "audioExample": "files/09_0174_example.mp3", - "textMeaning": "Medical means related to the treatment of an injury or disease.", - "textExample": "Tyler is a medical student studying to become a doctor.", - "transcription": "[médikəl]", - "__v": 0, - "textExampleTranslate": "Тайлер студент-медик учится на доктора", - "textMeaningTranslate": "Медицинские средства, связанные с лечением травмы или заболевания", - "wordTranslate": "медицинский" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af54e" - }, - "group": 0, - "page": 8, - "word": "open", - "image": "files/09_0175.jpg", - "audio": "files/09_0175.mp3", - "audioMeaning": "files/09_0175_meaning.mp3", - "audioExample": "files/09_0175_example.mp3", - "textMeaning": "To open is to move something so that an opening is not covered.", - "textExample": "Amy likes to open the window to let fresh air in.", - "transcription": "[óupən]", - "__v": 0, - "textExampleTranslate": "Эми нравится открывать окно, чтобы впустить свежий воздух", - "textMeaningTranslate": "Открыть - это переместить что-то, чтобы отверстие не закрылось", - "wordTranslate": "открытый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af54f" - }, - "group": 0, - "page": 8, - "word": "pull", - "image": "files/09_0176.jpg", - "audio": "files/09_0176.mp3", - "audioMeaning": "files/09_0176_meaning.mp3", - "audioExample": "files/09_0176_example.mp3", - "textMeaning": "To pull is to hold onto something to move it toward you.", - "textExample": "The children pull the rope.", - "transcription": "[pul]", - "__v": 0, - "textExampleTranslate": "Дети тянут веревку", - "textMeaningTranslate": "Тянуть - значит держаться за что-то, чтобы двигать это к тебе", - "wordTranslate": "вытащить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af550" - }, - "group": 0, - "page": 8, - "word": "rabbit", - "image": "files/09_0177.jpg", - "audio": "files/09_0177.mp3", - "audioMeaning": "files/09_0177_meaning.mp3", - "audioExample": "files/09_0177_example.mp3", - "textMeaning": "A rabbit is a small animal with long ears that lives in a hole in the ground.", - "textExample": "Look at the rabbit in the park.", - "transcription": "[rǽbit]", - "__v": 0, - "textExampleTranslate": "Посмотри на кролика в парке", - "textMeaningTranslate": "Кролик - это маленькое животное с длинными ушами, которое живет в яме в земле", - "wordTranslate": "кролик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af551" - }, - "group": 0, - "page": 8, - "word": "school", - "image": "files/09_0178.jpg", - "audio": "files/09_0178.mp3", - "audioMeaning": "files/09_0178_meaning.mp3", - "audioExample": "files/09_0178_example.mp3", - "textMeaning": "A school is a place where children go to learn.", - "textExample": "The students study at school.", - "transcription": "[skuːl]", - "__v": 0, - "textExampleTranslate": "Ученики учатся в школе", - "textMeaningTranslate": "Школа - это место, куда дети ходят учиться", - "wordTranslate": "школа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af552" - }, - "group": 0, - "page": 8, - "word": "see", - "image": "files/09_0179.jpg", - "audio": "files/09_0179.mp3", - "audioMeaning": "files/09_0179_meaning.mp3", - "audioExample": "files/09_0179_example.mp3", - "textMeaning": "To see is to use your eyes to look at something or someone.", - "textExample": "Steven does not want to see the scary picture.", - "transcription": "[siː]", - "__v": 0, - "textExampleTranslate": "Стивен не хочет видеть страшную картину", - "textMeaningTranslate": "Видеть - значит использовать глаза, чтобы смотреть на что-то или кого-то", - "wordTranslate": "видеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af553" - }, - "group": 0, - "page": 8, - "word": "service", - "image": "files/09_0180.jpg", - "audio": "files/09_0180.mp3", - "audioMeaning": "files/09_0180_meaning.mp3", - "audioExample": "files/09_0180_example.mp3", - "textMeaning": "Service is the act of helping or serving someone.", - "textExample": "This coffee shop has excellent service.", - "transcription": "[sə́ːrvis]", - "__v": 0, - "textExampleTranslate": "В этой кофейне отличный сервис", - "textMeaningTranslate": "Служба - это акт помощи или служения кому-либо", - "wordTranslate": "служба" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af554" - }, - "group": 0, - "page": 9, - "word": "benefit", - "image": "files/10_0181.jpg", - "audio": "files/10_0181.mp3", - "audioMeaning": "files/10_0181_meaning.mp3", - "audioExample": "files/10_0181_example.mp3", - "textMeaning": "A benefit is a good thing.", - "textExample": "Being able to fly is a benefit to birds.", - "transcription": "[bénəfit]", - "__v": 0, - "textExampleTranslate": "Умение летать приносит пользу птицам", - "textMeaningTranslate": "Благо это хорошо", - "wordTranslate": "выгода" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af555" - }, - "group": 0, - "page": 9, - "word": "far", - "image": "files/10_0186.jpg", - "audio": "files/10_0186.mp3", - "audioMeaning": "files/10_0186_meaning.mp3", - "audioExample": "files/10_0186_example.mp3", - "textMeaning": "If something is far, it is not close.", - "textExample": "It’s far from the east coast to the west coast of America.", - "transcription": "[fɑːr]", - "__v": 0, - "textExampleTranslate": "Это далеко от восточного побережья до западного побережья Америки", - "textMeaningTranslate": "Если что-то далеко, это не близко", - "wordTranslate": "далеко" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af556" - }, - "group": 0, - "page": 9, - "word": "effect", - "image": "files/10_0184.jpg", - "audio": "files/10_0184.mp3", - "audioMeaning": "files/10_0184_meaning.mp3", - "audioExample": "files/10_0184_example.mp3", - "textMeaning": "An effect is a change made by something else.", - "textExample": "The medicine had a good effect on the boy.", - "transcription": "[ifékt]", - "__v": 0, - "textExampleTranslate": "Лекарство оказало хорошее влияние на мальчика", - "textMeaningTranslate": "Эффект - это изменение, сделанное чем-то другим", - "wordTranslate": "эффект" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af557" - }, - "group": 0, - "page": 9, - "word": "chance", - "image": "files/10_0183.jpg", - "audio": "files/10_0183.mp3", - "audioMeaning": "files/10_0183_meaning.mp3", - "audioExample": "files/10_0183_example.mp3", - "textMeaning": "A chance is an opportunity to do something.", - "textExample": "I had a chance to see the Coliseum in Rome last summer.", - "transcription": "[tʃæns]", - "__v": 0, - "textExampleTranslate": "У меня был шанс увидеть Колизей в Риме прошлым летом", - "textMeaningTranslate": "Шанс есть возможность что-то сделать", - "wordTranslate": "шанс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af558" - }, - "group": 0, - "page": 9, - "word": "essential", - "image": "files/10_0185.jpg", - "audio": "files/10_0185.mp3", - "audioMeaning": "files/10_0185_meaning.mp3", - "audioExample": "files/10_0185_example.mp3", - "textMeaning": "If something is essential, it is very important and necessary.", - "textExample": "It is essential to have oxygen when you scuba dive.", - "transcription": "[isénʃəl]", - "__v": 0, - "textExampleTranslate": "Крайне важно иметь кислород, когда вы погружаетесь с аквалангом", - "textMeaningTranslate": "Если что-то важно, это очень важно и необходимо", - "wordTranslate": "существенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af559" - }, - "group": 0, - "page": 9, - "word": "certain", - "image": "files/10_0182.jpg", - "audio": "files/10_0182.mp3", - "audioMeaning": "files/10_0182_meaning.mp3", - "audioExample": "files/10_0182_example.mp3", - "textMeaning": "If you are certain about something, you know it is true.", - "textExample": "I am certain that zebras have stripes.", - "transcription": "[sə́ːrtən]", - "__v": 0, - "textExampleTranslate": "Я уверен, что у зебр есть полоски", - "textMeaningTranslate": "Если вы уверены в чем-то, вы знаете, что это правда", - "wordTranslate": "определенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af55a" - }, - "group": 0, - "page": 9, - "word": "focus", - "image": "files/10_0187.jpg", - "audio": "files/10_0187.mp3", - "audioMeaning": "files/10_0187_meaning.mp3", - "audioExample": "files/10_0187_example.mp3", - "textMeaning": "To focus on something is to think about it and pay attention to it.", - "textExample": "My mom always helps me to focus on my school work.", - "transcription": "[fóukəs]", - "__v": 0, - "textExampleTranslate": "Моя мама всегда помогает мне сосредоточиться на школьной работе", - "textMeaningTranslate": "Сосредоточиться на чем-то - значит думать об этом и обращать на это внимание", - "wordTranslate": "фокус" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af55b" - }, - "group": 0, - "page": 9, - "word": "guard", - "image": "files/10_0190.jpg", - "audio": "files/10_0190.mp3", - "audioMeaning": "files/10_0190_meaning.mp3", - "audioExample": "files/10_0190_example.mp3", - "textMeaning": "To guard something is to take care of it.", - "textExample": "The police officer will guard us from any harm.", - "transcription": "[gɑːrd]", - "__v": 0, - "textExampleTranslate": "Полицейский будет охранять нас от любого вреда", - "textMeaningTranslate": "Охранять что-то значит заботиться об этом", - "wordTranslate": "охранник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af55c" - }, - "group": 0, - "page": 9, - "word": "grass", - "image": "files/10_0189.jpg", - "audio": "files/10_0189.mp3", - "audioMeaning": "files/10_0189_meaning.mp3", - "audioExample": "files/10_0189_example.mp3", - "textMeaning": "Grass is the green leaves that cover the ground.", - "textExample": "The grass looked so soft and green.", - "transcription": "[græs]", - "__v": 0, - "textExampleTranslate": "Трава выглядела такой мягкой и зеленой", - "textMeaningTranslate": "Трава - это зеленые листья, которые покрывают землю", - "wordTranslate": "трава" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af55d" - }, - "group": 0, - "page": 9, - "word": "function", - "image": "files/10_0188.jpg", - "audio": "files/10_0188.mp3", - "audioMeaning": "files/10_0188_meaning.mp3", - "audioExample": "files/10_0188_example.mp3", - "textMeaning": "The function of something is what it does.", - "textExample": "The function of a flashlight is to help you see in the dark.", - "transcription": "[fʌ́ŋkʃən]", - "__v": 0, - "textExampleTranslate": "Функция фонарика состоит в том, чтобы помочь вам видеть в темноте", - "textMeaningTranslate": "Функция чего-то - это то, что он делает", - "wordTranslate": "функция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af55e" - }, - "group": 0, - "page": 9, - "word": "image", - "image": "files/10_0191.jpg", - "audio": "files/10_0191.mp3", - "audioMeaning": "files/10_0191_meaning.mp3", - "audioExample": "files/10_0191_example.mp3", - "textMeaning": "The image of something is a picture of it.", - "textExample": "The image of her eye was very clear.", - "transcription": "[ímidʒ]", - "__v": 0, - "textExampleTranslate": "Образ ее глаза был очень четким", - "textMeaningTranslate": "Образ чего-то есть изображение этого", - "wordTranslate": "образ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af55f" - }, - "group": 0, - "page": 9, - "word": "immediate", - "image": "files/10_0192.jpg", - "audio": "files/10_0192.mp3", - "audioMeaning": "files/10_0192_meaning.mp3", - "audioExample": "files/10_0192_example.mp3", - "textMeaning": "If something is immediate, it happens quickly.", - "textExample": "An immediate response came from the pizza place.", - "transcription": "[imíːdiət]", - "__v": 0, - "textExampleTranslate": "Немедленный ответ пришел из пиццерии", - "textMeaningTranslate": "Если что-то происходит немедленно, это происходит быстро", - "wordTranslate": "немедленно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af560" - }, - "group": 0, - "page": 9, - "word": "primary", - "image": "files/10_0193.jpg", - "audio": "files/10_0193.mp3", - "audioMeaning": "files/10_0193_meaning.mp3", - "audioExample": "files/10_0193_example.mp3", - "textMeaning": "If something is primary, it is the most important thing.", - "textExample": "His primary thoughts are about money.", - "transcription": "[práimeri]", - "__v": 0, - "textExampleTranslate": "Его главные мысли о деньгах", - "textMeaningTranslate": "Если что-то первично, это самое главное", - "wordTranslate": "первичный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af561" - }, - "group": 0, - "page": 9, - "word": "rest", - "image": "files/10_0196.jpg", - "audio": "files/10_0196.mp3", - "audioMeaning": "files/10_0196_meaning.mp3", - "audioExample": "files/10_0196_example.mp3", - "textMeaning": "To rest is to stop being active while the body gets back its strength.", - "textExample": "I rested on the couch after work.", - "transcription": "[rest]", - "__v": 0, - "textExampleTranslate": "Я отдыхал на диване после работы", - "textMeaningTranslate": "Отдыхать - значит перестать быть активным, пока тело восстанавливает силы", - "wordTranslate": "остаток" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af562" - }, - "group": 0, - "page": 9, - "word": "remain", - "image": "files/10_0195.jpg", - "audio": "files/10_0195.mp3", - "audioMeaning": "files/10_0195_meaning.mp3", - "audioExample": "files/10_0195_example.mp3", - "textMeaning": "To remain somewhere is to stay there.", - "textExample": "My sister had to remain home since she was sick.", - "transcription": "[riméin]", - "__v": 0, - "textExampleTranslate": "Моя сестра должна была оставаться дома, так как она была больна", - "textMeaningTranslate": "Оставаться где-то - значит оставаться там", - "wordTranslate": "остаются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af563" - }, - "group": 0, - "page": 9, - "word": "proud", - "image": "files/10_0194.jpg", - "audio": "files/10_0194.mp3", - "audioMeaning": "files/10_0194_meaning.mp3", - "audioExample": "files/10_0194_example.mp3", - "textMeaning": "People who feel proud are happy about what they have done.", - "textExample": "She is proud of the picture she drew of her house.", - "transcription": "[praud]", - "__v": 0, - "textExampleTranslate": "Она гордится картиной, которую она нарисовала в своем доме", - "textMeaningTranslate": "Люди, которые гордятся, довольны тем, что они сделали", - "wordTranslate": "гордый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af564" - }, - "group": 0, - "page": 9, - "word": "separate", - "image": "files/10_0197.jpg", - "audio": "files/10_0197.mp3", - "audioMeaning": "files/10_0197_meaning.mp3", - "audioExample": "files/10_0197_example.mp3", - "textMeaning": "If two things are separate, they are not together.", - "textExample": "New York and Los Angeles are in two separate parts of America.", - "transcription": "[sépərèit]", - "__v": 0, - "textExampleTranslate": "Нью-Йорк и Лос-Анджелес находятся в двух разных частях Америки", - "textMeaningTranslate": "Если две вещи разные, они не вместе", - "wordTranslate": "отделить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af567" - }, - "group": 0, - "page": 10, - "word": "advertise", - "image": "files/11_0201.jpg", - "audio": "files/11_0201.mp3", - "audioMeaning": "files/11_0201_meaning.mp3", - "audioExample": "files/11_0201_example.mp3", - "textMeaning": "To advertise is to describe or draw attention to a product or event by using a public medium.", - "textExample": "The woman started a new company and needed to advertise her products.", - "transcription": "[ǽdvərtàiz]", - "__v": 0, - "textExampleTranslate": "Женщина основала новую компанию и ей нужно было рекламировать свою одукцию", - "textMeaningTranslate": "Рекламировать означает описывать или привлекать внимание к продукту или событию с помощью общедоступного средства массовой информации", - "wordTranslate": "реклама" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af566" - }, - "group": 0, - "page": 9, - "word": "trouble", - "image": "files/10_0200.jpg", - "audio": "files/10_0200.mp3", - "audioMeaning": "files/10_0200_meaning.mp3", - "audioExample": "files/10_0200_example.mp3", - "textMeaning": "Trouble is a problem or a difficulty.", - "textExample": "I have trouble working with my boss.", - "transcription": "[trʌ́bəl]", - "__v": 0, - "textExampleTranslate": "У меня проблемы с работой с моим боссом", - "textMeaningTranslate": "Проблема - это проблема или трудность", - "wordTranslate": "беда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af569" - }, - "group": 0, - "page": 10, - "word": "aware", - "image": "files/11_0202.jpg", - "audio": "files/11_0202.mp3", - "audioMeaning": "files/11_0202_meaning.mp3", - "audioExample": "files/11_0202_example.mp3", - "textMeaning": "If someone is aware, they know that something or a situation exists.", - "textExample": "The student became aware that the teacher was watching him.", - "transcription": "[əwέər]", - "__v": 0, - "textExampleTranslate": "Ученик осознал, что учитель следит за ним", - "textMeaningTranslate": "Если кто-то знает, он знает, что что-то или ситуация существует", - "wordTranslate": "знают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af568" - }, - "group": 0, - "page": 9, - "word": "tail", - "image": "files/10_0199.jpg", - "audio": "files/10_0199.mp3", - "audioMeaning": "files/10_0199_meaning.mp3", - "audioExample": "files/10_0199_example.mp3", - "textMeaning": "A tail is a part of an animal’s body that sticks out from its rear or back.", - "textExample": "Our dog wags its tail when it’s happy.", - "transcription": "[teil]", - "__v": 0, - "textExampleTranslate": "Наша собака виляет хвостом, когда она счастлива", - "textMeaningTranslate": "Хвост - это часть тела животного, которая торчит из его спины или спины", - "wordTranslate": "хвост" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af565" - }, - "group": 0, - "page": 9, - "word": "site", - "image": "files/10_0198.jpg", - "audio": "files/10_0198.mp3", - "audioMeaning": "files/10_0198_meaning.mp3", - "audioExample": "files/10_0198_example.mp3", - "textMeaning": "A site is a place.", - "textExample": "We found the perfect site for our picnic.", - "transcription": "[sait]", - "__v": 0, - "textExampleTranslate": "Мы нашли идеальное место для нашего пикника", - "textMeaningTranslate": "Сайт - это место", - "wordTranslate": "сайт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af56a" - }, - "group": 0, - "page": 10, - "word": "battery", - "image": "files/11_0203.jpg", - "audio": "files/11_0203.mp3", - "audioMeaning": "files/11_0203_meaning.mp3", - "audioExample": "files/11_0203_example.mp3", - "textMeaning": "A battery is an object placed inside something to supply it with electricity.", - "textExample": "My brother needs a battery for his clock.", - "transcription": "[bǽtəri]", - "__v": 0, - "textExampleTranslate": "Моему брату нужна батарея для его часов", - "textMeaningTranslate": "Батарея - это объект, помещенный внутрь чего-либо, чтобы обеспечить его электричеством", - "wordTranslate": "батарея" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af56b" - }, - "group": 0, - "page": 10, - "word": "black", - "image": "files/11_0204.jpg", - "audio": "files/11_0204.mp3", - "audioMeaning": "files/11_0204_meaning.mp3", - "audioExample": "files/11_0204_example.mp3", - "textMeaning": "Black is the darkest color.", - "textExample": "Our street is black at night because there are no street lights.", - "transcription": "[blæk]", - "__v": 0, - "textExampleTranslate": "Наша улица ночью черная, потому что нет уличных фонарей", - "textMeaningTranslate": "Черный самый темный цвет", - "wordTranslate": "черный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af56c" - }, - "group": 0, - "page": 10, - "word": "clean", - "image": "files/11_0206.jpg", - "audio": "files/11_0206.mp3", - "audioMeaning": "files/11_0206_meaning.mp3", - "audioExample": "files/11_0206_example.mp3", - "textMeaning": "To clean is to make something neat and tidy.", - "textExample": "I clean our kitchen every Saturday.", - "transcription": "[kliːn]", - "__v": 0, - "textExampleTranslate": "Я убираю нашу кухню каждую субботу", - "textMeaningTranslate": "Чистить - значит делать что-то аккуратное и опрятное", - "wordTranslate": "чистый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af56d" - }, - "group": 0, - "page": 10, - "word": "city", - "image": "files/11_0205.jpg", - "audio": "files/11_0205.mp3", - "audioMeaning": "files/11_0205_meaning.mp3", - "audioExample": "files/11_0205_example.mp3", - "textMeaning": "A city is a place where a lot of people live.", - "textExample": "Tokyo is a very big city in Japan.", - "transcription": "[síti]", - "__v": 0, - "textExampleTranslate": "Токио - очень большой город в Японии", - "textMeaningTranslate": "Город - это место, где живет много людей", - "wordTranslate": "город" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af56e" - }, - "group": 0, - "page": 10, - "word": "country", - "image": "files/11_0207.jpg", - "audio": "files/11_0207.mp3", - "audioMeaning": "files/11_0207_meaning.mp3", - "audioExample": "files/11_0207_example.mp3", - "textMeaning": "A country is an area of land with the same government and laws.", - "textExample": "France is a country in Europe.", - "transcription": "[kʌntri]", - "__v": 0, - "textExampleTranslate": "Франция - это страна в Европе", - "textMeaningTranslate": "Страна - это территория с тем же правительством и законами", - "wordTranslate": "страна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af56f" - }, - "group": 0, - "page": 10, - "word": "develop", - "image": "files/11_0208.jpg", - "audio": "files/11_0208.mp3", - "audioMeaning": "files/11_0208_meaning.mp3", - "audioExample": "files/11_0208_example.mp3", - "textMeaning": "To develop is to make something larger or more advanced.", - "textExample": "This practice will help you develop your math skills.", - "transcription": "[divéləp]", - "__v": 0, - "textExampleTranslate": "Эта практика поможет вам развить свои математические навыки", - "textMeaningTranslate": "Развивать - значит делать что-то большее или более продвинутое", - "wordTranslate": "развивать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af570" - }, - "group": 0, - "page": 10, - "word": "electric", - "image": "files/11_0209.jpg", - "audio": "files/11_0209.mp3", - "audioMeaning": "files/11_0209_meaning.mp3", - "audioExample": "files/11_0209_example.mp3", - "textMeaning": "If something is electric, it uses electricity.", - "textExample": "Some car companies make electric cars.", - "transcription": "[iléktrik]", - "__v": 0, - "textExampleTranslate": "Некоторые автомобильные компании производят электромобили", - "textMeaningTranslate": "Если что-то электрическое, оно использует электричество", - "wordTranslate": "электрический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af571" - }, - "group": 0, - "page": 10, - "word": "eventually", - "image": "files/11_0210.jpg", - "audio": "files/11_0210.mp3", - "audioMeaning": "files/11_0210_meaning.mp3", - "audioExample": "files/11_0210_example.mp3", - "textMeaning": "When something happens at a later time or in the end, it happens eventually.", - "textExample": "He will eventually move to London to find a new job.", - "transcription": "[ivénʧuəli]", - "__v": 0, - "textExampleTranslate": "В конце концов он переедет в Лондон, чтобы найти новую работу", - "textMeaningTranslate": "Когда что-то происходит в более позднее время или в конце, это случается в конце концов", - "wordTranslate": "в конце концов" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af573" - }, - "group": 0, - "page": 10, - "word": "glass", - "image": "files/11_0212.jpg", - "audio": "files/11_0212.mp3", - "audioMeaning": "files/11_0212_meaning.mp3", - "audioExample": "files/11_0212_example.mp3", - "textMeaning": "Glass is a transparent, breakable material.", - "textExample": "Windows are made of glass.", - "transcription": "[ɡlæs]", - "__v": 0, - "textExampleTranslate": "Окна сделаны из стекла", - "textMeaningTranslate": "Стекло - прозрачный, хрупкий материал", - "wordTranslate": "стакан" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af572" - }, - "group": 0, - "page": 10, - "word": "fact", - "image": "files/11_0211.jpg", - "audio": "files/11_0211.mp3", - "audioMeaning": "files/11_0211_meaning.mp3", - "audioExample": "files/11_0211_example.mp3", - "textMeaning": "A fact is a piece of information that is true.", - "textExample": "A fact about South America is that it is a continent.", - "transcription": "[fækt]", - "__v": 0, - "textExampleTranslate": "Факт о Южной Америке в том, что это континент", - "textMeaningTranslate": "Факт - это информация, которая является правдой", - "wordTranslate": "факт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af574" - }, - "group": 0, - "page": 10, - "word": "history", - "image": "files/11_0213.jpg", - "audio": "files/11_0213.mp3", - "audioMeaning": "files/11_0213_meaning.mp3", - "audioExample": "files/11_0213_example.mp3", - "textMeaning": "History is the study of the past.", - "textExample": "History was my favorite subject in school.", - "transcription": "[hístəri]", - "__v": 0, - "textExampleTranslate": "История была моим любимым предметом в школе", - "textMeaningTranslate": "История - это изучение прошлого", - "wordTranslate": "история" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af575" - }, - "group": 0, - "page": 10, - "word": "nature", - "image": "files/11_0214.jpg", - "audio": "files/11_0214.mp3", - "audioMeaning": "files/11_0214_meaning.mp3", - "audioExample": "files/11_0214_example.mp3", - "textMeaning": "Nature is everything in the physical world that is not made by people.", - "textExample": "On the weekends, I love to walk in nature among the trees.", - "transcription": "[néiʧər]", - "__v": 0, - "textExampleTranslate": "По выходным я люблю гулять на природе среди деревьев", - "textMeaningTranslate": "Природа - это все в физическом мире, которое создано не людьми", - "wordTranslate": "природа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af576" - }, - "group": 0, - "page": 10, - "word": "never", - "image": "files/11_0215.jpg", - "audio": "files/11_0215.mp3", - "audioMeaning": "files/11_0215_meaning.mp3", - "audioExample": "files/11_0215_example.mp3", - "textMeaning": "Never is when something is impossible or will not happen.", - "textExample": "They never eat meat because they are vegetarians.", - "transcription": "[névər]", - "__v": 0, - "textExampleTranslate": "Они никогда не едят мясо, потому что они вегетарианцы", - "textMeaningTranslate": "Никогда не бывает, когда что-то невозможно или не случится", - "wordTranslate": "никогда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af578" - }, - "group": 0, - "page": 10, - "word": "plastic", - "image": "files/11_0217.jpg", - "audio": "files/11_0217.mp3", - "audioMeaning": "files/11_0217_meaning.mp3", - "audioExample": "files/11_0217_example.mp3", - "textMeaning": "Plastic is a material made by people.", - "textExample": "Many drinks are sold in plastic bottles.", - "transcription": "[plǽstik]", - "__v": 0, - "textExampleTranslate": "Многие напитки продаются в пластиковых бутылках", - "textMeaningTranslate": "Пластик - это материал, созданный людьми", - "wordTranslate": "пластик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af577" - }, - "group": 0, - "page": 10, - "word": "people", - "image": "files/11_0216.jpg", - "audio": "files/11_0216.mp3", - "audioMeaning": "files/11_0216_meaning.mp3", - "audioExample": "files/11_0216_example.mp3", - "textMeaning": "People are humans.", - "textExample": "How many people live in China?", - "transcription": "[piːpəl]", - "__v": 0, - "textExampleTranslate": "Сколько людей живет в Китае?", - "textMeaningTranslate": "Люди есть люди", - "wordTranslate": "люди" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af579" - }, - "group": 0, - "page": 10, - "word": "problem", - "image": "files/11_0218.jpg", - "audio": "files/11_0218.mp3", - "audioMeaning": "files/11_0218_meaning.mp3", - "audioExample": "files/11_0218_example.mp3", - "textMeaning": "A problem is a situation when something goes wrong.", - "textExample": "My problem is that I lost my dog.", - "transcription": "[prάbləm]", - "__v": 0, - "textExampleTranslate": "Моя проблема в том, что я потерял свою собаку", - "textMeaningTranslate": "Проблема - это ситуация, когда что-то идет не так", - "wordTranslate": "проблема" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af57a" - }, - "group": 0, - "page": 10, - "word": "street", - "image": "files/11_0219.jpg", - "audio": "files/11_0219.mp3", - "audioMeaning": "files/11_0219_meaning.mp3", - "audioExample": "files/11_0219_example.mp3", - "textMeaning": "A street is a road in a city or village.", - "textExample": "What is the name of the street you live on?", - "transcription": "[striːt]", - "__v": 0, - "textExampleTranslate": "Как называется улица, на которой вы живете?", - "textMeaningTranslate": "Улица - это дорога в городе или деревне", - "wordTranslate": "улица" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af57b" - }, - "group": 0, - "page": 10, - "word": "think", - "image": "files/11_0220.jpg", - "audio": "files/11_0220.mp3", - "audioMeaning": "files/11_0220_meaning.mp3", - "audioExample": "files/11_0220_example.mp3", - "textMeaning": "To think is to have an opinion or thought about something.", - "textExample": "I think summer is the best season.", - "transcription": "[θɪŋk]", - "__v": 0, - "textExampleTranslate": "Я считаю лето лучшим сезоном", - "textMeaningTranslate": "Думать - значит иметь мнение или думать о чем-то", - "wordTranslate": "считать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af57c" - }, - "group": 0, - "page": 11, - "word": "alone", - "image": "files/12_0221.jpg", - "audio": "files/12_0221.mp3", - "audioMeaning": "files/12_0221_meaning.mp3", - "audioExample": "files/12_0221_example.mp3", - "textMeaning": "A person who is alone is not with another person.", - "textExample": "The boy wanted to be alone to think.", - "transcription": "[əlóun]", - "__v": 0, - "textExampleTranslate": "Мальчик хотел побыть один, чтобы думать", - "textMeaningTranslate": "Человек, который один, не с другим человеком", - "wordTranslate": "один" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af57d" - }, - "group": 0, - "page": 11, - "word": "apartment", - "image": "files/12_0222.jpg", - "audio": "files/12_0222.mp3", - "audioMeaning": "files/12_0222_meaning.mp3", - "audioExample": "files/12_0222_example.mp3", - "textMeaning": "An apartment is a set of rooms in a building where people live.", - "textExample": "She has a nice apartment in the city.", - "transcription": "[əpɑ́ːrtmənt]", - "__v": 0, - "textExampleTranslate": "У нее хорошая квартира в городе", - "textMeaningTranslate": "Квартира - это набор комнат в доме, где живут люди", - "wordTranslate": "квартира" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af57e" - }, - "group": 0, - "page": 11, - "word": "article", - "image": "files/12_0223.jpg", - "audio": "files/12_0223.mp3", - "audioMeaning": "files/12_0223_meaning.mp3", - "audioExample": "files/12_0223_example.mp3", - "textMeaning": "An article is a story in a newspaper or magazine.", - "textExample": "Did you read the article in the newspaper about the soccer game?", - "transcription": "[ɑ́ːrtikl]", - "__v": 0, - "textExampleTranslate": "Вы читали статью в газете о футбольном матче?", - "textMeaningTranslate": "Статья - это история в газете или журнале", - "wordTranslate": "статья" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af57f" - }, - "group": 0, - "page": 11, - "word": "artist", - "image": "files/12_0224.jpg", - "audio": "files/12_0224.mp3", - "audioMeaning": "files/12_0224_meaning.mp3", - "audioExample": "files/12_0224_example.mp3", - "textMeaning": "An artist is a person who paints, draws, or makes sculptures.", - "textExample": "He went to Paris to become an artist.", - "transcription": "[ɑ́ːrtist]", - "__v": 0, - "textExampleTranslate": "Он отправился в Париж, чтобы стать художником", - "textMeaningTranslate": "Художник - это человек, который рисует, рисует или делает скульптуры", - "wordTranslate": "художник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af580" - }, - "group": 0, - "page": 11, - "word": "attitude", - "image": "files/12_0225.jpg", - "audio": "files/12_0225.mp3", - "audioMeaning": "files/12_0225_meaning.mp3", - "audioExample": "files/12_0225_example.mp3", - "textMeaning": "Someone’s attitude is the way they feel and think.", - "textExample": "John has a bad attitude. He’s always angry.", - "transcription": "[ǽtitjùːd]", - "__v": 0, - "textExampleTranslate": "У Джона плохое отношение. Он всегда зол", - "textMeaningTranslate": "Чье-то отношение - это то, как они чувствуют и думают", - "wordTranslate": "отношение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af581" - }, - "group": 0, - "page": 11, - "word": "beauty", - "image": "files/12_0226.jpg", - "audio": "files/12_0226.mp3", - "audioMeaning": "files/12_0226_meaning.mp3", - "audioExample": "files/12_0226_example.mp3", - "textMeaning": "Beauty is the state or quality of being beautiful.", - "textExample": "I heard my mother was a great beauty when she was young.", - "transcription": "[bjúːti]", - "__v": 0, - "textExampleTranslate": "Я слышал, что моя мама была прекрасной красотой, когда она была маленькой", - "textMeaningTranslate": "Красота - это состояние или качество красоты", - "wordTranslate": "красота" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af582" - }, - "group": 0, - "page": 11, - "word": "judge", - "image": "files/12_0228.jpg", - "audio": "files/12_0228.mp3", - "audioMeaning": "files/12_0228_meaning.mp3", - "audioExample": "files/12_0228_example.mp3", - "textMeaning": "To judge something is to say if it is good or bad.", - "textExample": "The boy was going to judge how his mother’s turkey tasted.", - "transcription": "[dʒʌdʒ]", - "__v": 0, - "textExampleTranslate": "Мальчик собирался судить, как на вкус мамина индейка", - "textMeaningTranslate": "Судить о чем-то, значит сказать, хорошо это или плохо", - "wordTranslate": "судья" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af583" - }, - "group": 0, - "page": 11, - "word": "compare", - "image": "files/12_0227.jpg", - "audio": "files/12_0227.mp3", - "audioMeaning": "files/12_0227_meaning.mp3", - "audioExample": "files/12_0227_example.mp3", - "textMeaning": "To compare means to say how two things are the same and different.", - "textExample": "If you compare cats and dogs, you’ll see that they’re both good pets.", - "transcription": "[kəmpɛ́ər]", - "__v": 0, - "textExampleTranslate": "Если вы сравните кошек и собак, вы увидите, что они оба хорошие домашние вотные", - "textMeaningTranslate": "Сравнить - значит сказать, что две вещи одинаковы и различны", - "wordTranslate": "сравнить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af584" - }, - "group": 0, - "page": 11, - "word": "magazine", - "image": "files/12_0229.jpg", - "audio": "files/12_0229.mp3", - "audioMeaning": "files/12_0229_meaning.mp3", - "audioExample": "files/12_0229_example.mp3", - "textMeaning": "A magazine is a regular publication with news, stories, and articles.", - "textExample": "She likes to read fashion magazines.", - "transcription": "[mæ̀gəzíːn]", - "__v": 0, - "textExampleTranslate": "Она любит читать журналы мод", - "textMeaningTranslate": "Журнал - это регулярное издание с новостями, историями и статьями", - "wordTranslate": "журнал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af585" - }, - "group": 0, - "page": 11, - "word": "material", - "image": "files/12_0230.jpg", - "audio": "files/12_0230.mp3", - "audioMeaning": "files/12_0230_meaning.mp3", - "audioExample": "files/12_0230_example.mp3", - "textMeaning": "A material is what is used to make something.", - "textExample": "Brick is a good material for building houses.", - "transcription": "[mətíəriəl]", - "__v": 0, - "textExampleTranslate": "Кирпич - хороший материал для строительства домов", - "textMeaningTranslate": "Материал - это то, что используется, чтобы сделать что-то", - "wordTranslate": "материал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af586" - }, - "group": 0, - "page": 11, - "word": "meal", - "image": "files/12_0231.jpg", - "audio": "files/12_0231.mp3", - "audioMeaning": "files/12_0231_meaning.mp3", - "audioExample": "files/12_0231_example.mp3", - "textMeaning": "A meal is a time when food is eaten, such as breakfast, lunch, or dinner.", - "textExample": "Breakfast is my favorite meal because I enjoy cereal.", - "transcription": "[miːl]", - "__v": 0, - "textExampleTranslate": "Завтрак - моя любимая еда, потому что я наслаждаюсь хлопьями", - "textMeaningTranslate": "Еда - это время, когда едят еду, например, завтрак, обед или ужин", - "wordTranslate": "еда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af587" - }, - "group": 0, - "page": 11, - "word": "method", - "image": "files/12_0232.jpg", - "audio": "files/12_0232.mp3", - "audioMeaning": "files/12_0232_meaning.mp3", - "audioExample": "files/12_0232_example.mp3", - "textMeaning": "A method is the way to do something.", - "textExample": "One method to remember things is to tie a string around your finger.", - "transcription": "[méθəd]", - "__v": 0, - "textExampleTranslate": "Один из способов запоминания вещей - это обвязать пальцем веревку", - "textMeaningTranslate": "Метод - это способ сделать что-то", - "wordTranslate": "метод" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af588" - }, - "group": 0, - "page": 11, - "word": "neighbor", - "image": "files/12_0233.jpg", - "audio": "files/12_0233.mp3", - "audioMeaning": "files/12_0233_meaning.mp3", - "audioExample": "files/12_0233_example.mp3", - "textMeaning": "A neighbor is a person who lives near you.", - "textExample": "I like my neighbor because he’s very friendly.", - "transcription": "[néibər]", - "__v": 0, - "textExampleTranslate": "Мне нравится мой сосед, потому что он очень дружелюбный", - "textMeaningTranslate": "Сосед - это человек, который живет рядом с тобой", - "wordTranslate": "сосед" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af58a" - }, - "group": 0, - "page": 11, - "word": "profit", - "image": "files/12_0235.jpg", - "audio": "files/12_0235.mp3", - "audioMeaning": "files/12_0235_meaning.mp3", - "audioExample": "files/12_0235_example.mp3", - "textMeaning": "A profit is the extra money you make when you sell something.", - "textExample": "I made a small profit from selling my old clothes.", - "transcription": "[prɑ́fit]", - "__v": 0, - "textExampleTranslate": "Я получил небольшую прибыль от продажи моей старой одежды", - "textMeaningTranslate": "Прибыль - это дополнительные деньги, которые вы зарабатываете, когда что-то продаете", - "wordTranslate": "прибыль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af589" - }, - "group": 0, - "page": 11, - "word": "professional", - "image": "files/12_0234.jpg", - "audio": "files/12_0234.mp3", - "audioMeaning": "files/12_0234_meaning.mp3", - "audioExample": "files/12_0234_example.mp3", - "textMeaning": "If something is professional, it deals with work that uses special skills.", - "textExample": "If you want to be a pilot, you must have professional training.", - "transcription": "[prəféʃənəl]", - "__v": 0, - "textExampleTranslate": "Если вы хотите стать пилотом, вы должны пройти профессиональную подготовку", - "textMeaningTranslate": "Если что-то профессиональное, оно имеет дело с работой, которая использует специальные навыки", - "wordTranslate": "профессионал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af58b" - }, - "group": 0, - "page": 11, - "word": "quality", - "image": "files/12_0236.jpg", - "audio": "files/12_0236.mp3", - "audioMeaning": "files/12_0236_meaning.mp3", - "audioExample": "files/12_0236_example.mp3", - "textMeaning": "The quality of something is how good it is.", - "textExample": "The quality of his car is very good.", - "transcription": "[kwɑ́ləti]", - "__v": 0, - "textExampleTranslate": "Качество его машины очень хорошее", - "textMeaningTranslate": "Качество чего-то, насколько это хорошо", - "wordTranslate": "качественный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af58c" - }, - "group": 0, - "page": 11, - "word": "space", - "image": "files/12_0237.jpg", - "audio": "files/12_0237.mp3", - "audioMeaning": "files/12_0237_meaning.mp3", - "audioExample": "files/12_0237_example.mp3", - "textMeaning": "A space is an empty area.", - "textExample": "I don’t have much space for things in my small house.", - "transcription": "[speis]", - "__v": 0, - "textExampleTranslate": "У меня мало места для вещей в моем маленьком доме", - "textMeaningTranslate": "Пространство - это пустое место", - "wordTranslate": "пространство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af58d" - }, - "group": 0, - "page": 11, - "word": "symbol", - "image": "files/12_0239.jpg", - "audio": "files/12_0239.mp3", - "audioMeaning": "files/12_0239_meaning.mp3", - "audioExample": "files/12_0239_example.mp3", - "textMeaning": "A symbol is a thing that stands for something else.", - "textExample": "This symbol tells us that we cannot smoke in this area.", - "transcription": "[símbəl]", - "__v": 0, - "textExampleTranslate": "Этот символ говорит нам, что мы не можем курить в этой области", - "textMeaningTranslate": "Символ - это вещь, которая означает что-то другое", - "wordTranslate": "символ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af58e" - }, - "group": 0, - "page": 11, - "word": "stair", - "image": "files/12_0238.jpg", - "audio": "files/12_0238.mp3", - "audioMeaning": "files/12_0238_meaning.mp3", - "audioExample": "files/12_0238_example.mp3", - "textMeaning": "Stairs are the things that are used to walk up or down in a building.", - "textExample": "You can take the stairs to the second floor.", - "transcription": "[stɛəːr]", - "__v": 0, - "textExampleTranslate": "Вы можете подняться по лестнице на второй этаж", - "textMeaningTranslate": "Лестница - это вещи, которые используются, чтобы идти вверх или вниз в здании", - "wordTranslate": "ступенька" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af58f" - }, - "group": 0, - "page": 11, - "word": "thin", - "image": "files/12_0240.jpg", - "audio": "files/12_0240.mp3", - "audioMeaning": "files/12_0240_meaning.mp3", - "audioExample": "files/12_0240_example.mp3", - "textMeaning": "If someone or something is thin, they are not fat.", - "textExample": "The man was thin because he didn’t eat much.", - "transcription": "[θin]", - "__v": 0, - "textExampleTranslate": "Человек был худым, потому что он мало ел", - "textMeaningTranslate": "Если кто-то или что-то худое, они не толстые", - "wordTranslate": "тонкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af590" - }, - "group": 0, - "page": 12, - "word": "accounting", - "image": "files/13_0241.jpg", - "audio": "files/13_0241.mp3", - "audioMeaning": "files/13_0241_meaning.mp3", - "audioExample": "files/13_0241_example.mp3", - "textMeaning": "People study accounting so they can deal with money and finance properly.", - "textExample": "He works for an accounting firm.", - "transcription": "[əkáuntiŋ]", - "__v": 0, - "textExampleTranslate": "Он работает в бухгалтерской фирме", - "textMeaningTranslate": "Люди изучают бухгалтерский учет, чтобы иметь возможность правильно обращаться с деньгами и финансами", - "wordTranslate": "бухгалтерский учет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af591" - }, - "group": 0, - "page": 12, - "word": "appeal", - "image": "files/13_0242.jpg", - "audio": "files/13_0242.mp3", - "audioMeaning": "files/13_0242_meaning.mp3", - "audioExample": "files/13_0242_example.mp3", - "textMeaning": "To appeal to someone is to be interesting or attractive.", - "textExample": "Sleeping all day appeals to me, but I have to go to school.", - "transcription": "[əpíːl]", - "__v": 0, - "textExampleTranslate": "Спит целый день, мне нравится, но я должен идти в школу", - "textMeaningTranslate": "Обращаться к кому-то - значит быть интересным или привлекательным", - "wordTranslate": "обращение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af592" - }, - "group": 0, - "page": 12, - "word": "assume", - "image": "files/13_0243.jpg", - "audio": "files/13_0243.mp3", - "audioMeaning": "files/13_0243_meaning.mp3", - "audioExample": "files/13_0243_example.mp3", - "textMeaning": "To assume something is to think that it is true, even with no proof.", - "textExample": "I assume you are both familiar with this plan.", - "transcription": "[əsjúːm]", - "__v": 0, - "textExampleTranslate": "Я полагаю, вы оба знакомы с этим планом", - "textMeaningTranslate": "Предполагать, что-то значит думать, что это правда, даже без доказательств", - "wordTranslate": "предполагать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af593" - }, - "group": 0, - "page": 12, - "word": "borrow", - "image": "files/13_0244.jpg", - "audio": "files/13_0244.mp3", - "audioMeaning": "files/13_0244_meaning.mp3", - "audioExample": "files/13_0244_example.mp3", - "textMeaning": "To borrow something is to take it and then give it back later.", - "textExample": "Can I borrow a pencil to use today? I’ll give it back to you tomorrow.", - "transcription": "[bάrou]", - "__v": 0, - "textExampleTranslate": "Могу ли я одолжить карандаш для использования сегодня? Я верну его вам завтра", - "textMeaningTranslate": "Одолжить - значит взять, а потом отдать обратно", - "wordTranslate": "заимствовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af594" - }, - "group": 0, - "page": 12, - "word": "client", - "image": "files/13_0245.jpg", - "audio": "files/13_0245.mp3", - "audioMeaning": "files/13_0245_meaning.mp3", - "audioExample": "files/13_0245_example.mp3", - "textMeaning": "A client is a person or business that pays another to do a service.", - "textExample": "She has many clients who enjoy coming to her salon.", - "transcription": "[kláiənt]", - "__v": 0, - "textExampleTranslate": "У нее много клиентов, которым нравится приходить в ее салон", - "textMeaningTranslate": "Клиент - это человек или бизнес, который платит другому за оказание услуги", - "wordTranslate": "клиент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af595" - }, - "group": 0, - "page": 12, - "word": "downtown", - "image": "files/13_0246.jpg", - "audio": "files/13_0246.mp3", - "audioMeaning": "files/13_0246_meaning.mp3", - "audioExample": "files/13_0246_example.mp3", - "textMeaning": "The downtown area is the center of most cities.", - "textExample": "The downtown area is filled with many tall buildings.", - "transcription": "[dauntáun]", - "__v": 0, - "textExampleTranslate": "Центр города заполнен множеством высоких зданий", - "textMeaningTranslate": "Центр города является центром большинства городов", - "wordTranslate": "центр города" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af596" - }, - "group": 0, - "page": 12, - "word": "dull", - "image": "files/13_0247.jpg", - "audio": "files/13_0247.mp3", - "audioMeaning": "files/13_0247_meaning.mp3", - "audioExample": "files/13_0247_example.mp3", - "textMeaning": "If something is dull, it is not exciting.", - "textExample": "The movie was very dull. I fell asleep watching it.", - "transcription": "[dʌl]", - "__v": 0, - "textExampleTranslate": "Фильм был очень скучным. Я заснул, смотря его", - "textMeaningTranslate": "Если что-то скучно, это не волнительно", - "wordTranslate": "тупой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af597" - }, - "group": 0, - "page": 12, - "word": "embarrass", - "image": "files/13_0248.jpg", - "audio": "files/13_0248.mp3", - "audioMeaning": "files/13_0248_meaning.mp3", - "audioExample": "files/13_0248_example.mp3", - "textMeaning": "To embarrass people is to make them feel ashamed or foolish.", - "textExample": "He was embarrassed when he couldn’t remember her name.", - "transcription": "[imbǽrəs]", - "__v": 0, - "textExampleTranslate": "Он был смущен, когда не мог вспомнить ее имя", - "textMeaningTranslate": "Смущать людей - значит заставлять их чувствовать себя стыдно или глупо", - "wordTranslate": "смущать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af598" - }, - "group": 0, - "page": 12, - "word": "fare", - "image": "files/13_0249.jpg", - "audio": "files/13_0249.mp3", - "audioMeaning": "files/13_0249_meaning.mp3", - "audioExample": "files/13_0249_example.mp3", - "textMeaning": "A fare is an amount of money paid to use a bus, train, or taxi.", - "textExample": "Since he is a senior, my grandfather pays a low fare for the bus.", - "transcription": "[fɛər]", - "__v": 0, - "textExampleTranslate": "Так как он старший, мой дед платит за проезд в автобусе по низкой цене", - "textMeaningTranslate": "Тариф - это сумма денег, уплаченная за использование автобуса, поезда или такси", - "wordTranslate": "плата за проезд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af599" - }, - "group": 0, - "page": 12, - "word": "former", - "image": "files/13_0250.jpg", - "audio": "files/13_0250.mp3", - "audioMeaning": "files/13_0250_meaning.mp3", - "audioExample": "files/13_0250_example.mp3", - "textMeaning": "Former describes something that used to be but is not anymore.", - "textExample": "The hotel, a former castle, was built over 200 years ago.", - "transcription": "[fɔ́ːrməːr]", - "__v": 0, - "textExampleTranslate": "Отель, бывший замок, был построен более 200 лет назад", - "textMeaningTranslate": "Бывший описывает что-то, что раньше было, но не больше", - "wordTranslate": "бывший" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af59a" - }, - "group": 0, - "page": 12, - "word": "found", - "image": "files/13_0251.jpg", - "audio": "files/13_0251.mp3", - "audioMeaning": "files/13_0251_meaning.mp3", - "audioExample": "files/13_0251_example.mp3", - "textMeaning": "To found a company or organization means to start it.", - "textExample": "The Pilgrims founded one of the first colonies in the United States.", - "transcription": "[faund]", - "__v": 0, - "textExampleTranslate": "Паломники основали одну из первых колоний в Соединенных Штатах", - "textMeaningTranslate": "Учредить компанию или организацию - значит начать ее", - "wordTranslate": "нашел" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af59b" - }, - "group": 0, - "page": 12, - "word": "invest", - "image": "files/13_0252.jpg", - "audio": "files/13_0252.mp3", - "audioMeaning": "files/13_0252_meaning.mp3", - "audioExample": "files/13_0252_example.mp3", - "textMeaning": "To invest means to use money in a way that will bring a profit later.", - "textExample": "I invested money in a new building that should bring me a profit.", - "transcription": "[invést]", - "__v": 0, - "textExampleTranslate": "Я вложил деньги в новое здание, которое должно приносить мне прибыль", - "textMeaningTranslate": "Инвестировать означает использовать деньги таким образом, чтобы потом приносить прибыль", - "wordTranslate": "вкладывать деньги" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af59c" - }, - "group": 0, - "page": 12, - "word": "loan", - "image": "files/13_0253.jpg", - "audio": "files/13_0253.mp3", - "audioMeaning": "files/13_0253_meaning.mp3", - "audioExample": "files/13_0253_example.mp3", - "textMeaning": "A loan is something, usually money, that one person lends to another.", - "textExample": "I got a loan from the bank.", - "transcription": "[loun]", - "__v": 0, - "textExampleTranslate": "Я получил кредит в банке", - "textMeaningTranslate": "Кредит - это, как правило, деньги, которые один человек дает другому", - "wordTranslate": "кредит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af59d" - }, - "group": 0, - "page": 12, - "word": "practical", - "image": "files/13_0254.jpg", - "audio": "files/13_0254.mp3", - "audioMeaning": "files/13_0254_meaning.mp3", - "audioExample": "files/13_0254_example.mp3", - "textMeaning": "If something is practical, it is useful.", - "textExample": "Learning English is practical; you can use it in many places.", - "transcription": "[prǽktikəl]", - "__v": 0, - "textExampleTranslate": "Изучение английского языка практично; вы можете использовать его во многих стах", - "textMeaningTranslate": "Если что-то практично, это полезно", - "wordTranslate": "практический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af59e" - }, - "group": 0, - "page": 12, - "word": "quarter", - "image": "files/13_0255.jpg", - "audio": "files/13_0255.mp3", - "audioMeaning": "files/13_0255_meaning.mp3", - "audioExample": "files/13_0255_example.mp3", - "textMeaning": "A quarter is 1/4 or 25% of something.", - "textExample": "He paid a quarter for the candy.", - "transcription": "[kwɔ́ːrtər]", - "__v": 0, - "textExampleTranslate": "Он заплатил четверть за конфету", - "textMeaningTranslate": "Четверть это 1/4 или 25% чего-то", - "wordTranslate": "квартал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af59f" - }, - "group": 0, - "page": 12, - "word": "salary", - "image": "files/13_0256.jpg", - "audio": "files/13_0256.mp3", - "audioMeaning": "files/13_0256_meaning.mp3", - "audioExample": "files/13_0256_example.mp3", - "textMeaning": "A salary is how much money a person makes at his or her job.", - "textExample": "He got a new job with a better salary.", - "transcription": "[sǽləri]", - "__v": 0, - "textExampleTranslate": "Он получил новую работу с лучшей зарплатой", - "textMeaningTranslate": "Заработная плата - это то, сколько человек зарабатывает на своей работе", - "wordTranslate": "зарплата" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5a0" - }, - "group": 0, - "page": 12, - "word": "scholarship", - "image": "files/13_0257.jpg", - "audio": "files/13_0257.mp3", - "audioMeaning": "files/13_0257_meaning.mp3", - "audioExample": "files/13_0257_example.mp3", - "textMeaning": "A scholarship is money given so someone can go to school.", - "textExample": "I got a scholarship to help me pay for university.", - "transcription": "[skɑ́ləːrʃìp]", - "__v": 0, - "textExampleTranslate": "Я получил стипендию, чтобы помочь мне заплатить за университет", - "textMeaningTranslate": "Стипендия - это деньги, которые даются, чтобы кто-то мог пойти в школу", - "wordTranslate": "стипендия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5a1" - }, - "group": 0, - "page": 12, - "word": "temporary", - "image": "files/13_0258.jpg", - "audio": "files/13_0258.mp3", - "audioMeaning": "files/13_0258_meaning.mp3", - "audioExample": "files/13_0258_example.mp3", - "textMeaning": "If something is temporary, it exists for a short time.", - "textExample": "This car is only temporary; I’ll get a new one soon.", - "transcription": "[témpərèri]", - "__v": 0, - "textExampleTranslate": "Эта машина только временная; скоро я получу новую", - "textMeaningTranslate": "Если что-то временно, оно существует на короткое время", - "wordTranslate": "временный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5a2" - }, - "group": 0, - "page": 12, - "word": "treasure", - "image": "files/13_0259.jpg", - "audio": "files/13_0259.mp3", - "audioMeaning": "files/13_0259_meaning.mp3", - "audioExample": "files/13_0259_example.mp3", - "textMeaning": "A treasure is a collection of valuable things, especially jewels or gold.", - "textExample": "They became very rich when they found the buried treasure.", - "transcription": "[tréʒəːr]", - "__v": 0, - "textExampleTranslate": "Они стали очень богатыми, когда нашли клад", - "textMeaningTranslate": "Сокровище - это коллекция ценных вещей, особенно драгоценных камней или золота", - "wordTranslate": "сокровище" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5a3" - }, - "group": 0, - "page": 12, - "word": "urge", - "image": "files/13_0260.jpg", - "audio": "files/13_0260.mp3", - "audioMeaning": "files/13_0260_meaning.mp3", - "audioExample": "files/13_0260_example.mp3", - "textMeaning": "To urge someone is to try very hard to get them to do something.", - "textExample": "He urged them to believe his story.", - "transcription": "[əːrdʒ]", - "__v": 0, - "textExampleTranslate": "Он призвал их поверить в его историю", - "textMeaningTranslate": "Призывать кого-то - это очень стараться, чтобы заставить его что-то сделать", - "wordTranslate": "побуждение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5a4" - }, - "group": 0, - "page": 13, - "word": "coach", - "image": "files/14_0261.jpg", - "audio": "files/14_0261.mp3", - "audioMeaning": "files/14_0261_meaning.mp3", - "audioExample": "files/14_0261_example.mp3", - "textMeaning": "A coach is a person who teaches sports.", - "textExample": "My coach gets very excited during games.", - "transcription": "[koutʃ]", - "__v": 0, - "textExampleTranslate": "Мой тренер очень взволнован во время игр", - "textMeaningTranslate": "Тренер - это человек, который преподает спорт", - "wordTranslate": "тренер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5a5" - }, - "group": 0, - "page": 13, - "word": "control", - "image": "files/14_0262.jpg", - "audio": "files/14_0262.mp3", - "audioMeaning": "files/14_0262_meaning.mp3", - "audioExample": "files/14_0262_example.mp3", - "textMeaning": "To control something is to make it do what you want.", - "textExample": "To control the TV, just push the buttons.", - "transcription": "[kəntróul]", - "__v": 0, - "textExampleTranslate": "Чтобы управлять телевизором, просто нажимайте кнопки", - "textMeaningTranslate": "Контролировать что-то - значит делать то, что ты хочешь", - "wordTranslate": "контроль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5a6" - }, - "group": 0, - "page": 13, - "word": "description", - "image": "files/14_0263.jpg", - "audio": "files/14_0263.mp3", - "audioMeaning": "files/14_0263_meaning.mp3", - "audioExample": "files/14_0263_example.mp3", - "textMeaning": "A description of someone or something says what they are like.", - "textExample": "I gave a description of the man with the gun and hat to the police.", - "transcription": "[diskrípʃən]", - "__v": 0, - "textExampleTranslate": "Я дал описание человека с пистолетом и шляпой в полицию", - "textMeaningTranslate": "Описание кого-то или чего-то говорит о том, на что они похожи", - "wordTranslate": "описание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5a7" - }, - "group": 0, - "page": 13, - "word": "direct", - "image": "files/14_0264.jpg", - "audio": "files/14_0264.mp3", - "audioMeaning": "files/14_0264_meaning.mp3", - "audioExample": "files/14_0264_example.mp3", - "textMeaning": "If something is direct, it goes straight between two places.", - "textExample": "The green path is a direct route to my house.", - "transcription": "[dirékt]", - "__v": 0, - "textExampleTranslate": "Зеленая тропа - прямой путь к моему дому", - "textMeaningTranslate": "Если что-то прямое, оно идет прямо между двумя местами", - "wordTranslate": "непосредственный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5a8" - }, - "group": 0, - "page": 13, - "word": "example", - "image": "files/14_0266.jpg", - "audio": "files/14_0266.mp3", - "audioMeaning": "files/14_0266_meaning.mp3", - "audioExample": "files/14_0266_example.mp3", - "textMeaning": "An example of something is a thing that is typical of it.", - "textExample": "Cola is an example of a soft drink.", - "transcription": "[igzǽmpəl]", - "__v": 0, - "textExampleTranslate": "Кола - пример безалкогольного напитка", - "textMeaningTranslate": "Примером чего-то является типичная вещь", - "wordTranslate": "пример" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5a9" - }, - "group": 0, - "page": 13, - "word": "exam", - "image": "files/14_0265.jpg", - "audio": "files/14_0265.mp3", - "audioMeaning": "files/14_0265_meaning.mp3", - "audioExample": "files/14_0265_example.mp3", - "textMeaning": "An exam is a test.", - "textExample": "I did some practice questions for the math exam on the board.", - "transcription": "[igzǽm]", - "__v": 0, - "textExampleTranslate": "Я сделал несколько практических вопросов для экзамена по математике на доске", - "textMeaningTranslate": "Экзамен - это тест", - "wordTranslate": "экзамен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5aa" - }, - "group": 0, - "page": 13, - "word": "limit", - "image": "files/14_0267.jpg", - "audio": "files/14_0267.mp3", - "audioMeaning": "files/14_0267_meaning.mp3", - "audioExample": "files/14_0267_example.mp3", - "textMeaning": "A limit is the largest or smallest amount of something that you allow.", - "textExample": "My mother put a limit on how much I could use the phone.", - "transcription": "[límit]", - "__v": 0, - "textExampleTranslate": "Моя мама наложила ограничение на то, сколько я мог бы использовать телефон", - "textMeaningTranslate": "Лимит - это наибольшее или наименьшее количество того, что вы разрешаете", - "wordTranslate": "предел" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ab" - }, - "group": 0, - "page": 13, - "word": "local", - "image": "files/14_0268.jpg", - "audio": "files/14_0268.mp3", - "audioMeaning": "files/14_0268_meaning.mp3", - "audioExample": "files/14_0268_example.mp3", - "textMeaning": "If something is local, it is nearby.", - "textExample": "The local market in my neighborhood sells all the food we need.", - "transcription": "[lóukəl]", - "__v": 0, - "textExampleTranslate": "Местный рынок в моем районе продает всю еду, в которой мы нуждаемся", - "textMeaningTranslate": "Если что-то локальное, оно рядом", - "wordTranslate": "местный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ac" - }, - "group": 0, - "page": 13, - "word": "magical", - "image": "files/14_0269.jpg", - "audio": "files/14_0269.mp3", - "audioMeaning": "files/14_0269_meaning.mp3", - "audioExample": "files/14_0269_example.mp3", - "textMeaning": "Magical describes a quality that makes someone or something special.", - "textExample": "The fireworks made the night sky look so magical.", - "transcription": "[mǽdʒikəl]", - "__v": 0, - "textExampleTranslate": "Фейерверк заставил ночное небо выглядеть таким волшебным", - "textMeaningTranslate": "Волшебство описывает качество, которое делает кого-то или что-то особенное", - "wordTranslate": "волшебный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ad" - }, - "group": 0, - "page": 13, - "word": "mail", - "image": "files/14_0270.jpg", - "audio": "files/14_0270.mp3", - "audioMeaning": "files/14_0270_meaning.mp3", - "audioExample": "files/14_0270_example.mp3", - "textMeaning": "Mail is letters and other things sent to people.", - "textExample": "I get a lot of mail because I have friends all over the world.", - "transcription": "[meil]", - "__v": 0, - "textExampleTranslate": "Я получаю много почты, потому что у меня есть друзья по всему миру", - "textMeaningTranslate": "Почта - это письма и другие вещи, отправленные людям", - "wordTranslate": "почта" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ae" - }, - "group": 0, - "page": 13, - "word": "novel", - "image": "files/14_0271.jpg", - "audio": "files/14_0271.mp3", - "audioMeaning": "files/14_0271_meaning.mp3", - "audioExample": "files/14_0271_example.mp3", - "textMeaning": "A novel is a book that tells a story.", - "textExample": "He wrote a great novel about ancient China.", - "transcription": "[nɑ́vəl]", - "__v": 0, - "textExampleTranslate": "Он написал великий роман о древнем Китае", - "textMeaningTranslate": "Роман - это книга, рассказывающая историю", - "wordTranslate": "роман" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5af" - }, - "group": 0, - "page": 13, - "word": "outline", - "image": "files/14_0272.jpg", - "audio": "files/14_0272.mp3", - "audioMeaning": "files/14_0272_meaning.mp3", - "audioExample": "files/14_0272_example.mp3", - "textMeaning": "An outline is the plan for a story or essay.", - "textExample": "Before I wrote my essay, I made an outline.", - "transcription": "[áutlàin]", - "__v": 0, - "textExampleTranslate": "Прежде чем я написал свое эссе, я сделал набросок", - "textMeaningTranslate": "План - это план истории или эссе", - "wordTranslate": "контур" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5b0" - }, - "group": 0, - "page": 13, - "word": "poet", - "image": "files/14_0273.jpg", - "audio": "files/14_0273.mp3", - "audioMeaning": "files/14_0273_meaning.mp3", - "audioExample": "files/14_0273_example.mp3", - "textMeaning": "A poet is a person who writes poems.", - "textExample": "William Shakespeare was one of the greatest poets.", - "transcription": "[póuit]", - "__v": 0, - "textExampleTranslate": "Уильям Шекспир был одним из величайших поэтов", - "textMeaningTranslate": "Поэт - это человек, который пишет стихи", - "wordTranslate": "поэт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5b1" - }, - "group": 0, - "page": 13, - "word": "print", - "image": "files/14_0274.jpg", - "audio": "files/14_0274.mp3", - "audioMeaning": "files/14_0274_meaning.mp3", - "audioExample": "files/14_0274_example.mp3", - "textMeaning": "To print something is to put it onto paper.", - "textExample": "Make sure that you print your name clearly.", - "transcription": "[print]", - "__v": 0, - "textExampleTranslate": "Убедитесь, что вы печатаете свое имя четко", - "textMeaningTranslate": "Напечатать что-то - значит положить это на бумагу", - "wordTranslate": "распечатать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5b2" - }, - "group": 0, - "page": 13, - "word": "scene", - "image": "files/14_0275.jpg", - "audio": "files/14_0275.mp3", - "audioMeaning": "files/14_0275_meaning.mp3", - "audioExample": "files/14_0275_example.mp3", - "textMeaning": "A scene is one part of a book or movie.", - "textExample": "A movie is made up of many short pieces or scenes.", - "transcription": "[siːn]", - "__v": 0, - "textExampleTranslate": "Фильм состоит из множества коротких пьес или сцен", - "textMeaningTranslate": "Сцена - это одна часть книги или фильма", - "wordTranslate": "сцена" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5b3" - }, - "group": 0, - "page": 13, - "word": "sheet", - "image": "files/14_0276.jpg", - "audio": "files/14_0276.mp3", - "audioMeaning": "files/14_0276_meaning.mp3", - "audioExample": "files/14_0276_example.mp3", - "textMeaning": "A sheet is a thin flat piece of paper.", - "textExample": "I only needed a single sheet of paper to do my homework.", - "transcription": "[ʃiːt]", - "__v": 0, - "textExampleTranslate": "Мне нужен был только один лист бумаги, чтобы сделать домашнее задание", - "textMeaningTranslate": "Лист - это тонкий плоский лист бумаги", - "wordTranslate": "лист" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5b4" - }, - "group": 0, - "page": 13, - "word": "silly", - "image": "files/14_0277.jpg", - "audio": "files/14_0277.mp3", - "audioMeaning": "files/14_0277_meaning.mp3", - "audioExample": "files/14_0277_example.mp3", - "textMeaning": "People who are silly show a lack of serious thought.", - "textExample": "I made a silly mistake of dropping mom’s vase.", - "transcription": "[síli]", - "__v": 0, - "textExampleTranslate": "Я сделал глупую ошибку, уронив мамину вазу", - "textMeaningTranslate": "Глупые люди показывают отсутствие серьезных мыслей", - "wordTranslate": "глупый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5b5" - }, - "group": 0, - "page": 13, - "word": "store", - "image": "files/14_0278.jpg", - "audio": "files/14_0278.mp3", - "audioMeaning": "files/14_0278_meaning.mp3", - "audioExample": "files/14_0278_example.mp3", - "textMeaning": "A store is a place where you can buy things.", - "textExample": "I picked up a few things at the grocery store.", - "transcription": "[stɔːr]", - "__v": 0, - "textExampleTranslate": "Я взял несколько вещей в продуктовом магазине", - "textMeaningTranslate": "Магазин - это место, где можно купить вещи", - "wordTranslate": "хранить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5b6" - }, - "group": 0, - "page": 13, - "word": "suffer", - "image": "files/14_0279.jpg", - "audio": "files/14_0279.mp3", - "audioMeaning": "files/14_0279_meaning.mp3", - "audioExample": "files/14_0279_example.mp3", - "textMeaning": "To suffer is to feel pain.", - "textExample": "Her headache made her suffer all day.", - "transcription": "[sʌ́fər]", - "__v": 0, - "textExampleTranslate": "Ее головная боль заставляла ее страдать весь день", - "textMeaningTranslate": "Страдать - значит чувствовать боль", - "wordTranslate": "страдать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5b7" - }, - "group": 0, - "page": 13, - "word": "technology", - "image": "files/14_0280.jpg", - "audio": "files/14_0280.mp3", - "audioMeaning": "files/14_0280_meaning.mp3", - "audioExample": "files/14_0280_example.mp3", - "textMeaning": "Technology is new things made by using science.", - "textExample": "He loves technology such as laptop computers.", - "transcription": "[teknɑ́lədʒi]", - "__v": 0, - "textExampleTranslate": "Он любит такие технологии, как ноутбуки", - "textMeaningTranslate": "Технология - это новые вещи, созданные с помощью науки", - "wordTranslate": "технологии" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5b8" - }, - "group": 0, - "page": 14, - "word": "across", - "image": "files/15_0281.jpg", - "audio": "files/15_0281.mp3", - "audioMeaning": "files/15_0281_meaning.mp3", - "audioExample": "files/15_0281_example.mp3", - "textMeaning": "To go across something is to go to the other side of it.", - "textExample": "He walked across the board to the other side.", - "transcription": "[əkrɔ́ːs]", - "__v": 0, - "textExampleTranslate": "Он прошел через доску на другую сторону", - "textMeaningTranslate": "Пересечь что-то - значит перейти на другую сторону", - "wordTranslate": "через" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5b9" - }, - "group": 0, - "page": 14, - "word": "breathe", - "image": "files/15_0282.jpg", - "audio": "files/15_0282.mp3", - "audioMeaning": "files/15_0282_meaning.mp3", - "audioExample": "files/15_0282_example.mp3", - "textMeaning": "To breathe means to let air go in and out of your body.", - "textExample": "We need strong healthy lungs to help us breathe well.", - "transcription": "[briːð]", - "__v": 0, - "textExampleTranslate": "Нам нужны крепкие здоровые легкие, чтобы мы могли хорошо дышать", - "textMeaningTranslate": "Дышать - значит позволять воздуху входить и выходить из вашего тела", - "wordTranslate": "дышать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ba" - }, - "group": 0, - "page": 14, - "word": "characteristic", - "image": "files/15_0283.jpg", - "audio": "files/15_0283.mp3", - "audioMeaning": "files/15_0283_meaning.mp3", - "audioExample": "files/15_0283_example.mp3", - "textMeaning": "A characteristic is something that shows what a person or a thing is like.", - "textExample": "One characteristic of tigers is their black stripes.", - "transcription": "[kæ̀riktərístik]", - "__v": 0, - "textExampleTranslate": "Одна из характеристик тигров - их черные полосы", - "textMeaningTranslate": "Характеристика - это то, что показывает, на что похож человек или вещь", - "wordTranslate": "характеристика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5bb" - }, - "group": 0, - "page": 14, - "word": "excite", - "image": "files/15_0285.jpg", - "audio": "files/15_0285.mp3", - "audioMeaning": "files/15_0285_meaning.mp3", - "audioExample": "files/15_0285_example.mp3", - "textMeaning": "To excite someone means to make them happy and interested.", - "textExample": "I heard about the school dance on Friday. This excited me.", - "transcription": "[iksáit]", - "__v": 0, - "textExampleTranslate": "Я слышал о школьном танце в пятницу. Это взволновало меня", - "textMeaningTranslate": "Взволновать кого-то - значит сделать его счастливым и заинтересованным", - "wordTranslate": "возбуждать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5bc" - }, - "group": 0, - "page": 14, - "word": "extremely", - "image": "files/15_0286.jpg", - "audio": "files/15_0286.mp3", - "audioMeaning": "files/15_0286_meaning.mp3", - "audioExample": "files/15_0286_example.mp3", - "textMeaning": "If something is extremely good, it is very, very good.", - "textExample": "I was extremely worried about him.", - "transcription": "[ikstríːm]", - "__v": 0, - "textExampleTranslate": "Я очень переживал за него", - "textMeaningTranslate": "Если что-то очень хорошо, это очень, очень хорошо", - "wordTranslate": "чрезвычайно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5bd" - }, - "group": 0, - "page": 14, - "word": "consume", - "image": "files/15_0284.jpg", - "audio": "files/15_0284.mp3", - "audioMeaning": "files/15_0284_meaning.mp3", - "audioExample": "files/15_0284_example.mp3", - "textMeaning": "To consume something means to eat or drink it.", - "textExample": "Jack consumed a whole plate of spaghetti.", - "transcription": "[kənsúːm]", - "__v": 0, - "textExampleTranslate": "Джек съел целую тарелку спагетти", - "textMeaningTranslate": "Потреблять что-либо - значит есть или пить", - "wordTranslate": "потреблять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5be" - }, - "group": 0, - "page": 14, - "word": "fear", - "image": "files/15_0287.jpg", - "audio": "files/15_0287.mp3", - "audioMeaning": "files/15_0287_meaning.mp3", - "audioExample": "files/15_0287_example.mp3", - "textMeaning": "Fear is the feeling of being afraid.", - "textExample": "I have a great fear of skateboarding.", - "transcription": "[fíər]", - "__v": 0, - "textExampleTranslate": "Я очень боюсь кататься на скейтборде", - "textMeaningTranslate": "Страх - это чувство страха", - "wordTranslate": "страх" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5bf" - }, - "group": 0, - "page": 14, - "word": "fortunate", - "image": "files/15_0288.jpg", - "audio": "files/15_0288.mp3", - "audioMeaning": "files/15_0288_meaning.mp3", - "audioExample": "files/15_0288_example.mp3", - "textMeaning": "If you are fortunate, you are lucky.", - "textExample": "I was fortunate to get a seat.", - "transcription": "[fɔ́ːrtʃənit]", - "__v": 0, - "textExampleTranslate": "Мне повезло получить место", - "textMeaningTranslate": "Если вам повезло, вам повезло", - "wordTranslate": "повезло" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5c0" - }, - "group": 0, - "page": 14, - "word": "mistake", - "image": "files/15_0291.jpg", - "audio": "files/15_0291.mp3", - "audioMeaning": "files/15_0291_meaning.mp3", - "audioExample": "files/15_0291_example.mp3", - "textMeaning": "A mistake is something you do wrong.", - "textExample": "My boss always yells at me when I make a mistake.", - "transcription": "[mistéik]", - "__v": 0, - "textExampleTranslate": "Мой начальник всегда кричит на меня, когда я совершаю ошибку", - "textMeaningTranslate": "Ошибка - это то, что вы делаете неправильно", - "wordTranslate": "ошибка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5c1" - }, - "group": 0, - "page": 14, - "word": "happen", - "image": "files/15_0289.jpg", - "audio": "files/15_0289.mp3", - "audioMeaning": "files/15_0289_meaning.mp3", - "audioExample": "files/15_0289_example.mp3", - "textMeaning": "If someone happens to do something, he or she does it by chance.", - "textExample": "I happened to meet some new friends at school today.", - "transcription": "[hǽpən]", - "__v": 0, - "textExampleTranslate": "Я случайно встретил в школе новых друзей", - "textMeaningTranslate": "Если кто-то что-то делает, он или она делают это случайно", - "wordTranslate": "случиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5c2" - }, - "group": 0, - "page": 14, - "word": "length", - "image": "files/15_0290.jpg", - "audio": "files/15_0290.mp3", - "audioMeaning": "files/15_0290_meaning.mp3", - "audioExample": "files/15_0290_example.mp3", - "textMeaning": "The length of something is how long it is from one end to the other.", - "textExample": "The length of the floor is three meters.", - "transcription": "[leŋkθ]", - "__v": 0, - "textExampleTranslate": "Длина пола три метра", - "textMeaningTranslate": "Длина чего-то - это как долго это от одного конца до другого", - "wordTranslate": "длина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5c3" - }, - "group": 0, - "page": 14, - "word": "observe", - "image": "files/15_0292.jpg", - "audio": "files/15_0292.mp3", - "audioMeaning": "files/15_0292_meaning.mp3", - "audioExample": "files/15_0292_example.mp3", - "textMeaning": "To observe something is to watch it.", - "textExample": "Brian observed the sun rising over the mountains.", - "transcription": "[əbzə́ːrv]", - "__v": 0, - "textExampleTranslate": "Брайан наблюдал, как солнце поднимается над горами", - "textMeaningTranslate": "Наблюдать за чем-то - это наблюдать за этим", - "wordTranslate": "наблюдать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5c4" - }, - "group": 0, - "page": 14, - "word": "opportunity", - "image": "files/15_0293.jpg", - "audio": "files/15_0293.mp3", - "audioMeaning": "files/15_0293_meaning.mp3", - "audioExample": "files/15_0293_example.mp3", - "textMeaning": "An opportunity is a chance to do something.", - "textExample": "I had an opportunity to take pictures in the jungle.", - "transcription": "[ὰpərtjúːnəti]", - "__v": 0, - "textExampleTranslate": "У меня была возможность фотографироваться в джунглях", - "textMeaningTranslate": "Возможность - это шанс что-то сделать", - "wordTranslate": "возможность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5c5" - }, - "group": 0, - "page": 14, - "word": "prize", - "image": "files/15_0294.jpg", - "audio": "files/15_0294.mp3", - "audioMeaning": "files/15_0294_meaning.mp3", - "audioExample": "files/15_0294_example.mp3", - "textMeaning": "A prize is something of value that is given to the winner.", - "textExample": "I won a prize for getting the best grade on my science test.", - "transcription": "[praiz]", - "__v": 0, - "textExampleTranslate": "Я выиграл приз за лучший результат в моем научном тесте", - "textMeaningTranslate": "Приз - это нечто ценное, что дается победителю", - "wordTranslate": "приз" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5c6" - }, - "group": 0, - "page": 14, - "word": "race", - "image": "files/15_0295.jpg", - "audio": "files/15_0295.mp3", - "audioMeaning": "files/15_0295_meaning.mp3", - "audioExample": "files/15_0295_example.mp3", - "textMeaning": "A race is a contest to see who is the fastest.", - "textExample": "Paul is a fast runner, so he easily won the race.", - "transcription": "[reis]", - "__v": 0, - "textExampleTranslate": "Пол - быстрый бегун, поэтому он легко выиграл гонку", - "textMeaningTranslate": "Гонка - это соревнование, чтобы увидеть, кто самый быстрый", - "wordTranslate": "гонка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5c7" - }, - "group": 0, - "page": 14, - "word": "realize", - "image": "files/15_0296.jpg", - "audio": "files/15_0296.mp3", - "audioMeaning": "files/15_0296_meaning.mp3", - "audioExample": "files/15_0296_example.mp3", - "textMeaning": "To realize is to suddenly understand.", - "textExample": "After I left my house, I realized that I left the light on.", - "transcription": "[ríːəlàiz]", - "__v": 0, - "textExampleTranslate": "После того, как я вышел из дома, я понял, что я оставил свет включенным", - "textMeaningTranslate": "Осознать - значит внезапно понять", - "wordTranslate": "понимать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5c8" - }, - "group": 0, - "page": 14, - "word": "respond", - "image": "files/15_0297.jpg", - "audio": "files/15_0297.mp3", - "audioMeaning": "files/15_0297_meaning.mp3", - "audioExample": "files/15_0297_example.mp3", - "textMeaning": "To respond is to give an answer to what someone else said.", - "textExample": "When the teacher asked the question, we all responded.", - "transcription": "[rispɑ́nd]", - "__v": 0, - "textExampleTranslate": "Когда учитель задал вопрос, мы все ответили", - "textMeaningTranslate": "Ответить - это дать ответ на то, что сказал кто-то другой", - "wordTranslate": "отвечать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5c9" - }, - "group": 0, - "page": 14, - "word": "risk", - "image": "files/15_0298.jpg", - "audio": "files/15_0298.mp3", - "audioMeaning": "files/15_0298_meaning.mp3", - "audioExample": "files/15_0298_example.mp3", - "textMeaning": "A risk is a chance of something bad happening.", - "textExample": "I took a risk and climbed the snowy mountain.", - "transcription": "[risk]", - "__v": 0, - "textExampleTranslate": "Я рискнул и поднялся на снежную гору", - "textMeaningTranslate": "Риск - это шанс на что-то плохое", - "wordTranslate": "риск" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ce" - }, - "group": 0, - "page": 15, - "word": "clothes", - "image": "files/16_0303.jpg", - "audio": "files/16_0303.mp3", - "audioMeaning": "files/16_0303_meaning.mp3", - "audioExample": "files/16_0303_example.mp3", - "textMeaning": "Clothes are what people wear to cover their bodies.", - "textExample": "I bought warm clothes for the cold winter.", - "transcription": "[klouz]", - "__v": 0, - "textExampleTranslate": "Я купил теплую одежду для холодной зимы", - "textMeaningTranslate": "Одежда - это то, что люди носят, чтобы покрыть свое тело", - "wordTranslate": "одежда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5cc" - }, - "group": 0, - "page": 15, - "word": "art", - "image": "files/16_0301.jpg", - "audio": "files/16_0301.mp3", - "audioMeaning": "files/16_0301_meaning.mp3", - "audioExample": "files/16_0301_example.mp3", - "textMeaning": "Art is something creative that expresses ideas and feelings.", - "textExample": "My sister likes to look at the art in the museum.", - "transcription": "[ɑːrt]", - "__v": 0, - "textExampleTranslate": "Моя сестра любит смотреть на искусство в музее", - "textMeaningTranslate": "Искусство - это нечто творческое, выражающее идеи и чувства", - "wordTranslate": "изобразительное искусство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ca" - }, - "group": 0, - "page": 14, - "word": "wonder", - "image": "files/15_0299.jpg", - "audio": "files/15_0299.mp3", - "audioMeaning": "files/15_0299_meaning.mp3", - "audioExample": "files/15_0299_example.mp3", - "textMeaning": "To wonder is to ask yourself questions or have a need to know.", - "textExample": "The young mother wondered if she’d have a boy or a girl.", - "transcription": "[wʌ́ndəːr]", - "__v": 0, - "textExampleTranslate": "Молодая мать задалась вопросом, будет ли у нее мальчик или девочка", - "textMeaningTranslate": "Задаться вопросом - это задавать себе вопросы или иметь необходимость знать", - "wordTranslate": "задаваться вопросом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5cd" - }, - "group": 0, - "page": 15, - "word": "book", - "image": "files/16_0302.jpg", - "audio": "files/16_0302.mp3", - "audioMeaning": "files/16_0302_meaning.mp3", - "audioExample": "files/16_0302_example.mp3", - "textMeaning": "A book is a set of printed sheets of paper that are held together inside a cover.", - "textExample": "The man smiles as he reads his favorite book.", - "transcription": "[buk]", - "__v": 0, - "textExampleTranslate": "Человек улыбается, читая свою любимую книгу", - "textMeaningTranslate": "Книга - это набор печатных листов бумаги, которые скреплены внутри обложки", - "wordTranslate": "книга" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5cb" - }, - "group": 0, - "page": 14, - "word": "yet", - "image": "files/15_0300.jpg", - "audio": "files/15_0300.mp3", - "audioMeaning": "files/15_0300_meaning.mp3", - "audioExample": "files/15_0300_example.mp3", - "textMeaning": "Yet is used to say something has not happened up to now.", - "textExample": "We can’t go out yet; we’re still eating.", - "transcription": "[jet]", - "__v": 0, - "textExampleTranslate": "Мы еще не можем выйти; мы все еще едим", - "textMeaningTranslate": "Тем не менее, говорят, что до сих пор ничего не произошло", - "wordTranslate": "еще" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5cf" - }, - "group": 0, - "page": 15, - "word": "community", - "image": "files/16_0304.jpg", - "audio": "files/16_0304.mp3", - "audioMeaning": "files/16_0304_meaning.mp3", - "audioExample": "files/16_0304_example.mp3", - "textMeaning": "A community is a group of people who share the same area or interests.", - "textExample": "The community got together to plant trees.", - "transcription": "[kəmjúːnəti]", - "__v": 0, - "textExampleTranslate": "Община собралась сажать деревья", - "textMeaningTranslate": "Сообщество - это группа людей, которые разделяют одну область или интересы", - "wordTranslate": "сообщество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5d3" - }, - "group": 0, - "page": 15, - "word": "exchange", - "image": "files/16_0308.jpg", - "audio": "files/16_0308.mp3", - "audioMeaning": "files/16_0308_meaning.mp3", - "audioExample": "files/16_0308_example.mp3", - "textMeaning": "To exchange is to give one thing in return for another.", - "textExample": "The men exchange business cards.", - "transcription": "[iksʧéindʒ]", - "__v": 0, - "textExampleTranslate": "Мужчины обмениваются визитками", - "textMeaningTranslate": "Обменять - значит отдавать одно за другое", - "wordTranslate": "обмен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5d1" - }, - "group": 0, - "page": 15, - "word": "dinner", - "image": "files/16_0306.jpg", - "audio": "files/16_0306.mp3", - "audioMeaning": "files/16_0306_meaning.mp3", - "audioExample": "files/16_0306_example.mp3", - "textMeaning": "Dinner is the main meal eaten in the evening.", - "textExample": "I had a hamburger for dinner.", - "transcription": "[dínər]", - "__v": 0, - "textExampleTranslate": "У меня был гамбургер на ужин", - "textMeaningTranslate": "Ужин - основная еда, которую едят вечером", - "wordTranslate": "обед" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5d2" - }, - "group": 0, - "page": 15, - "word": "end", - "image": "files/16_0307.jpg", - "audio": "files/16_0307.mp3", - "audioMeaning": "files/16_0307_meaning.mp3", - "audioExample": "files/16_0307_example.mp3", - "textMeaning": "To end is to stop or finish.", - "textExample": "They are happy because the teacher wanted to end the class early.", - "transcription": "[end]", - "__v": 0, - "textExampleTranslate": "Они счастливы, потому что учитель хотел рано закончить урок", - "textMeaningTranslate": "Завершить - значит остановиться или закончить", - "wordTranslate": "конец" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5d0" - }, - "group": 0, - "page": 15, - "word": "December", - "image": "files/16_0305.jpg", - "audio": "files/16_0305.mp3", - "audioMeaning": "files/16_0305_meaning.mp3", - "audioExample": "files/16_0305_example.mp3", - "textMeaning": "December is the twelfth month of the year.", - "textExample": "The last day of the year is December 31st.", - "transcription": "[disémbər]", - "__v": 0, - "textExampleTranslate": "Последний день года - 31 декабря", - "textMeaningTranslate": "Декабрь - двенадцатый месяц года", - "wordTranslate": "декабрь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5d4" - }, - "group": 0, - "page": 15, - "word": "family", - "image": "files/16_0309.jpg", - "audio": "files/16_0309.mp3", - "audioMeaning": "files/16_0309_meaning.mp3", - "audioExample": "files/16_0309_example.mp3", - "textMeaning": "A family is a group of people who are related to each other.", - "textExample": "There are four people in my family.", - "transcription": "[fǽməli]", - "__v": 0, - "textExampleTranslate": "В моей семье четыре человека", - "textMeaningTranslate": "Семья - это группа людей, которые связаны друг с другом", - "wordTranslate": "семья" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5d5" - }, - "group": 0, - "page": 15, - "word": "from", - "image": "files/16_0310.jpg", - "audio": "files/16_0310.mp3", - "audioMeaning": "files/16_0310_meaning.mp3", - "audioExample": "files/16_0310_example.mp3", - "textMeaning": "From shows a starting place or position.", - "textExample": "Chris studies from 10 o’clock to noon every morning.", - "transcription": "[frəm]", - "__v": 0, - "textExampleTranslate": "Крис учится с 10 до 12 часов каждое утро", - "textMeaningTranslate": "От показывает начальное место или позицию", - "wordTranslate": "от" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5d6" - }, - "group": 0, - "page": 15, - "word": "green", - "image": "files/16_0311.jpg", - "audio": "files/16_0311.mp3", - "audioMeaning": "files/16_0311_meaning.mp3", - "audioExample": "files/16_0311_example.mp3", - "textMeaning": "Green is the color of growing grass or leaves.", - "textExample": "I don’t like green apples.", - "transcription": "[griːn]", - "__v": 0, - "textExampleTranslate": "Я не люблю зеленые яблоки", - "textMeaningTranslate": "Зеленый - это цвет растущей травы или листьев", - "wordTranslate": "зеленый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5d7" - }, - "group": 0, - "page": 15, - "word": "home", - "image": "files/16_0312.jpg", - "audio": "files/16_0312.mp3", - "audioMeaning": "files/16_0312_meaning.mp3", - "audioExample": "files/16_0312_example.mp3", - "textMeaning": "A person’s home is the place where that person lives.", - "textExample": "The family likes to stay at home on the weekends.", - "transcription": "[houm]", - "__v": 0, - "textExampleTranslate": "Семья любит сидеть дома по выходным", - "textMeaningTranslate": "Дом человека - это место, где живет этот человек", - "wordTranslate": "дом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5d8" - }, - "group": 0, - "page": 15, - "word": "January", - "image": "files/16_0313.jpg", - "audio": "files/16_0313.mp3", - "audioMeaning": "files/16_0313_meaning.mp3", - "audioExample": "files/16_0313_example.mp3", - "textMeaning": "January is the first month of the year.", - "textExample": "My birthday is in January.", - "transcription": "[dʒǽnjuèri]", - "__v": 0, - "textExampleTranslate": "Мой день рождения в январе", - "textMeaningTranslate": "Январь - первый месяц года", - "wordTranslate": "январь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5d9" - }, - "group": 0, - "page": 15, - "word": "red", - "image": "files/16_0314.jpg", - "audio": "files/16_0314.mp3", - "audioMeaning": "files/16_0314_meaning.mp3", - "audioExample": "files/16_0314_example.mp3", - "textMeaning": "Red is the color of blood.", - "textExample": "Jack is wearing a red shirt.", - "transcription": "[red]", - "__v": 0, - "textExampleTranslate": "Джек одет в красную рубашку", - "textMeaningTranslate": "Красный - это цвет крови", - "wordTranslate": "красный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5da" - }, - "group": 0, - "page": 15, - "word": "seven", - "image": "files/16_0315.jpg", - "audio": "files/16_0315.mp3", - "audioMeaning": "files/16_0315_meaning.mp3", - "audioExample": "files/16_0315_example.mp3", - "textMeaning": "Seven is the word for the number 7.", - "textExample": "I have seven colored pencils on my desk.", - "transcription": "[sevən]", - "__v": 0, - "textExampleTranslate": "У меня на столе семь цветных карандашей", - "textMeaningTranslate": "Семь это слово для числа 7", - "wordTranslate": "семь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5dc" - }, - "group": 0, - "page": 15, - "word": "together", - "image": "files/16_0317.jpg", - "audio": "files/16_0317.mp3", - "audioMeaning": "files/16_0317_meaning.mp3", - "audioExample": "files/16_0317_example.mp3", - "textMeaning": "Together shows an action is done with another person or thing.", - "textExample": "Let’s work together to finish the project.", - "transcription": "[təɡeðər]", - "__v": 0, - "textExampleTranslate": "Давайте работать вместе, чтобы закончить проект", - "textMeaningTranslate": "Вместе показывает, что действие совершается с другим человеком или вещью", - "wordTranslate": "все вместе" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5db" - }, - "group": 0, - "page": 15, - "word": "start", - "image": "files/16_0316.jpg", - "audio": "files/16_0316.mp3", - "audioMeaning": "files/16_0316_meaning.mp3", - "audioExample": "files/16_0316_example.mp3", - "textMeaning": "To start is to begin doing something.", - "textExample": "Catherine has to start work at 8 o’clock in the morning.", - "transcription": "[staːrt]", - "__v": 0, - "textExampleTranslate": "Екатерина должна начать работу в 8 часов утра", - "textMeaningTranslate": "Для начала значит начать делать что-то", - "wordTranslate": "начните" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5dd" - }, - "group": 0, - "page": 15, - "word": "university", - "image": "files/16_0318.jpg", - "audio": "files/16_0318.mp3", - "audioMeaning": "files/16_0318_meaning.mp3", - "audioExample": "files/16_0318_example.mp3", - "textMeaning": "A university is a school where people study for a degree.", - "textExample": "My dream is to go to a good university.", - "transcription": "[jùːnəvə́ːrsəti]", - "__v": 0, - "textExampleTranslate": "Моя мечта - поступить в хороший университет", - "textMeaningTranslate": "Университет - это школа, в которой люди учатся для получения степени", - "wordTranslate": "университет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5de" - }, - "group": 0, - "page": 15, - "word": "wear", - "image": "files/16_0319.jpg", - "audio": "files/16_0319.mp3", - "audioMeaning": "files/16_0319_meaning.mp3", - "audioExample": "files/16_0319_example.mp3", - "textMeaning": "To wear is to have clothing on your body.", - "textExample": "The man has to wear a suit to work.", - "transcription": "[wεər]", - "__v": 0, - "textExampleTranslate": "Человек должен носить костюм, чтобы работать", - "textMeaningTranslate": "Носить - значит носить одежду на теле", - "wordTranslate": "износ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5df" - }, - "group": 0, - "page": 15, - "word": "year", - "image": "files/16_0320.jpg", - "audio": "files/16_0320.mp3", - "audioMeaning": "files/16_0320_meaning.mp3", - "audioExample": "files/16_0320_example.mp3", - "textMeaning": "A year is a period of 365 days or twelve months.", - "textExample": "You become one year older every birthday.", - "transcription": "[jiər]", - "__v": 0, - "textExampleTranslate": "Вы становитесь на год старше с каждым днем рождения", - "textMeaningTranslate": "Год - это период 365 дней или двенадцати месяцев", - "wordTranslate": "год" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5e0" - }, - "group": 0, - "page": 16, - "word": "appreciate", - "image": "files/17_0321.jpg", - "audio": "files/17_0321.mp3", - "audioMeaning": "files/17_0321_meaning.mp3", - "audioExample": "files/17_0321_example.mp3", - "textMeaning": "To appreciate something is to understand its good qualities.", - "textExample": "I can appreciate the lovely scenery.", - "transcription": "[əpríːʃièit]", - "__v": 0, - "textExampleTranslate": "Я могу оценить прекрасные пейзажи", - "textMeaningTranslate": "Ценить что-то - значит понимать его хорошие качества", - "wordTranslate": "оценить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5e1" - }, - "group": 0, - "page": 16, - "word": "available", - "image": "files/17_0322.jpg", - "audio": "files/17_0322.mp3", - "audioMeaning": "files/17_0322_meaning.mp3", - "audioExample": "files/17_0322_example.mp3", - "textMeaning": "If something is available, it means you can get it.", - "textExample": "There were many seats available in the room.", - "transcription": "[əvéiləbəl]", - "__v": 0, - "textExampleTranslate": "В комнате было много свободных мест", - "textMeaningTranslate": "Если что-то доступно, значит, вы можете это получить", - "wordTranslate": "доступный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5e2" - }, - "group": 0, - "page": 16, - "word": "beat", - "image": "files/17_0323.jpg", - "audio": "files/17_0323.mp3", - "audioMeaning": "files/17_0323_meaning.mp3", - "audioExample": "files/17_0323_example.mp3", - "textMeaning": "To beat someone means to do better than they do.", - "textExample": "I managed to beat everyone in the race.", - "transcription": "[biːt]", - "__v": 0, - "textExampleTranslate": "Мне удалось победить всех в гонке", - "textMeaningTranslate": "Бить кого-то - значит делать лучше, чем они", - "wordTranslate": "бить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5e3" - }, - "group": 0, - "page": 16, - "word": "bright", - "image": "files/17_0324.jpg", - "audio": "files/17_0324.mp3", - "audioMeaning": "files/17_0324_meaning.mp3", - "audioExample": "files/17_0324_example.mp3", - "textMeaning": "If something is bright, it gives off a lot of light.", - "textExample": "The bright light from the explosion hurt my eyes.", - "transcription": "[brait]", - "__v": 0, - "textExampleTranslate": "Яркий свет от взрыва повредил мне глаза", - "textMeaningTranslate": "Если что-то яркое, оно излучает много света", - "wordTranslate": "яркий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5e4" - }, - "group": 0, - "page": 16, - "word": "celebrate", - "image": "files/17_0325.jpg", - "audio": "files/17_0325.mp3", - "audioMeaning": "files/17_0325_meaning.mp3", - "audioExample": "files/17_0325_example.mp3", - "textMeaning": "To celebrate is to do something to show that an event is special.", - "textExample": "We all celebrated when we heard the great news.", - "transcription": "[séləbrèit]", - "__v": 0, - "textExampleTranslate": "Мы все праздновали, когда услышали великие новости", - "textMeaningTranslate": "Праздновать - значит делать что-то, чтобы показать, что событие особенное", - "wordTranslate": "праздновать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5e5" - }, - "group": 0, - "page": 16, - "word": "decide", - "image": "files/17_0326.jpg", - "audio": "files/17_0326.mp3", - "audioMeaning": "files/17_0326_meaning.mp3", - "audioExample": "files/17_0326_example.mp3", - "textMeaning": "To decide is to make a definite choice.", - "textExample": "He tried to decide which one to eat first.", - "transcription": "[disáid]", - "__v": 0, - "textExampleTranslate": "Он пытался решить, какой из них съесть первым", - "textMeaningTranslate": "Решить - значит сделать определенный выбор", - "wordTranslate": "принять решение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5e7" - }, - "group": 0, - "page": 16, - "word": "else", - "image": "files/17_0328.jpg", - "audio": "files/17_0328.mp3", - "audioMeaning": "files/17_0328_meaning.mp3", - "audioExample": "files/17_0328_example.mp3", - "textMeaning": "If you talk about something else, you talk about something different.", - "textExample": "I wanted a bike for my birthday, but I got something else.", - "transcription": "[els]", - "__v": 0, - "textExampleTranslate": "Я хотел велосипед на день рождения, но получил кое-что еще", - "textMeaningTranslate": "Если вы говорите о чем-то другом, вы говорите о чем-то другом", - "wordTranslate": "другой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5e6" - }, - "group": 0, - "page": 16, - "word": "disappear", - "image": "files/17_0327.jpg", - "audio": "files/17_0327.mp3", - "audioMeaning": "files/17_0327_meaning.mp3", - "audioExample": "files/17_0327_example.mp3", - "textMeaning": "To disappear means to go away or not be seen.", - "textExample": "The top of the building is disappearing in the clouds.", - "transcription": "[dìsəpíər]", - "__v": 0, - "textExampleTranslate": "Верхняя часть здания исчезает в облаках", - "textMeaningTranslate": "Исчезнуть - значит уйти или не быть увиденным", - "wordTranslate": "исчезают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5e8" - }, - "group": 0, - "page": 16, - "word": "fair", - "image": "files/17_0329.jpg", - "audio": "files/17_0329.mp3", - "audioMeaning": "files/17_0329_meaning.mp3", - "audioExample": "files/17_0329_example.mp3", - "textMeaning": "Fair means reasonable or right.", - "textExample": "He sold me his car for a fair price.", - "transcription": "[fɛər]", - "__v": 0, - "textExampleTranslate": "Он продал мне свою машину по справедливой цене", - "textMeaningTranslate": "Справедливый означает разумный или правильный", - "wordTranslate": "справедливая" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5e9" - }, - "group": 0, - "page": 16, - "word": "flow", - "image": "files/17_0330.jpg", - "audio": "files/17_0330.mp3", - "audioMeaning": "files/17_0330_meaning.mp3", - "audioExample": "files/17_0330_example.mp3", - "textMeaning": "To flow is to move easily and continuously in one direction.", - "textExample": "The water flowed over the rocks and into the lake.", - "transcription": "[flóu]", - "__v": 0, - "textExampleTranslate": "Вода текла по скалам и в озеро", - "textMeaningTranslate": "Поток - это движение легко и непрерывно в одном направлении", - "wordTranslate": "течь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ea" - }, - "group": 0, - "page": 16, - "word": "forward", - "image": "files/17_0331.jpg", - "audio": "files/17_0331.mp3", - "audioMeaning": "files/17_0331_meaning.mp3", - "audioExample": "files/17_0331_example.mp3", - "textMeaning": "If you move forward, you move in the direction in front of you.", - "textExample": "When he saw his mother, the baby crawled forward to her.", - "transcription": "[fɔ́ːrwəːrd]", - "__v": 0, - "textExampleTranslate": "Когда он увидел свою мать, малыш пополз к ней вперед", - "textMeaningTranslate": "Если вы двигаетесь вперед, вы двигаетесь в направлении перед вами", - "wordTranslate": "вперед" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ec" - }, - "group": 0, - "page": 16, - "word": "level", - "image": "files/17_0333.jpg", - "audio": "files/17_0333.mp3", - "audioMeaning": "files/17_0333_meaning.mp3", - "audioExample": "files/17_0333_example.mp3", - "textMeaning": "A level is a point on a scale that measures something.", - "textExample": "Please check the level of the temperature.", - "transcription": "[lévəl]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, проверьте уровень температуры", - "textMeaningTranslate": "Уровень - это точка на шкале, которая измеряет что-то", - "wordTranslate": "уровень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5eb" - }, - "group": 0, - "page": 16, - "word": "hill", - "image": "files/17_0332.jpg", - "audio": "files/17_0332.mp3", - "audioMeaning": "files/17_0332_meaning.mp3", - "audioExample": "files/17_0332_example.mp3", - "textMeaning": "A hill is a raised area of land. It is higher than the land around it.", - "textExample": "The sun was rising above the green hills.", - "transcription": "[hil]", - "__v": 0, - "textExampleTranslate": "Солнце поднималось над зелеными холмами", - "textMeaningTranslate": "Холм - это возвышенный участок земли. Он выше земли вокруг него", - "wordTranslate": "холм" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ed" - }, - "group": 0, - "page": 16, - "word": "lone", - "image": "files/17_0334.jpg", - "audio": "files/17_0334.mp3", - "audioMeaning": "files/17_0334_meaning.mp3", - "audioExample": "files/17_0334_example.mp3", - "textMeaning": "A lone person or thing is the only one in a given place.", - "textExample": "A lone man walked along the street.", - "transcription": "[loun]", - "__v": 0, - "textExampleTranslate": "Одинокий человек шел по улице", - "textMeaningTranslate": "Одинокий человек или вещь - единственный в данном месте", - "wordTranslate": "одинокий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ee" - }, - "group": 0, - "page": 16, - "word": "puddle", - "image": "files/17_0335.jpg", - "audio": "files/17_0335.mp3", - "audioMeaning": "files/17_0335_meaning.mp3", - "audioExample": "files/17_0335_example.mp3", - "textMeaning": "A puddle is a pool of liquid on the ground.", - "textExample": "When the ice melted, it formed a puddle.", - "transcription": "[pʌ́dl]", - "__v": 0, - "textExampleTranslate": "Когда лед растаял, образовалась лужа", - "textMeaningTranslate": "Лужа - это лужа жидкости на земле", - "wordTranslate": "лужа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ef" - }, - "group": 0, - "page": 16, - "word": "response", - "image": "files/17_0336.jpg", - "audio": "files/17_0336.mp3", - "audioMeaning": "files/17_0336_meaning.mp3", - "audioExample": "files/17_0336_example.mp3", - "textMeaning": "A response is the answer to a question.", - "textExample": "He asked if I was sad. My response was “No.”", - "transcription": "[rispɑ́ns]", - "__v": 0, - "textExampleTranslate": "Он спросил, грустно ли мне. Мой ответ был 'Нет'", - "textMeaningTranslate": "Ответ - это ответ на вопрос", - "wordTranslate": "ответ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5f0" - }, - "group": 0, - "page": 16, - "word": "season", - "image": "files/17_0337.jpg", - "audio": "files/17_0337.mp3", - "audioMeaning": "files/17_0337_meaning.mp3", - "audioExample": "files/17_0337_example.mp3", - "textMeaning": "A season is a time of the year: spring, summer, fall, or winter.", - "textExample": "Fall is a warm season, while winter is very cold.", - "transcription": "[síːzən]", - "__v": 0, - "textExampleTranslate": "Осень - теплое время года, а зима очень холодная", - "textMeaningTranslate": "Сезон - это время года: весна, лето, осень или зима", - "wordTranslate": "время года" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5f1" - }, - "group": 0, - "page": 16, - "word": "solution", - "image": "files/17_0338.jpg", - "audio": "files/17_0338.mp3", - "audioMeaning": "files/17_0338_meaning.mp3", - "audioExample": "files/17_0338_example.mp3", - "textMeaning": "A solution is a way to solve a problem.", - "textExample": "There are many problems. We need solutions!", - "transcription": "[səlúːʃən]", - "__v": 0, - "textExampleTranslate": "Есть много проблем. Нам нужны решения!", - "textMeaningTranslate": "Решение - это способ решить проблему", - "wordTranslate": "решение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5f2" - }, - "group": 0, - "page": 16, - "word": "waste", - "image": "files/17_0339.jpg", - "audio": "files/17_0339.mp3", - "audioMeaning": "files/17_0339_meaning.mp3", - "audioExample": "files/17_0339_example.mp3", - "textMeaning": "To waste means to use something carelessly and unnecessarily.", - "textExample": "Turn off the water so you don’t waste it.", - "transcription": "[weist]", - "__v": 0, - "textExampleTranslate": "Выключи воду, чтобы не тратить ее впустую", - "textMeaningTranslate": "Тратить впустую означает использовать что-то небрежно и излишне", - "wordTranslate": "отходы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5f3" - }, - "group": 0, - "page": 16, - "word": "whether", - "image": "files/17_0340.jpg", - "audio": "files/17_0340.mp3", - "audioMeaning": "files/17_0340_meaning.mp3", - "audioExample": "files/17_0340_example.mp3", - "textMeaning": "You use whether when you must choose between two things.", - "textExample": "I could not decide whether to go left or right.", - "transcription": "[hwéðəːr]", - "__v": 0, - "textExampleTranslate": "Я не мог решить, идти ли налево или направо", - "textMeaningTranslate": "Используете ли вы когда нужно выбирать между двумя вещами", - "wordTranslate": "будь то" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5f4" - }, - "group": 0, - "page": 17, - "word": "always", - "image": "files/18_0341.jpg", - "audio": "files/18_0341.mp3", - "audioMeaning": "files/18_0341_meaning.mp3", - "audioExample": "files/18_0341_example.mp3", - "textMeaning": "Always means that something happens all the time.", - "textExample": "They always brush their teeth in the morning.", - "transcription": "[ɔ́ːlweiz]", - "__v": 0, - "textExampleTranslate": "Они всегда чистят зубы по утрам", - "textMeaningTranslate": "Всегда означает, что что-то происходит постоянно", - "wordTranslate": "всегда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5f5" - }, - "group": 0, - "page": 17, - "word": "ask", - "image": "files/18_0342.jpg", - "audio": "files/18_0342.mp3", - "audioMeaning": "files/18_0342_meaning.mp3", - "audioExample": "files/18_0342_example.mp3", - "textMeaning": "To ask is to say or write something to get an answer.", - "textExample": "Please ask questions if you do not understand.", - "transcription": "[æsk]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, задавайте вопросы, если вы не понимаете", - "textMeaningTranslate": "Спросить - значит сказать или написать что-то, чтобы получить ответ", - "wordTranslate": "спросить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5f6" - }, - "group": 0, - "page": 17, - "word": "banana", - "image": "files/18_0343.jpg", - "audio": "files/18_0343.mp3", - "audioMeaning": "files/18_0343_meaning.mp3", - "audioExample": "files/18_0343_example.mp3", - "textMeaning": "A banana is a long yellow fruit with soft white flesh inside.", - "textExample": "Did you eat a banana for breakfast?", - "transcription": "[bənǽnə]", - "__v": 0, - "textExampleTranslate": "Ты ел банан на завтрак?", - "textMeaningTranslate": "Банан - это длинный желтый фрукт с мягкой белой мякотью внутри", - "wordTranslate": "банан" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5f7" - }, - "group": 0, - "page": 17, - "word": "bread", - "image": "files/18_0344.jpg", - "audio": "files/18_0344.mp3", - "audioMeaning": "files/18_0344_meaning.mp3", - "audioExample": "files/18_0344_example.mp3", - "textMeaning": "Bread is a food made from flour and water.", - "textExample": "You need two pieces of bread to make a sandwich.", - "transcription": "[bred]", - "__v": 0, - "textExampleTranslate": "Вам нужно два куска хлеба, чтобы сделать бутерброд", - "textMeaningTranslate": "Хлеб - это еда из муки и воды", - "wordTranslate": "хлеб" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5f8" - }, - "group": 0, - "page": 17, - "word": "cake", - "image": "files/18_0345.jpg", - "audio": "files/18_0345.mp3", - "audioMeaning": "files/18_0345_meaning.mp3", - "audioExample": "files/18_0345_example.mp3", - "textMeaning": "Cake is a sweet dessert made from flour, water, sugar, and eggs.", - "textExample": "What a beautiful birthday cake!", - "transcription": "[keik]", - "__v": 0, - "textExampleTranslate": "Какой красивый торт ко дню рождения!", - "textMeaningTranslate": "Торт - это сладкий десерт из муки, воды, сахара и яиц", - "wordTranslate": "торт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5f9" - }, - "group": 0, - "page": 17, - "word": "carrot", - "image": "files/18_0346.jpg", - "audio": "files/18_0346.mp3", - "audioMeaning": "files/18_0346_meaning.mp3", - "audioExample": "files/18_0346_example.mp3", - "textMeaning": "A carrot is an orange vegetable.", - "textExample": "I put a carrot in my salad.", - "transcription": "[kǽrət]", - "__v": 0, - "textExampleTranslate": "Я положил морковку в свой салат", - "textMeaningTranslate": "Морковь - это апельсиновый овощ", - "wordTranslate": "морковь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5fa" - }, - "group": 0, - "page": 17, - "word": "chicken", - "image": "files/18_0347.jpg", - "audio": "files/18_0347.mp3", - "audioMeaning": "files/18_0347_meaning.mp3", - "audioExample": "files/18_0347_example.mp3", - "textMeaning": "Chicken is a bird that is often used for food.", - "textExample": "Chicken is his favorite kind of meat.", - "transcription": "[ʧíkən]", - "__v": 0, - "textExampleTranslate": "Курица - его любимый вид мяса", - "textMeaningTranslate": "Курица - это птица, которую часто используют в пищу", - "wordTranslate": "курица" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5fb" - }, - "group": 0, - "page": 17, - "word": "chocolate", - "image": "files/18_0348.jpg", - "audio": "files/18_0348.mp3", - "audioMeaning": "files/18_0348_meaning.mp3", - "audioExample": "files/18_0348_example.mp3", - "textMeaning": "Chocolate is a sweet food made from cacao beans.", - "textExample": "I made a chocolate cake for my mom’s party.", - "transcription": "[ʧάkələt]", - "__v": 0, - "textExampleTranslate": "Я сделал шоколадный торт для вечеринки моей мамы", - "textMeaningTranslate": "Шоколад - это сладкая пища из какао-бобов", - "wordTranslate": "шоколад" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5fc" - }, - "group": 0, - "page": 17, - "word": "contain", - "image": "files/18_0349.jpg", - "audio": "files/18_0349.mp3", - "audioMeaning": "files/18_0349_meaning.mp3", - "audioExample": "files/18_0349_example.mp3", - "textMeaning": "To contain is to hold or have something.", - "textExample": "I have to find something to contain these apples.", - "transcription": "[kəntéin]", - "__v": 0, - "textExampleTranslate": "Я должен найти что-то, чтобы содержать эти яблоки", - "textMeaningTranslate": "Содержать - значит держать или иметь что-то", - "wordTranslate": "содержать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5fd" - }, - "group": 0, - "page": 17, - "word": "delicious", - "image": "files/18_0350.jpg", - "audio": "files/18_0350.mp3", - "audioMeaning": "files/18_0350_meaning.mp3", - "audioExample": "files/18_0350_example.mp3", - "textMeaning": "If a food is delicious, it is tasty.", - "textExample": "I loved the delicious fried chicken I ate for dinner!", - "transcription": "[dilíʃəs]", - "__v": 0, - "textExampleTranslate": "Мне очень понравилась вкусная жареная курица, которую я ел на ужин!", - "textMeaningTranslate": "Если еда вкусная, то она вкусная", - "wordTranslate": "очень вкусно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5fe" - }, - "group": 0, - "page": 17, - "word": "diet", - "image": "files/18_0351.jpg", - "audio": "files/18_0351.mp3", - "audioMeaning": "files/18_0351_meaning.mp3", - "audioExample": "files/18_0351_example.mp3", - "textMeaning": "A diet is the food regularly eaten by a person.", - "textExample": "His diet mostly consists of fruits and vegetables.", - "transcription": "[dáiət]", - "__v": 0, - "textExampleTranslate": "Его диета состоит в основном из фруктов и овощей", - "textMeaningTranslate": "Диета - это пища, которую регулярно ест человек", - "wordTranslate": "рацион питания" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af5ff" - }, - "group": 0, - "page": 17, - "word": "eat", - "image": "files/18_0352.jpg", - "audio": "files/18_0352.mp3", - "audioMeaning": "files/18_0352_meaning.mp3", - "audioExample": "files/18_0352_example.mp3", - "textMeaning": "To eat is to chew and swallow food.", - "textExample": "You should eat breakfast every day.", - "transcription": "[iːt]", - "__v": 0, - "textExampleTranslate": "Ты должен завтракать каждый день", - "textMeaningTranslate": "Кушать - значит жевать и глотать пищу", - "wordTranslate": "есть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af600" - }, - "group": 0, - "page": 17, - "word": "food", - "image": "files/18_0353.jpg", - "audio": "files/18_0353.mp3", - "audioMeaning": "files/18_0353_meaning.mp3", - "audioExample": "files/18_0353_example.mp3", - "textMeaning": "Food is things people and animals eat.", - "textExample": "Pasta is a famous food in Italy.", - "transcription": "[fuːd]", - "__v": 0, - "textExampleTranslate": "Макароны - известная еда в Италии", - "textMeaningTranslate": "Еда - это то, что едят люди и животные", - "wordTranslate": "пища" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af601" - }, - "group": 0, - "page": 17, - "word": "fruit", - "image": "files/18_0354.jpg", - "audio": "files/18_0354.mp3", - "audioMeaning": "files/18_0354_meaning.mp3", - "audioExample": "files/18_0354_example.mp3", - "textMeaning": "Fruit is a type of healthy food that grows on trees and plants.", - "textExample": "Apples, pears, and oranges are types of fruit.", - "transcription": "[fruːt]", - "__v": 0, - "textExampleTranslate": "Яблоки, груши и апельсины - это виды фруктов", - "textMeaningTranslate": "Фрукты - это вид здоровой пищи, которая растет на деревьях и растениях", - "wordTranslate": "фрукты" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af602" - }, - "group": 0, - "page": 17, - "word": "great", - "image": "files/18_0355.jpg", - "audio": "files/18_0355.mp3", - "audioMeaning": "files/18_0355_meaning.mp3", - "audioExample": "files/18_0355_example.mp3", - "textMeaning": "When something is great, it is very good.", - "textExample": "It was a great, exciting game!", - "transcription": "[greit]", - "__v": 0, - "textExampleTranslate": "Это была отличная, захватывающая игра!", - "textMeaningTranslate": "Когда что-то здорово, это очень хорошо", - "wordTranslate": "великий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af603" - }, - "group": 0, - "page": 17, - "word": "health", - "image": "files/18_0356.jpg", - "audio": "files/18_0356.mp3", - "audioMeaning": "files/18_0356_meaning.mp3", - "audioExample": "files/18_0356_example.mp3", - "textMeaning": "Health is the state of a person’s body.", - "textExample": "People who want good health should not smoke.", - "transcription": "[helθ]", - "__v": 0, - "textExampleTranslate": "Люди, которые хотят хорошего здоровья, не должны курить", - "textMeaningTranslate": "Здоровье - это состояние тела человека", - "wordTranslate": "здоровье" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af604" - }, - "group": 0, - "page": 17, - "word": "recipe", - "image": "files/18_0357.jpg", - "audio": "files/18_0357.mp3", - "audioMeaning": "files/18_0357_meaning.mp3", - "audioExample": "files/18_0357_example.mp3", - "textMeaning": "A recipe is a set of instructions for cooking a certain type of food.", - "textExample": "Do you use a recipe when you make that sauce?", - "transcription": "[résəpi]", - "__v": 0, - "textExampleTranslate": "Ты используешь рецепт, когда готовишь этот соус?", - "textMeaningTranslate": "Рецепт - это набор инструкций для приготовления определенного вида пищи", - "wordTranslate": "рецепт блюда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af605" - }, - "group": 0, - "page": 17, - "word": "restaurant", - "image": "files/18_0358.jpg", - "audio": "files/18_0358.mp3", - "audioMeaning": "files/18_0358_meaning.mp3", - "audioExample": "files/18_0358_example.mp3", - "textMeaning": "A restaurant is a business where people sit and eat food.", - "textExample": "Let’s eat at the Indian restaurant.", - "transcription": "[restərɒnt]", - "__v": 0, - "textExampleTranslate": "Давайте есть в индийском ресторане", - "textMeaningTranslate": "Ресторан - это бизнес, где люди сидят и едят еду", - "wordTranslate": "ресторан" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af606" - }, - "group": 0, - "page": 17, - "word": "special", - "image": "files/18_0359.jpg", - "audio": "files/18_0359.mp3", - "audioMeaning": "files/18_0359_meaning.mp3", - "audioExample": "files/18_0359_example.mp3", - "textMeaning": "If something is special, it is unique and different.", - "textExample": "The cupcake was special because it had blue frosting.", - "transcription": "[spéʃəl]", - "__v": 0, - "textExampleTranslate": "Кекс был особенным, потому что у него была голубая глазурь", - "textMeaningTranslate": "Если что-то особенное, оно уникально и отличается", - "wordTranslate": "специальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af607" - }, - "group": 0, - "page": 17, - "word": "water", - "image": "files/18_0360.jpg", - "audio": "files/18_0360.mp3", - "audioMeaning": "files/18_0360_meaning.mp3", - "audioExample": "files/18_0360_example.mp3", - "textMeaning": "Water is a clear liquid that people need to survive.", - "textExample": "Drink eight cups of water every day.", - "transcription": "[wɔ́ːtər]", - "__v": 0, - "textExampleTranslate": "Пейте восемь чашек воды каждый день", - "textMeaningTranslate": "Вода - это прозрачная жидкость, которая нужна людям, чтобы выжить", - "wordTranslate": "вода" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af608" - }, - "group": 0, - "page": 18, - "word": "alive", - "image": "files/19_0361.jpg", - "audio": "files/19_0361.mp3", - "audioMeaning": "files/19_0361_meaning.mp3", - "audioExample": "files/19_0361_example.mp3", - "textMeaning": "Someone or something that is alive is not dead.", - "textExample": "My grandparents are still alive even though they are over 90.", - "transcription": "[əláiv]", - "__v": 0, - "textExampleTranslate": "Мои бабушка и дедушка все еще живы, хотя им уже за 90", - "textMeaningTranslate": "Кто-то или что-то живое не мертво", - "wordTranslate": "живой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af609" - }, - "group": 0, - "page": 18, - "word": "bone", - "image": "files/19_0362.jpg", - "audio": "files/19_0362.mp3", - "audioMeaning": "files/19_0362_meaning.mp3", - "audioExample": "files/19_0362_example.mp3", - "textMeaning": "A bone is a hard part of the body.", - "textExample": "I brought home a nice bone for my dog.", - "transcription": "[boun]", - "__v": 0, - "textExampleTranslate": "Я принес домой хорошую собаку для моей собаки", - "textMeaningTranslate": "Кость - это твердая часть тела", - "wordTranslate": "кость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af60a" - }, - "group": 0, - "page": 18, - "word": "bother", - "image": "files/19_0363.jpg", - "audio": "files/19_0363.mp3", - "audioMeaning": "files/19_0363_meaning.mp3", - "audioExample": "files/19_0363_example.mp3", - "textMeaning": "To bother is to make the effort to do something.", - "textExample": "No one bothered to wash the dishes today.", - "transcription": "[bɑ́ðəːr]", - "__v": 0, - "textExampleTranslate": "Никто не удосужился мыть посуду сегодня", - "textMeaningTranslate": "Беспокоить - значит прилагать усилия, чтобы что-то сделать", - "wordTranslate": "заморачиваться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af60b" - }, - "group": 0, - "page": 18, - "word": "captain", - "image": "files/19_0364.jpg", - "audio": "files/19_0364.mp3", - "audioMeaning": "files/19_0364_meaning.mp3", - "audioExample": "files/19_0364_example.mp3", - "textMeaning": "A captain is the person who controls a ship or airplane.", - "textExample": "The captain sailed his ship to Australia.", - "transcription": "[kǽptin]", - "__v": 0, - "textExampleTranslate": "Капитан отплыл на своем корабле в Австралию", - "textMeaningTranslate": "Капитан - это человек, который управляет кораблем или самолетом", - "wordTranslate": "капитан" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af60c" - }, - "group": 0, - "page": 18, - "word": "conclusion", - "image": "files/19_0365.jpg", - "audio": "files/19_0365.mp3", - "audioMeaning": "files/19_0365_meaning.mp3", - "audioExample": "files/19_0365_example.mp3", - "textMeaning": "The conclusion of something is the final part of it.", - "textExample": "At the conclusion of the race, the spectators cheered for the winner.", - "transcription": "[kənklúːʒən]", - "__v": 0, - "textExampleTranslate": "В конце гонки зрители приветствовали победителя", - "textMeaningTranslate": "Заключение чего-либо является заключительной частью этого", - "wordTranslate": "вывод" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af60d" - }, - "group": 0, - "page": 18, - "word": "doubt", - "image": "files/19_0366.jpg", - "audio": "files/19_0366.mp3", - "audioMeaning": "files/19_0366_meaning.mp3", - "audioExample": "files/19_0366_example.mp3", - "textMeaning": "Doubt is a feeling of not being sure.", - "textExample": "I have doubt that the story is true.", - "transcription": "[daut]", - "__v": 0, - "textExampleTranslate": "Я сомневаюсь, что история правдива", - "textMeaningTranslate": "Сомнение - это чувство неуверенности", - "wordTranslate": "сомнение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af60e" - }, - "group": 0, - "page": 18, - "word": "explore", - "image": "files/19_0367.jpg", - "audio": "files/19_0367.mp3", - "audioMeaning": "files/19_0367_meaning.mp3", - "audioExample": "files/19_0367_example.mp3", - "textMeaning": "To explore is to look for new places.", - "textExample": "He wants to explore the world and see new things.", - "transcription": "[iksplɔ́ːr]", - "__v": 0, - "textExampleTranslate": "Он хочет исследовать мир и видеть новые вещи", - "textMeaningTranslate": "Исследовать - значит искать новые места", - "wordTranslate": "исследовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af60f" - }, - "group": 0, - "page": 18, - "word": "glad", - "image": "files/19_0368.jpg", - "audio": "files/19_0368.mp3", - "audioMeaning": "files/19_0368_meaning.mp3", - "audioExample": "files/19_0368_example.mp3", - "textMeaning": "If you are glad, you are happy.", - "textExample": "I am glad you came to my party.", - "transcription": "[glæd]", - "__v": 0, - "textExampleTranslate": "Я рад, что ты пришел на мою вечеринку", - "textMeaningTranslate": "Если ты рад, ты счастлив", - "wordTranslate": "рады" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af610" - }, - "group": 0, - "page": 18, - "word": "however", - "image": "files/19_0369.jpg", - "audio": "files/19_0369.mp3", - "audioMeaning": "files/19_0369_meaning.mp3", - "audioExample": "files/19_0369_example.mp3", - "textMeaning": "However means despite or not being influenced by something.", - "textExample": "She is a great cook. However, she never had professional lessons.", - "transcription": "[hauévər]", - "__v": 0, - "textExampleTranslate": "Она - отличный повар. Однако у нее никогда не было профессиональных уроков", - "textMeaningTranslate": "Тем не менее, означает что-то, несмотря на то, что что-то на него не влияет", - "wordTranslate": "однако" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af611" - }, - "group": 0, - "page": 18, - "word": "injustice", - "image": "files/19_0370.jpg", - "audio": "files/19_0370.mp3", - "audioMeaning": "files/19_0370_meaning.mp3", - "audioExample": "files/19_0370_example.mp3", - "textMeaning": "Injustice is a lack of fairness or justice.", - "textExample": "Putting an innocent person in jail is an act of injustice.", - "transcription": "[indʒʌ́stis]", - "__v": 0, - "textExampleTranslate": "Посылка невинного человека в тюрьму является актом несправедливости", - "textMeaningTranslate": "Несправедливость - это отсутствие справедливости или справедливости", - "wordTranslate": "несправедливость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af612" - }, - "group": 0, - "page": 18, - "word": "international", - "image": "files/19_0371.jpg", - "audio": "files/19_0371.mp3", - "audioMeaning": "files/19_0371_meaning.mp3", - "audioExample": "files/19_0371_example.mp3", - "textMeaning": "If something is international, it involves more than one country.", - "textExample": "The United Nations is a powerful international organization.", - "transcription": "[ìntərnǽʃənəl]", - "__v": 0, - "textExampleTranslate": "Организация Объединенных Наций является мощной международной организацией", - "textMeaningTranslate": "Если что-то носит международный характер, это затрагивает более одной страны", - "wordTranslate": "международный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af613" - }, - "group": 0, - "page": 18, - "word": "lawyer", - "image": "files/19_0372.jpg", - "audio": "files/19_0372.mp3", - "audioMeaning": "files/19_0372_meaning.mp3", - "audioExample": "files/19_0372_example.mp3", - "textMeaning": "A lawyer works with the law and represents people in court.", - "textExample": "The lawyer left the courthouse after the judge made her decision.", - "transcription": "[lɔ́ːjəːr]", - "__v": 0, - "textExampleTranslate": "Адвокат покинул здание суда после того, как судья вынесла решение", - "textMeaningTranslate": "Адвокат работает с законом и представляет людей в суде", - "wordTranslate": "адвокат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af614" - }, - "group": 0, - "page": 18, - "word": "mention", - "image": "files/19_0373.jpg", - "audio": "files/19_0373.mp3", - "audioMeaning": "files/19_0373_meaning.mp3", - "audioExample": "files/19_0373_example.mp3", - "textMeaning": "To mention something is to talk about it.", - "textExample": "The doctors mentioned the problems that the patient was having.", - "transcription": "[ménʃən]", - "__v": 0, - "textExampleTranslate": "Врачи упомянули о проблемах, с которыми сталкивался пациент", - "textMeaningTranslate": "Упоминать что-то значит говорить об этом", - "wordTranslate": "отметить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af615" - }, - "group": 0, - "page": 18, - "word": "old", - "image": "files/19_0374.jpg", - "audio": "files/19_0374.mp3", - "audioMeaning": "files/19_0374_meaning.mp3", - "audioExample": "files/19_0374_example.mp3", - "textMeaning": "Someone who is old has lived for many years.", - "textExample": "My mother is seventy years old now.", - "transcription": "[ould]", - "__v": 0, - "textExampleTranslate": "Моей маме сейчас семьдесят лет", - "textMeaningTranslate": "Тот, кто стар, прожил много лет", - "wordTranslate": "старый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af616" - }, - "group": 0, - "page": 18, - "word": "policy", - "image": "files/19_0375.jpg", - "audio": "files/19_0375.mp3", - "audioMeaning": "files/19_0375_meaning.mp3", - "audioExample": "files/19_0375_example.mp3", - "textMeaning": "A policy is a rule.", - "textExample": "He told us that his policy was to put customers first.", - "transcription": "[pɑ́ləsi]", - "__v": 0, - "textExampleTranslate": "Он сказал нам, что его политика - ставить клиентов на первое место", - "textMeaningTranslate": "Политика - это правило", - "wordTranslate": "политика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af617" - }, - "group": 0, - "page": 18, - "word": "social", - "image": "files/19_0376.jpg", - "audio": "files/19_0376.mp3", - "audioMeaning": "files/19_0376_meaning.mp3", - "audioExample": "files/19_0376_example.mp3", - "textMeaning": "If something is social, it is about many people in a community.", - "textExample": "People should come together and fix the world’s social problems.", - "transcription": "[sóuʃəl]", - "__v": 0, - "textExampleTranslate": "Люди должны собраться вместе и решить социальные проблемы мира", - "textMeaningTranslate": "Если что-то является социальным, это касается многих людей в сообществе", - "wordTranslate": "социальное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af618" - }, - "group": 0, - "page": 18, - "word": "speech", - "image": "files/19_0377.jpg", - "audio": "files/19_0377.mp3", - "audioMeaning": "files/19_0377_meaning.mp3", - "audioExample": "files/19_0377_example.mp3", - "textMeaning": "A speech is something said to a group of people.", - "textExample": "She gave a speech to the class.", - "transcription": "[spiːtʃ]", - "__v": 0, - "textExampleTranslate": "Она выступила с речью перед классом", - "textMeaningTranslate": "Речь - это что-то, сказанное группе людей", - "wordTranslate": "речь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af619" - }, - "group": 0, - "page": 18, - "word": "staff", - "image": "files/19_0378.jpg", - "audio": "files/19_0378.mp3", - "audioMeaning": "files/19_0378_meaning.mp3", - "audioExample": "files/19_0378_example.mp3", - "textMeaning": "A staff is a group of people working together in a company.", - "textExample": "My dad has a staff of four people to help him at the office.", - "transcription": "[stæf]", - "__v": 0, - "textExampleTranslate": "У моего отца есть штат из четырех человек, чтобы помочь ему в офисе", - "textMeaningTranslate": "Персонал - это группа людей, работающих вместе в компании", - "wordTranslate": "сотрудники" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af61a" - }, - "group": 0, - "page": 18, - "word": "toward", - "image": "files/19_0379.jpg", - "audio": "files/19_0379.mp3", - "audioMeaning": "files/19_0379_meaning.mp3", - "audioExample": "files/19_0379_example.mp3", - "textMeaning": "If you go toward something, you go closer to it.", - "textExample": "Santa walked toward my house with a bag of gifts.", - "transcription": "[təwɔ́ːrd]", - "__v": 0, - "textExampleTranslate": "Санта шел к моему дому с мешком подарков", - "textMeaningTranslate": "Если вы идете к чему-то, вы идете ближе к этому", - "wordTranslate": "в сторону" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af61b" - }, - "group": 0, - "page": 18, - "word": "wood", - "image": "files/19_0380.jpg", - "audio": "files/19_0380.mp3", - "audioMeaning": "files/19_0380_meaning.mp3", - "audioExample": "files/19_0380_example.mp3", - "textMeaning": "Wood is the thing that trees are made of.", - "textExample": "I put the pieces of wood in a pile.", - "transcription": "[wud]", - "__v": 0, - "textExampleTranslate": "Я положил кусочки дерева в кучу", - "textMeaningTranslate": "Дерево - это то, из чего сделаны деревья", - "wordTranslate": "дерево" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af61c" - }, - "group": 0, - "page": 19, - "word": "achieve", - "image": "files/20_0381.jpg", - "audio": "files/20_0381.mp3", - "audioMeaning": "files/20_0381_meaning.mp3", - "audioExample": "files/20_0381_example.mp3", - "textMeaning": "To achieve something is to successfully do it after trying hard.", - "textExample": "I was happy that I could achieve my goal.", - "transcription": "[ətʃíːv]", - "__v": 0, - "textExampleTranslate": "Я был счастлив, что смог достичь своей цели", - "textMeaningTranslate": "Достигнуть чего-либо - это успешно сделать это после того, как много сил", - "wordTranslate": "достижения" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af61d" - }, - "group": 0, - "page": 19, - "word": "advise", - "image": "files/20_0382.jpg", - "audio": "files/20_0382.mp3", - "audioMeaning": "files/20_0382_meaning.mp3", - "audioExample": "files/20_0382_example.mp3", - "textMeaning": "To advise someone is to tell them what to do.", - "textExample": "My mother often advises people about their money.", - "transcription": "[ədváiz]", - "__v": 0, - "textExampleTranslate": "Моя мама часто советует людям об их деньгах", - "textMeaningTranslate": "Посоветовать кому-то - это сказать им, что делать", - "wordTranslate": "советовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af61e" - }, - "group": 0, - "page": 19, - "word": "already", - "image": "files/20_0383.jpg", - "audio": "files/20_0383.mp3", - "audioMeaning": "files/20_0383_meaning.mp3", - "audioExample": "files/20_0383_example.mp3", - "textMeaning": "If something happens already, it happens before a certain time.", - "textExample": "It is already time for the movie to start. Let’s go in.", - "transcription": "[ɔːlrédi]", - "__v": 0, - "textExampleTranslate": "Фильм уже пора начинать. Пойдем", - "textMeaningTranslate": "Если что-то уже происходит, это происходит раньше определенного времени", - "wordTranslate": "уже" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af61f" - }, - "group": 0, - "page": 19, - "word": "destroy", - "image": "files/20_0387.jpg", - "audio": "files/20_0387.mp3", - "audioMeaning": "files/20_0387_meaning.mp3", - "audioExample": "files/20_0387_example.mp3", - "textMeaning": "To destroy means to damage something so badly that it cannot be used.", - "textExample": "The glass was destroyed.", - "transcription": "[distrɔ́i]", - "__v": 0, - "textExampleTranslate": "Стекло было разрушено", - "textMeaningTranslate": "Уничтожить - значит повредить что-то настолько сильное, что его нельзя использовать", - "wordTranslate": "уничтожить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af620" - }, - "group": 0, - "page": 19, - "word": "basic", - "image": "files/20_0384.jpg", - "audio": "files/20_0384.mp3", - "audioMeaning": "files/20_0384_meaning.mp3", - "audioExample": "files/20_0384_example.mp3", - "textMeaning": "If something is basic, it is very simple or easy.", - "textExample": "I learned some basic English skills in school today.", - "transcription": "[béisik]", - "__v": 0, - "textExampleTranslate": "Я выучил некоторые базовые навыки английского в школе сегодня", - "textMeaningTranslate": "Если что-то является основным, это очень просто или легко", - "wordTranslate": "базовый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af621" - }, - "group": 0, - "page": 19, - "word": "entertain", - "image": "files/20_0388.jpg", - "audio": "files/20_0388.mp3", - "audioMeaning": "files/20_0388_meaning.mp3", - "audioExample": "files/20_0388_example.mp3", - "textMeaning": "To entertain someone is to do something that they enjoy.", - "textExample": "The clown entertained the kids at the party.", - "transcription": "[èntərtéin]", - "__v": 0, - "textExampleTranslate": "Клоун развлекал детей на вечеринке", - "textMeaningTranslate": "Развлекать кого-то - значит делать то, что ему нравится", - "wordTranslate": "развлекать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af622" - }, - "group": 0, - "page": 19, - "word": "bit", - "image": "files/20_0385.jpg", - "audio": "files/20_0385.mp3", - "audioMeaning": "files/20_0385_meaning.mp3", - "audioExample": "files/20_0385_example.mp3", - "textMeaning": "A bit is a small amount of something.", - "textExample": "I ate a bit of chocolate before I went to bed.", - "transcription": "[bit]", - "__v": 0, - "textExampleTranslate": "Я съел немного шоколада перед сном", - "textMeaningTranslate": "Немного - это небольшое количество чего-то", - "wordTranslate": "немного" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af623" - }, - "group": 0, - "page": 19, - "word": "consider", - "image": "files/20_0386.jpg", - "audio": "files/20_0386.mp3", - "audioMeaning": "files/20_0386_meaning.mp3", - "audioExample": "files/20_0386_example.mp3", - "textMeaning": "To consider something means to think about it.", - "textExample": "Pete didn’t like his job. He considered getting a new one.", - "transcription": "[kənsídər]", - "__v": 0, - "textExampleTranslate": "Питу не понравилась его работа. Он подумывал получить новую", - "textMeaningTranslate": "Рассматривать что-то значит думать об этом", - "wordTranslate": "рассматривать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af624" - }, - "group": 0, - "page": 19, - "word": "extra", - "image": "files/20_0389.jpg", - "audio": "files/20_0389.mp3", - "audioMeaning": "files/20_0389_meaning.mp3", - "audioExample": "files/20_0389_example.mp3", - "textMeaning": "If something is extra, it is more than what is needed.", - "textExample": "The squirrel had extra nuts for the winter.", - "transcription": "[ékstrə]", - "__v": 0, - "textExampleTranslate": "У белки были дополнительные орехи на зиму", - "textMeaningTranslate": "Если что-то лишнее, это больше, чем нужно", - "wordTranslate": "экстра" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af625" - }, - "group": 0, - "page": 19, - "word": "goal", - "image": "files/20_0390.jpg", - "audio": "files/20_0390.mp3", - "audioMeaning": "files/20_0390_meaning.mp3", - "audioExample": "files/20_0390_example.mp3", - "textMeaning": "A goal is something you work toward.", - "textExample": "Her goal was to become a doctor.", - "transcription": "[goul]", - "__v": 0, - "textExampleTranslate": "Ее целью было стать врачом", - "textMeaningTranslate": "Цель - это то, ради чего ты работаешь", - "wordTranslate": "цель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af626" - }, - "group": 0, - "page": 19, - "word": "lie", - "image": "files/20_0391.jpg", - "audio": "files/20_0391.mp3", - "audioMeaning": "files/20_0391_meaning.mp3", - "audioExample": "files/20_0391_example.mp3", - "textMeaning": "To lie is to say or write something untrue to deceive someone.", - "textExample": "Whenever Pinocchio lied to his father, his nose grew.", - "transcription": "[lai]", - "__v": 0, - "textExampleTranslate": "Всякий раз, когда Пиноккио лгал своему отцу, его нос рос", - "textMeaningTranslate": "Лгать - значит говорить или писать что-то неправдивое, чтобы кого-то обмануть", - "wordTranslate": "ложь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af627" - }, - "group": 0, - "page": 19, - "word": "opinion", - "image": "files/20_0393.jpg", - "audio": "files/20_0393.mp3", - "audioMeaning": "files/20_0393_meaning.mp3", - "audioExample": "files/20_0393_example.mp3", - "textMeaning": "An opinion is a thought about a person or a thing.", - "textExample": "Meg told me her opinion of my story. She said it was not funny.", - "transcription": "[əpínjən]", - "__v": 0, - "textExampleTranslate": "Мэг рассказала мне свое мнение о моей истории. Она сказала, что это не смешно", - "textMeaningTranslate": "Мнение - это мысль о человеке или вещи", - "wordTranslate": "мнение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af628" - }, - "group": 0, - "page": 19, - "word": "meat", - "image": "files/20_0392.jpg", - "audio": "files/20_0392.mp3", - "audioMeaning": "files/20_0392_meaning.mp3", - "audioExample": "files/20_0392_example.mp3", - "textMeaning": "Meat is food made of animals.", - "textExample": "This piece of meat I’m eating tastes very good.", - "transcription": "[miːt]", - "__v": 0, - "textExampleTranslate": "Этот кусок мяса, который я ем, имеет очень хороший вкус", - "textMeaningTranslate": "Мясо - это еда из животных", - "wordTranslate": "мясо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af629" - }, - "group": 0, - "page": 19, - "word": "real", - "image": "files/20_0394.jpg", - "audio": "files/20_0394.mp3", - "audioMeaning": "files/20_0394_meaning.mp3", - "audioExample": "files/20_0394_example.mp3", - "textMeaning": "If something is real, it actually exists.", - "textExample": "Some people don’t believe in aliens from space, but I think they’re real.", - "transcription": "[ríːəl]", - "__v": 0, - "textExampleTranslate": "Некоторые люди не верят в пришельцев из космоса, но я думаю, что они настоящие", - "textMeaningTranslate": "Если что-то реально, оно действительно существует", - "wordTranslate": "реальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af62a" - }, - "group": 0, - "page": 19, - "word": "reflect", - "image": "files/20_0395.jpg", - "audio": "files/20_0395.mp3", - "audioMeaning": "files/20_0395_meaning.mp3", - "audioExample": "files/20_0395_example.mp3", - "textMeaning": "To reflect is when a surface sends back light, heat, sound or an image.", - "textExample": "Her face was reflected in the smooth glass.", - "transcription": "[rifékt]", - "__v": 0, - "textExampleTranslate": "Ее лицо отражалось в гладком стекле", - "textMeaningTranslate": "Отражать - это когда поверхность посылает обратно свет, тепло, звук или изображение", - "wordTranslate": "отражать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af62b" - }, - "group": 0, - "page": 19, - "word": "regard", - "image": "files/20_0396.jpg", - "audio": "files/20_0396.mp3", - "audioMeaning": "files/20_0396_meaning.mp3", - "audioExample": "files/20_0396_example.mp3", - "textMeaning": "To regard people is to think of them in a certain way.", - "textExample": "The boy regarded the girl as a good friend.", - "transcription": "[rigɑ́ːrd]", - "__v": 0, - "textExampleTranslate": "Мальчик считал девушку хорошим другом", - "textMeaningTranslate": "Относиться к людям значит думать о них определенным образом", - "wordTranslate": "учитывая" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af62c" - }, - "group": 0, - "page": 19, - "word": "vegetable", - "image": "files/20_0398.jpg", - "audio": "files/20_0398.mp3", - "audioMeaning": "files/20_0398_meaning.mp3", - "audioExample": "files/20_0398_example.mp3", - "textMeaning": "A vegetable is a plant used as food.", - "textExample": "Carrots are my favorite vegetable.", - "transcription": "[védʒətəbl]", - "__v": 0, - "textExampleTranslate": "Морковь - мой любимый овощ", - "textMeaningTranslate": "Овощ - это растение, используемое в пищу", - "wordTranslate": "растительное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af62d" - }, - "group": 0, - "page": 19, - "word": "serve", - "image": "files/20_0397.jpg", - "audio": "files/20_0397.mp3", - "audioMeaning": "files/20_0397_meaning.mp3", - "audioExample": "files/20_0397_example.mp3", - "textMeaning": "To serve someone is to give them food or drinks.", - "textExample": "He served us our drinks quickly.", - "transcription": "[səːrv]", - "__v": 0, - "textExampleTranslate": "Он подал нам наши напитки быстро", - "textMeaningTranslate": "Служить кому-то - значит давать ему еду или напитки", - "wordTranslate": "обслуживать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af62e" - }, - "group": 0, - "page": 19, - "word": "war", - "image": "files/20_0399.jpg", - "audio": "files/20_0399.mp3", - "audioMeaning": "files/20_0399_meaning.mp3", - "audioExample": "files/20_0399_example.mp3", - "textMeaning": "A war is a big fight between two groups of people.", - "textExample": "Many young men died in the war.", - "transcription": "[wɔːr]", - "__v": 0, - "textExampleTranslate": "Многие молодые люди погибли на войне", - "textMeaningTranslate": "Война - это большая битва между двумя группами людей", - "wordTranslate": "война" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af631" - }, - "group": 0, - "page": 20, - "word": "base", - "image": "files/21_0402.jpg", - "audio": "files/21_0402.mp3", - "audioMeaning": "files/21_0402_meaning.mp3", - "audioExample": "files/21_0402_example.mp3", - "textMeaning": "The base is the bottom of something.", - "textExample": "The base of the table has three legs.", - "transcription": "[beis]", - "__v": 0, - "textExampleTranslate": "У основания стола три ножки", - "textMeaningTranslate": "База - это основание чего-то", - "wordTranslate": "база" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af630" - }, - "group": 0, - "page": 20, - "word": "appear", - "image": "files/21_0401.jpg", - "audio": "files/21_0401.mp3", - "audioMeaning": "files/21_0401_meaning.mp3", - "audioExample": "files/21_0401_example.mp3", - "textMeaning": "To appear is to seem.", - "textExample": "She appeared to be sad. She was crying.", - "transcription": "[əpíər]", - "__v": 0, - "textExampleTranslate": "Она казалась грустной. Она плакала", - "textMeaningTranslate": "Появиться - значит показаться", - "wordTranslate": "появляются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af632" - }, - "group": 0, - "page": 20, - "word": "brain", - "image": "files/21_0403.jpg", - "audio": "files/21_0403.mp3", - "audioMeaning": "files/21_0403_meaning.mp3", - "audioExample": "files/21_0403_example.mp3", - "textMeaning": "The brain is the organ in your head that lets you think.", - "textExample": "You must use your brain to solve the problem.", - "transcription": "[brein]", - "__v": 0, - "textExampleTranslate": "Вы должны использовать свой мозг, чтобы решить проблему", - "textMeaningTranslate": "Мозг - это орган в вашей голове, который позволяет вам думать", - "wordTranslate": "головной мозг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af633" - }, - "group": 0, - "page": 20, - "word": "career", - "image": "files/21_0404.jpg", - "audio": "files/21_0404.mp3", - "audioMeaning": "files/21_0404_meaning.mp3", - "audioExample": "files/21_0404_example.mp3", - "textMeaning": "A career is a job that you do for a large part of your life.", - "textExample": "He was in the hospitality business for most of his career.", - "transcription": "[kəríər]", - "__v": 0, - "textExampleTranslate": "Он был в гостиничном бизнесе большую часть своей карьеры", - "textMeaningTranslate": "Карьера - это работа, которую вы делаете большую часть своей жизни", - "wordTranslate": "карьера" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af62f" - }, - "group": 0, - "page": 19, - "word": "worth", - "image": "files/20_0400.jpg", - "audio": "files/20_0400.mp3", - "audioMeaning": "files/20_0400_meaning.mp3", - "audioExample": "files/20_0400_example.mp3", - "textMeaning": "If something is worth an amount of money, it costs that amount.", - "textExample": "Our house is worth a lot of money.", - "transcription": "[wəːrθ]", - "__v": 0, - "textExampleTranslate": "Наш дом стоит много денег", - "textMeaningTranslate": "Если что-то стоит денег, это стоит этой суммы", - "wordTranslate": "ценность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af634" - }, - "group": 0, - "page": 20, - "word": "clerk", - "image": "files/21_0405.jpg", - "audio": "files/21_0405.mp3", - "audioMeaning": "files/21_0405_meaning.mp3", - "audioExample": "files/21_0405_example.mp3", - "textMeaning": "A clerk is a type of worker. Clerks in a store help customers.", - "textExample": "The clerk added up her bill for the groceries.", - "transcription": "[kləːrk]", - "__v": 0, - "textExampleTranslate": "Клерк сложил свой счет за продукты", - "textMeaningTranslate": "Клерк - это тип работника. Клерки в магазине помогают покупателям", - "wordTranslate": "клерк" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af635" - }, - "group": 0, - "page": 20, - "word": "effort", - "image": "files/21_0406.jpg", - "audio": "files/21_0406.mp3", - "audioMeaning": "files/21_0406_meaning.mp3", - "audioExample": "files/21_0406_example.mp3", - "textMeaning": "Effort is hard work or an attempt to do something.", - "textExample": "He always puts a lot of effort into his studies.", - "transcription": "[éfərt]", - "__v": 0, - "textExampleTranslate": "Он всегда прикладывает много усилий к учебе", - "textMeaningTranslate": "Усилие - это тяжелая работа или попытка что-то сделать", - "wordTranslate": "усилие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af636" - }, - "group": 0, - "page": 20, - "word": "excellent", - "image": "files/21_0408.jpg", - "audio": "files/21_0408.mp3", - "audioMeaning": "files/21_0408_meaning.mp3", - "audioExample": "files/21_0408_example.mp3", - "textMeaning": "When something is excellent, it is very good.", - "textExample": "I got an excellent score on my school test.", - "transcription": "[éksələnt]", - "__v": 0, - "textExampleTranslate": "Я получил отличную оценку на школьном тесте", - "textMeaningTranslate": "Когда что-то отлично, это очень хорошо", - "wordTranslate": "отлично" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af638" - }, - "group": 0, - "page": 20, - "word": "hero", - "image": "files/21_0409.jpg", - "audio": "files/21_0409.mp3", - "audioMeaning": "files/21_0409_meaning.mp3", - "audioExample": "files/21_0409_example.mp3", - "textMeaning": "A hero is a brave person who does things to help others.", - "textExample": "To children, the man in the blue and red costume was a real hero.", - "transcription": "[híːrou]", - "__v": 0, - "textExampleTranslate": "Для детей мужчина в сине-красном костюме был настоящим героем", - "textMeaningTranslate": "Герой - смелый человек, который помогает другим", - "wordTranslate": "герой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af637" - }, - "group": 0, - "page": 20, - "word": "enter", - "image": "files/21_0407.jpg", - "audio": "files/21_0407.mp3", - "audioMeaning": "files/21_0407_meaning.mp3", - "audioExample": "files/21_0407_example.mp3", - "textMeaning": "To enter a place is to go into it.", - "textExample": "Two guards greeted me as I entered the front door.", - "transcription": "[éntər]", - "__v": 0, - "textExampleTranslate": "Два охранника встретили меня, когда я вошел в переднюю дверь", - "textMeaningTranslate": "Войти в место - значит войти в него", - "wordTranslate": "войти" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af639" - }, - "group": 0, - "page": 20, - "word": "hurry", - "image": "files/21_0410.jpg", - "audio": "files/21_0410.mp3", - "audioMeaning": "files/21_0410_meaning.mp3", - "audioExample": "files/21_0410_example.mp3", - "textMeaning": "To hurry is to do something quickly.", - "textExample": "I hurried home on my bike.", - "transcription": "[hə́ːri]", - "__v": 0, - "textExampleTranslate": "Я поспешил домой на своем велосипеде", - "textMeaningTranslate": "Спешить - значит делать что-то быстро", - "wordTranslate": "торопиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af63a" - }, - "group": 0, - "page": 20, - "word": "inform", - "image": "files/21_0411.jpg", - "audio": "files/21_0411.mp3", - "audioMeaning": "files/21_0411_meaning.mp3", - "audioExample": "files/21_0411_example.mp3", - "textMeaning": "To inform someone is to tell them about something.", - "textExample": "I called and informed her about my idea.", - "transcription": "[infɔ́ːrm]", - "__v": 0, - "textExampleTranslate": "Я позвонил и сообщил ей о своей идее", - "textMeaningTranslate": "Информировать кого-либо - значит говорить ему о чем-то", - "wordTranslate": "сообщить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af63c" - }, - "group": 0, - "page": 20, - "word": "later", - "image": "files/21_0412.jpg", - "audio": "files/21_0412.mp3", - "audioMeaning": "files/21_0412_meaning.mp3", - "audioExample": "files/21_0412_example.mp3", - "textMeaning": "Later means after the present, expected, or usual time.", - "textExample": "She missed the train, so she’ll arrive a little later than expected.", - "transcription": "[léitəːr]", - "__v": 0, - "textExampleTranslate": "Она опоздала на поезд, поэтому она прибудет немного позже, чем ожидалось", - "textMeaningTranslate": "Позже означает после настоящего, ожидаемого или обычного времени", - "wordTranslate": "потом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af63b" - }, - "group": 0, - "page": 20, - "word": "leave", - "image": "files/21_0413.jpg", - "audio": "files/21_0413.mp3", - "audioMeaning": "files/21_0413_meaning.mp3", - "audioExample": "files/21_0413_example.mp3", - "textMeaning": "To leave means to go away from someone or something.", - "textExample": "He packed his bag and was ready to leave for home.", - "transcription": "[liːv]", - "__v": 0, - "textExampleTranslate": "Он собрал свою сумку и был готов уехать домой", - "textMeaningTranslate": "Уйти - значит уйти от кого-то или чего-то", - "wordTranslate": "оставлять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af63d" - }, - "group": 0, - "page": 20, - "word": "locate", - "image": "files/21_0414.jpg", - "audio": "files/21_0414.mp3", - "audioMeaning": "files/21_0414_meaning.mp3", - "audioExample": "files/21_0414_example.mp3", - "textMeaning": "To locate something is to find it.", - "textExample": "I could not locate my keys in the house.", - "transcription": "[lóukeit]", - "__v": 0, - "textExampleTranslate": "Я не мог найти свои ключи в доме", - "textMeaningTranslate": "Найти что-то значит найти это", - "wordTranslate": "найти" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af63e" - }, - "group": 0, - "page": 20, - "word": "nurse", - "image": "files/21_0415.jpg", - "audio": "files/21_0415.mp3", - "audioMeaning": "files/21_0415_meaning.mp3", - "audioExample": "files/21_0415_example.mp3", - "textMeaning": "A nurse is a person who helps sick people in the hospital.", - "textExample": "A nurse helped me get better.", - "transcription": "[nəːrs]", - "__v": 0, - "textExampleTranslate": "Медсестра помогла мне поправиться", - "textMeaningTranslate": "Медсестра - это человек, который помогает больным людям в больнице", - "wordTranslate": "медсестра" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af63f" - }, - "group": 0, - "page": 20, - "word": "operation", - "image": "files/21_0416.jpg", - "audio": "files/21_0416.mp3", - "audioMeaning": "files/21_0416_meaning.mp3", - "audioExample": "files/21_0416_example.mp3", - "textMeaning": "An operation is when a doctor replaces or removes something in the body.", - "textExample": "The operation on my arm was a success.", - "transcription": "[ɑ̀pəréiʃən]", - "__v": 0, - "textExampleTranslate": "Операция на моей руке прошла успешно", - "textMeaningTranslate": "Операция - это когда врач заменяет или удаляет что-то в организме", - "wordTranslate": "операция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af642" - }, - "group": 0, - "page": 20, - "word": "though", - "image": "files/21_0419.jpg", - "audio": "files/21_0419.mp3", - "audioMeaning": "files/21_0419_meaning.mp3", - "audioExample": "files/21_0419_example.mp3", - "textMeaning": "Though is used when one idea makes another seem surprising.", - "textExample": "Though he was overweight, he liked to be active.", - "transcription": "[ðou]", - "__v": 0, - "textExampleTranslate": "Хотя он весил больше нормы, ему нравилось быть активным", - "textMeaningTranslate": "Хотя используется, когда одна идея заставляет другую казаться удивительной", - "wordTranslate": "хоть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af640" - }, - "group": 0, - "page": 20, - "word": "refuse", - "image": "files/21_0418.jpg", - "audio": "files/21_0418.mp3", - "audioMeaning": "files/21_0418_meaning.mp3", - "audioExample": "files/21_0418_example.mp3", - "textMeaning": "To refuse something is to say “no” to it.", - "textExample": "The dog refused to play with the cat.", - "transcription": "[rifjúːz]", - "__v": 0, - "textExampleTranslate": "Собака отказалась играть с кошкой", - "textMeaningTranslate": "Отказаться от чего-то - значит сказать 'нет' этому", - "wordTranslate": "отказываться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af641" - }, - "group": 0, - "page": 20, - "word": "pain", - "image": "files/21_0417.jpg", - "audio": "files/21_0417.mp3", - "audioMeaning": "files/21_0417_meaning.mp3", - "audioExample": "files/21_0417_example.mp3", - "textMeaning": "Pain is the feeling that you have when you are hurt.", - "textExample": "His head was full of pain.", - "transcription": "[pein]", - "__v": 0, - "textExampleTranslate": "Его голова была полна боли", - "textMeaningTranslate": "Боль - это чувство, которое ты испытываешь, когда тебе больно", - "wordTranslate": "боль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af643" - }, - "group": 0, - "page": 20, - "word": "various", - "image": "files/21_0420.jpg", - "audio": "files/21_0420.mp3", - "audioMeaning": "files/21_0420_meaning.mp3", - "audioExample": "files/21_0420_example.mp3", - "textMeaning": "If something is various, there are many types of it.", - "textExample": "She owned shoes of various styles.", - "transcription": "[vɛə́riəs]", - "__v": 0, - "textExampleTranslate": "Она владела обувью разных стилей", - "textMeaningTranslate": "Если что-то различно, есть много типов", - "wordTranslate": "разные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af644" - }, - "group": 0, - "page": 21, - "word": "actual", - "image": "files/22_0421.jpg", - "audio": "files/22_0421.mp3", - "audioMeaning": "files/22_0421_meaning.mp3", - "audioExample": "files/22_0421_example.mp3", - "textMeaning": "Actual means real or true.", - "textExample": "This is the actual sword that the king owned, not a fake one.", - "transcription": "[ǽktʃuəl]", - "__v": 0, - "textExampleTranslate": "Это настоящий меч, которым владел король, а не фальшивый", - "textMeaningTranslate": "Фактическое означает реальное или истинное", - "wordTranslate": "фактический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af645" - }, - "group": 0, - "page": 21, - "word": "amaze", - "image": "files/22_0422.jpg", - "audio": "files/22_0422.mp3", - "audioMeaning": "files/22_0422_meaning.mp3", - "audioExample": "files/22_0422_example.mp3", - "textMeaning": "To amaze people is to surprise them very much.", - "textExample": "The news in the paper amazed Jack.", - "transcription": "[əméiz]", - "__v": 0, - "textExampleTranslate": "Новости в газете поразили Джека", - "textMeaningTranslate": "Удивлять людей - значит удивлять их очень сильно", - "wordTranslate": "поражают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af646" - }, - "group": 0, - "page": 21, - "word": "charge", - "image": "files/22_0423.jpg", - "audio": "files/22_0423.mp3", - "audioMeaning": "files/22_0423_meaning.mp3", - "audioExample": "files/22_0423_example.mp3", - "textMeaning": "A charge is the price to pay for something.", - "textExample": "The charge for the shirts was $15.", - "transcription": "[tʃɑːrdʒ]", - "__v": 0, - "textExampleTranslate": "Плата за футболки составила 15 долларов", - "textMeaningTranslate": "Платой является цена, которую нужно заплатить за что-то", - "wordTranslate": "обвинять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af647" - }, - "group": 0, - "page": 21, - "word": "comfort", - "image": "files/22_0424.jpg", - "audio": "files/22_0424.mp3", - "audioMeaning": "files/22_0424_meaning.mp3", - "audioExample": "files/22_0424_example.mp3", - "textMeaning": "To comfort someone means to make them feel better.", - "textExample": "I wanted to comfort my friend after I heard the bad news.", - "transcription": "[kʌ́mfərt]", - "__v": 0, - "textExampleTranslate": "Я хотел утешить своего друга после того, как услышал плохие новости", - "textMeaningTranslate": "Утешить кого-то - значит заставить его чувствовать себя лучше", - "wordTranslate": "комфорт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af648" - }, - "group": 0, - "page": 21, - "word": "contact", - "image": "files/22_0425.jpg", - "audio": "files/22_0425.mp3", - "audioMeaning": "files/22_0425_meaning.mp3", - "audioExample": "files/22_0425_example.mp3", - "textMeaning": "To contact people is to speak or write to them.", - "textExample": "I contacted Sue about my party.", - "transcription": "[kantaekt]", - "__v": 0, - "textExampleTranslate": "Я связался с Сью по поводу моей вечеринки", - "textMeaningTranslate": "Связаться с людьми - значит говорить или писать им", - "wordTranslate": "контакт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af649" - }, - "group": 0, - "page": 21, - "word": "customer", - "image": "files/22_0426.jpg", - "audio": "files/22_0426.mp3", - "audioMeaning": "files/22_0426_meaning.mp3", - "audioExample": "files/22_0426_example.mp3", - "textMeaning": "A customer is a person who buys something at a store.", - "textExample": "The customer put a few items in a bag.", - "transcription": "[kʌ́stəmər]", - "__v": 0, - "textExampleTranslate": "Клиент положил несколько вещей в сумку", - "textMeaningTranslate": "Клиент - это человек, который покупает что-то в магазине", - "wordTranslate": "клиент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af64a" - }, - "group": 0, - "page": 21, - "word": "deliver", - "image": "files/22_0427.jpg", - "audio": "files/22_0427.mp3", - "audioMeaning": "files/22_0427_meaning.mp3", - "audioExample": "files/22_0427_example.mp3", - "textMeaning": "To deliver something is to take it from one place to another.", - "textExample": "The man delivered Chinese food to my house.", - "transcription": "[dilívər]", - "__v": 0, - "textExampleTranslate": "Мужчина доставил китайскую еду в мой дом", - "textMeaningTranslate": "Доставить что-то - значит взять это из одного места в другое", - "wordTranslate": "доставить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af64b" - }, - "group": 0, - "page": 21, - "word": "earn", - "image": "files/22_0428.jpg", - "audio": "files/22_0428.mp3", - "audioMeaning": "files/22_0428_meaning.mp3", - "audioExample": "files/22_0428_example.mp3", - "textMeaning": "To earn means to get money for the work you do.", - "textExample": "He earns his living as a chef in a great restaurant.", - "transcription": "[əːrn]", - "__v": 0, - "textExampleTranslate": "Он зарабатывает на жизнь шеф-поваром в отличном ресторане", - "textMeaningTranslate": "Зарабатывать - значит получать деньги за работу, которую вы делаете", - "wordTranslate": "заработать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af64c" - }, - "group": 0, - "page": 21, - "word": "gate", - "image": "files/22_0429.jpg", - "audio": "files/22_0429.mp3", - "audioMeaning": "files/22_0429_meaning.mp3", - "audioExample": "files/22_0429_example.mp3", - "textMeaning": "A gate is a type of door. Gates are usually made of metal or wood.", - "textExample": "We want to put up a wooden gate around our house.", - "transcription": "[geit]", - "__v": 0, - "textExampleTranslate": "Мы хотим поставить деревянные ворота вокруг нашего дома", - "textMeaningTranslate": "Ворота - это тип двери. Ворота обычно сделаны из металла или дерева", - "wordTranslate": "ворота" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af64d" - }, - "group": 0, - "page": 21, - "word": "include", - "image": "files/22_0430.jpg", - "audio": "files/22_0430.mp3", - "audioMeaning": "files/22_0430_meaning.mp3", - "audioExample": "files/22_0430_example.mp3", - "textMeaning": "To include something means to have it as part of a group.", - "textExample": "Does this meal include a soft drink?", - "transcription": "[inklúːd]", - "__v": 0, - "textExampleTranslate": "Включает ли это блюдо безалкогольный напиток?", - "textMeaningTranslate": "Включать что-то означает иметь это как часть группы", - "wordTranslate": "включают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af64e" - }, - "group": 0, - "page": 21, - "word": "manage", - "image": "files/22_0431.jpg", - "audio": "files/22_0431.mp3", - "audioMeaning": "files/22_0431_meaning.mp3", - "audioExample": "files/22_0431_example.mp3", - "textMeaning": "To manage something means to control or be in charge of it.", - "textExample": "I had to manage the meeting myself.", - "transcription": "[mǽnidʒ]", - "__v": 0, - "textExampleTranslate": "Я должен был сам управлять встречей", - "textMeaningTranslate": "Управлять чем-то - значит контролировать или отвечать за это", - "wordTranslate": "управлять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af64f" - }, - "group": 0, - "page": 21, - "word": "mystery", - "image": "files/22_0432.jpg", - "audio": "files/22_0432.mp3", - "audioMeaning": "files/22_0432_meaning.mp3", - "audioExample": "files/22_0432_example.mp3", - "textMeaning": "A mystery is something that is difficult to understand or explain.", - "textExample": "The path on the map was a complete mystery to me.", - "transcription": "[místəri]", - "__v": 0, - "textExampleTranslate": "Путь на карте был для меня полной загадкой", - "textMeaningTranslate": "Тайна - это то, что трудно понять или объяснить", - "wordTranslate": "тайна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af650" - }, - "group": 0, - "page": 21, - "word": "occur", - "image": "files/22_0433.jpg", - "audio": "files/22_0433.mp3", - "audioMeaning": "files/22_0433_meaning.mp3", - "audioExample": "files/22_0433_example.mp3", - "textMeaning": "To occur means to happen.", - "textExample": "When did the thunderstorm occur?", - "transcription": "[əkə́ːr]", - "__v": 0, - "textExampleTranslate": "Когда произошла гроза?", - "textMeaningTranslate": "Произойти - значит случиться", - "wordTranslate": "происходят" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af651" - }, - "group": 0, - "page": 21, - "word": "opposite", - "image": "files/22_0434.jpg", - "audio": "files/22_0434.mp3", - "audioMeaning": "files/22_0434_meaning.mp3", - "audioExample": "files/22_0434_example.mp3", - "textMeaning": "If A is the opposite of B, A is completely different from B.", - "textExample": "The opposite of black is white.", - "transcription": "[ɑ́pəzit]", - "__v": 0, - "textExampleTranslate": "Противоположность черного есть белое", - "textMeaningTranslate": "Если A является противоположностью B, A полностью отличается от B", - "wordTranslate": "напротив" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af653" - }, - "group": 0, - "page": 21, - "word": "receive", - "image": "files/22_0436.jpg", - "audio": "files/22_0436.mp3", - "audioMeaning": "files/22_0436_meaning.mp3", - "audioExample": "files/22_0436_example.mp3", - "textMeaning": "To receive something is to get it.", - "textExample": "I received a present on my birthday.", - "transcription": "[risíːv]", - "__v": 0, - "textExampleTranslate": "Я получил подарок на мой день рождения", - "textMeaningTranslate": "Получить что-то - значит получить это", - "wordTranslate": "получать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af652" - }, - "group": 0, - "page": 21, - "word": "plate", - "image": "files/22_0435.jpg", - "audio": "files/22_0435.mp3", - "audioMeaning": "files/22_0435_meaning.mp3", - "audioExample": "files/22_0435_example.mp3", - "textMeaning": "A plate is a flat round thing that you put food on.", - "textExample": "I put my plate down so I could put some food on it.", - "transcription": "[pleit]", - "__v": 0, - "textExampleTranslate": "Я положил свою тарелку, чтобы я мог положить на нее немного еды", - "textMeaningTranslate": "Тарелка - это плоская круглая вещь, на которую вы кладете еду", - "wordTranslate": "пластина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af654" - }, - "group": 0, - "page": 21, - "word": "reward", - "image": "files/22_0437.jpg", - "audio": "files/22_0437.mp3", - "audioMeaning": "files/22_0437_meaning.mp3", - "audioExample": "files/22_0437_example.mp3", - "textMeaning": "A reward is something given in exchange for good behavior or work.", - "textExample": "He was given a reward for his excellent performance.", - "transcription": "[riwɔ́ːrd]", - "__v": 0, - "textExampleTranslate": "Он получил награду за отличную работу", - "textMeaningTranslate": "Награда - это то, что дается в обмен на хорошее поведение или работу", - "wordTranslate": "награда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af655" - }, - "group": 0, - "page": 21, - "word": "set", - "image": "files/22_0438.jpg", - "audio": "files/22_0438.mp3", - "audioMeaning": "files/22_0438_meaning.mp3", - "audioExample": "files/22_0438_example.mp3", - "textMeaning": "To set something is to put it somewhere.", - "textExample": "Please set the dice down on the table.", - "transcription": "[set]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, поставьте кости на стол", - "textMeaningTranslate": "Установить что-то - значит положить это куда-то", - "wordTranslate": "набор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af656" - }, - "group": 0, - "page": 21, - "word": "steal", - "image": "files/22_0439.jpg", - "audio": "files/22_0439.mp3", - "audioMeaning": "files/22_0439_meaning.mp3", - "audioExample": "files/22_0439_example.mp3", - "textMeaning": "To steal is to take something that is not yours.", - "textExample": "The men tried to steal money from the bank.", - "transcription": "[stiːl]", - "__v": 0, - "textExampleTranslate": "Мужчины пытались украсть деньги из банка", - "textMeaningTranslate": "Украсть значит взять что-то, что не твое", - "wordTranslate": "украсть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af658" - }, - "group": 0, - "page": 22, - "word": "advance", - "image": "files/23_0441.jpg", - "audio": "files/23_0441.mp3", - "audioMeaning": "files/23_0441_meaning.mp3", - "audioExample": "files/23_0441_example.mp3", - "textMeaning": "To advance is to go forward.", - "textExample": "He advanced across the bridge slowly.", - "transcription": "[ədvǽns]", - "__v": 0, - "textExampleTranslate": "Он медленно продвигался через мост", - "textMeaningTranslate": "Продвигаться - значит идти вперед", - "wordTranslate": "вперед" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af657" - }, - "group": 0, - "page": 21, - "word": "thief", - "image": "files/22_0440.jpg", - "audio": "files/22_0440.mp3", - "audioMeaning": "files/22_0440_meaning.mp3", - "audioExample": "files/22_0440_example.mp3", - "textMeaning": "A thief is someone who quietly takes things that do not belong to them.", - "textExample": "A thief broke into our home and took my mother’s jewelry.", - "transcription": "[θiːf]", - "__v": 0, - "textExampleTranslate": "Вор ворвался в наш дом и забрал украшения моей матери", - "textMeaningTranslate": "Вор - это тот, кто спокойно берет вещи, которые им не принадлежат", - "wordTranslate": "вор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af659" - }, - "group": 0, - "page": 22, - "word": "athlete", - "image": "files/23_0442.jpg", - "audio": "files/23_0442.mp3", - "audioMeaning": "files/23_0442_meaning.mp3", - "audioExample": "files/23_0442_example.mp3", - "textMeaning": "An athlete is a person who plays sports.", - "textExample": "Some athletes can play many sports very well.", - "transcription": "[ǽθliːt]", - "__v": 0, - "textExampleTranslate": "Некоторые спортсмены могут очень хорошо заниматься многими видами спорта", - "textMeaningTranslate": "Спортсмен - это человек, который занимается спортом", - "wordTranslate": "спортсмен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af65a" - }, - "group": 0, - "page": 22, - "word": "average", - "image": "files/23_0443.jpg", - "audio": "files/23_0443.mp3", - "audioMeaning": "files/23_0443_meaning.mp3", - "audioExample": "files/23_0443_example.mp3", - "textMeaning": "If something is average, it is at a normal level.", - "textExample": "I’m not rich or poor; I’m average.", - "transcription": "[ǽvəridʒ]", - "__v": 0, - "textExampleTranslate": "Я не богат или не беден; я средний", - "textMeaningTranslate": "Если что-то среднее, это на нормальном уровне", - "wordTranslate": "средний" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af65b" - }, - "group": 0, - "page": 22, - "word": "behavior", - "image": "files/23_0444.jpg", - "audio": "files/23_0444.mp3", - "audioMeaning": "files/23_0444_meaning.mp3", - "audioExample": "files/23_0444_example.mp3", - "textMeaning": "Your behavior is the way you act.", - "textExample": "Their behavior was good this semester. They didn’t cause trouble.", - "transcription": "[bihéivjər]", - "__v": 0, - "textExampleTranslate": "Их поведение было хорошим в этом семестре. Они не доставляли хлопот", - "textMeaningTranslate": "Ваше поведение - это способ, которым вы действуете", - "wordTranslate": "поведение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af65d" - }, - "group": 0, - "page": 22, - "word": "course", - "image": "files/23_0446.jpg", - "audio": "files/23_0446.mp3", - "audioMeaning": "files/23_0446_meaning.mp3", - "audioExample": "files/23_0446_example.mp3", - "textMeaning": "A course is a class in school.", - "textExample": "I took a P.E. course in school this year.", - "transcription": "[kɔːrs]", - "__v": 0, - "textExampleTranslate": "В этом году я прошел курс обучения в школе", - "textMeaningTranslate": "Курс - это урок в школе", - "wordTranslate": "курс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af65c" - }, - "group": 0, - "page": 22, - "word": "behind", - "image": "files/23_0445.jpg", - "audio": "files/23_0445.mp3", - "audioMeaning": "files/23_0445_meaning.mp3", - "audioExample": "files/23_0445_example.mp3", - "textMeaning": "Behind means to be at the back of something.", - "textExample": "The little girl was hiding behind a tree.", - "transcription": "[biháind]", - "__v": 0, - "textExampleTranslate": "Маленькая девочка пряталась за деревом", - "textMeaningTranslate": "Позади означает быть позади чего-то", - "wordTranslate": "позади" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af65e" - }, - "group": 0, - "page": 22, - "word": "lower", - "image": "files/23_0447.jpg", - "audio": "files/23_0447.mp3", - "audioMeaning": "files/23_0447_meaning.mp3", - "audioExample": "files/23_0447_example.mp3", - "textMeaning": "To lower something is to make it go down.", - "textExample": "The chart shows how his production has lowered over the year.", - "transcription": "[lóuər]", - "__v": 0, - "textExampleTranslate": "Диаграмма показывает, как его производство снизилось за год", - "textMeaningTranslate": "Понизить что-то - значит заставить его упасть", - "wordTranslate": "опустить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af65f" - }, - "group": 0, - "page": 22, - "word": "match", - "image": "files/23_0448.jpg", - "audio": "files/23_0448.mp3", - "audioMeaning": "files/23_0448_meaning.mp3", - "audioExample": "files/23_0448_example.mp3", - "textMeaning": "To match is to be the same or similar.", - "textExample": "The two shoes matched. They looked the same.", - "transcription": "[mætʃ]", - "__v": 0, - "textExampleTranslate": "Две туфли совпали. Они выглядели одинаково", - "textMeaningTranslate": "Соответствовать - значит быть таким же или похожим", - "wordTranslate": "матч" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af661" - }, - "group": 0, - "page": 22, - "word": "mental", - "image": "files/23_0450.jpg", - "audio": "files/23_0450.mp3", - "audioMeaning": "files/23_0450_meaning.mp3", - "audioExample": "files/23_0450_example.mp3", - "textMeaning": "If something is mental, it has to do with your mind.", - "textExample": "I made a mental picture of the room.", - "transcription": "[méntl]", - "__v": 0, - "textExampleTranslate": "Я сделал мысленную картину комнаты", - "textMeaningTranslate": "Если что-то ментально, это связано с вашим умом", - "wordTranslate": "психического" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af660" - }, - "group": 0, - "page": 22, - "word": "member", - "image": "files/23_0449.jpg", - "audio": "files/23_0449.mp3", - "audioMeaning": "files/23_0449_meaning.mp3", - "audioExample": "files/23_0449_example.mp3", - "textMeaning": "A member is a person who is part of a group.", - "textExample": "Julie is the newest member of our team.", - "transcription": "[mémbər]", - "__v": 0, - "textExampleTranslate": "Джули - самый новый член нашей команды", - "textMeaningTranslate": "Член - это человек, который является частью группы", - "wordTranslate": "член" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af662" - }, - "group": 0, - "page": 22, - "word": "passenger", - "image": "files/23_0451.jpg", - "audio": "files/23_0451.mp3", - "audioMeaning": "files/23_0451_meaning.mp3", - "audioExample": "files/23_0451_example.mp3", - "textMeaning": "A passenger is a person who rides in a car, train, or airplane.", - "textExample": "One passenger was standing near the subway train.", - "transcription": "[pǽsəndʒər]", - "__v": 0, - "textExampleTranslate": "Один пассажир стоял возле поезда метро", - "textMeaningTranslate": "Пассажир - это человек, который едет в машине, поезде или самолете", - "wordTranslate": "пассажир" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af663" - }, - "group": 0, - "page": 22, - "word": "personality", - "image": "files/23_0452.jpg", - "audio": "files/23_0452.mp3", - "audioMeaning": "files/23_0452_meaning.mp3", - "audioExample": "files/23_0452_example.mp3", - "textMeaning": "Your personality is what you are like and how you behave.", - "textExample": "John has a bad personality.", - "transcription": "[pə̀ːrsənǽləti]", - "__v": 0, - "textExampleTranslate": "У Джона плохая личность", - "textMeaningTranslate": "Твоя личность такая, какая ты есть и как ты себя ведешь", - "wordTranslate": "личность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af664" - }, - "group": 0, - "page": 22, - "word": "poem", - "image": "files/23_0453.jpg", - "audio": "files/23_0453.mp3", - "audioMeaning": "files/23_0453_meaning.mp3", - "audioExample": "files/23_0453_example.mp3", - "textMeaning": "A poem is a short kind of writing.", - "textExample": "William Shakespeare wrote many poems.", - "transcription": "[póuəm]", - "__v": 0, - "textExampleTranslate": "Уильям Шекспир написал много стихов", - "textMeaningTranslate": "Стихотворение - это короткий вид письма", - "wordTranslate": "стихотворение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af665" - }, - "group": 0, - "page": 22, - "word": "pole", - "image": "files/23_0454.jpg", - "audio": "files/23_0454.mp3", - "audioMeaning": "files/23_0454_meaning.mp3", - "audioExample": "files/23_0454_example.mp3", - "textMeaning": "A pole is a long thin stick made of wood or metal that supports things.", - "textExample": "The flag was hanging from the flag pole.", - "transcription": "[poul]", - "__v": 0, - "textExampleTranslate": "Флаг висел на флагштоке", - "textMeaningTranslate": "Полюс - это длинная тонкая палка из дерева или металла, которая поддерживает вещи", - "wordTranslate": "столб" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af666" - }, - "group": 0, - "page": 22, - "word": "remove", - "image": "files/23_0455.jpg", - "audio": "files/23_0455.mp3", - "audioMeaning": "files/23_0455_meaning.mp3", - "audioExample": "files/23_0455_example.mp3", - "textMeaning": "To remove something is to take it away.", - "textExample": "I removed the nail from the board.", - "transcription": "[rimúːv]", - "__v": 0, - "textExampleTranslate": "Я снял гвоздь с доски", - "textMeaningTranslate": "Убрать что-то - значит убрать это", - "wordTranslate": "удалить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af667" - }, - "group": 0, - "page": 22, - "word": "safety", - "image": "files/23_0456.jpg", - "audio": "files/23_0456.mp3", - "audioMeaning": "files/23_0456_meaning.mp3", - "audioExample": "files/23_0456_example.mp3", - "textMeaning": "Safety means the condition of being safe and free from danger.", - "textExample": "For his own safety, he was placed in a car seat.", - "transcription": "[séifti]", - "__v": 0, - "textExampleTranslate": "Для собственной безопасности его посадили в автомобильное кресло", - "textMeaningTranslate": "Безопасность означает состояние безопасности и отсутствия опасности", - "wordTranslate": "безопасность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af668" - }, - "group": 0, - "page": 22, - "word": "shoot", - "image": "files/23_0457.jpg", - "audio": "files/23_0457.mp3", - "audioMeaning": "files/23_0457_meaning.mp3", - "audioExample": "files/23_0457_example.mp3", - "textMeaning": "To shoot is to fire something like a bullet at someone or something.", - "textExample": "The hunter raised his gun to shoot at the target.", - "transcription": "[ʃuːt]", - "__v": 0, - "textExampleTranslate": "Охотник поднял ружье, чтобы выстрелить в цель", - "textMeaningTranslate": "Стрелять - значит стрелять в кого-то или что-то вроде пули", - "wordTranslate": "стрелять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af669" - }, - "group": 0, - "page": 22, - "word": "sound", - "image": "files/23_0458.jpg", - "audio": "files/23_0458.mp3", - "audioMeaning": "files/23_0458_meaning.mp3", - "audioExample": "files/23_0458_example.mp3", - "textMeaning": "To sound means to make a noise.", - "textExample": "The alarm clock sounded and woke us all up.", - "transcription": "[saund]", - "__v": 0, - "textExampleTranslate": "Прозвучал будильник и разбудил нас всех", - "textMeaningTranslate": "Звучать значит шуметь", - "wordTranslate": "звук" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af66a" - }, - "group": 0, - "page": 22, - "word": "swim", - "image": "files/23_0459.jpg", - "audio": "files/23_0459.mp3", - "audioMeaning": "files/23_0459_meaning.mp3", - "audioExample": "files/23_0459_example.mp3", - "textMeaning": "To swim is to move through water.", - "textExample": "I love to swim in the ocean.", - "transcription": "[swim]", - "__v": 0, - "textExampleTranslate": "Я люблю плавать в океане", - "textMeaningTranslate": "Плавать - значит двигаться по воде", - "wordTranslate": "плавать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af66b" - }, - "group": 0, - "page": 22, - "word": "web", - "image": "files/23_0460.jpg", - "audio": "files/23_0460.mp3", - "audioMeaning": "files/23_0460_meaning.mp3", - "audioExample": "files/23_0460_example.mp3", - "textMeaning": "A web is a home made by a spider.", - "textExample": "Mom cleaned the spider webs out of the garage.", - "transcription": "[web]", - "__v": 0, - "textExampleTranslate": "Мама убрала паутину из гаража", - "textMeaningTranslate": "Паутина - это дом, сделанный пауком", - "wordTranslate": "паутина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af66c" - }, - "group": 0, - "page": 23, - "word": "block", - "image": "files/24_0461.jpg", - "audio": "files/24_0461.mp3", - "audioMeaning": "files/24_0461_meaning.mp3", - "audioExample": "files/24_0461_example.mp3", - "textMeaning": "A block is a solid piece of wood, stone, or ice.", - "textExample": "I saw a block of ice on the floor.", - "transcription": "[blɑk]", - "__v": 0, - "textExampleTranslate": "Я видел кусок льда на полу", - "textMeaningTranslate": "Блок - это кусок дерева, камня или льда", - "wordTranslate": "блок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af66d" - }, - "group": 0, - "page": 23, - "word": "bury", - "image": "files/24_0462.jpg", - "audio": "files/24_0462.mp3", - "audioMeaning": "files/24_0462_meaning.mp3", - "audioExample": "files/24_0462_example.mp3", - "textMeaning": "When you bury something, you put it under the ground or under a lot of other things.", - "textExample": "My father was buried in his hometown when he died.", - "transcription": "[béri]", - "__v": 0, - "textExampleTranslate": "Мой отец был похоронен в своем родном городе, когда он умер", - "textMeaningTranslate": "Когда вы что-то хороните, вы кладете это под землю или под много других вещей", - "wordTranslate": "похоронить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af66e" - }, - "group": 0, - "page": 23, - "word": "cheer", - "image": "files/24_0463.jpg", - "audio": "files/24_0463.mp3", - "audioMeaning": "files/24_0463_meaning.mp3", - "audioExample": "files/24_0463_example.mp3", - "textMeaning": "To cheer is to give a loud shout of approval or encouragement.", - "textExample": "The crowd all cheered when the home team won.", - "transcription": "[tʃiər]", - "__v": 0, - "textExampleTranslate": "Толпа всех приветствовала, когда победила хозяева", - "textMeaningTranslate": "Поднять настроение - это дать громкий крик одобрения или ободрения", - "wordTranslate": "поболеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af66f" - }, - "group": 0, - "page": 23, - "word": "complex", - "image": "files/24_0464.jpg", - "audio": "files/24_0464.mp3", - "audioMeaning": "files/24_0464_meaning.mp3", - "audioExample": "files/24_0464_example.mp3", - "textMeaning": "If something is complex, it has many small parts. It is hard to understand.", - "textExample": "A jigsaw puzzle can be complex because it has so many pieces.", - "transcription": "[kəmpléks]", - "__v": 0, - "textExampleTranslate": "Пазл может быть сложным, потому что в нем так много кусочков", - "textMeaningTranslate": "Если что-то сложное, у него много мелких деталей. Это трудно понять", - "wordTranslate": "сложный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af670" - }, - "group": 0, - "page": 23, - "word": "critic", - "image": "files/24_0465.jpg", - "audio": "files/24_0465.mp3", - "audioMeaning": "files/24_0465_meaning.mp3", - "audioExample": "files/24_0465_example.mp3", - "textMeaning": "A critic is someone who gives opinions about movies, books, plays, etc.", - "textExample": "The wine critic tasted the wine so he could give his opinion.", - "transcription": "[krítik]", - "__v": 0, - "textExampleTranslate": "Винный критик попробовал вино, чтобы он мог высказать свое мнение", - "textMeaningTranslate": "Критик - это тот, кто высказывает свое мнение о фильмах, книгах, спектаклях и т. Д", - "wordTranslate": "критик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af671" - }, - "group": 0, - "page": 23, - "word": "direction", - "image": "files/24_0466.jpg", - "audio": "files/24_0466.mp3", - "audioMeaning": "files/24_0466_meaning.mp3", - "audioExample": "files/24_0466_example.mp3", - "textMeaning": "A direction is the way to go.", - "textExample": "Go in this direction for 10 minutes, and you will get to the river.", - "transcription": "[dirékʃən]", - "__v": 0, - "textExampleTranslate": "Идите в этом направлении на 10 минут, и вы доберетесь до реки", - "textMeaningTranslate": "Направление - это путь", - "wordTranslate": "направление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af672" - }, - "group": 0, - "page": 23, - "word": "event", - "image": "files/24_0467.jpg", - "audio": "files/24_0467.mp3", - "audioMeaning": "files/24_0467_meaning.mp3", - "audioExample": "files/24_0467_example.mp3", - "textMeaning": "An event is something that happens, especially something important.", - "textExample": "Finishing high school was a major event in his life.", - "transcription": "[ivént]", - "__v": 0, - "textExampleTranslate": "Окончание средней школы было главным событием в его жизни", - "textMeaningTranslate": "Событие - это то, что происходит, особенно что-то важное", - "wordTranslate": "событие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af673" - }, - "group": 0, - "page": 23, - "word": "exercise", - "image": "files/24_0468.jpg", - "audio": "files/24_0468.mp3", - "audioMeaning": "files/24_0468_meaning.mp3", - "audioExample": "files/24_0468_example.mp3", - "textMeaning": "To exercise is to run or play sports so that you can be healthy.", - "textExample": "You should exercise every day.", - "transcription": "[éksərsàiz]", - "__v": 0, - "textExampleTranslate": "Ты должен заниматься каждый день", - "textMeaningTranslate": "Заниматься спортом - значит бегать или заниматься спортом, чтобы быть здоровым", - "wordTranslate": "упражнение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af674" - }, - "group": 0, - "page": 23, - "word": "friendship", - "image": "files/24_0469.jpg", - "audio": "files/24_0469.mp3", - "audioMeaning": "files/24_0469_meaning.mp3", - "audioExample": "files/24_0469_example.mp3", - "textMeaning": "Friendship is the relationship between people who are friends.", - "textExample": "Michael and Lisa have a very strong friendship with each other.", - "transcription": "[fréndʃìp]", - "__v": 0, - "textExampleTranslate": "У Майкла и Лизы очень крепкие дружеские отношения", - "textMeaningTranslate": "Дружба - это отношения между людьми, которые являются друзьями", - "wordTranslate": "дружба" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af675" - }, - "group": 0, - "page": 23, - "word": "guide", - "image": "files/24_0470.jpg", - "audio": "files/24_0470.mp3", - "audioMeaning": "files/24_0470_meaning.mp3", - "audioExample": "files/24_0470_example.mp3", - "textMeaning": "A guide is someone who shows you where to go.", - "textExample": "We followed a guide at the park.", - "transcription": "[gaid]", - "__v": 0, - "textExampleTranslate": "Мы следовали за гидом в парке", - "textMeaningTranslate": "Гид - это тот, кто показывает вам, куда идти", - "wordTranslate": "руководство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af676" - }, - "group": 0, - "page": 23, - "word": "lack", - "image": "files/24_0471.jpg", - "audio": "files/24_0471.mp3", - "audioMeaning": "files/24_0471_meaning.mp3", - "audioExample": "files/24_0471_example.mp3", - "textMeaning": "If there is a lack of something, there is not enough of it.", - "textExample": "His only problem is a lack of money.", - "transcription": "[læk]", - "__v": 0, - "textExampleTranslate": "Его единственная проблема - нехватка денег", - "textMeaningTranslate": "Если чего-то не хватает, этого не хватает", - "wordTranslate": "отсутствие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af677" - }, - "group": 0, - "page": 23, - "word": "perform", - "image": "files/24_0472.jpg", - "audio": "files/24_0472.mp3", - "audioMeaning": "files/24_0472_meaning.mp3", - "audioExample": "files/24_0472_example.mp3", - "textMeaning": "To perform is to do something in front of people who watch.", - "textExample": "He will perform a song for the class.", - "transcription": "[pərfɔ́ːrm]", - "__v": 0, - "textExampleTranslate": "Он исполнит песню для класса", - "textMeaningTranslate": "Выполнять - значит делать что-то перед людьми, которые смотрят", - "wordTranslate": "выполнить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af678" - }, - "group": 0, - "page": 23, - "word": "pressure", - "image": "files/24_0473.jpg", - "audio": "files/24_0473.mp3", - "audioMeaning": "files/24_0473_meaning.mp3", - "audioExample": "files/24_0473_example.mp3", - "textMeaning": "Pressure is what you apply to make someone do something.", - "textExample": "They put pressure on him to change his mind.", - "transcription": "[préʃər]", - "__v": 0, - "textExampleTranslate": "Они заставляют его передумать", - "textMeaningTranslate": "Давление - это то, что вы применяете, чтобы заставить кого-то что-то делать", - "wordTranslate": "давление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af679" - }, - "group": 0, - "page": 23, - "word": "probably", - "image": "files/24_0474.jpg", - "audio": "files/24_0474.mp3", - "audioMeaning": "files/24_0474_meaning.mp3", - "audioExample": "files/24_0474_example.mp3", - "textMeaning": "If something will probably happen, it is likely to happen.", - "textExample": "You will probably get a good grade if you study for the test.", - "transcription": "[prɑ́bəbli]", - "__v": 0, - "textExampleTranslate": "Вы, вероятно, получите хорошую оценку, если будете готовиться к экзамену", - "textMeaningTranslate": "Если что-то, вероятно, случится, это может произойти", - "wordTranslate": "вероятно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af67a" - }, - "group": 0, - "page": 23, - "word": "public", - "image": "files/24_0475.jpg", - "audio": "files/24_0475.mp3", - "audioMeaning": "files/24_0475_meaning.mp3", - "audioExample": "files/24_0475_example.mp3", - "textMeaning": "If something is public, it is meant for everyone to use.", - "textExample": "I went to the public park to play with my friends.", - "transcription": "[pʌ́blik]", - "__v": 0, - "textExampleTranslate": "Я пошел в общественный парк, чтобы поиграть с друзьями", - "textMeaningTranslate": "Если что-то является публичным, оно предназначено для всех", - "wordTranslate": "общественность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af67b" - }, - "group": 0, - "page": 23, - "word": "smart", - "image": "files/24_0476.jpg", - "audio": "files/24_0476.mp3", - "audioMeaning": "files/24_0476_meaning.mp3", - "audioExample": "files/24_0476_example.mp3", - "textMeaning": "Smart means intelligent.", - "textExample": "Mary is a smart student.", - "transcription": "[smaːrt]", - "__v": 0, - "textExampleTranslate": "Мария умная ученица", - "textMeaningTranslate": "Умный значит умный", - "wordTranslate": "умный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af67c" - }, - "group": 0, - "page": 23, - "word": "strike", - "image": "files/24_0477.jpg", - "audio": "files/24_0477.mp3", - "audioMeaning": "files/24_0477_meaning.mp3", - "audioExample": "files/24_0477_example.mp3", - "textMeaning": "To strike people or things is to hit them.", - "textExample": "She struck the other girl in the face.", - "transcription": "[straik]", - "__v": 0, - "textExampleTranslate": "Она ударила другую девушку по лицу", - "textMeaningTranslate": "Бить людей или вещи - значит бить их", - "wordTranslate": "забастовка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af67d" - }, - "group": 0, - "page": 23, - "word": "support", - "image": "files/24_0478.jpg", - "audio": "files/24_0478.mp3", - "audioMeaning": "files/24_0478_meaning.mp3", - "audioExample": "files/24_0478_example.mp3", - "textMeaning": "To support something is to like it and help it be successful.", - "textExample": "Everyone at work supports the new plan.", - "transcription": "[səpɔ́ːrt]", - "__v": 0, - "textExampleTranslate": "Все на работе поддерживают новый план", - "textMeaningTranslate": "Поддерживать что-то значит любить это и помогать ему быть успешным", - "wordTranslate": "служба поддержки" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af67e" - }, - "group": 0, - "page": 23, - "word": "term", - "image": "files/24_0479.jpg", - "audio": "files/24_0479.mp3", - "audioMeaning": "files/24_0479_meaning.mp3", - "audioExample": "files/24_0479_example.mp3", - "textMeaning": "A term is a word for something.", - "textExample": "I often use the term “oops” when I make a mistake.", - "transcription": "[təːrm]", - "__v": 0, - "textExampleTranslate": "Я часто использую термин 'упс', когда совершаю ошибку", - "textMeaningTranslate": "Термин - это слово для чего-то", - "wordTranslate": "срок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af67f" - }, - "group": 0, - "page": 23, - "word": "unite", - "image": "files/24_0480.jpg", - "audio": "files/24_0480.mp3", - "audioMeaning": "files/24_0480_meaning.mp3", - "audioExample": "files/24_0480_example.mp3", - "textMeaning": "To unite is to get together to do something.", - "textExample": "If we unite, we can finish our project faster.", - "transcription": "[juːnáit]", - "__v": 0, - "textExampleTranslate": "Если мы объединимся, мы сможем завершить наш проект быстрее", - "textMeaningTranslate": "Объединиться - значит собраться вместе, чтобы что-то сделать", - "wordTranslate": "объединить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af680" - }, - "group": 0, - "page": 24, - "word": "associate", - "image": "files/25_0481.jpg", - "audio": "files/25_0481.mp3", - "audioMeaning": "files/25_0481_meaning.mp3", - "audioExample": "files/25_0481_example.mp3", - "textMeaning": "To associate means to connect something with a person or thing.", - "textExample": "Most people associate birthday parties with having fun.", - "transcription": "[əsóuʃièit]", - "__v": 0, - "textExampleTranslate": "У большинства людей дни рождения ассоциируются с весельем", - "textMeaningTranslate": "Связать означает связать что-то с человеком или вещью", - "wordTranslate": "ассоциировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af681" - }, - "group": 0, - "page": 24, - "word": "environment", - "image": "files/25_0482.jpg", - "audio": "files/25_0482.mp3", - "audioMeaning": "files/25_0482_meaning.mp3", - "audioExample": "files/25_0482_example.mp3", - "textMeaning": "The environment is the place where people work or live.", - "textExample": "Keeping our environment clean is important to our health.", - "transcription": "[inváiərənmənt]", - "__v": 0, - "textExampleTranslate": "Поддержание нашей окружающей среды в чистоте важно для нашего здоровья", - "textMeaningTranslate": "Окружающая среда - это место, где люди работают или живут", - "wordTranslate": "окружающая обстановка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af682" - }, - "group": 0, - "page": 24, - "word": "factory", - "image": "files/25_0483.jpg", - "audio": "files/25_0483.mp3", - "audioMeaning": "files/25_0483_meaning.mp3", - "audioExample": "files/25_0483_example.mp3", - "textMeaning": "A factory is a building where things are made or put together.", - "textExample": "We have only one factory in our town.", - "transcription": "[fǽktəri]", - "__v": 0, - "textExampleTranslate": "У нас только один завод в нашем городе", - "textMeaningTranslate": "Фабрика - это здание, где вещи сделаны или собраны вместе", - "wordTranslate": "фабрика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af683" - }, - "group": 0, - "page": 24, - "word": "feature", - "image": "files/25_0484.jpg", - "audio": "files/25_0484.mp3", - "audioMeaning": "files/25_0484_meaning.mp3", - "audioExample": "files/25_0484_example.mp3", - "textMeaning": "A feature is an important part of something.", - "textExample": "The cell phone has many features.", - "transcription": "[fíːtʃər]", - "__v": 0, - "textExampleTranslate": "У мобильного телефона много функций", - "textMeaningTranslate": "Особенность является важной частью чего-то", - "wordTranslate": "характерная черта" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af684" - }, - "group": 0, - "page": 24, - "word": "mix", - "image": "files/25_0488.jpg", - "audio": "files/25_0488.mp3", - "audioMeaning": "files/25_0488_meaning.mp3", - "audioExample": "files/25_0488_example.mp3", - "textMeaning": "A mix is different things put together.", - "textExample": "The green mix we made in science class spilled onto the table.", - "transcription": "[miks]", - "__v": 0, - "textExampleTranslate": "Зеленая смесь, которую мы сделали на уроке науки, пролилась на стол", - "textMeaningTranslate": "Микс - это разные вещи, вместе взятые", - "wordTranslate": "смешивать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af685" - }, - "group": 0, - "page": 24, - "word": "instance", - "image": "files/25_0485.jpg", - "audio": "files/25_0485.mp3", - "audioMeaning": "files/25_0485_meaning.mp3", - "audioExample": "files/25_0485_example.mp3", - "textMeaning": "An instance is an example of something.", - "textExample": "I have never experienced an instance of hate. Have you?", - "transcription": "[ínstəns]", - "__v": 0, - "textExampleTranslate": "Я никогда не испытывал ненависти. А ты?", - "textMeaningTranslate": "Экземпляр - это пример чего-то", - "wordTranslate": "пример" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af686" - }, - "group": 0, - "page": 24, - "word": "medicine", - "image": "files/25_0487.jpg", - "audio": "files/25_0487.mp3", - "audioMeaning": "files/25_0487_meaning.mp3", - "audioExample": "files/25_0487_example.mp3", - "textMeaning": "Medicine is something you take to feel better or treat an illness.", - "textExample": "The doctor gave me medicine for my cold.", - "transcription": "[médəsin]", - "__v": 0, - "textExampleTranslate": "Доктор дал мне лекарство от простуды", - "textMeaningTranslate": "Медицина - это то, что вы принимаете, чтобы чувствовать себя лучше или лечить болезнь", - "wordTranslate": "лекарство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af687" - }, - "group": 0, - "page": 24, - "word": "involve", - "image": "files/25_0486.jpg", - "audio": "files/25_0486.mp3", - "audioMeaning": "files/25_0486_meaning.mp3", - "audioExample": "files/25_0486_example.mp3", - "textMeaning": "To involve means to include as an active participant.", - "textExample": "The whole family was involved in playing the game.", - "transcription": "[invɑ́lv]", - "__v": 0, - "textExampleTranslate": "Вся семья была вовлечена в игру", - "textMeaningTranslate": "Привлекать - значит включать в качестве активного участника", - "wordTranslate": "включать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af688" - }, - "group": 0, - "page": 24, - "word": "organize", - "image": "files/25_0489.jpg", - "audio": "files/25_0489.mp3", - "audioMeaning": "files/25_0489_meaning.mp3", - "audioExample": "files/25_0489_example.mp3", - "textMeaning": "To organize is to plan or get ready for an event.", - "textExample": "Make a list to help you organize the things you need.", - "transcription": "[ɔ́ːrgənàiz]", - "__v": 0, - "textExampleTranslate": "Составьте список, который поможет вам организовать то, что вам нужно", - "textMeaningTranslate": "Организовать - это спланировать или подготовиться к событию", - "wordTranslate": "организовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af689" - }, - "group": 0, - "page": 24, - "word": "period", - "image": "files/25_0490.jpg", - "audio": "files/25_0490.mp3", - "audioMeaning": "files/25_0490_meaning.mp3", - "audioExample": "files/25_0490_example.mp3", - "textMeaning": "A period is an amount of time when something happens.", - "textExample": "In one period in Europe, there were many knights.", - "transcription": "[píːəriəd]", - "__v": 0, - "textExampleTranslate": "За один период в Европе было много рыцарей", - "textMeaningTranslate": "Период - это количество времени, когда что-то происходит", - "wordTranslate": "период" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af68a" - }, - "group": 0, - "page": 24, - "word": "range", - "image": "files/25_0493.jpg", - "audio": "files/25_0493.mp3", - "audioMeaning": "files/25_0493_meaning.mp3", - "audioExample": "files/25_0493_example.mp3", - "textMeaning": "A range is a number or a set of similar things.", - "textExample": "I saw a range of cars to choose from.", - "transcription": "[reindʒ]", - "__v": 0, - "textExampleTranslate": "Я видел целый ряд автомобилей на выбор", - "textMeaningTranslate": "Диапазон - это число или набор похожих вещей", - "wordTranslate": "спектр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af68b" - }, - "group": 0, - "page": 24, - "word": "populate", - "image": "files/25_0491.jpg", - "audio": "files/25_0491.mp3", - "audioMeaning": "files/25_0491_meaning.mp3", - "audioExample": "files/25_0491_example.mp3", - "textMeaning": "If people populate an area, they live there.", - "textExample": "Billions of people populate the Earth.", - "transcription": "[pɑ́pjəlèit]", - "__v": 0, - "textExampleTranslate": "Миллиарды людей населяют Землю", - "textMeaningTranslate": "Если люди населяют область, они живут там", - "wordTranslate": "заселить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af68c" - }, - "group": 0, - "page": 24, - "word": "produce", - "image": "files/25_0492.jpg", - "audio": "files/25_0492.mp3", - "audioMeaning": "files/25_0492_meaning.mp3", - "audioExample": "files/25_0492_example.mp3", - "textMeaning": "To produce something is to make or grow it.", - "textExample": "This tree produces apples every year.", - "transcription": "[prədjúːs]", - "__v": 0, - "textExampleTranslate": "Это дерево производит яблоки каждый год", - "textMeaningTranslate": "Произвести что-то - значит сделать или вырастить это", - "wordTranslate": "производить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af68d" - }, - "group": 0, - "page": 24, - "word": "recognize", - "image": "files/25_0494.jpg", - "audio": "files/25_0494.mp3", - "audioMeaning": "files/25_0494_meaning.mp3", - "audioExample": "files/25_0494_example.mp3", - "textMeaning": "To recognize something is to know it because you have seen it before.", - "textExample": "I recognized an old friend from many years ago.", - "transcription": "[rékəgnàiz]", - "__v": 0, - "textExampleTranslate": "Я узнал старого друга много лет назад", - "textMeaningTranslate": "Признать что-то значит знать это, потому что вы видели это раньше", - "wordTranslate": "признают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af68e" - }, - "group": 0, - "page": 24, - "word": "regular", - "image": "files/25_0495.jpg", - "audio": "files/25_0495.mp3", - "audioMeaning": "files/25_0495_meaning.mp3", - "audioExample": "files/25_0495_example.mp3", - "textMeaning": "If something is regular, it happens often and in equal amounts of time.", - "textExample": "Our regular lunch time is around noon.", - "transcription": "[régjulər]", - "__v": 0, - "textExampleTranslate": "Мы регулярно обедаем около полудня", - "textMeaningTranslate": "Если что-то регулярно, это происходит часто и в равные промежутки времени", - "wordTranslate": "стабильный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af68f" - }, - "group": 0, - "page": 24, - "word": "sign", - "image": "files/25_0496.jpg", - "audio": "files/25_0496.mp3", - "audioMeaning": "files/25_0496_meaning.mp3", - "audioExample": "files/25_0496_example.mp3", - "textMeaning": "A sign is an indication giving information, directions, a warning, etc.", - "textExample": "The sign indicated that today would be a bad day.", - "transcription": "[sain]", - "__v": 0, - "textExampleTranslate": "Знак указывает, что сегодня будет плохой день", - "textMeaningTranslate": "Знак - это указание, дающее информацию, указания, предупреждение и т. Д", - "wordTranslate": "подписать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af691" - }, - "group": 0, - "page": 24, - "word": "tip", - "image": "files/25_0497.jpg", - "audio": "files/25_0497.mp3", - "audioMeaning": "files/25_0497_meaning.mp3", - "audioExample": "files/25_0497_example.mp3", - "textMeaning": "A tip is a pointed end of something.", - "textExample": "The tip of his pen was very sharp.", - "transcription": "[tip]", - "__v": 0, - "textExampleTranslate": "Кончик его ручки был очень острым", - "textMeaningTranslate": "Наконечник - это заостренный конец чего-то", - "wordTranslate": "подсказка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af690" - }, - "group": 0, - "page": 24, - "word": "tradition", - "image": "files/25_0498.jpg", - "audio": "files/25_0498.mp3", - "audioMeaning": "files/25_0498_meaning.mp3", - "audioExample": "files/25_0498_example.mp3", - "textMeaning": "A tradition is something people have been doing for a long time.", - "textExample": "Marriage is a tradition all over the world.", - "transcription": "[trədíʃən]", - "__v": 0, - "textExampleTranslate": "Брак - это традиция во всем мире", - "textMeaningTranslate": "Традиция - это то, что люди делали в течение долгого времени", - "wordTranslate": "традиция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af692" - }, - "group": 0, - "page": 24, - "word": "trash", - "image": "files/25_0499.jpg", - "audio": "files/25_0499.mp3", - "audioMeaning": "files/25_0499_meaning.mp3", - "audioExample": "files/25_0499_example.mp3", - "textMeaning": "Trash is waste material or unwanted or worthless things.", - "textExample": "Please take out the trash; it smells bad.", - "transcription": "[træʃ]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, выньте мусор; он плохо пахнет", - "textMeaningTranslate": "Мусор - это ненужный материал, нежелательные или бесполезные вещи", - "wordTranslate": "мусор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af694" - }, - "group": 0, - "page": 25, - "word": "advice", - "image": "files/26_0501.jpg", - "audio": "files/26_0501.mp3", - "audioMeaning": "files/26_0501_meaning.mp3", - "audioExample": "files/26_0501_example.mp3", - "textMeaning": "Advice is an opinion about what to do.", - "textExample": "I don’t know how to study for my exams. Can you give me some advice?", - "transcription": "[ədváis]", - "__v": 0, - "textExampleTranslate": "Я не знаю, как подготовиться к экзаменам. Можете дать мне совет?", - "textMeaningTranslate": "Совет - это мнение о том, что делать", - "wordTranslate": "совет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af693" - }, - "group": 0, - "page": 24, - "word": "wide", - "image": "files/25_0500.jpg", - "audio": "files/25_0500.mp3", - "audioMeaning": "files/25_0500_meaning.mp3", - "audioExample": "files/25_0500_example.mp3", - "textMeaning": "If something is wide, it is large from side to side.", - "textExample": "The door was as wide as my arms.", - "transcription": "[waid]", - "__v": 0, - "textExampleTranslate": "Дверь была такая же широкая, как мои руки", - "textMeaningTranslate": "Если что-то широкое, оно большое из стороны в сторону", - "wordTranslate": "широкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af695" - }, - "group": 0, - "page": 25, - "word": "attract", - "image": "files/26_0504.jpg", - "audio": "files/26_0504.mp3", - "audioMeaning": "files/26_0504_meaning.mp3", - "audioExample": "files/26_0504_example.mp3", - "textMeaning": "To attract means to make a person or thing come closer or be interested.", - "textExample": "The magnet attracted the metal.", - "transcription": "[ətrǽkt]", - "__v": 0, - "textExampleTranslate": "Магнит притягивал металл", - "textMeaningTranslate": "Привлечь - значит сделать человека или вещь ближе или заинтересоваться", - "wordTranslate": "привлечь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af698" - }, - "group": 0, - "page": 25, - "word": "climb", - "image": "files/26_0505.jpg", - "audio": "files/26_0505.mp3", - "audioMeaning": "files/26_0505_meaning.mp3", - "audioExample": "files/26_0505_example.mp3", - "textMeaning": "To climb means to use your hands and feet to go up something.", - "textExample": "The girls climbed to the top of the mountain.", - "transcription": "[klaim]", - "__v": 0, - "textExampleTranslate": "Девчонки забрались на вершину горы", - "textMeaningTranslate": "Подняться означает использовать руки и ноги, чтобы подняться", - "wordTranslate": "подняться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af697" - }, - "group": 0, - "page": 25, - "word": "attention", - "image": "files/26_0503.jpg", - "audio": "files/26_0503.mp3", - "audioMeaning": "files/26_0503_meaning.mp3", - "audioExample": "files/26_0503_example.mp3", - "textMeaning": "Attention is the notice, thought, or consideration of someone.", - "textExample": "His work got the attention of two of his co-workers.", - "transcription": "[əténʃən]", - "__v": 0, - "textExampleTranslate": "Его работа привлекла внимание двух его сотрудников", - "textMeaningTranslate": "Внимание - это внимание, мысль или соображение кого-либо", - "wordTranslate": "внимание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af699" - }, - "group": 0, - "page": 25, - "word": "drop", - "image": "files/26_0506.jpg", - "audio": "files/26_0506.mp3", - "audioMeaning": "files/26_0506_meaning.mp3", - "audioExample": "files/26_0506_example.mp3", - "textMeaning": "To drop is to fall or allow something to fall.", - "textExample": "A small amount of water dropped from the bottle.", - "transcription": "[drɑp]", - "__v": 0, - "textExampleTranslate": "из бутылки выпало небольшое количество воды", - "textMeaningTranslate": "Бросить - значит упасть или позволить чему-то упасть", - "wordTranslate": "падение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af696" - }, - "group": 0, - "page": 25, - "word": "along", - "image": "files/26_0502.jpg", - "audio": "files/26_0502.mp3", - "audioMeaning": "files/26_0502_meaning.mp3", - "audioExample": "files/26_0502_example.mp3", - "textMeaning": "Along means down the length of a road, river, etc.", - "textExample": "Walk along this tunnel for ten minutes, and you’ll see a door on the left.", - "transcription": "[əlɔ́ːŋ]", - "__v": 0, - "textExampleTranslate": "Пройдите по этому туннелю в течение десяти минут, и вы увидите дверь слева", - "textMeaningTranslate": "Вдоль означает по дороге, реке и т. Д", - "wordTranslate": "вместе" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af69a" - }, - "group": 0, - "page": 25, - "word": "final", - "image": "files/26_0507.jpg", - "audio": "files/26_0507.mp3", - "audioMeaning": "files/26_0507_meaning.mp3", - "audioExample": "files/26_0507_example.mp3", - "textMeaning": "If something is final, it is the last part.", - "textExample": "In the final part of the film, the man and the woman got married.", - "transcription": "[fáinl]", - "__v": 0, - "textExampleTranslate": "В заключительной части фильма мужчина и женщина поженились", - "textMeaningTranslate": "Если что-то окончательно, это последняя часть", - "wordTranslate": "окончательный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af69b" - }, - "group": 0, - "page": 25, - "word": "further", - "image": "files/26_0508.jpg", - "audio": "files/26_0508.mp3", - "audioMeaning": "files/26_0508_meaning.mp3", - "audioExample": "files/26_0508_example.mp3", - "textMeaning": "Further means at or from a greater distance or time.", - "textExample": "The escalator is further than I thought.", - "transcription": "[fə́ːrðər]", - "__v": 0, - "textExampleTranslate": "Эскалатор дальше, чем я думал", - "textMeaningTranslate": "Далее означает на или с большего расстояния или времени", - "wordTranslate": "дальше" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af69d" - }, - "group": 0, - "page": 25, - "word": "maintain", - "image": "files/26_0510.jpg", - "audio": "files/26_0510.mp3", - "audioMeaning": "files/26_0510_meaning.mp3", - "audioExample": "files/26_0510_example.mp3", - "textMeaning": "To maintain means to make something stay the same.", - "textExample": "The balls maintain constant movement.", - "transcription": "[meintéin]", - "__v": 0, - "textExampleTranslate": "Шарики поддерживают постоянное движение", - "textMeaningTranslate": "Поддерживать - значит заставить что-то оставаться прежним", - "wordTranslate": "поддерживать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af69e" - }, - "group": 0, - "page": 25, - "word": "neither", - "image": "files/26_0511.jpg", - "audio": "files/26_0511.mp3", - "audioMeaning": "files/26_0511_meaning.mp3", - "audioExample": "files/26_0511_example.mp3", - "textMeaning": "You use neither to connect two negative possibilities.", - "textExample": "Neither the path on the left nor the path on the right will lead us home.", - "transcription": "[níːðər]", - "__v": 0, - "textExampleTranslate": "Ни путь слева, ни путь справа не приведут нас домой", - "textMeaningTranslate": "Вы не используете ни один, чтобы соединить две отрицательные возможности", - "wordTranslate": "ни" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af69c" - }, - "group": 0, - "page": 25, - "word": "imply", - "image": "files/26_0509.jpg", - "audio": "files/26_0509.mp3", - "audioMeaning": "files/26_0509_meaning.mp3", - "audioExample": "files/26_0509_example.mp3", - "textMeaning": "To imply something is to suggest it without saying it.", - "textExample": "The man implied that he wanted the job, but he didn’t say so.", - "transcription": "[implái]", - "__v": 0, - "textExampleTranslate": "Человек подразумевал, что он хотел работу, но он не сказал так", - "textMeaningTranslate": "Подразумить что-то - значит предложить это, не сказав этого", - "wordTranslate": "предполагает" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af69f" - }, - "group": 0, - "page": 25, - "word": "otherwise", - "image": "files/26_0512.jpg", - "audio": "files/26_0512.mp3", - "audioMeaning": "files/26_0512_meaning.mp3", - "audioExample": "files/26_0512_example.mp3", - "textMeaning": "Otherwise means in another way if you don’t do this.", - "textExample": "It’s good to stay active; otherwise, you’ll gain weight.", - "transcription": "[ʌ́ðərwàiz]", - "__v": 0, - "textExampleTranslate": "Хорошо быть активным, иначе ты наберешь вес", - "textMeaningTranslate": "В противном случае означает по-другому, если вы этого не сделаете", - "wordTranslate": "в противном случае" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6a0" - }, - "group": 0, - "page": 25, - "word": "prove", - "image": "files/26_0514.jpg", - "audio": "files/26_0514.mp3", - "audioMeaning": "files/26_0514_meaning.mp3", - "audioExample": "files/26_0514_example.mp3", - "textMeaning": "To prove something is to show that it is true.", - "textExample": "My teacher proved the answer on the board.", - "transcription": "[pruːv]", - "__v": 0, - "textExampleTranslate": "Мой учитель доказал ответ на доске", - "textMeaningTranslate": "Доказать что-то значит показать, что это правда", - "wordTranslate": "доказать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6a3" - }, - "group": 0, - "page": 25, - "word": "ride", - "image": "files/26_0516.jpg", - "audio": "files/26_0516.mp3", - "audioMeaning": "files/26_0516_meaning.mp3", - "audioExample": "files/26_0516_example.mp3", - "textMeaning": "To ride something is to travel on it. You can ride an animal, a bike, etc.", - "textExample": "I will ride a roller coaster for the first time today.", - "transcription": "[raid]", - "__v": 0, - "textExampleTranslate": "Сегодня я впервые буду кататься на американских горках", - "textMeaningTranslate": "Ездить на чем-то - значит путешествовать на нем. Вы можете ездить на животном, на велосипеде и т. Д", - "wordTranslate": "ездить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6a2" - }, - "group": 0, - "page": 25, - "word": "react", - "image": "files/26_0515.jpg", - "audio": "files/26_0515.mp3", - "audioMeaning": "files/26_0515_meaning.mp3", - "audioExample": "files/26_0515_example.mp3", - "textMeaning": "To react is to respond by acting in a certain way.", - "textExample": "James reacted badly to the news.", - "transcription": "[riːǽkt]", - "__v": 0, - "textExampleTranslate": "Джеймс плохо отреагировал на новости", - "textMeaningTranslate": "Реагировать - значит реагировать определенным образом", - "wordTranslate": "реагируют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6a1" - }, - "group": 0, - "page": 25, - "word": "physical", - "image": "files/26_0513.jpg", - "audio": "files/26_0513.mp3", - "audioMeaning": "files/26_0513_meaning.mp3", - "audioExample": "files/26_0513_example.mp3", - "textMeaning": "If something is physical, it is related to your body and not your mind.", - "textExample": "Biking is good for your physical health.", - "transcription": "[fízikəl]", - "__v": 0, - "textExampleTranslate": "Езда на велосипеде полезна для вашего физического здоровья", - "textMeaningTranslate": "Если что-то физическое, это связано с вашим телом, а не с вашим умом", - "wordTranslate": "физический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6a4" - }, - "group": 0, - "page": 25, - "word": "situated", - "image": "files/26_0517.jpg", - "audio": "files/26_0517.mp3", - "audioMeaning": "files/26_0517_meaning.mp3", - "audioExample": "files/26_0517_example.mp3", - "textMeaning": "If something is situated somewhere, it is in that place.", - "textExample": "The whiteboard is situated between the two men.", - "transcription": "[síʧuèitid]", - "__v": 0, - "textExampleTranslate": "Доска расположена между двумя мужчинами", - "textMeaningTranslate": "Если что-то находится где-то, оно есть в этом месте", - "wordTranslate": "расположенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6a5" - }, - "group": 0, - "page": 25, - "word": "society", - "image": "files/26_0518.jpg", - "audio": "files/26_0518.mp3", - "audioMeaning": "files/26_0518_meaning.mp3", - "audioExample": "files/26_0518_example.mp3", - "textMeaning": "Society is a group of people who interact and share a culture.", - "textExample": "Society expects people to be good and honest.", - "transcription": "[səsáiəti]", - "__v": 0, - "textExampleTranslate": "Общество ожидает, что люди будут хорошими и честными", - "textMeaningTranslate": "Общество - это группа людей, которые взаимодействуют и разделяют культуру", - "wordTranslate": "общество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6a6" - }, - "group": 0, - "page": 25, - "word": "standard", - "image": "files/26_0519.jpg", - "audio": "files/26_0519.mp3", - "audioMeaning": "files/26_0519_meaning.mp3", - "audioExample": "files/26_0519_example.mp3", - "textMeaning": "A standard is what people consider normal or good.", - "textExample": "This older model TV is below our store’s standards.", - "transcription": "[stǽndərd]", - "__v": 0, - "textExampleTranslate": "Эта старая модель телевизора не соответствует стандартам нашего магазина", - "textMeaningTranslate": "Стандарт - это то, что люди считают нормальным или хорошим", - "wordTranslate": "стандарт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6a8" - }, - "group": 0, - "page": 26, - "word": "actually", - "image": "files/27_0521.jpg", - "audio": "files/27_0521.mp3", - "audioMeaning": "files/27_0521_meaning.mp3", - "audioExample": "files/27_0521_example.mp3", - "textMeaning": "Actually means in fact or really.", - "textExample": "My dad looks a little mean, but actually he’s very kind.", - "transcription": "[ǽktʃuəli]", - "__v": 0, - "textExampleTranslate": "Мой папа выглядит немного скупым, но на самом деле он очень добрый", - "textMeaningTranslate": "На самом деле означает на самом деле или на самом деле", - "wordTranslate": "фактически" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6a7" - }, - "group": 0, - "page": 25, - "word": "suggest", - "image": "files/26_0520.jpg", - "audio": "files/26_0520.mp3", - "audioMeaning": "files/26_0520_meaning.mp3", - "audioExample": "files/26_0520_example.mp3", - "textMeaning": "To suggest something means to give an idea or plan about it.", - "textExample": "He suggested that we go to see his boss.", - "transcription": "[səgdʒést]", - "__v": 0, - "textExampleTranslate": "Он предложил пойти к его боссу", - "textMeaningTranslate": "Предлагать что-то значит давать идею или план об этом", - "wordTranslate": "предложить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6a9" - }, - "group": 0, - "page": 26, - "word": "bite", - "image": "files/27_0522.jpg", - "audio": "files/27_0522.mp3", - "audioMeaning": "files/27_0522_meaning.mp3", - "audioExample": "files/27_0522_example.mp3", - "textMeaning": "Bite is the act of using your teeth to cut and tear into something.", - "textExample": "The boy took a big bite of his hamburger.", - "transcription": "[bait]", - "__v": 0, - "textExampleTranslate": "Мальчик откусил гамбургер", - "textMeaningTranslate": "Укус - это использование ваших зубов, чтобы что-то порезать", - "wordTranslate": "укусить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6aa" - }, - "group": 0, - "page": 26, - "word": "coast", - "image": "files/27_0523.jpg", - "audio": "files/27_0523.mp3", - "audioMeaning": "files/27_0523_meaning.mp3", - "audioExample": "files/27_0523_example.mp3", - "textMeaning": "The coast is the land by an ocean.", - "textExample": "I stayed on the southern coast of Australia.", - "transcription": "[koust]", - "__v": 0, - "textExampleTranslate": "Я остался на южном побережье Австралии", - "textMeaningTranslate": "Берег - это земля у океана", - "wordTranslate": "побережье" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ab" - }, - "group": 0, - "page": 26, - "word": "deal", - "image": "files/27_0524.jpg", - "audio": "files/27_0524.mp3", - "audioMeaning": "files/27_0524_meaning.mp3", - "audioExample": "files/27_0524_example.mp3", - "textMeaning": "A deal is an agreement that you have with another person.", - "textExample": "I made a deal with the other company to give us some money.", - "transcription": "[diːl]", - "__v": 0, - "textExampleTranslate": "Я заключил сделку с другой компанией, чтобы дать нам немного денег", - "textMeaningTranslate": "Сделка - это соглашение, которое вы заключили с другим человеком", - "wordTranslate": "сделка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ad" - }, - "group": 0, - "page": 26, - "word": "effective", - "image": "files/27_0526.jpg", - "audio": "files/27_0526.mp3", - "audioMeaning": "files/27_0526_meaning.mp3", - "audioExample": "files/27_0526_example.mp3", - "textMeaning": "If something is effective, it works well.", - "textExample": "Swimming is an effective way to stay healthy.", - "transcription": "[iféktiv]", - "__v": 0, - "textExampleTranslate": "Плавание - эффективный способ оставаться здоровым", - "textMeaningTranslate": "Если что-то эффективно, это работает хорошо", - "wordTranslate": "эффективный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ac" - }, - "group": 0, - "page": 26, - "word": "desert", - "image": "files/27_0525.jpg", - "audio": "files/27_0525.mp3", - "audioMeaning": "files/27_0525_meaning.mp3", - "audioExample": "files/27_0525_example.mp3", - "textMeaning": "The desert is an area of land without many plants or water.", - "textExample": "Not many plants grow in the desert.", - "transcription": "[dézərt]", - "__v": 0, - "textExampleTranslate": "В пустыне мало растений", - "textMeaningTranslate": "Пустыня - это территория без многих растений или воды", - "wordTranslate": "пустыня" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ae" - }, - "group": 0, - "page": 26, - "word": "examine", - "image": "files/27_0527.jpg", - "audio": "files/27_0527.mp3", - "audioMeaning": "files/27_0527_meaning.mp3", - "audioExample": "files/27_0527_example.mp3", - "textMeaning": "To examine something is to look at it carefully.", - "textExample": "The doctor examined my eyes today.", - "transcription": "[igzǽmin]", - "__v": 0, - "textExampleTranslate": "Доктор осмотрел мои глаза сегодня", - "textMeaningTranslate": "Исследовать что-то - значит внимательно смотреть на это", - "wordTranslate": "исследовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6af" - }, - "group": 0, - "page": 26, - "word": "false", - "image": "files/27_0528.jpg", - "audio": "files/27_0528.mp3", - "audioMeaning": "files/27_0528_meaning.mp3", - "audioExample": "files/27_0528_example.mp3", - "textMeaning": "If something is false, it is not correct.", - "textExample": "If you think the answer is false, press the red button.", - "transcription": "[fɔːls]", - "__v": 0, - "textExampleTranslate": "Если вы думаете, что ответ ложный, нажмите красную кнопку", - "textMeaningTranslate": "Если что-то является ложным, это не правильно", - "wordTranslate": "ложный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6b0" - }, - "group": 0, - "page": 26, - "word": "figure out", - "image": "files/27_0529.jpg", - "audio": "files/27_0529.mp3", - "audioMeaning": "files/27_0529_meaning.mp3", - "audioExample": "files/27_0529_example.mp3", - "textMeaning": "When you figure something out, you come to understand it and find an answer.", - "textExample": "I couldn’t figure out what he wanted me to do.", - "transcription": "[fígjəraut]", - "__v": 0, - "textExampleTranslate": "Я не мог понять, что он от меня хотел", - "textMeaningTranslate": "Когда вы что-то понимаете вне , вы понимаете это и находите ответ", - "wordTranslate": "выяснять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6b1" - }, - "group": 0, - "page": 26, - "word": "gift", - "image": "files/27_0530.jpg", - "audio": "files/27_0530.mp3", - "audioMeaning": "files/27_0530_meaning.mp3", - "audioExample": "files/27_0530_example.mp3", - "textMeaning": "A gift is something you give someone.", - "textExample": "Dave received many gifts for Christmas.", - "transcription": "[gift]", - "__v": 0, - "textExampleTranslate": "Дейв получил много подарков на Рождество", - "textMeaningTranslate": "Подарок - это то, что ты даришь кому-то", - "wordTranslate": "подарок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6b2" - }, - "group": 0, - "page": 26, - "word": "hunger", - "image": "files/27_0531.jpg", - "audio": "files/27_0531.mp3", - "audioMeaning": "files/27_0531_meaning.mp3", - "audioExample": "files/27_0531_example.mp3", - "textMeaning": "Hunger is the feeling that you get when you need to eat.", - "textExample": "After playing all day long, he was filled with hunger.", - "transcription": "[hʌ́ŋgər]", - "__v": 0, - "textExampleTranslate": "После целого дня игры он был полон голода", - "textMeaningTranslate": "Голод - это чувство, которое ты испытываешь, когда нужно есть", - "wordTranslate": "голод" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6b3" - }, - "group": 0, - "page": 26, - "word": "imagine", - "image": "files/27_0532.jpg", - "audio": "files/27_0532.mp3", - "audioMeaning": "files/27_0532_meaning.mp3", - "audioExample": "files/27_0532_example.mp3", - "textMeaning": "To imagine something is to think of it in your mind.", - "textExample": "Sally imagined herself winning lots of money.", - "transcription": "[imǽdʒin]", - "__v": 0, - "textExampleTranslate": "Салли представила, что выигрывает много денег", - "textMeaningTranslate": "Вообразить что-то значит думать об этом в своем уме", - "wordTranslate": "представить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6b4" - }, - "group": 0, - "page": 26, - "word": "journey", - "image": "files/27_0533.jpg", - "audio": "files/27_0533.mp3", - "audioMeaning": "files/27_0533_meaning.mp3", - "audioExample": "files/27_0533_example.mp3", - "textMeaning": "A journey is a long trip.", - "textExample": "I went on a journey across the country with my parents.", - "transcription": "[dʒə́ːrni]", - "__v": 0, - "textExampleTranslate": "Я отправился в путешествие по стране с родителями", - "textMeaningTranslate": "Путешествие - это долгое путешествие", - "wordTranslate": "поездка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6b5" - }, - "group": 0, - "page": 26, - "word": "puzzle", - "image": "files/27_0534.jpg", - "audio": "files/27_0534.mp3", - "audioMeaning": "files/27_0534_meaning.mp3", - "audioExample": "files/27_0534_example.mp3", - "textMeaning": "A puzzle is something that is hard to understand.", - "textExample": "The question was a puzzle to him.", - "transcription": "[pʌ́zl]", - "__v": 0, - "textExampleTranslate": "Вопрос был для него загадкой", - "textMeaningTranslate": "Головоломка - это то, что трудно понять", - "wordTranslate": "головоломка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6b6" - }, - "group": 0, - "page": 26, - "word": "quite", - "image": "files/27_0535.jpg", - "audio": "files/27_0535.mp3", - "audioMeaning": "files/27_0535_meaning.mp3", - "audioExample": "files/27_0535_example.mp3", - "textMeaning": "Quite means that something is a certain way completely or very much.", - "textExample": "I think typing on a keyboard is quite easy.", - "transcription": "[kwait]", - "__v": 0, - "textExampleTranslate": "Я думаю, что набирать текст на клавиатуре довольно просто", - "textMeaningTranslate": "Вполне означает, что что-то является определенным образом полностью или очень много", - "wordTranslate": "довольно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6b7" - }, - "group": 0, - "page": 26, - "word": "rather", - "image": "files/27_0536.jpg", - "audio": "files/27_0536.mp3", - "audioMeaning": "files/27_0536_meaning.mp3", - "audioExample": "files/27_0536_example.mp3", - "textMeaning": "Rather is used when you want to do one thing but not the other.", - "textExample": "I would rather have the red one than the blue one.", - "transcription": "[rǽðəːr]", - "__v": 0, - "textExampleTranslate": "Я бы предпочел красный, чем синий", - "textMeaningTranslate": "Скорее используется, когда вы хотите сделать одно, а не другое", - "wordTranslate": "скорее" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6b8" - }, - "group": 0, - "page": 26, - "word": "specific", - "image": "files/27_0537.jpg", - "audio": "files/27_0537.mp3", - "audioMeaning": "files/27_0537_meaning.mp3", - "audioExample": "files/27_0537_example.mp3", - "textMeaning": "If something is specific, it is precise or exact.", - "textExample": "Please choose a specific place on the map.", - "transcription": "[spisífik]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, выберите конкретное место на карте", - "textMeaningTranslate": "Если что-то конкретное, то точное или точное", - "wordTranslate": "конкретный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6b9" - }, - "group": 0, - "page": 26, - "word": "spider", - "image": "files/27_0538.jpg", - "audio": "files/27_0538.mp3", - "audioMeaning": "files/27_0538_meaning.mp3", - "audioExample": "files/27_0538_example.mp3", - "textMeaning": "A spider is a small creature with eight legs.", - "textExample": "Some adults have a fear of little creatures such as spiders.", - "transcription": "[spáidər]", - "__v": 0, - "textExampleTranslate": "Некоторые взрослые боятся маленьких существ, таких как пауки", - "textMeaningTranslate": "Паук - маленькое существо с восемью ногами", - "wordTranslate": "паук" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ba" - }, - "group": 0, - "page": 26, - "word": "tour", - "image": "files/27_0539.jpg", - "audio": "files/27_0539.mp3", - "audioMeaning": "files/27_0539_meaning.mp3", - "audioExample": "files/27_0539_example.mp3", - "textMeaning": "A tour is a short trip in which you see many sights.", - "textExample": "I took a tour of Asia and Europe.", - "transcription": "[tuəːr]", - "__v": 0, - "textExampleTranslate": "Я взял тур по Азии и Европе", - "textMeaningTranslate": "Тур - это короткое путешествие, в котором вы увидите много достопримечательностей", - "wordTranslate": "тур" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6bb" - }, - "group": 0, - "page": 26, - "word": "trip", - "image": "files/27_0540.jpg", - "audio": "files/27_0540.mp3", - "audioMeaning": "files/27_0540_meaning.mp3", - "audioExample": "files/27_0540_example.mp3", - "textMeaning": "A trip is a journey to a certain place.", - "textExample": "Ken took a trip to the city yesterday.", - "transcription": "[trip]", - "__v": 0, - "textExampleTranslate": "Кен отправился в город вчера", - "textMeaningTranslate": "Поездка - это путешествие в определенное место", - "wordTranslate": "поездка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6bc" - }, - "group": 0, - "page": 27, - "word": "band", - "image": "files/28_0541.jpg", - "audio": "files/28_0541.mp3", - "audioMeaning": "files/28_0541_meaning.mp3", - "audioExample": "files/28_0541_example.mp3", - "textMeaning": "A band is a group of people who play music.", - "textExample": "My brother is in a rock band.", - "transcription": "[bænd]", - "__v": 0, - "textExampleTranslate": "Мой брат в рок-группе", - "textMeaningTranslate": "Группа - это группа людей, которые играют музыку", - "wordTranslate": "группа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6bd" - }, - "group": 0, - "page": 27, - "word": "barely", - "image": "files/28_0542.jpg", - "audio": "files/28_0542.mp3", - "audioMeaning": "files/28_0542_meaning.mp3", - "audioExample": "files/28_0542_example.mp3", - "textMeaning": "Barely means by the smallest amount, almost not.", - "textExample": "I barely had enough money to pay for my bus ticket.", - "transcription": "[bɛ́ərli]", - "__v": 0, - "textExampleTranslate": "Мне едва хватило денег, чтобы оплатить билет на автобус", - "textMeaningTranslate": "Едва ли не наименьшее количество, почти нет", - "wordTranslate": "едва" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6be" - }, - "group": 0, - "page": 27, - "word": "boring", - "image": "files/28_0543.jpg", - "audio": "files/28_0543.mp3", - "audioMeaning": "files/28_0543_meaning.mp3", - "audioExample": "files/28_0543_example.mp3", - "textMeaning": "If something is boring, it is not fun.", - "textExample": "I think the Internet is boring.", - "transcription": "[bɔ́ːriŋ]", - "__v": 0, - "textExampleTranslate": "Я думаю, что Интернет скучен", - "textMeaningTranslate": "Если что-то скучно, это не весело", - "wordTranslate": "скучно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6bf" - }, - "group": 0, - "page": 27, - "word": "cancel", - "image": "files/28_0544.jpg", - "audio": "files/28_0544.mp3", - "audioMeaning": "files/28_0544_meaning.mp3", - "audioExample": "files/28_0544_example.mp3", - "textMeaning": "To cancel means to decide that an event or a request will not happen.", - "textExample": "She canceled the rest of her plans because of the rain.", - "transcription": "[kǽnsəl]", - "__v": 0, - "textExampleTranslate": "Она отменила все свои планы из-за дождя", - "textMeaningTranslate": "Отменить означает решить, что событие или запрос не произойдет", - "wordTranslate": "отмена" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6c0" - }, - "group": 0, - "page": 27, - "word": "driveway", - "image": "files/28_0545.jpg", - "audio": "files/28_0545.mp3", - "audioMeaning": "files/28_0545_meaning.mp3", - "audioExample": "files/28_0545_example.mp3", - "textMeaning": "A driveway is a short private road that leads to a person’s home.", - "textExample": "The long driveway led us to their new house.", - "transcription": "[dráivwèi]", - "__v": 0, - "textExampleTranslate": "Долгий путь привел нас к их новому дому", - "textMeaningTranslate": "Подъездная дорога - это короткая частная дорога, которая ведет к дому человека", - "wordTranslate": "подъездные пути" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6c1" - }, - "group": 0, - "page": 27, - "word": "garbage", - "image": "files/28_0546.jpg", - "audio": "files/28_0546.mp3", - "audioMeaning": "files/28_0546_meaning.mp3", - "audioExample": "files/28_0546_example.mp3", - "textMeaning": "Garbage is waste material like unwanted or spoiled food, bottles, paper, etc.", - "textExample": "The boy cleaned up the garbage around his house.", - "transcription": "[gɑ́ːrbidʒ]", - "__v": 0, - "textExampleTranslate": "Мальчик убрал мусор вокруг своего дома", - "textMeaningTranslate": "Мусор - это отходы, такие как нежелательные или испорченные продукты, бутылки, бумага и т. Д", - "wordTranslate": "мусор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6c2" - }, - "group": 0, - "page": 27, - "word": "instrument", - "image": "files/28_0547.jpg", - "audio": "files/28_0547.mp3", - "audioMeaning": "files/28_0547_meaning.mp3", - "audioExample": "files/28_0547_example.mp3", - "textMeaning": "An instrument is something designed to do a certain task like play music.", - "textExample": "My favorite musical instrument is the piano.", - "transcription": "[ínstrəmənt]", - "__v": 0, - "textExampleTranslate": "Мой любимый музыкальный инструмент - пианино", - "textMeaningTranslate": "Инструмент - это нечто, предназначенное для выполнения определенной задачи, например, для воспроизведения музыки", - "wordTranslate": "инструмент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6c4" - }, - "group": 0, - "page": 27, - "word": "magic", - "image": "files/28_0549.jpg", - "audio": "files/28_0549.mp3", - "audioMeaning": "files/28_0549_meaning.mp3", - "audioExample": "files/28_0549_example.mp3", - "textMeaning": "Magic is the power to do impossible things.", - "textExample": "The magician used magic to pull a rabbit out of his hat.", - "transcription": "[mǽdʒik]", - "__v": 0, - "textExampleTranslate": "Маг использовал магию, чтобы вытащить кролика из шляпы", - "textMeaningTranslate": "Магия - это сила делать невозможные вещи", - "wordTranslate": "магия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6c3" - }, - "group": 0, - "page": 27, - "word": "list", - "image": "files/28_0548.jpg", - "audio": "files/28_0548.mp3", - "audioMeaning": "files/28_0548_meaning.mp3", - "audioExample": "files/28_0548_example.mp3", - "textMeaning": "A list is a record of information printed with an item on each line.", - "textExample": "My mom makes a list of groceries to buy.", - "transcription": "[list]", - "__v": 0, - "textExampleTranslate": "Моя мама составляет список покупок", - "textMeaningTranslate": "Список - это запись информации, напечатанной с элементом в каждой строке", - "wordTranslate": "список" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6c5" - }, - "group": 0, - "page": 27, - "word": "message", - "image": "files/28_0550.jpg", - "audio": "files/28_0550.mp3", - "audioMeaning": "files/28_0550_meaning.mp3", - "audioExample": "files/28_0550_example.mp3", - "textMeaning": "A message is a set of words that you send to someone.", - "textExample": "I left a message for you in the envelope.", - "transcription": "[mésidʒ]", - "__v": 0, - "textExampleTranslate": "Я оставил тебе сообщение в конверте", - "textMeaningTranslate": "Сообщение - это набор слов, которые вы отправляете кому-то", - "wordTranslate": "сообщение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6c6" - }, - "group": 0, - "page": 27, - "word": "notice", - "image": "files/28_0551.jpg", - "audio": "files/28_0551.mp3", - "audioMeaning": "files/28_0551_meaning.mp3", - "audioExample": "files/28_0551_example.mp3", - "textMeaning": "To notice something is to see it for the first time.", - "textExample": "Did you notice the view?", - "transcription": "[nóutis]", - "__v": 0, - "textExampleTranslate": "Вы заметили вид?", - "textMeaningTranslate": "Заметить что-то - значит увидеть это впервые", - "wordTranslate": "уведомление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6c7" - }, - "group": 0, - "page": 27, - "word": "own", - "image": "files/28_0552.jpg", - "audio": "files/28_0552.mp3", - "audioMeaning": "files/28_0552_meaning.mp3", - "audioExample": "files/28_0552_example.mp3", - "textMeaning": "To own something means to have it. That thing belongs to you.", - "textExample": "My grandfather owns that house.", - "transcription": "[oun]", - "__v": 0, - "textExampleTranslate": "Мой дедушка владеет этим домом", - "textMeaningTranslate": "Владеть чем-то - значит иметь это. Эта вещь принадлежит тебе", - "wordTranslate": "своя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6c8" - }, - "group": 0, - "page": 27, - "word": "predict", - "image": "files/28_0553.jpg", - "audio": "files/28_0553.mp3", - "audioMeaning": "files/28_0553_meaning.mp3", - "audioExample": "files/28_0553_example.mp3", - "textMeaning": "To predict something is to say that it will happen.", - "textExample": "She predicted that I would get married next year.", - "transcription": "[pridíkt]", - "__v": 0, - "textExampleTranslate": "Она предсказала, что я выйду замуж в следующем году", - "textMeaningTranslate": "Предсказать что-то значит сказать, что это произойдет", - "wordTranslate": "предсказать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6c9" - }, - "group": 0, - "page": 27, - "word": "rush", - "image": "files/28_0555.jpg", - "audio": "files/28_0555.mp3", - "audioMeaning": "files/28_0555_meaning.mp3", - "audioExample": "files/28_0555_example.mp3", - "textMeaning": "To rush is to go somewhere or do something very quickly.", - "textExample": "Nancy rushed to finish her homework.", - "transcription": "[rʌʃ]", - "__v": 0, - "textExampleTranslate": "Нэнси поспешила закончить домашнее задание", - "textMeaningTranslate": "Спешить - значит идти куда-то или делать что-то очень быстро", - "wordTranslate": "порыв" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ca" - }, - "group": 0, - "page": 27, - "word": "professor", - "image": "files/28_0554.jpg", - "audio": "files/28_0554.mp3", - "audioMeaning": "files/28_0554_meaning.mp3", - "audioExample": "files/28_0554_example.mp3", - "textMeaning": "A professor is a person who teaches in college.", - "textExample": "Mike’s science professor knows a lot about physics.", - "transcription": "[prəfésər]", - "__v": 0, - "textExampleTranslate": "Профессор Майка много знает о физике", - "textMeaningTranslate": "Профессор - это человек, который преподает в колледже", - "wordTranslate": "профессор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6cb" - }, - "group": 0, - "page": 27, - "word": "schedule", - "image": "files/28_0556.jpg", - "audio": "files/28_0556.mp3", - "audioMeaning": "files/28_0556_meaning.mp3", - "audioExample": "files/28_0556_example.mp3", - "textMeaning": "A schedule is a plan that tells you when to do things.", - "textExample": "What is your class schedule for today?", - "transcription": "[skédʒuːl]", - "__v": 0, - "textExampleTranslate": "Какое у тебя расписание занятий на сегодня?", - "textMeaningTranslate": "Расписание - это план, который говорит вам, когда нужно что-то делать", - "wordTranslate": "график" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6cc" - }, - "group": 0, - "page": 27, - "word": "share", - "image": "files/28_0557.jpg", - "audio": "files/28_0557.mp3", - "audioMeaning": "files/28_0557_meaning.mp3", - "audioExample": "files/28_0557_example.mp3", - "textMeaning": "To share something is to give some of it to another person.", - "textExample": "Jimmy shared his apple with me.", - "transcription": "[ʃɛəːr]", - "__v": 0, - "textExampleTranslate": "Джимми поделился со мной своим яблоком", - "textMeaningTranslate": "Поделиться чем-то - это передать что-то другому", - "wordTranslate": "доля" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6cd" - }, - "group": 0, - "page": 27, - "word": "stage", - "image": "files/28_0558.jpg", - "audio": "files/28_0558.mp3", - "audioMeaning": "files/28_0558_meaning.mp3", - "audioExample": "files/28_0558_example.mp3", - "textMeaning": "A stage is a place where actors or musicians act or sing.", - "textExample": "A large screen was on the stage.", - "transcription": "[steidʒ]", - "__v": 0, - "textExampleTranslate": "Большой экран был на сцене", - "textMeaningTranslate": "Сцена - это место, где актеры или музыканты играют или поют", - "wordTranslate": "сцена" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ce" - }, - "group": 0, - "page": 27, - "word": "storm", - "image": "files/28_0559.jpg", - "audio": "files/28_0559.mp3", - "audioMeaning": "files/28_0559_meaning.mp3", - "audioExample": "files/28_0559_example.mp3", - "textMeaning": "A storm is very bad weather. There is a lot of rain or snow.", - "textExample": "Did that storm wake you up last night?", - "transcription": "[stɔːrm]", - "__v": 0, - "textExampleTranslate": "Этот шторм разбудил тебя прошлой ночью?", - "textMeaningTranslate": "Шторм очень плохая погода. Там много дождя или снега", - "wordTranslate": "буря" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6cf" - }, - "group": 0, - "page": 27, - "word": "within", - "image": "files/28_0560.jpg", - "audio": "files/28_0560.mp3", - "audioMeaning": "files/28_0560_meaning.mp3", - "audioExample": "files/28_0560_example.mp3", - "textMeaning": "You use within to say that something is inside another thing.", - "textExample": "Within the box, there was a pizza.", - "transcription": "[wiðín]", - "__v": 0, - "textExampleTranslate": "Внутри коробки была пицца", - "textMeaningTranslate": "Вы используете внутри, чтобы сказать, что что-то находится внутри другого", - "wordTranslate": "в пределах" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6d0" - }, - "group": 0, - "page": 28, - "word": "burden", - "image": "files/29_0561.jpg", - "audio": "files/29_0561.mp3", - "audioMeaning": "files/29_0561_meaning.mp3", - "audioExample": "files/29_0561_example.mp3", - "textMeaning": "A burden is a serious or difficult responsibility.", - "textExample": "Children who do not behave are a burden to their parents.", - "transcription": "[bə́ːrdn]", - "__v": 0, - "textExampleTranslate": "Дети, которые не ведут себя, являются обузой для их родителей", - "textMeaningTranslate": "Бремя - это серьезная или трудная ответственность", - "wordTranslate": "бремя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6d1" - }, - "group": 0, - "page": 28, - "word": "compromise", - "image": "files/29_0562.jpg", - "audio": "files/29_0562.mp3", - "audioMeaning": "files/29_0562_meaning.mp3", - "audioExample": "files/29_0562_example.mp3", - "textMeaning": "To compromise is to agree to something that is not exactly what you want.", - "textExample": "We both compromised about the game we decided to play.", - "transcription": "[kɑ́mprəmàiz]", - "__v": 0, - "textExampleTranslate": "Мы оба пошли на компромисс по поводу игры, в которую решили играть", - "textMeaningTranslate": "Идти на компромисс - значит соглашаться на то, что не совсем то, что вы хотите", - "wordTranslate": "компромисс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6d2" - }, - "group": 0, - "page": 28, - "word": "craft", - "image": "files/29_0563.jpg", - "audio": "files/29_0563.mp3", - "audioMeaning": "files/29_0563_meaning.mp3", - "audioExample": "files/29_0563_example.mp3", - "textMeaning": "To craft something is to make it using skill.", - "textExample": "She crafted the bookcase out of solid pine wood and then painted it.", - "transcription": "[kræft]", - "__v": 0, - "textExampleTranslate": "Она изготовила книжный шкаф из массива сосны, а затем покрасила его", - "textMeaningTranslate": "Сделать что-то - значит сделать это, используя умение", - "wordTranslate": "ремесло" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6d3" - }, - "group": 0, - "page": 28, - "word": "dive", - "image": "files/29_0564.jpg", - "audio": "files/29_0564.mp3", - "audioMeaning": "files/29_0564_meaning.mp3", - "audioExample": "files/29_0564_example.mp3", - "textMeaning": "When you dive into water, you go down head first into the water.", - "textExample": "I like sky-diving from an airplane.", - "transcription": "[daiv]", - "__v": 0, - "textExampleTranslate": "Мне нравится скайдайвинг с самолета", - "textMeaningTranslate": "Когда вы погружаетесь в воду, вы спускаетесь головой вниз в воду", - "wordTranslate": "погружение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6d4" - }, - "group": 0, - "page": 28, - "word": "fragile", - "image": "files/29_0565.jpg", - "audio": "files/29_0565.mp3", - "audioMeaning": "files/29_0565_meaning.mp3", - "audioExample": "files/29_0565_example.mp3", - "textMeaning": "When people or things are fragile, they are not strong and can be damaged easily.", - "textExample": "The fragile glassware was carefully packed into boxes.", - "transcription": "[frǽdʒəl]", - "__v": 0, - "textExampleTranslate": "Хрупкая стеклянная посуда была тщательно упакована в коробки", - "textMeaningTranslate": "Когда люди или вещи хрупкие, они не сильны и могут быть легко повреждены", - "wordTranslate": "хрупкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6d6" - }, - "group": 0, - "page": 28, - "word": "innocence", - "image": "files/29_0567.jpg", - "audio": "files/29_0567.mp3", - "audioMeaning": "files/29_0567_meaning.mp3", - "audioExample": "files/29_0567_example.mp3", - "textMeaning": "Innocence is a lack of experience of difficult or complex things in life.", - "textExample": "Everyone who met her found her innocence to be charming.", - "transcription": "[ínəsəns]", - "__v": 0, - "textExampleTranslate": "Все, кто встречал ее, находили ее невинность очаровательной", - "textMeaningTranslate": "Невинность - это недостаток опыта сложных или сложных вещей в жизни", - "wordTranslate": "невинность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6d5" - }, - "group": 0, - "page": 28, - "word": "half", - "image": "files/29_0566.jpg", - "audio": "files/29_0566.mp3", - "audioMeaning": "files/29_0566_meaning.mp3", - "audioExample": "files/29_0566_example.mp3", - "textMeaning": "If you cut something into two parts that are the same size, you cut it half.", - "textExample": "The machine can divide the book in half.", - "transcription": "[hæf]", - "__v": 0, - "textExampleTranslate": "Машина может разделить книгу пополам", - "textMeaningTranslate": "Если вы разрезаете что-то на две части одинакового размера, вы разрезаете это пополам", - "wordTranslate": "половина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6d7" - }, - "group": 0, - "page": 28, - "word": "lead", - "image": "files/29_0568.jpg", - "audio": "files/29_0568.mp3", - "audioMeaning": "files/29_0568_meaning.mp3", - "audioExample": "files/29_0568_example.mp3", - "textMeaning": "When you lead something, you go first and it follows you.", - "textExample": "I will lead you to the right place.", - "transcription": "[liːd]", - "__v": 0, - "textExampleTranslate": "Я приведу вас в нужное место", - "textMeaningTranslate": "Когда ты ведешь что-то, ты идешь первым, и это следует за тобой", - "wordTranslate": "вести" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6d8" - }, - "group": 0, - "page": 28, - "word": "meeting", - "image": "files/29_0569.jpg", - "audio": "files/29_0569.mp3", - "audioMeaning": "files/29_0569_meaning.mp3", - "audioExample": "files/29_0569_example.mp3", - "textMeaning": "When you have a meeting, you are with other people.", - "textExample": "We have lots of meetings at our school to plan what to do.", - "transcription": "[míːtiŋ]", - "__v": 0, - "textExampleTranslate": "У нас в школе много встреч, чтобы спланировать, что делать", - "textMeaningTranslate": "Когда у тебя встреча, ты с другими людьми", - "wordTranslate": "встреча" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6d9" - }, - "group": 0, - "page": 28, - "word": "merge", - "image": "files/29_0570.jpg", - "audio": "files/29_0570.mp3", - "audioMeaning": "files/29_0570_meaning.mp3", - "audioExample": "files/29_0570_example.mp3", - "textMeaning": "To merge two things is to combine them into one whole thing.", - "textExample": "The storm clouds merged into one large menacing cloud that filled the sky.", - "transcription": "[məːrdʒ]", - "__v": 0, - "textExampleTranslate": "Грозовые тучи слились в одно большое грозное облако, которое заполнило небо", - "textMeaningTranslate": "Объединить две вещи - значит объединить их в одно целое", - "wordTranslate": "слияние" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6da" - }, - "group": 0, - "page": 28, - "word": "moderate", - "image": "files/29_0571.jpg", - "audio": "files/29_0571.mp3", - "audioMeaning": "files/29_0571_meaning.mp3", - "audioExample": "files/29_0571_example.mp3", - "textMeaning": "When something is moderate, it is not too big or too small in size or amount.", - "textExample": "It takes a moderate amount of patience to be around small children all day.", - "transcription": "[mɑ́dərèit]", - "__v": 0, - "textExampleTranslate": "Требуется умеренное количество терпения, чтобы быть рядом с маленькими детьми сь нь", - "textMeaningTranslate": "Когда что-то умеренное, оно не слишком большое или слишком маленькое по размеру или количеству", - "wordTranslate": "умеренный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6db" - }, - "group": 0, - "page": 28, - "word": "overwhelm", - "image": "files/29_0572.jpg", - "audio": "files/29_0572.mp3", - "audioMeaning": "files/29_0572_meaning.mp3", - "audioExample": "files/29_0572_example.mp3", - "textMeaning": "To overwhelm is to exist in such a large amount that someone cannot deal with it.", - "textExample": "The amount of homework her teacher assigned has overwhelmed her.", - "transcription": "[òuvərhwélm]", - "__v": 0, - "textExampleTranslate": "Количество домашней работы заданной учителем ошеломило её", - "textMeaningTranslate": "Подавить значит существовать в таком большом количестве, что кто-то не может справиться с этим", - "wordTranslate": "нападает" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6dc" - }, - "group": 0, - "page": 28, - "word": "payment", - "image": "files/29_0573.jpg", - "audio": "files/29_0573.mp3", - "audioMeaning": "files/29_0573_meaning.mp3", - "audioExample": "files/29_0573_example.mp3", - "textMeaning": "When you make a payment, you give someone some money for what you get.", - "textExample": "I made the last payment on my car yesterday. Now I am really the owner.", - "transcription": "[péimənt]", - "__v": 0, - "textExampleTranslate": "Я сделал последний платеж по машине вчера. Теперь я действительно ее владелец.", - "textMeaningTranslate": "Когда вы делаете платеж, вы даете кому-то немного денег за то, что вы получаете", - "wordTranslate": "оплата" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6dd" - }, - "group": 0, - "page": 28, - "word": "perception", - "image": "files/29_0574.jpg", - "audio": "files/29_0574.mp3", - "audioMeaning": "files/29_0574_meaning.mp3", - "audioExample": "files/29_0574_example.mp3", - "textMeaning": "A perception of a situation is a way of thinking about it or understanding it.", - "textExample": "Since he couldn’t see, his perception of life was much different than mine.", - "transcription": "[pərsépʃən]", - "__v": 0, - "textExampleTranslate": "Поскольку он не может видеть, его восприятие жизни очень сильно отличается от моего.", - "textMeaningTranslate": "Восприятие ситуации - это способ думать об этом или понимать его", - "wordTranslate": "восприятие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6de" - }, - "group": 0, - "page": 28, - "word": "settle", - "image": "files/29_0575.jpg", - "audio": "files/29_0575.mp3", - "audioMeaning": "files/29_0575_meaning.mp3", - "audioExample": "files/29_0575_example.mp3", - "textMeaning": "When you settle something, you reach an agreement.", - "textExample": "We settled the argument by looking up the answer on the web.", - "transcription": "[sétl]", - "__v": 0, - "textExampleTranslate": "Мы уладили спор, посмотрев ответ в Интернете", - "textMeaningTranslate": "Когда вы что-то решаете, вы достигаете соглашения", - "wordTranslate": "селиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6df" - }, - "group": 0, - "page": 28, - "word": "shiver", - "image": "files/29_0576.jpg", - "audio": "files/29_0576.mp3", - "audioMeaning": "files/29_0576_meaning.mp3", - "audioExample": "files/29_0576_example.mp3", - "textMeaning": "A shiver is a shaking movement the body makes when someone is cold or scared.", - "textExample": "I got shivers on my way home because it was so cold.", - "transcription": "[ʃívəːr]", - "__v": 0, - "textExampleTranslate": "По дороге домой меня бросило в дрожь, потому что было так холодно", - "textMeaningTranslate": "Дрожь - это дрожащее движение, которое делает тело, когда кто-то холоден или напуган", - "wordTranslate": "мурашки" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6e0" - }, - "group": 0, - "page": 28, - "word": "sociable", - "image": "files/29_0577.jpg", - "audio": "files/29_0577.mp3", - "audioMeaning": "files/29_0577_meaning.mp3", - "audioExample": "files/29_0577_example.mp3", - "textMeaning": "When someone is sociable, they are friendly.", - "textExample": "Many of my good friends are sociable, but I am shy.", - "transcription": "[sóuʃəbl]", - "__v": 0, - "textExampleTranslate": "Многие из моих хороших друзей общительны, но я застенчив", - "textMeaningTranslate": "Когда кто-то общительный, он дружелюбный", - "wordTranslate": "общительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6e1" - }, - "group": 0, - "page": 28, - "word": "speed", - "image": "files/29_0578.jpg", - "audio": "files/29_0578.mp3", - "audioMeaning": "files/29_0578_meaning.mp3", - "audioExample": "files/29_0578_example.mp3", - "textMeaning": "When you speed, you go very fast.", - "textExample": "Speeding is the cause of most car accidents.", - "transcription": "[spiːd]", - "__v": 0, - "textExampleTranslate": "Превышение скорости является причиной большинства автомобильных аварий", - "textMeaningTranslate": "Когда ты ускоряешься, ты едешь очень быстро", - "wordTranslate": "скорость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6e2" - }, - "group": 0, - "page": 28, - "word": "talkative", - "image": "files/29_0579.jpg", - "audio": "files/29_0579.mp3", - "audioMeaning": "files/29_0579_meaning.mp3", - "audioExample": "files/29_0579_example.mp3", - "textMeaning": "When someone is talkative, he or she talks a lot.", - "textExample": "My aunt is very talkative whenever she is on the phone.", - "transcription": "[tɔ́ːkətiv]", - "__v": 0, - "textExampleTranslate": "Моя тетя очень разговорчива, когда разговаривает по телефону", - "textMeaningTranslate": "Когда кто-то болтлив, он или она много говорит", - "wordTranslate": "разговорчивы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6e3" - }, - "group": 0, - "page": 28, - "word": "usual", - "image": "files/29_0580.jpg", - "audio": "files/29_0580.mp3", - "audioMeaning": "files/29_0580_meaning.mp3", - "audioExample": "files/29_0580_example.mp3", - "textMeaning": "When something is usual, it is what we expect.", - "textExample": "It was just the usual people who came.", - "transcription": "[júːʒuəl]", - "__v": 0, - "textExampleTranslate": "Люди которые пришли были самыми обычными", - "textMeaningTranslate": "Когда что-то обычное, это то, что мы ожидаем", - "wordTranslate": "обычный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6e4" - }, - "group": 0, - "page": 29, - "word": "above", - "image": "files/30_0581.jpg", - "audio": "files/30_0581.mp3", - "audioMeaning": "files/30_0581_meaning.mp3", - "audioExample": "files/30_0581_example.mp3", - "textMeaning": "If something is above, it is at a higher level than something else.", - "textExample": "He straightened the sign that was above the crowd.", - "transcription": "[əbʌ́v]", - "__v": 0, - "textExampleTranslate": "Он поправил знак, который был над толпой", - "textMeaningTranslate": "Если что-то выше, это на более высоком уровне, чем что-то другое", - "wordTranslate": "над" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6e5" - }, - "group": 0, - "page": 29, - "word": "ahead", - "image": "files/30_0582.jpg", - "audio": "files/30_0582.mp3", - "audioMeaning": "files/30_0582_meaning.mp3", - "audioExample": "files/30_0582_example.mp3", - "textMeaning": "If something is ahead of something else, it is in front of it.", - "textExample": "The blue car drove on ahead of us.", - "transcription": "[əhéd]", - "__v": 0, - "textExampleTranslate": "Синяя машина ехала впереди нас", - "textMeaningTranslate": "Если что-то впереди чего-то другого, то оно впереди", - "wordTranslate": "вперед" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6e6" - }, - "group": 0, - "page": 29, - "word": "amount", - "image": "files/30_0583.jpg", - "audio": "files/30_0583.mp3", - "audioMeaning": "files/30_0583_meaning.mp3", - "audioExample": "files/30_0583_example.mp3", - "textMeaning": "An amount is how much there is of something.", - "textExample": "Can I use my card to pay for the entire amount?", - "transcription": "[əmáunt]", - "__v": 0, - "textExampleTranslate": "Могу ли я использовать свою карту для оплаты всей суммы?", - "textMeaningTranslate": "Количество - это то, сколько есть чего-то", - "wordTranslate": "количество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6e7" - }, - "group": 0, - "page": 29, - "word": "belief", - "image": "files/30_0584.jpg", - "audio": "files/30_0584.mp3", - "audioMeaning": "files/30_0584_meaning.mp3", - "audioExample": "files/30_0584_example.mp3", - "textMeaning": "A belief is a strong feeling that something is correct or true.", - "textExample": "A preacher or priest should have a strong belief in God.", - "transcription": "[bilíːf]", - "__v": 0, - "textExampleTranslate": "Проповедник или священник должны иметь твердую веру в Бога", - "textMeaningTranslate": "Вера - это сильное чувство, что что-то правильно или верно", - "wordTranslate": "вера" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6e8" - }, - "group": 0, - "page": 29, - "word": "cost", - "image": "files/30_0587.jpg", - "audio": "files/30_0587.mp3", - "audioMeaning": "files/30_0587_meaning.mp3", - "audioExample": "files/30_0587_example.mp3", - "textMeaning": "To cost is to require payment.", - "textExample": "These designer shoes cost more than the regular ones.", - "transcription": "[kɔːst]", - "__v": 0, - "textExampleTranslate": "Эти дизайнерские туфли стоят дороже обычных", - "textMeaningTranslate": "К стоимости - значит требовать оплату", - "wordTranslate": "стоимость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6e9" - }, - "group": 0, - "page": 29, - "word": "demonstrate", - "image": "files/30_0588.jpg", - "audio": "files/30_0588.mp3", - "audioMeaning": "files/30_0588_meaning.mp3", - "audioExample": "files/30_0588_example.mp3", - "textMeaning": "To demonstrate something is to show how it is done.", - "textExample": "She demonstrated her plan to her co-workers.", - "transcription": "[démənstrèit]", - "__v": 0, - "textExampleTranslate": "Она продемонстрировала план сотрудникам", - "textMeaningTranslate": "Продемонстрировать что-то значит показать, как это делается", - "wordTranslate": "продемонстрировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ea" - }, - "group": 0, - "page": 29, - "word": "different", - "image": "files/30_0589.jpg", - "audio": "files/30_0589.mp3", - "audioMeaning": "files/30_0589_meaning.mp3", - "audioExample": "files/30_0589_example.mp3", - "textMeaning": "Different describes someone or something that is not the same as others.", - "textExample": "Each of my sisters has a different hair style.", - "transcription": "[dífərənt]", - "__v": 0, - "textExampleTranslate": "У каждой из моих сестер разные прически", - "textMeaningTranslate": "Разное описывает кого-то или что-то, что не совпадает с другими", - "wordTranslate": "другой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6eb" - }, - "group": 0, - "page": 29, - "word": "center", - "image": "files/30_0585.jpg", - "audio": "files/30_0585.mp3", - "audioMeaning": "files/30_0585_meaning.mp3", - "audioExample": "files/30_0585_example.mp3", - "textMeaning": "The center of something is the middle of it.", - "textExample": "The center of a dart board is the most important spot.", - "transcription": "[séntər]", - "__v": 0, - "textExampleTranslate": "Центр доски для дартса - самое важное место", - "textMeaningTranslate": "Центр чего-то - это середина", - "wordTranslate": "центр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ec" - }, - "group": 0, - "page": 29, - "word": "common", - "image": "files/30_0586.jpg", - "audio": "files/30_0586.mp3", - "audioMeaning": "files/30_0586_meaning.mp3", - "audioExample": "files/30_0586_example.mp3", - "textMeaning": "If something is common, it happens often or there is much of it.", - "textExample": "It is common for snow to fall in the winter.", - "transcription": "[kɑ́mən]", - "__v": 0, - "textExampleTranslate": "Это нормально, что зимой идет снег", - "textMeaningTranslate": "Если что-то общее, это случается часто или его много", - "wordTranslate": "общий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ed" - }, - "group": 0, - "page": 29, - "word": "evidence", - "image": "files/30_0590.jpg", - "audio": "files/30_0590.mp3", - "audioMeaning": "files/30_0590_meaning.mp3", - "audioExample": "files/30_0590_example.mp3", - "textMeaning": "Evidence is a fact or thing that you use to prove something.", - "textExample": "He used the pictures as evidence that UFOs are real.", - "transcription": "[évidəns]", - "__v": 0, - "textExampleTranslate": "Он использовал фотографии в качестве доказательства того, что НЛО реальны", - "textMeaningTranslate": "Доказательства - это факт или вещь, которую вы используете, чтобы доказать что-то", - "wordTranslate": "доказательство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ee" - }, - "group": 0, - "page": 29, - "word": "independent", - "image": "files/30_0593.jpg", - "audio": "files/30_0593.mp3", - "audioMeaning": "files/30_0593_meaning.mp3", - "audioExample": "files/30_0593_example.mp3", - "textMeaning": "If something is independent, it is not controlled by something else.", - "textExample": "She chose to live an independent life in the country.", - "transcription": "[ìndipéndənt]", - "__v": 0, - "textExampleTranslate": "Она решила жить независимой жизнью в стране", - "textMeaningTranslate": "Если что-то является независимым, оно не контролируется чем-то другим", - "wordTranslate": "независимый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ef" - }, - "group": 0, - "page": 29, - "word": "honesty", - "image": "files/30_0591.jpg", - "audio": "files/30_0591.mp3", - "audioMeaning": "files/30_0591_meaning.mp3", - "audioExample": "files/30_0591_example.mp3", - "textMeaning": "Honesty means the quality of being truthful or honest.", - "textExample": "A courtroom should be a place of honesty.", - "transcription": "[ɑ́nisti]", - "__v": 0, - "textExampleTranslate": "Зал суда должен быть местом честности", - "textMeaningTranslate": "Честность означает качество быть правдивым или честным", - "wordTranslate": "честность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6f0" - }, - "group": 0, - "page": 29, - "word": "inside", - "image": "files/30_0594.jpg", - "audio": "files/30_0594.mp3", - "audioMeaning": "files/30_0594_meaning.mp3", - "audioExample": "files/30_0594_example.mp3", - "textMeaning": "Inside means the inner part, space or side of something.", - "textExample": "The inside of the box was empty.", - "transcription": "[ínsáid]", - "__v": 0, - "textExampleTranslate": "Коробка внутри была пуста", - "textMeaningTranslate": "Внутри означает внутреннюю часть, пространство или сторону чего-либо", - "wordTranslate": "внутри" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6f1" - }, - "group": 0, - "page": 29, - "word": "idiom", - "image": "files/30_0592.jpg", - "audio": "files/30_0592.mp3", - "audioMeaning": "files/30_0592_meaning.mp3", - "audioExample": "files/30_0592_example.mp3", - "textMeaning": "An idiom is a phrase with a meaning different from its words.", - "textExample": "The idiom “when pigs fly” means that something will never happen.", - "transcription": "[ídiəm]", - "__v": 0, - "textExampleTranslate": "Идиома «когда свиньи летают» означает, что что-то никогда не случится", - "textMeaningTranslate": "Идиома - это фраза, значение которой отличается от ее слов", - "wordTranslate": "идиома" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6f2" - }, - "group": 0, - "page": 29, - "word": "jail", - "image": "files/30_0595.jpg", - "audio": "files/30_0595.mp3", - "audioMeaning": "files/30_0595_meaning.mp3", - "audioExample": "files/30_0595_example.mp3", - "textMeaning": "A jail is a place to keep bad people.", - "textExample": "He was sent to jail for taking other people’s cars.", - "transcription": "[dʒeil]", - "__v": 0, - "textExampleTranslate": "Его посадили в тюрьму за воровство машин", - "textMeaningTranslate": "Тюрьма - это место, где содержатся плохие люди", - "wordTranslate": "тюрьма" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6f3" - }, - "group": 0, - "page": 29, - "word": "master", - "image": "files/30_0596.jpg", - "audio": "files/30_0596.mp3", - "audioMeaning": "files/30_0596_meaning.mp3", - "audioExample": "files/30_0596_example.mp3", - "textMeaning": "A master is a person who is very good at something.", - "textExample": "My brother is a master of taekwondo.", - "transcription": "[mǽstəːr]", - "__v": 0, - "textExampleTranslate": "Мой брат мастер тхэквондо", - "textMeaningTranslate": "Мастер - это человек, который очень хорош в чем-то", - "wordTranslate": "мастер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6f8" - }, - "group": 1, - "page": 0, - "word": "because", - "image": "files/01_0601.jpg", - "audio": "files/01_0601.mp3", - "audioMeaning": "files/01_0601_meaning.mp3", - "audioExample": "files/01_0601_example.mp3", - "textMeaning": "Because introduces a reason for something.", - "textExample": "We need to study because we have a test tomorrow.", - "transcription": "[bikɔ́ːz]", - "__v": 0, - "textExampleTranslate": "Нам нужно учиться, потому что завтра у нас тест", - "textMeaningTranslate": "Потому что вводит причину чего-то", - "wordTranslate": "потому что" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6f5" - }, - "group": 0, - "page": 29, - "word": "pocket", - "image": "files/30_0598.jpg", - "audio": "files/30_0598.mp3", - "audioMeaning": "files/30_0598_meaning.mp3", - "audioExample": "files/30_0598_example.mp3", - "textMeaning": "A pocket is a part of your clothing where you can keep things.", - "textExample": "She always had her hands in her pockets.", - "transcription": "[pάkit]", - "__v": 0, - "textExampleTranslate": "Она всегда держала руки в карманах", - "textMeaningTranslate": "Карман - это часть вашей одежды, где вы можете хранить вещи", - "wordTranslate": "карман" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6f4" - }, - "group": 0, - "page": 29, - "word": "memory", - "image": "files/30_0597.jpg", - "audio": "files/30_0597.mp3", - "audioMeaning": "files/30_0597_meaning.mp3", - "audioExample": "files/30_0597_example.mp3", - "textMeaning": "A memory is something you remember.", - "textExample": "The memory of my first time in the city will always be the best.", - "transcription": "[méməri]", - "__v": 0, - "textExampleTranslate": "Память о моем первом пребывании в городе всегда будет лучшей", - "textMeaningTranslate": "Память - это то, что ты помнишь", - "wordTranslate": "память" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6f7" - }, - "group": 0, - "page": 29, - "word": "sale", - "image": "files/30_0600.jpg", - "audio": "files/30_0600.mp3", - "audioMeaning": "files/30_0600_meaning.mp3", - "audioExample": "files/30_0600_example.mp3", - "textMeaning": "If something is for sale, you can buy it.", - "textExample": "Everything for sale here is the same price.", - "transcription": "[seil]", - "__v": 0, - "textExampleTranslate": "Здесь все для продажи по одной и той же цене", - "textMeaningTranslate": "Если что-то продается, вы можете купить это", - "wordTranslate": "продажа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6f6" - }, - "group": 0, - "page": 29, - "word": "proper", - "image": "files/30_0599.jpg", - "audio": "files/30_0599.mp3", - "audioMeaning": "files/30_0599_meaning.mp3", - "audioExample": "files/30_0599_example.mp3", - "textMeaning": "If something is proper, it is right.", - "textExample": "It is not proper to throw your garbage on the road.", - "transcription": "[prɑ́pər]", - "__v": 0, - "textExampleTranslate": "Не стоит выбрасывать мусор на дорогу", - "textMeaningTranslate": "Если что-то правильно, это правильно", - "wordTranslate": "правильный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6fb" - }, - "group": 1, - "page": 0, - "word": "flower", - "image": "files/01_0604.jpg", - "audio": "files/01_0604.mp3", - "audioMeaning": "files/01_0604_meaning.mp3", - "audioExample": "files/01_0604_example.mp3", - "textMeaning": "A flower is the colored part of a plant.", - "textExample": "She gave pink flowers to her grandmother.", - "transcription": "[fáuər]", - "__v": 0, - "textExampleTranslate": "Она дала розовые цветы своей бабушке", - "textMeaningTranslate": "Цветок - это цветная часть растения", - "wordTranslate": "цветок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6fa" - }, - "group": 1, - "page": 0, - "word": "expensive", - "image": "files/01_0603.jpg", - "audio": "files/01_0603.mp3", - "audioMeaning": "files/01_0603_meaning.mp3", - "audioExample": "files/01_0603_example.mp3", - "textMeaning": "Expensive things cost a lot of money.", - "textExample": "My friend drives an expensive sports car.", - "transcription": "[ikspénsiv]", - "__v": 0, - "textExampleTranslate": "Мой друг водит дорогой спортивный автомобиль", - "textMeaningTranslate": "Дорогие вещи стоят больших денег", - "wordTranslate": "дорогой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6f9" - }, - "group": 1, - "page": 0, - "word": "east", - "image": "files/01_0602.jpg", - "audio": "files/01_0602.mp3", - "audioMeaning": "files/01_0602_meaning.mp3", - "audioExample": "files/01_0602_example.mp3", - "textMeaning": "East is the direction the sun rises from.", - "textExample": "My window looks to the east, so I can watch the sunrise every morning.", - "transcription": "[iːst]", - "__v": 0, - "textExampleTranslate": "Мое окно смотрит на восток, поэтому я могу наблюдать восход солнца каждое утро", - "textMeaningTranslate": "Восток - это направление, из которого восходит солнце", - "wordTranslate": "восток" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6fc" - }, - "group": 1, - "page": 0, - "word": "garden", - "image": "files/01_0605.jpg", - "audio": "files/01_0605.mp3", - "audioMeaning": "files/01_0605_meaning.mp3", - "audioExample": "files/01_0605_example.mp3", - "textMeaning": "A garden is an area where people grow plants.", - "textExample": "The garden is very bright and colorful in the spring.", - "transcription": "[gάːrdn]", - "__v": 0, - "textExampleTranslate": "Сад очень яркий и красочный весной", - "textMeaningTranslate": "Сад - это место, где люди выращивают растения", - "wordTranslate": "сад" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6fd" - }, - "group": 1, - "page": 0, - "word": "holiday", - "image": "files/01_0606.jpg", - "audio": "files/01_0606.mp3", - "audioMeaning": "files/01_0606_meaning.mp3", - "audioExample": "files/01_0606_example.mp3", - "textMeaning": "A holiday is a special day of celebration.", - "textExample": "Monday was a holiday, so there was no school or work.", - "transcription": "[hάlədèi]", - "__v": 0, - "textExampleTranslate": "Понедельник был выходным, поэтому не было школы или работы", - "textMeaningTranslate": "Праздник - особый день празднования", - "wordTranslate": "праздничный день" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6fe" - }, - "group": 1, - "page": 0, - "word": "many", - "image": "files/01_0607.jpg", - "audio": "files/01_0607.mp3", - "audioMeaning": "files/01_0607_meaning.mp3", - "audioExample": "files/01_0607_example.mp3", - "textMeaning": "Many shows that there is a large number of something.", - "textExample": "There are many people on the street.", - "transcription": "[méni]", - "__v": 0, - "textExampleTranslate": "На улице много людей", - "textMeaningTranslate": "Многие показывают, что есть много чего-то", - "wordTranslate": "многие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af700" - }, - "group": 1, - "page": 0, - "word": "mountain", - "image": "files/01_0609.jpg", - "audio": "files/01_0609.mp3", - "audioMeaning": "files/01_0609_meaning.mp3", - "audioExample": "files/01_0609_example.mp3", - "textMeaning": "A mountain is a very high hill.", - "textExample": "Mount Everest is the highest mountain in the world.", - "transcription": "[máuntən]", - "__v": 0, - "textExampleTranslate": "Гора Эверест - самая высокая гора в мире", - "textMeaningTranslate": "Гора - это очень высокий холм", - "wordTranslate": "гора" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af6ff" - }, - "group": 1, - "page": 0, - "word": "million", - "image": "files/01_0608.jpg", - "audio": "files/01_0608.mp3", - "audioMeaning": "files/01_0608_meaning.mp3", - "audioExample": "files/01_0608_example.mp3", - "textMeaning": "A million is another way to write the number 1,000,000.", - "textExample": "Almost 19 million people live in Delhi, India.", - "transcription": "[míljən]", - "__v": 0, - "textExampleTranslate": "Почти 19 миллионов человек живут в Дели, Индия", - "textMeaningTranslate": "Миллион - это еще один способ написать число 1 000 000", - "wordTranslate": "миллион" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af702" - }, - "group": 1, - "page": 0, - "word": "popular", - "image": "files/01_0611.jpg", - "audio": "files/01_0611.mp3", - "audioMeaning": "files/01_0611_meaning.mp3", - "audioExample": "files/01_0611_example.mp3", - "textMeaning": "A popular thing is liked by many people.", - "textExample": "These people are listening to a popular man speak.", - "transcription": "[pάpjulər]", - "__v": 0, - "textExampleTranslate": "Эти люди слушают разговор популярного человека", - "textMeaningTranslate": "Популярная вещь нравится многим людям", - "wordTranslate": "популярный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af701" - }, - "group": 1, - "page": 0, - "word": "place", - "image": "files/01_0610.jpg", - "audio": "files/01_0610.mp3", - "audioMeaning": "files/01_0610_meaning.mp3", - "audioExample": "files/01_0610_example.mp3", - "textMeaning": "A place is a space or area.", - "textExample": "A library is a place where people can read books.", - "transcription": "[pleis]", - "__v": 0, - "textExampleTranslate": "Библиотека - это место, где люди могут читать книги", - "textMeaningTranslate": "Место - это пространство или область", - "wordTranslate": "место" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af703" - }, - "group": 1, - "page": 0, - "word": "ski", - "image": "files/01_0612.jpg", - "audio": "files/01_0612.mp3", - "audioMeaning": "files/01_0612_meaning.mp3", - "audioExample": "files/01_0612_example.mp3", - "textMeaning": "To ski is to glide on long pieces of wood or metal over snow.", - "textExample": "The man likes to ski and goes every weekend.", - "transcription": "[skiː]", - "__v": 0, - "textExampleTranslate": "Мужчина любит кататься на лыжах и ездит каждые выходные", - "textMeaningTranslate": "Кататься на лыжах - значит скользить по длинным кускам дерева или металла по снегу", - "wordTranslate": "лыжи" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af704" - }, - "group": 1, - "page": 0, - "word": "tower", - "image": "files/01_0615.jpg", - "audio": "files/01_0615.mp3", - "audioMeaning": "files/01_0615_meaning.mp3", - "audioExample": "files/01_0615_example.mp3", - "textMeaning": "A tower is a tall, narrow building.", - "textExample": "This is a very famous tower in Italy.", - "transcription": "[táuər]", - "__v": 0, - "textExampleTranslate": "Это очень известная башня в Италии", - "textMeaningTranslate": "Башня - это высокое узкое здание", - "wordTranslate": "башня" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af705" - }, - "group": 1, - "page": 0, - "word": "such", - "image": "files/01_0613.jpg", - "audio": "files/01_0613.mp3", - "audioMeaning": "files/01_0613_meaning.mp3", - "audioExample": "files/01_0613_example.mp3", - "textMeaning": "Such means “like this”.", - "textExample": "I have never seen such a beautiful sunset before.", - "transcription": "[sʌtʃ]", - "__v": 0, - "textExampleTranslate": "Я никогда раньше не видел такой красивый закат", - "textMeaningTranslate": "Такие означает 'как это'", - "wordTranslate": "такой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af706" - }, - "group": 1, - "page": 0, - "word": "total", - "image": "files/01_0614.jpg", - "audio": "files/01_0614.mp3", - "audioMeaning": "files/01_0614_meaning.mp3", - "audioExample": "files/01_0614_example.mp3", - "textMeaning": "Total shows that everyone or everything has been counted.", - "textExample": ".The total cost of the items she bought was $52.", - "transcription": "[tóutl]", - "__v": 0, - "textExampleTranslate": "Общая стоимость предметов, которые она купила, составила 52 доллара", - "textMeaningTranslate": "Всего показывает, что все или все было посчитано", - "wordTranslate": "всего" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af707" - }, - "group": 1, - "page": 0, - "word": "town", - "image": "files/01_0616.jpg", - "audio": "files/01_0616.mp3", - "audioMeaning": "files/01_0616_meaning.mp3", - "audioExample": "files/01_0616_example.mp3", - "textMeaning": "A town is a place where people live and work, and is smaller than a city.", - "textExample": "I come from a small town, and everyone there knows each other.", - "transcription": "[taun]", - "__v": 0, - "textExampleTranslate": "Я из маленького городка, и все там знают друг друга", - "textMeaningTranslate": "Город - это место, где люди живут и работают, и он меньше города", - "wordTranslate": "город" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af708" - }, - "group": 1, - "page": 0, - "word": "train", - "image": "files/01_0617.jpg", - "audio": "files/01_0617.mp3", - "audioMeaning": "files/01_0617_meaning.mp3", - "audioExample": "files/01_0617_example.mp3", - "textMeaning": "A train is a group of railway cars connected together.", - "textExample": "The train is very fast, so we can get home in one hour.", - "transcription": "[trein]", - "__v": 0, - "textExampleTranslate": "Поезд очень быстрый, поэтому мы можем добраться домой за один час", - "textMeaningTranslate": "Поезд - это группа железнодорожных вагонов, соединенных вместе", - "wordTranslate": "поезд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af709" - }, - "group": 1, - "page": 0, - "word": "walk", - "image": "files/01_0618.jpg", - "audio": "files/01_0618.mp3", - "audioMeaning": "files/01_0618_meaning.mp3", - "audioExample": "files/01_0618_example.mp3", - "textMeaning": "To walk is to move forward using legs, but it is slower than running.", - "textExample": "The children walk to school in the morning.", - "transcription": "[wɔːk]", - "__v": 0, - "textExampleTranslate": "Дети гуляют в школу по утрам", - "textMeaningTranslate": "Ходить - значит двигаться вперед, используя ноги, но это медленнее, чем бег", - "wordTranslate": "ходить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af70a" - }, - "group": 1, - "page": 0, - "word": "world", - "image": "files/01_0620.jpg", - "audio": "files/01_0620.mp3", - "audioMeaning": "files/01_0620_meaning.mp3", - "audioExample": "files/01_0620_example.mp3", - "textMeaning": "The world is the Earth and all the people and things in it.", - "textExample": "What are the names of the five oceans of the world?", - "transcription": "[wəːrld]", - "__v": 0, - "textExampleTranslate": "Как называются пять океанов мира?", - "textMeaningTranslate": "Мир - это Земля и все люди и вещи в ней", - "wordTranslate": "мир" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af70b" - }, - "group": 1, - "page": 0, - "word": "watch", - "image": "files/01_0619.jpg", - "audio": "files/01_0619.mp3", - "audioMeaning": "files/01_0619_meaning.mp3", - "audioExample": "files/01_0619_example.mp3", - "textMeaning": "To watch is to look at someone or something for a period of time.", - "textExample": "My friend came over to watch a movie with me.", - "transcription": "[waʧ]", - "__v": 0, - "textExampleTranslate": "Мой друг пришел посмотреть фильм со мной", - "textMeaningTranslate": "Смотреть - значит смотреть на кого-то или что-то в течение определенного периода времени", - "wordTranslate": "смотреть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af70c" - }, - "group": 1, - "page": 1, - "word": "anxious", - "image": "files/02_0621.jpg", - "audio": "files/02_0621.mp3", - "audioMeaning": "files/02_0621_meaning.mp3", - "audioExample": "files/02_0621_example.mp3", - "textMeaning": "Anxious means feeling worried or nervous.", - "textExample": "She was anxious about not making her appointment on time.", - "transcription": "[ǽŋkʃəs]", - "__v": 0, - "textExampleTranslate": "Она беспокоилась о том, чтобы не договориться о встрече вовремя", - "textMeaningTranslate": "Тревожно означает чувствовать себя обеспокоенным или нервным", - "wordTranslate": "озабоченный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af70d" - }, - "group": 1, - "page": 1, - "word": "awful", - "image": "files/02_0622.jpg", - "audio": "files/02_0622.mp3", - "audioMeaning": "files/02_0622_meaning.mp3", - "audioExample": "files/02_0622_example.mp3", - "textMeaning": "An awful thing is very bad.", - "textExample": "Her performance last night was awful.", - "transcription": "[ɔ́ːfəl]", - "__v": 0, - "textExampleTranslate": "Ее выступление прошлой ночью было ужасным", - "textMeaningTranslate": "Ужасно очень плохо", - "wordTranslate": "ужасный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af70e" - }, - "group": 1, - "page": 1, - "word": "consist", - "image": "files/02_0623.jpg", - "audio": "files/02_0623.mp3", - "audioMeaning": "files/02_0623_meaning.mp3", - "audioExample": "files/02_0623_example.mp3", - "textMeaning": "To consist of certain is to be made of parts or things them.", - "textExample": "Today’s choices for lunch consisted of pizza, hamburgers, and hot dogs.", - "transcription": "[kənsíst]", - "__v": 0, - "textExampleTranslate": "Сегодняшний выбор на обед состоял из пиццы, гамбургеров и хот-догов", - "textMeaningTranslate": "Быть состоящим из определенного означает быть составленным из частей или вещей из них", - "wordTranslate": "состоят" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af70f" - }, - "group": 1, - "page": 1, - "word": "desire", - "image": "files/02_0624.jpg", - "audio": "files/02_0624.mp3", - "audioMeaning": "files/02_0624_meaning.mp3", - "audioExample": "files/02_0624_example.mp3", - "textMeaning": "To desire is to want something.", - "textExample": "My sister desires a big house and lots of money.", - "transcription": "[dizáiər]", - "__v": 0, - "textExampleTranslate": "Моя сестра хочет большой дом и много денег", - "textMeaningTranslate": "Желать - значит хотеть чего-то", - "wordTranslate": "желание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af710" - }, - "group": 1, - "page": 1, - "word": "eager", - "image": "files/02_0625.jpg", - "audio": "files/02_0625.mp3", - "audioMeaning": "files/02_0625_meaning.mp3", - "audioExample": "files/02_0625_example.mp3", - "textMeaning": "Eager shows excitement about something.", - "textExample": "The man was eager to talk about the good news.", - "transcription": "[íːgər]", - "__v": 0, - "textExampleTranslate": "Человек стремился говорить о хороших новостях", - "textMeaningTranslate": "Стремление показывает волнение о чем-то", - "wordTranslate": "нетерпеливый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af711" - }, - "group": 1, - "page": 1, - "word": "household", - "image": "files/02_0626.jpg", - "audio": "files/02_0626.mp3", - "audioMeaning": "files/02_0626_meaning.mp3", - "audioExample": "files/02_0626_example.mp3", - "textMeaning": "A household is all the people who live in one house.", - "textExample": "Our household is made up of my father, my mother, and me.", - "transcription": "[háushòuld]", - "__v": 0, - "textExampleTranslate": "Наша семья состоит из моего отца, моей матери и меня", - "textMeaningTranslate": "Домохозяйство - это все люди, которые живут в одном доме", - "wordTranslate": "домашнее хозяйство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af712" - }, - "group": 1, - "page": 1, - "word": "intent", - "image": "files/02_0627.jpg", - "audio": "files/02_0627.mp3", - "audioMeaning": "files/02_0627_meaning.mp3", - "audioExample": "files/02_0627_example.mp3", - "textMeaning": "An intent is a plan to do something.", - "textExample": "Her intent is to visit Italy next summer.", - "transcription": "[intént]", - "__v": 0, - "textExampleTranslate": "Ее намерение - посетить Италию следующим летом", - "textMeaningTranslate": "Намерение - это план что-то сделать", - "wordTranslate": "намерение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af713" - }, - "group": 1, - "page": 1, - "word": "landscape", - "image": "files/02_0628.jpg", - "audio": "files/02_0628.mp3", - "audioMeaning": "files/02_0628_meaning.mp3", - "audioExample": "files/02_0628_example.mp3", - "textMeaning": "A landscape is how an area of land looks.", - "textExample": "The landscape of the country is very green.", - "transcription": "[lǽndskèip]", - "__v": 0, - "textExampleTranslate": "Ландшафт страны очень зеленый", - "textMeaningTranslate": "Пейзаж - это то, как выглядит участок земли", - "wordTranslate": "пейзаж" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af714" - }, - "group": 1, - "page": 1, - "word": "lift", - "image": "files/02_0629.jpg", - "audio": "files/02_0629.mp3", - "audioMeaning": "files/02_0629_meaning.mp3", - "audioExample": "files/02_0629_example.mp3", - "textMeaning": "To lift something is to move it higher.", - "textExample": "The man tried to lift the box.", - "transcription": "[lift]", - "__v": 0, - "textExampleTranslate": "Человек пытался поднять коробку", - "textMeaningTranslate": "Поднять что-то значит поднять это выше", - "wordTranslate": "лифт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af716" - }, - "group": 1, - "page": 1, - "word": "lung", - "image": "files/02_0631.jpg", - "audio": "files/02_0631.mp3", - "audioMeaning": "files/02_0631_meaning.mp3", - "audioExample": "files/02_0631_example.mp3", - "textMeaning": "A lung is a part of the body that fills with air when breathing.", - "textExample": "Having strong lungs is necessary for a healthy life.", - "transcription": "[lʌŋ]", - "__v": 0, - "textExampleTranslate": "Наличие крепких легких необходимо для здоровой жизни", - "textMeaningTranslate": "Легкое - это часть тела, которая при дыхании наполняется воздухом", - "wordTranslate": "легкое" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af715" - }, - "group": 1, - "page": 1, - "word": "load", - "image": "files/02_0630.jpg", - "audio": "files/02_0630.mp3", - "audioMeaning": "files/02_0630_meaning.mp3", - "audioExample": "files/02_0630_example.mp3", - "textMeaning": "To load is to put objects into something.", - "textExample": "The man loaded the boxes into a truck.", - "transcription": "[loud]", - "__v": 0, - "textExampleTranslate": "Человек загрузил коробки в грузовик", - "textMeaningTranslate": "Загрузить значит положить объекты во что-то", - "wordTranslate": "нагрузка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af717" - }, - "group": 1, - "page": 1, - "word": "motion", - "image": "files/02_0632.jpg", - "audio": "files/02_0632.mp3", - "audioMeaning": "files/02_0632_meaning.mp3", - "audioExample": "files/02_0632_example.mp3", - "textMeaning": "A motion is a movement that someone makes.", - "textExample": "The police officer made a motion with his hand.", - "transcription": "[móuʃən]", - "__v": 0, - "textExampleTranslate": "Полицейский сделал движение рукой", - "textMeaningTranslate": "Движение - это движение, которое кто-то делает", - "wordTranslate": "движение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af718" - }, - "group": 1, - "page": 1, - "word": "pace", - "image": "files/02_0633.jpg", - "audio": "files/02_0633.mp3", - "audioMeaning": "files/02_0633_meaning.mp3", - "audioExample": "files/02_0633_example.mp3", - "textMeaning": "The pace of something is the speed at which it happens.", - "textExample": "I ran the race at a slower pace than my friend.", - "transcription": "[peis]", - "__v": 0, - "textExampleTranslate": "Я провел гонку медленнее, чем мой друг", - "textMeaningTranslate": "Скорость чего-то - это скорость, с которой это происходит", - "wordTranslate": "темп" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af719" - }, - "group": 1, - "page": 1, - "word": "polite", - "image": "files/02_0634.jpg", - "audio": "files/02_0634.mp3", - "audioMeaning": "files/02_0634_meaning.mp3", - "audioExample": "files/02_0634_example.mp3", - "textMeaning": "Polite shows a thoughtful and kind behavior.", - "textExample": "The boy was very polite; he behaved very thoughtfully.", - "transcription": "[pəláit]", - "__v": 0, - "textExampleTranslate": "Мальчик был очень вежлив, он вел себя очень вдумчиво", - "textMeaningTranslate": "Вежливый демонстрирует продуманное и доброе поведение", - "wordTranslate": "вежливый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af71b" - }, - "group": 1, - "page": 1, - "word": "possess", - "image": "files/02_0635.jpg", - "audio": "files/02_0635.mp3", - "audioMeaning": "files/02_0635_meaning.mp3", - "audioExample": "files/02_0635_example.mp3", - "textMeaning": "To possess something is to have it or own it.", - "textExample": "My uncle possesses three sheep, a chicken, a cow, and a dog.", - "transcription": "[pəzés]", - "__v": 0, - "textExampleTranslate": "У моего дяди три овцы, курица, корова и собака", - "textMeaningTranslate": "Иметь что-то - значит иметь это или владеть этим", - "wordTranslate": "обладают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af71a" - }, - "group": 1, - "page": 1, - "word": "remark", - "image": "files/02_0637.jpg", - "audio": "files/02_0637.mp3", - "audioMeaning": "files/02_0637_meaning.mp3", - "audioExample": "files/02_0637_example.mp3", - "textMeaning": "To remark is to say something.", - "textExample": "The teacher remarked on how quickly the students were learning.", - "transcription": "[rimɑ́ːrk]", - "__v": 0, - "textExampleTranslate": "Учитель отметил, как быстро учатся студенты", - "textMeaningTranslate": "Замечать - значит говорить что-то", - "wordTranslate": "замечание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af71c" - }, - "group": 1, - "page": 1, - "word": "rapidly", - "image": "files/02_0636.jpg", - "audio": "files/02_0636.mp3", - "audioMeaning": "files/02_0636_meaning.mp3", - "audioExample": "files/02_0636_example.mp3", - "textMeaning": "Rapidly means happening very fast.", - "textExample": "The train moved rapidly on the tracks.", - "transcription": "[rǽpidli]", - "__v": 0, - "textExampleTranslate": "Поезд быстро двигался по рельсам", - "textMeaningTranslate": "Быстро значит происходить очень быстро", - "wordTranslate": "быстро" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af71d" - }, - "group": 1, - "page": 1, - "word": "seek", - "image": "files/02_0638.jpg", - "audio": "files/02_0638.mp3", - "audioMeaning": "files/02_0638_meaning.mp3", - "audioExample": "files/02_0638_example.mp3", - "textMeaning": "To seek is to look for something.", - "textExample": "If I have a problem, I seek my sister’s advice.", - "transcription": "[siːk]", - "__v": 0, - "textExampleTranslate": "Если у меня есть проблема, я обращаюсь к совету моей сестры", - "textMeaningTranslate": "Искать значит искать что-то", - "wordTranslate": "стремиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af71e" - }, - "group": 1, - "page": 1, - "word": "shine", - "image": "files/02_0639.jpg", - "audio": "files/02_0639.mp3", - "audioMeaning": "files/02_0639_meaning.mp3", - "audioExample": "files/02_0639_example.mp3", - "textMeaning": "To shine is to make a bright light.", - "textExample": "The candles are shining in the dark room.", - "transcription": "[ʃain]", - "__v": 0, - "textExampleTranslate": "В темной комнате светятся свечи", - "textMeaningTranslate": "Светить - это делать яркий свет", - "wordTranslate": "сияние" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af71f" - }, - "group": 1, - "page": 2, - "word": "battle", - "image": "files/03_0642.jpg", - "audio": "files/03_0642.mp3", - "audioMeaning": "files/03_0642_meaning.mp3", - "audioExample": "files/03_0642_example.mp3", - "textMeaning": "A battle is a fight between two armies during a war.", - "textExample": "The battle lasted for many days.", - "transcription": "[bǽtl]", - "__v": 0, - "textExampleTranslate": "Битва длилась много дней", - "textMeaningTranslate": "Битва - это битва между двумя армиями во время войны", - "wordTranslate": "боевой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af720" - }, - "group": 1, - "page": 1, - "word": "spill", - "image": "files/02_0640.jpg", - "audio": "files/02_0640.mp3", - "audioMeaning": "files/02_0640_meaning.mp3", - "audioExample": "files/02_0640_example.mp3", - "textMeaning": "To spill is to accidentally make something fall out of its container.", - "textExample": "I spilled the coffee on the table.", - "transcription": "[spil]", - "__v": 0, - "textExampleTranslate": "Я пролил кофе на стол", - "textMeaningTranslate": "Разлить - это случайно выпустить что-то из контейнера", - "wordTranslate": "проливать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af721" - }, - "group": 1, - "page": 2, - "word": "arrow", - "image": "files/03_0641.jpg", - "audio": "files/03_0641.mp3", - "audioMeaning": "files/03_0641_meaning.mp3", - "audioExample": "files/03_0641_example.mp3", - "textMeaning": "An arrow is a thin, straight stick shot from a bow.", - "textExample": "The arrow flew through the air and hit the target.", - "transcription": "[ǽrou]", - "__v": 0, - "textExampleTranslate": "Стрела взлетела в воздух и поразила цель", - "textMeaningTranslate": "Стрела - это тонкий прямой выстрел из лука", - "wordTranslate": "стрела" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af722" - }, - "group": 1, - "page": 2, - "word": "bow", - "image": "files/03_0643.jpg", - "audio": "files/03_0643.mp3", - "audioMeaning": "files/03_0643_meaning.mp3", - "audioExample": "files/03_0643_example.mp3", - "textMeaning": "A bow is a weapon made of curved wood and string that shoots arrows.", - "textExample": "He went hunting with a bow and arrow.", - "transcription": "[bou]", - "__v": 0, - "textExampleTranslate": "Он пошел на охоту с луком и стрелами", - "textMeaningTranslate": "Лук - это оружие из изогнутого дерева и струны, стреляющее стрелами", - "wordTranslate": "лук" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af723" - }, - "group": 1, - "page": 2, - "word": "brave", - "image": "files/03_0644.jpg", - "audio": "files/03_0644.mp3", - "audioMeaning": "files/03_0644_meaning.mp3", - "audioExample": "files/03_0644_example.mp3", - "textMeaning": "A brave person is not afraid to face pain or danger.", - "textExample": "The brave firefighter saved the girl from the burning building.", - "transcription": "[breiv]", - "__v": 0, - "textExampleTranslate": "Отважный пожарник спас девушку из горящего здания", - "textMeaningTranslate": "Смелый человек не боится столкнуться с болью или опасностью", - "wordTranslate": "храбрый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af724" - }, - "group": 1, - "page": 2, - "word": "chief", - "image": "files/03_0645.jpg", - "audio": "files/03_0645.mp3", - "audioMeaning": "files/03_0645_meaning.mp3", - "audioExample": "files/03_0645_example.mp3", - "textMeaning": "A chief is the leader of a group of people.", - "textExample": "The chief led the people through the mountains.", - "transcription": "[tʃiːf]", - "__v": 0, - "textExampleTranslate": "Шеф вел людей через горы", - "textMeaningTranslate": "Шеф - это лидер группы людей", - "wordTranslate": "главный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af725" - }, - "group": 1, - "page": 2, - "word": "disadvantage", - "image": "files/03_0646.jpg", - "audio": "files/03_0646.mp3", - "audioMeaning": "files/03_0646_meaning.mp3", - "audioExample": "files/03_0646_example.mp3", - "textMeaning": "A disadvantage is a situation that makes it hard to do something.", - "textExample": "Mike had a disadvantage in the race since he hurt his knee.", - "transcription": "[dìsədvǽntidʒ]", - "__v": 0, - "textExampleTranslate": "У Майка был недостаток в гонке, так как он повредил колено", - "textMeaningTranslate": "Недостатком является ситуация, которая затрудняет что-то делать", - "wordTranslate": "недостаток" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af726" - }, - "group": 1, - "page": 2, - "word": "enemy", - "image": "files/03_0647.jpg", - "audio": "files/03_0647.mp3", - "audioMeaning": "files/03_0647_meaning.mp3", - "audioExample": "files/03_0647_example.mp3", - "textMeaning": "An enemy is a country that is fighting another country during a war.", - "textExample": "The enemy prepared to attack the kingdom.", - "transcription": "[énəmi]", - "__v": 0, - "textExampleTranslate": "Враг готов атаковать королевство", - "textMeaningTranslate": "Враг - это страна, которая сражается с другой страной во время войны", - "wordTranslate": "враг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af727" - }, - "group": 1, - "page": 2, - "word": "entrance", - "image": "files/03_0648.jpg", - "audio": "files/03_0648.mp3", - "audioMeaning": "files/03_0648_meaning.mp3", - "audioExample": "files/03_0648_example.mp3", - "textMeaning": "An entrance is a place where someone can enter an area.", - "textExample": "The gate was locked, so Bill had to find a different entrance.", - "transcription": "[éntrəns]", - "__v": 0, - "textExampleTranslate": "Ворота были заперты, поэтому Биллу пришлось искать другой вход", - "textMeaningTranslate": "Вход - это место, где кто-то может войти в область", - "wordTranslate": "вход" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af728" - }, - "group": 1, - "page": 2, - "word": "hardly", - "image": "files/03_0649.jpg", - "audio": "files/03_0649.mp3", - "audioMeaning": "files/03_0649_meaning.mp3", - "audioExample": "files/03_0649_example.mp3", - "textMeaning": "Hardly shows that something happens in a very small way.", - "textExample": "I hardly saw the concert since I had to leave early.", - "transcription": "[hɑ́ːrdli]", - "__v": 0, - "textExampleTranslate": "Я едва видел концерт, так как мне пришлось уйти рано", - "textMeaningTranslate": "Вряд ли показывает, что что-то происходит очень маленьким образом", - "wordTranslate": "едва" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af729" - }, - "group": 1, - "page": 2, - "word": "intend", - "image": "files/03_0650.jpg", - "audio": "files/03_0650.mp3", - "audioMeaning": "files/03_0650_meaning.mp3", - "audioExample": "files/03_0650_example.mp3", - "textMeaning": "To intend to do something means to plan to do it.", - "textExample": "I intend to finish college in three years.", - "transcription": "[inténd]", - "__v": 0, - "textExampleTranslate": "Я намерен закончить колледж через три года", - "textMeaningTranslate": "Намереваться что-то сделать - значит планировать это", - "wordTranslate": "намереваться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af72a" - }, - "group": 1, - "page": 2, - "word": "log", - "image": "files/03_0652.jpg", - "audio": "files/03_0652.mp3", - "audioMeaning": "files/03_0652_meaning.mp3", - "audioExample": "files/03_0652_example.mp3", - "textMeaning": "A log is a thick piece of wood that is cut from a tree.", - "textExample": "The fire was too small, so we added another log to it.", - "transcription": "[lɔːg]", - "__v": 0, - "textExampleTranslate": "Огонь был слишком мал, поэтому мы добавили еще одно бревно", - "textMeaningTranslate": "Бревно - это толстый кусок дерева, вырезанный из дерева", - "wordTranslate": "журнал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af72b" - }, - "group": 1, - "page": 2, - "word": "military", - "image": "files/03_0653.jpg", - "audio": "files/03_0653.mp3", - "audioMeaning": "files/03_0653_meaning.mp3", - "audioExample": "files/03_0653_example.mp3", - "textMeaning": "The military is the armed forces of a country.", - "textExample": "I joined the military after I finished high school.", - "transcription": "[mílitèri]", - "__v": 0, - "textExampleTranslate": "Я поступил на военную службу после окончания средней школы", - "textMeaningTranslate": "Военные - это вооруженные силы страны", - "wordTranslate": "военные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af72c" - }, - "group": 1, - "page": 2, - "word": "laughter", - "image": "files/03_0651.jpg", - "audio": "files/03_0651.mp3", - "audioMeaning": "files/03_0651_meaning.mp3", - "audioExample": "files/03_0651_example.mp3", - "textMeaning": "Laughter is the sound produced by laughing about something funny.", - "textExample": "Susan’s joke made her classmates burst into laughter.", - "transcription": "[lǽftəːr]", - "__v": 0, - "textExampleTranslate": "Шутка Сьюзен заставила ее одноклассников разразиться смехом", - "textMeaningTranslate": "Смех - это звук, издаваемый смехом над чем-то смешным", - "wordTranslate": "смех" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af72e" - }, - "group": 1, - "page": 2, - "word": "secure", - "image": "files/03_0655.jpg", - "audio": "files/03_0655.mp3", - "audioMeaning": "files/03_0655_meaning.mp3", - "audioExample": "files/03_0655_example.mp3", - "textMeaning": "To secure something means to get it after a lot of effort.", - "textExample": "I was able to secure a good grade on my test after weeks of studying.", - "transcription": "[sikjúəːr]", - "__v": 0, - "textExampleTranslate": "Я смог получить хорошую оценку на экзамене после нескольких недель обучения", - "textMeaningTranslate": "Обеспечить что-то - значит получить это после больших усилий", - "wordTranslate": "безопасный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af72d" - }, - "group": 1, - "page": 2, - "word": "obey", - "image": "files/03_0654.jpg", - "audio": "files/03_0654.mp3", - "audioMeaning": "files/03_0654_meaning.mp3", - "audioExample": "files/03_0654_example.mp3", - "textMeaning": "To obey means to follow what a law or a person says to do.", - "textExample": "My little sister did not obey my mother. Now, she is in trouble.", - "transcription": "[oubéi]", - "__v": 0, - "textExampleTranslate": "Моя младшая сестра не подчинялась моей матери. Теперь она в беде", - "textMeaningTranslate": "Повиноваться - значит следовать тому, что закон или человек говорит делать", - "wordTranslate": "подчиняться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af72f" - }, - "group": 1, - "page": 2, - "word": "steady", - "image": "files/03_0656.jpg", - "audio": "files/03_0656.mp3", - "audioMeaning": "files/03_0656_meaning.mp3", - "audioExample": "files/03_0656_example.mp3", - "textMeaning": "Steady shows that someone or something does not change much.", - "textExample": "The problem was hard, but she remained steady and solved it.", - "transcription": "[stédi]", - "__v": 0, - "textExampleTranslate": "Проблема была трудной, но она оставалась устойчивой и решила ее", - "textMeaningTranslate": "Устойчиво показывает, что кто-то или что-то не сильно меняется", - "wordTranslate": "стабильный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af730" - }, - "group": 1, - "page": 2, - "word": "trust", - "image": "files/03_0657.jpg", - "audio": "files/03_0657.mp3", - "audioMeaning": "files/03_0657_meaning.mp3", - "audioExample": "files/03_0657_example.mp3", - "textMeaning": "To trust is to believe that someone is honest and will do what is right.", - "textExample": "I trust my friends; they don’t tell my secrets to other people.", - "transcription": "[trʌst]", - "__v": 0, - "textExampleTranslate": "Я доверяю своим друзьям; они не рассказывают мои секреты другим людям", - "textMeaningTranslate": "Верить - значит верить, что кто-то честен и будет делать то, что правильно", - "wordTranslate": "доверять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af731" - }, - "group": 1, - "page": 2, - "word": "twist", - "image": "files/03_0658.jpg", - "audio": "files/03_0658.mp3", - "audioMeaning": "files/03_0658_meaning.mp3", - "audioExample": "files/03_0658_example.mp3", - "textMeaning": "When we twist something we turn it around and around.", - "textExample": "She twisted the spaghetti around her fork.", - "transcription": "[twist]", - "__v": 0, - "textExampleTranslate": "Она крутила спагетти вокруг своей вилки", - "textMeaningTranslate": "Когда мы крутим что-то, мы поворачиваем это вокруг и вокруг", - "wordTranslate": "твист" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af732" - }, - "group": 1, - "page": 2, - "word": "unless", - "image": "files/03_0659.jpg", - "audio": "files/03_0659.mp3", - "audioMeaning": "files/03_0659_meaning.mp3", - "audioExample": "files/03_0659_example.mp3", - "textMeaning": "Unless means if not or except when.", - "textExample": "Unless you clean your room, you cannot play with your friends.", - "transcription": "[ənlés]", - "__v": 0, - "textExampleTranslate": "Если вы не убираете свою комнату, вы не можете играть с друзьями", - "textMeaningTranslate": "Если не означает, если нет или кроме, когда", - "wordTranslate": "если не" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af733" - }, - "group": 1, - "page": 2, - "word": "weapon", - "image": "files/03_0660.jpg", - "audio": "files/03_0660.mp3", - "audioMeaning": "files/03_0660_meaning.mp3", - "audioExample": "files/03_0660_example.mp3", - "textMeaning": "A weapon is an object used to hurt people.", - "textExample": "Swords have been used as weapons for thousands of years.", - "transcription": "[wépən]", - "__v": 0, - "textExampleTranslate": "Мечи использовались в качестве оружия на протяжении тысячелетий", - "textMeaningTranslate": "Оружие - это объект, используемый для причинения вреда людям", - "wordTranslate": "оружие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af734" - }, - "group": 1, - "page": 3, - "word": "chest", - "image": "files/04_0661.jpg", - "audio": "files/04_0661.mp3", - "audioMeaning": "files/04_0661_meaning.mp3", - "audioExample": "files/04_0661_example.mp3", - "textMeaning": "The chest is the front part of a body between the neck and stomach.", - "textExample": "The water in the lake was as high as my chest.", - "transcription": "[tʃest]", - "__v": 0, - "textExampleTranslate": "Вода в озере была так же высока, как моя грудь", - "textMeaningTranslate": "Грудь - это передняя часть тела между шеей и животом", - "wordTranslate": "грудь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af735" - }, - "group": 1, - "page": 3, - "word": "confidence", - "image": "files/04_0662.jpg", - "audio": "files/04_0662.mp3", - "audioMeaning": "files/04_0662_meaning.mp3", - "audioExample": "files/04_0662_example.mp3", - "textMeaning": "Confidence is a feeling of certainty or ability.", - "textExample": "I have confidence that I did well on the test.", - "transcription": "[kɑ́nfidəns]", - "__v": 0, - "textExampleTranslate": "У меня есть уверенность, что я хорошо справился с тестом", - "textMeaningTranslate": "Уверенность - это чувство уверенности или способности", - "wordTranslate": "доверие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af736" - }, - "group": 1, - "page": 3, - "word": "consequence", - "image": "files/04_0663.jpg", - "audio": "files/04_0663.mp3", - "audioMeaning": "files/04_0663_meaning.mp3", - "audioExample": "files/04_0663_example.mp3", - "textMeaning": "A consequence is a result of a choice or action.", - "textExample": "As a consequence of missing my bus, I had to find another way to work.", - "transcription": "[kɑ́nsikwèns]", - "__v": 0, - "textExampleTranslate": "Из-за пропавшего автобуса мне пришлось искать другой способ работы", - "textMeaningTranslate": "Следствие - это результат выбора или действия", - "wordTranslate": "следствие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af737" - }, - "group": 1, - "page": 3, - "word": "disaster", - "image": "files/04_0664.jpg", - "audio": "files/04_0664.mp3", - "audioMeaning": "files/04_0664_meaning.mp3", - "audioExample": "files/04_0664_example.mp3", - "textMeaning": "A disaster is a really bad thing that happens.", - "textExample": "When the car crashed, it was a disaster.", - "transcription": "[dizǽstər]", - "__v": 0, - "textExampleTranslate": "Когда машина разбилась, это была катастрофа", - "textMeaningTranslate": "Бедствие - это действительно плохая вещь, которая случается", - "wordTranslate": "стихийное бедствие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af738" - }, - "group": 1, - "page": 3, - "word": "disturb", - "image": "files/04_0665.jpg", - "audio": "files/04_0665.mp3", - "audioMeaning": "files/04_0665_meaning.mp3", - "audioExample": "files/04_0665_example.mp3", - "textMeaning": "To disturb someone means to upset that person.", - "textExample": "The loud noise disturbed me while I was working.", - "transcription": "[distə́ːrb]", - "__v": 0, - "textExampleTranslate": "Громкий шум беспокоил меня, когда я работал", - "textMeaningTranslate": "Беспокоить кого-то значит расстроить этого человека", - "wordTranslate": "беспокоить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af73a" - }, - "group": 1, - "page": 3, - "word": "impress", - "image": "files/04_0668.jpg", - "audio": "files/04_0668.mp3", - "audioMeaning": "files/04_0668_meaning.mp3", - "audioExample": "files/04_0668_example.mp3", - "textMeaning": "To impress someone means to make that person proud or amazed.", - "textExample": "He was able to impress the girls with his new dance.", - "transcription": "[imprés]", - "__v": 0, - "textExampleTranslate": "Он смог впечатлить девушек своим новым танцем", - "textMeaningTranslate": "Произвести на кого-то впечатление - значит сделать его гордым или удивленным", - "wordTranslate": "произвести впечатление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af739" - }, - "group": 1, - "page": 3, - "word": "estimate", - "image": "files/04_0666.jpg", - "audio": "files/04_0666.mp3", - "audioMeaning": "files/04_0666_meaning.mp3", - "audioExample": "files/04_0666_example.mp3", - "textMeaning": "To estimate something means to make a guess about it.", - "textExample": "The boy estimated that he was one meter tall.", - "transcription": "[éstəmèit]", - "__v": 0, - "textExampleTranslate": "Мальчик подсчитал, что он был один метр в высоту", - "textMeaningTranslate": "Оценить что-то значит догадаться об этом", - "wordTranslate": "оценить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af73b" - }, - "group": 1, - "page": 3, - "word": "honor", - "image": "files/04_0667.jpg", - "audio": "files/04_0667.mp3", - "audioMeaning": "files/04_0667_meaning.mp3", - "audioExample": "files/04_0667_example.mp3", - "textMeaning": "To honor is to show respect for someone or something.", - "textExample": "Each year we honor those who died fighting for their country.", - "transcription": "[ɑ́nər]", - "__v": 0, - "textExampleTranslate": "Каждый год мы чтим тех, кто погиб, сражаясь за свою страну", - "textMeaningTranslate": "Честь - это проявление уважения к кому-то или чему-либо", - "wordTranslate": "честь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af73c" - }, - "group": 1, - "page": 3, - "word": "narrow", - "image": "files/04_0669.jpg", - "audio": "files/04_0669.mp3", - "audioMeaning": "files/04_0669_meaning.mp3", - "audioExample": "files/04_0669_example.mp3", - "textMeaning": "A narrow object or space is thin, not wide.", - "textExample": "The bridge is too narrow for a car to drive across it.", - "transcription": "[nǽrou]", - "__v": 0, - "textExampleTranslate": "Мост слишком узкий, чтобы по нему могла проехать машина", - "textMeaningTranslate": "Узкий предмет или пространство тонкое, а не широкое", - "wordTranslate": "узкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af73e" - }, - "group": 1, - "page": 3, - "word": "rough", - "image": "files/04_0671.jpg", - "audio": "files/04_0671.mp3", - "audioMeaning": "files/04_0671_meaning.mp3", - "audioExample": "files/04_0671_example.mp3", - "textMeaning": "A rough thing is not even or smooth.", - "textExample": "The rough ground hurt my feet.", - "transcription": "[rʌf]", - "__v": 0, - "textExampleTranslate": "Грубая земля повредила мои ноги", - "textMeaningTranslate": "Грубая вещь не ровная или гладкая", - "wordTranslate": "грубый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af73d" - }, - "group": 1, - "page": 3, - "word": "pale", - "image": "files/04_0670.jpg", - "audio": "files/04_0670.mp3", - "audioMeaning": "files/04_0670_meaning.mp3", - "audioExample": "files/04_0670_example.mp3", - "textMeaning": "Pale means that a color or thing is not bright.", - "textExample": "The girl’s skin was very pale.", - "transcription": "[peil]", - "__v": 0, - "textExampleTranslate": "Кожа девушки была очень бледной", - "textMeaningTranslate": "Бледный означает, что цвет или вещь не яркие", - "wordTranslate": "бледный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af73f" - }, - "group": 1, - "page": 3, - "word": "satisfy", - "image": "files/04_0672.jpg", - "audio": "files/04_0672.mp3", - "audioMeaning": "files/04_0672_meaning.mp3", - "audioExample": "files/04_0672_example.mp3", - "textMeaning": "To satisfy someone means to make that person happy.", - "textExample": "It will satisfy my teacher if I finish all my homework.", - "transcription": "[sǽtisfài]", - "__v": 0, - "textExampleTranslate": "Это удовлетворит моего учителя, если я закончу всю домашнюю работу", - "textMeaningTranslate": "Удовлетворить кого-то - значит сделать этого человека счастливым", - "wordTranslate": "удовлетворяют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af740" - }, - "group": 1, - "page": 3, - "word": "scream", - "image": "files/04_0673.jpg", - "audio": "files/04_0673.mp3", - "audioMeaning": "files/04_0673_meaning.mp3", - "audioExample": "files/04_0673_example.mp3", - "textMeaning": "To scream means to make a loud noise with your mouth.", - "textExample": "The girl saw a spider and screamed.", - "transcription": "[skriːm]", - "__v": 0, - "textExampleTranslate": "Девушка увидела паука и закричала", - "textMeaningTranslate": "Кричать - значит громко шуметь ртом", - "wordTranslate": "кричать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af741" - }, - "group": 1, - "page": 3, - "word": "sensitive", - "image": "files/04_0674.jpg", - "audio": "files/04_0674.mp3", - "audioMeaning": "files/04_0674_meaning.mp3", - "audioExample": "files/04_0674_example.mp3", - "textMeaning": "A sensitive person or thing is easily hurt.", - "textExample": "My teeth are sensitive to cold things.", - "transcription": "[sénsətiv]", - "__v": 0, - "textExampleTranslate": "Мои зубы чувствительны к холодным вещам", - "textMeaningTranslate": "Чувствительный человек или вещь легко болят", - "wordTranslate": "чувствительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af742" - }, - "group": 1, - "page": 3, - "word": "shade", - "image": "files/04_0675.jpg", - "audio": "files/04_0675.mp3", - "audioMeaning": "files/04_0675_meaning.mp3", - "audioExample": "files/04_0675_example.mp3", - "textMeaning": "Shade is a dark area that something makes when it blocks the sun.", - "textExample": "It was hot outside, so the boy sat in the shade of a tree.", - "transcription": "[ʃeid]", - "__v": 0, - "textExampleTranslate": "На улице было жарко, поэтому мальчик сидел в тени дерева", - "textMeaningTranslate": "Тень - это темная область, которую что-то создает, когда она блокирует солнце", - "wordTranslate": "тень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af744" - }, - "group": 1, - "page": 3, - "word": "supplement", - "image": "files/04_0677.jpg", - "audio": "files/04_0677.mp3", - "audioMeaning": "files/04_0677_meaning.mp3", - "audioExample": "files/04_0677_example.mp3", - "textMeaning": "To supplement something is to add something else to it in a good way.", - "textExample": "He supplements his diet with fresh fruits.", - "transcription": "[sʌ́pləmənt]", - "__v": 0, - "textExampleTranslate": "Он дополняет свою диету свежими фруктами", - "textMeaningTranslate": "Пополнить что-то - значит добавить что-то к этому хорошим способом", - "wordTranslate": "дополнение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af743" - }, - "group": 1, - "page": 3, - "word": "strength", - "image": "files/04_0676.jpg", - "audio": "files/04_0676.mp3", - "audioMeaning": "files/04_0676_meaning.mp3", - "audioExample": "files/04_0676_example.mp3", - "textMeaning": "Strength is the ability to do hard work or exercise.", - "textExample": "Eating good food builds up your strength.", - "transcription": "[streŋkθ]", - "__v": 0, - "textExampleTranslate": "Еда хорошей пищи укрепляет ваши силы", - "textMeaningTranslate": "Сила - это способность выполнять тяжелую работу или упражнения", - "wordTranslate": "прочность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af745" - }, - "group": 1, - "page": 3, - "word": "terror", - "image": "files/04_0678.jpg", - "audio": "files/04_0678.mp3", - "audioMeaning": "files/04_0678_meaning.mp3", - "audioExample": "files/04_0678_example.mp3", - "textMeaning": "Terror is a feeling of very strong fear.", - "textExample": "I felt a sense of terror when the tiger chased me.", - "transcription": "[térəːr]", - "__v": 0, - "textExampleTranslate": "Я чувствовал ужас, когда тигр преследовал меня", - "textMeaningTranslate": "Террор - это чувство очень сильного страха", - "wordTranslate": "террор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af746" - }, - "group": 1, - "page": 3, - "word": "threat", - "image": "files/04_0679.jpg", - "audio": "files/04_0679.mp3", - "audioMeaning": "files/04_0679_meaning.mp3", - "audioExample": "files/04_0679_example.mp3", - "textMeaning": "A threat is something bad that might happen.", - "textExample": "Due to the dark clouds, there was a threat of a bad storm.", - "transcription": "[ɵret]", - "__v": 0, - "textExampleTranslate": "Из-за темных облаков возникла угроза сильного шторма", - "textMeaningTranslate": "Угроза - это нечто плохое, что может случиться", - "wordTranslate": "угроза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af747" - }, - "group": 1, - "page": 3, - "word": "victim", - "image": "files/04_0680.jpg", - "audio": "files/04_0680.mp3", - "audioMeaning": "files/04_0680_meaning.mp3", - "audioExample": "files/04_0680_example.mp3", - "textMeaning": "A victim is a person who is hurt by a bad action.", - "textExample": "I was a victim of a robbery.", - "transcription": "[víktim]", - "__v": 0, - "textExampleTranslate": "Я был жертвой грабежа", - "textMeaningTranslate": "Жертва - это человек, который пострадал от плохого поступка", - "wordTranslate": "потерпевший" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af748" - }, - "group": 1, - "page": 4, - "word": "angle", - "image": "files/05_0682.jpg", - "audio": "files/05_0682.mp3", - "audioMeaning": "files/05_0682_meaning.mp3", - "audioExample": "files/05_0682_example.mp3", - "textMeaning": "An angle is the direction from which something is looked at.", - "textExample": "The giraffe turned its head to see from another angle.", - "transcription": "[ǽŋgl]", - "__v": 0, - "textExampleTranslate": "Жираф повернул голову, чтобы увидеть под другим углом", - "textMeaningTranslate": "Угол - это направление, с которого на что-то смотрят", - "wordTranslate": "угол" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af749" - }, - "group": 1, - "page": 4, - "word": "ancestor", - "image": "files/05_0681.jpg", - "audio": "files/05_0681.mp3", - "audioMeaning": "files/05_0681_meaning.mp3", - "audioExample": "files/05_0681_example.mp3", - "textMeaning": "An ancestor is a family member from the past.", - "textExample": "My ancestors came from Germany.", - "transcription": "[ǽnsestər]", - "__v": 0, - "textExampleTranslate": "Мои предки приехали из Германии", - "textMeaningTranslate": "Предок - это член семьи из прошлого", - "wordTranslate": "предок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af74a" - }, - "group": 1, - "page": 4, - "word": "boot", - "image": "files/05_0683.jpg", - "audio": "files/05_0683.mp3", - "audioMeaning": "files/05_0683_meaning.mp3", - "audioExample": "files/05_0683_example.mp3", - "textMeaning": "A boot is a heavy shoe that goes up above a person’s ankle.", - "textExample": "He wore boots so that his feet wouldn’t get wet.", - "transcription": "[buːt]", - "__v": 0, - "textExampleTranslate": "Он носил ботинки, чтобы ноги не промокли", - "textMeaningTranslate": "Ботинок - это тяжелый ботинок, который поднимается выше лодыжки человека", - "wordTranslate": "загрузка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af74b" - }, - "group": 1, - "page": 4, - "word": "border", - "image": "files/05_0684.jpg", - "audio": "files/05_0684.mp3", - "audioMeaning": "files/05_0684_meaning.mp3", - "audioExample": "files/05_0684_example.mp3", - "textMeaning": "A border is the edge of an area.", - "textExample": "The postcard had a pretty green border of pine needles.", - "transcription": "[bɔ́ːrdər]", - "__v": 0, - "textExampleTranslate": "У открытки была довольно зеленая кайма из хвои", - "textMeaningTranslate": "Граница - это край области", - "wordTranslate": "граница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af74c" - }, - "group": 1, - "page": 4, - "word": "congratulate", - "image": "files/05_0685.jpg", - "audio": "files/05_0685.mp3", - "audioMeaning": "files/05_0685_meaning.mp3", - "audioExample": "files/05_0685_example.mp3", - "textMeaning": "To congratulate someone is to tell them that you are happy for them.", - "textExample": "Bill and Angela congratulated each other on a job well done.", - "transcription": "[kəngrǽʧulèit]", - "__v": 0, - "textExampleTranslate": "Билл и Анжела поздравили друг друга с хорошо выполненной работой", - "textMeaningTranslate": "Поздравить кого-то - значит сказать им, что вы счастливы за них", - "wordTranslate": "поздравлять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af74d" - }, - "group": 1, - "page": 4, - "word": "frame", - "image": "files/05_0686.jpg", - "audio": "files/05_0686.mp3", - "audioMeaning": "files/05_0686_meaning.mp3", - "audioExample": "files/05_0686_example.mp3", - "textMeaning": "A frame is a border for a picture or mirror.", - "textExample": "I have to get a frame for my friend’s picture.", - "transcription": "[freim]", - "__v": 0, - "textExampleTranslate": "Я должен получить рамку для картины моего друга", - "textMeaningTranslate": "Рамка - это рамка для картины или зеркала", - "wordTranslate": "рамка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af74e" - }, - "group": 1, - "page": 4, - "word": "heaven", - "image": "files/05_0687.jpg", - "audio": "files/05_0687.mp3", - "audioMeaning": "files/05_0687_meaning.mp3", - "audioExample": "files/05_0687_example.mp3", - "textMeaning": "Heaven is the place that some believe people go to after they die.", - "textExample": "When I die, I hope that I go to heaven.", - "transcription": "[hévən]", - "__v": 0, - "textExampleTranslate": "Когда я умру, я надеюсь, что я попаду на небеса", - "textMeaningTranslate": "Небеса - это место, куда некоторые верят, что люди попадают после смерти", - "wordTranslate": "небо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af74f" - }, - "group": 1, - "page": 4, - "word": "incredible", - "image": "files/05_0688.jpg", - "audio": "files/05_0688.mp3", - "audioMeaning": "files/05_0688_meaning.mp3", - "audioExample": "files/05_0688_example.mp3", - "textMeaning": "An incredible thing is so amazing that it is hard to believe.", - "textExample": "I have an incredible story to tell you about my vacation.", - "transcription": "[inkrédəbl]", - "__v": 0, - "textExampleTranslate": "У меня есть невероятная история, чтобы рассказать вам о моем отпуске", - "textMeaningTranslate": "Невероятная вещь настолько удивительна, что в нее трудно поверить", - "wordTranslate": "невероятное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af750" - }, - "group": 1, - "page": 4, - "word": "legend", - "image": "files/05_0689.jpg", - "audio": "files/05_0689.mp3", - "audioMeaning": "files/05_0689_meaning.mp3", - "audioExample": "files/05_0689_example.mp3", - "textMeaning": "A legend is a story from the past.", - "textExample": "There is a well-known legend about a king and his queen.", - "transcription": "[lédʒənd]", - "__v": 0, - "textExampleTranslate": "Существует известная легенда о короле и его королеве", - "textMeaningTranslate": "Легенда - это история из прошлого", - "wordTranslate": "легенда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af751" - }, - "group": 1, - "page": 4, - "word": "praise", - "image": "files/05_0690.jpg", - "audio": "files/05_0690.mp3", - "audioMeaning": "files/05_0690_meaning.mp3", - "audioExample": "files/05_0690_example.mp3", - "textMeaning": "To praise is to show that you like someone or something.", - "textExample": "The coach praised the athletes after a good practice.", - "transcription": "[preiz]", - "__v": 0, - "textExampleTranslate": "Тренер похвалил спортсменов после хорошей тренировки", - "textMeaningTranslate": "Хвалить - значит показывать, что ты любишь кого-то или что-то", - "wordTranslate": "хвалить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af752" - }, - "group": 1, - "page": 4, - "word": "proceed", - "image": "files/05_0691.jpg", - "audio": "files/05_0691.mp3", - "audioMeaning": "files/05_0691_meaning.mp3", - "audioExample": "files/05_0691_example.mp3", - "textMeaning": "To proceed is to go somewhere or to continue doing something.", - "textExample": "My son and I proceeded to the beach so we could go fishing.", - "transcription": "[prəsíːd]", - "__v": 0, - "textExampleTranslate": "Мы с сыном отправились на пляж, чтобы мы могли порыбачить", - "textMeaningTranslate": "Продолжать - значит идти куда-то или продолжать что-то делать", - "wordTranslate": "продолжить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af753" - }, - "group": 1, - "page": 4, - "word": "relative", - "image": "files/05_0693.jpg", - "audio": "files/05_0693.mp3", - "audioMeaning": "files/05_0693_meaning.mp3", - "audioExample": "files/05_0693_example.mp3", - "textMeaning": "A relative is a family member.", - "textExample": "My relatives came by to see the new baby.", - "transcription": "[rélətiv]", - "__v": 0, - "textExampleTranslate": "Мои родственники пришли, чтобы увидеть нового ребенка", - "textMeaningTranslate": "Родственник является членом семьи", - "wordTranslate": "относительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af754" - }, - "group": 1, - "page": 4, - "word": "pure", - "image": "files/05_0692.jpg", - "audio": "files/05_0692.mp3", - "audioMeaning": "files/05_0692_meaning.mp3", - "audioExample": "files/05_0692_example.mp3", - "textMeaning": "A pure thing is very clear and beautiful.", - "textExample": "The rose was pure. It had no dirt or imperfections.", - "transcription": "[pjuər]", - "__v": 0, - "textExampleTranslate": "Роза была чистой. В ней не было ни грязи, ни недостатков", - "textMeaningTranslate": "Чистая вещь очень ясная и красивая", - "wordTranslate": "чистый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af755" - }, - "group": 1, - "page": 4, - "word": "senior", - "image": "files/05_0694.jpg", - "audio": "files/05_0694.mp3", - "audioMeaning": "files/05_0694_meaning.mp3", - "audioExample": "files/05_0694_example.mp3", - "textMeaning": "A senior person is older or more experienced.", - "textExample": "Because he got his job first, Bob is the senior chef.", - "transcription": "[síːnjər]", - "__v": 0, - "textExampleTranslate": "Поскольку он получил свою работу первым, Боб - старший повар", - "textMeaningTranslate": "Старший человек старше или опытнее", - "wordTranslate": "старший" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af756" - }, - "group": 1, - "page": 4, - "word": "silent", - "image": "files/05_0695.jpg", - "audio": "files/05_0695.mp3", - "audioMeaning": "files/05_0695_meaning.mp3", - "audioExample": "files/05_0695_example.mp3", - "textMeaning": "A silent person or thing makes no sound.", - "textExample": "Since no one was home, the house was silent.", - "transcription": "[sáilənt]", - "__v": 0, - "textExampleTranslate": "Так как дома никого не было, дом молчал", - "textMeaningTranslate": "Тихий человек или вещь не издает ни звука", - "wordTranslate": "молчит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af757" - }, - "group": 1, - "page": 4, - "word": "sink", - "image": "files/05_0696.jpg", - "audio": "files/05_0696.mp3", - "audioMeaning": "files/05_0696_meaning.mp3", - "audioExample": "files/05_0696_example.mp3", - "textMeaning": "To sink into something is to slowly fall into it.", - "textExample": "The boat had a hole in it, and it sank into the ocean.", - "transcription": "[siŋk]", - "__v": 0, - "textExampleTranslate": "В лодке была дыра, и она погрузилась в океан", - "textMeaningTranslate": "Погрузиться во что-то - значит медленно упасть в это", - "wordTranslate": "раковина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af759" - }, - "group": 1, - "page": 4, - "word": "superior", - "image": "files/05_0697.jpg", - "audio": "files/05_0697.mp3", - "audioMeaning": "files/05_0697_meaning.mp3", - "audioExample": "files/05_0697_example.mp3", - "textMeaning": "A superior person or thing is better than another.", - "textExample": "I think cooking outdoors is superior to cooking indoors.", - "transcription": "[səpíəriər]", - "__v": 0, - "textExampleTranslate": "Я думаю, что готовить на улице лучше, чем готовить в помещении", - "textMeaningTranslate": "Старший человек или вещь лучше другого", - "wordTranslate": "превосходный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af75a" - }, - "group": 1, - "page": 4, - "word": "thick", - "image": "files/05_0699.jpg", - "audio": "files/05_0699.mp3", - "audioMeaning": "files/05_0699_meaning.mp3", - "audioExample": "files/05_0699_example.mp3", - "textMeaning": "A thick thing is wide and solid.", - "textExample": "The fog was so thick that I couldn’t see through it.", - "transcription": "[θik]", - "__v": 0, - "textExampleTranslate": "Туман был настолько густым, что я не мог видеть сквозь него", - "textMeaningTranslate": "Толстая вещь широкая и прочная", - "wordTranslate": "толстые" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af75c" - }, - "group": 1, - "page": 5, - "word": "also", - "image": "files/06_0701.jpg", - "audio": "files/06_0701.mp3", - "audioMeaning": "files/06_0701_meaning.mp3", - "audioExample": "files/06_0701_example.mp3", - "textMeaning": "Also means in addition to or too.", - "textExample": "I like blue, and I also like yellow.", - "transcription": "[ɔ́ːlsou]", - "__v": 0, - "textExampleTranslate": "Я люблю синий, и я также люблю желтый", - "textMeaningTranslate": "Также означает в дополнение к или слишком", - "wordTranslate": "также" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af758" - }, - "group": 1, - "page": 4, - "word": "surround", - "image": "files/05_0698.jpg", - "audio": "files/05_0698.mp3", - "audioMeaning": "files/05_0698_meaning.mp3", - "audioExample": "files/05_0698_example.mp3", - "textMeaning": "To surround something is to close in on it from all sides.", - "textExample": "We surrounded the suspect on all four sides.", - "transcription": "[səráund]", - "__v": 0, - "textExampleTranslate": "Мы окружили подозреваемого со всех четырех сторон", - "textMeaningTranslate": "Окружить что-то - значит приблизиться к нему со всех сторон", - "wordTranslate": "окружают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af75b" - }, - "group": 1, - "page": 4, - "word": "wrap", - "image": "files/05_0700.jpg", - "audio": "files/05_0700.mp3", - "audioMeaning": "files/05_0700_meaning.mp3", - "audioExample": "files/05_0700_example.mp3", - "textMeaning": "To wrap is to cover something on all sides.", - "textExample": "I wrapped his gift and put a bow on it.", - "transcription": "[ræp]", - "__v": 0, - "textExampleTranslate": "Я завернул его подарок и положил на него лук", - "textMeaningTranslate": "Заворачивать - значит покрывать что-то со всех сторон", - "wordTranslate": "заворачивать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af75d" - }, - "group": 1, - "page": 5, - "word": "automatically", - "image": "files/06_0702.jpg", - "audio": "files/06_0702.mp3", - "audioMeaning": "files/06_0702_meaning.mp3", - "audioExample": "files/06_0702_example.mp3", - "textMeaning": "If an action happens automatically, it happens without thinking or planning.", - "textExample": "The man automatically smiled when he thought about his friend.", - "transcription": "[ɔ̀ːtəmǽtikəli]", - "__v": 0, - "textExampleTranslate": "Человек автоматически улыбнулся, когда подумал о своем друге", - "textMeaningTranslate": "Если действие происходит автоматически, оно происходит без размышлений или планирования", - "wordTranslate": "автоматически" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af75e" - }, - "group": 1, - "page": 5, - "word": "busy", - "image": "files/06_0703.jpg", - "audio": "files/06_0703.mp3", - "audioMeaning": "files/06_0703_meaning.mp3", - "audioExample": "files/06_0703_example.mp3", - "textMeaning": "A busy person has a lot of things to do.", - "textExample": "Everyone is busy at the office today.", - "transcription": "[bízi]", - "__v": 0, - "textExampleTranslate": "Сегодня все заняты в офисе", - "textMeaningTranslate": "У занятого человека много дел", - "wordTranslate": "занятый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af75f" - }, - "group": 1, - "page": 5, - "word": "can", - "image": "files/06_0704.jpg", - "audio": "files/06_0704.mp3", - "audioMeaning": "files/06_0704_meaning.mp3", - "audioExample": "files/06_0704_example.mp3", - "textMeaning": "Can shows that a person or thing has the ability to do an action.", - "textExample": "Sad news can make her cry.", - "transcription": "[kən]", - "__v": 0, - "textExampleTranslate": "Печальные новости могут заставить ее плакать", - "textMeaningTranslate": "Может показать, что человек или вещь обладает способностью совершать действие", - "wordTranslate": "можно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af760" - }, - "group": 1, - "page": 5, - "word": "clear", - "image": "files/06_0705.jpg", - "audio": "files/06_0705.mp3", - "audioMeaning": "files/06_0705_meaning.mp3", - "audioExample": "files/06_0705_example.mp3", - "textMeaning": "To clear is to remove everything from a place.", - "textExample": "I need to clear my desk because it is too messy.", - "transcription": "[kliər]", - "__v": 0, - "textExampleTranslate": "Мне нужно очистить свой стол, потому что он слишком грязный", - "textMeaningTranslate": "Очистить - значит убрать все с места", - "wordTranslate": "чисто" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af761" - }, - "group": 1, - "page": 5, - "word": "close", - "image": "files/06_0706.jpg", - "audio": "files/06_0706.mp3", - "audioMeaning": "files/06_0706_meaning.mp3", - "audioExample": "files/06_0706_example.mp3", - "textMeaning": "To close is to shut something or cover up an opening.", - "textExample": "The man wanted to close the door tightly.", - "transcription": "[klouz]", - "__v": 0, - "textExampleTranslate": "Человек хотел плотно закрыть дверь", - "textMeaningTranslate": "Закрыть - значит закрыть что-то или закрыть отверстие", - "wordTranslate": "близко" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af762" - }, - "group": 1, - "page": 5, - "word": "feel", - "image": "files/06_0708.jpg", - "audio": "files/06_0708.mp3", - "audioMeaning": "files/06_0708_meaning.mp3", - "audioExample": "files/06_0708_example.mp3", - "textMeaning": "To feel is to experience an emotion or feeling.", - "textExample": "The girl must feel happy because it is her birthday today.", - "transcription": "[fːl]", - "__v": 0, - "textExampleTranslate": "Девушка должна чувствовать себя счастливой, потому что сегодня ее день рождения", - "textMeaningTranslate": "Чувствовать - значит испытывать эмоцию или чувство", - "wordTranslate": "чувствовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af763" - }, - "group": 1, - "page": 5, - "word": "discuss", - "image": "files/06_0707.jpg", - "audio": "files/06_0707.mp3", - "audioMeaning": "files/06_0707_meaning.mp3", - "audioExample": "files/06_0707_example.mp3", - "textMeaning": "To discuss is to talk about something with another person.", - "textExample": "James began to discuss his report with his teacher.", - "transcription": "[diskΛs]", - "__v": 0, - "textExampleTranslate": "Джеймс начал обсуждать свой доклад со своим учителем", - "textMeaningTranslate": "Обсуждать - значит говорить о чем-то с другим человеком", - "wordTranslate": "обсудить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af765" - }, - "group": 1, - "page": 5, - "word": "meet", - "image": "files/06_0710.jpg", - "audio": "files/06_0710.mp3", - "audioMeaning": "files/06_0710_meaning.mp3", - "audioExample": "files/06_0710_example.mp3", - "textMeaning": "To meet is to come together so that you can talk or do something together.", - "textExample": "Ken’s mother wanted to meet his teacher today.", - "transcription": "[miːt]", - "__v": 0, - "textExampleTranslate": "Мать Кена хотела встретиться со своим учителем сегодня", - "textMeaningTranslate": "Встретиться - значит собраться вместе, чтобы вы могли поговорить или сделать что-то вместе", - "wordTranslate": "встретиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af764" - }, - "group": 1, - "page": 5, - "word": "listen", - "image": "files/06_0709.jpg", - "audio": "files/06_0709.mp3", - "audioMeaning": "files/06_0709_meaning.mp3", - "audioExample": "files/06_0709_example.mp3", - "textMeaning": "To listen is to pay attention to a sound that you can hear.", - "textExample": "Lisa wanted to listen carefully to her friend.", - "transcription": "[lísn]", - "__v": 0, - "textExampleTranslate": "Лиза хотела внимательно выслушать своего друга", - "textMeaningTranslate": "Слушать значит обращать внимание на звук, который вы слышите", - "wordTranslate": "слушать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af766" - }, - "group": 1, - "page": 5, - "word": "music", - "image": "files/06_0711.jpg", - "audio": "files/06_0711.mp3", - "audioMeaning": "files/06_0711_meaning.mp3", - "audioExample": "files/06_0711_example.mp3", - "textMeaning": "Music is the sound made by singing or playing musical instruments.", - "textExample": "The boy makes music by playing a guitar.", - "transcription": "[mjúːzik]", - "__v": 0, - "textExampleTranslate": "Мальчик делает музыку, играя на гитаре", - "textMeaningTranslate": "Музыка - это звук, который поют или играют на музыкальных инструментах", - "wordTranslate": "музыка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af767" - }, - "group": 1, - "page": 5, - "word": "quiet", - "image": "files/06_0713.jpg", - "audio": "files/06_0713.mp3", - "audioMeaning": "files/06_0713_meaning.mp3", - "audioExample": "files/06_0713_example.mp3", - "textMeaning": "If something is quiet, it does not make much sound.", - "textExample": "The man told the children to be quiet.", - "transcription": "[kwáiət]", - "__v": 0, - "textExampleTranslate": "Человек велел детям быть спокойными", - "textMeaningTranslate": "Если что-то тихо, оно не издает много звука", - "wordTranslate": "тихо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af768" - }, - "group": 1, - "page": 5, - "word": "normal", - "image": "files/06_0712.jpg", - "audio": "files/06_0712.mp3", - "audioMeaning": "files/06_0712_meaning.mp3", - "audioExample": "files/06_0712_example.mp3", - "textMeaning": "A normal thing is usual and not strange.", - "textExample": "It is normal to wear school uniforms in private schools.", - "transcription": "[nɔ́ːrməl]", - "__v": 0, - "textExampleTranslate": "Нормально носить школьную форму в частных школах", - "textMeaningTranslate": "Нормальная вещь обычная и не странная", - "wordTranslate": "нормальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af76a" - }, - "group": 1, - "page": 5, - "word": "sleep", - "image": "files/06_0715.jpg", - "audio": "files/06_0715.mp3", - "audioMeaning": "files/06_0715_meaning.mp3", - "audioExample": "files/06_0715_example.mp3", - "textMeaning": "To sleep is to rest your mind and body, usually at night in bed.", - "textExample": "The child goes to sleep in her bedroom at night.", - "transcription": "[sliːp]", - "__v": 0, - "textExampleTranslate": "Ребенок ночью ложится спать в своей спальне", - "textMeaningTranslate": "Спать - значит отдыхать разумом и телом, обычно ночью в постели", - "wordTranslate": "спать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af769" - }, - "group": 1, - "page": 5, - "word": "relax", - "image": "files/06_0714.jpg", - "audio": "files/06_0714.mp3", - "audioMeaning": "files/06_0714_meaning.mp3", - "audioExample": "files/06_0714_example.mp3", - "textMeaning": "To relax is to rest or do something enjoyable.", - "textExample": "Nicole likes to relax by reading books.", - "transcription": "[rilǽks]", - "__v": 0, - "textExampleTranslate": "Николь любит отдыхать, читая книги", - "textMeaningTranslate": "Отдыхать - это отдыхать или заниматься чем-то приятным", - "wordTranslate": "расслабиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af76b" - }, - "group": 1, - "page": 5, - "word": "stress", - "image": "files/06_0716.jpg", - "audio": "files/06_0716.mp3", - "audioMeaning": "files/06_0716_meaning.mp3", - "audioExample": "files/06_0716_example.mp3", - "textMeaning": "Stress is a strong feeling of worry caused by problems in life, work, etc.", - "textExample": "Dan has a lot of stress at work.", - "transcription": "[stres]", - "__v": 0, - "textExampleTranslate": "У Дэна много стресса на работе", - "textMeaningTranslate": "Стресс - это сильное чувство беспокойства, вызванное проблемами в жизни, работе и т. Д", - "wordTranslate": "стресс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af76c" - }, - "group": 1, - "page": 5, - "word": "study", - "image": "files/06_0717.jpg", - "audio": "files/06_0717.mp3", - "audioMeaning": "files/06_0717_meaning.mp3", - "audioExample": "files/06_0717_example.mp3", - "textMeaning": "To study is to learn something by reading, memorizing, or going to school.", - "textExample": "The woman needed a quiet place to study for a big test.", - "transcription": "[stΛdi]", - "__v": 0, - "textExampleTranslate": "Женщине нужно было тихое место, чтобы учиться для большого теста", - "textMeaningTranslate": "Учиться значит учиться чему-то, читая, запоминая или ходя в школу", - "wordTranslate": "изучение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af76d" - }, - "group": 1, - "page": 5, - "word": "talk", - "image": "files/06_0718.jpg", - "audio": "files/06_0718.mp3", - "audioMeaning": "files/06_0718_meaning.mp3", - "audioExample": "files/06_0718_example.mp3", - "textMeaning": "To talk is to say words to express your thoughts, opinions, etc.", - "textExample": "They went someplace to talk to each other.", - "transcription": "[tɔːk]", - "__v": 0, - "textExampleTranslate": "Они пошли куда-нибудь, чтобы поговорить друг с другом", - "textMeaningTranslate": "Говорить - это говорить словами, выражать свои мысли, мнения и т. Д", - "wordTranslate": "разговаривать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af76e" - }, - "group": 1, - "page": 5, - "word": "write", - "image": "files/06_0720.jpg", - "audio": "files/06_0720.mp3", - "audioMeaning": "files/06_0720_meaning.mp3", - "audioExample": "files/06_0720_example.mp3", - "textMeaning": "To write is to use a pen or keyboard to make letters and numbers on paper or a screen.", - "textExample": "I need to write a story for my homework.", - "transcription": "[rait]", - "__v": 0, - "textExampleTranslate": "Мне нужно написать историю для моей домашней работы", - "textMeaningTranslate": "Чтобы писать - это использовать ручку или клавиатуру, чтобы делать буквы и цифры на бумаге или экране", - "wordTranslate": "записывать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af76f" - }, - "group": 1, - "page": 5, - "word": "work", - "image": "files/06_0719.jpg", - "audio": "files/06_0719.mp3", - "audioMeaning": "files/06_0719_meaning.mp3", - "audioExample": "files/06_0719_example.mp3", - "textMeaning": "To work is to do a job that you get paid for.", - "textExample": "They need to work together to finish an important project.", - "transcription": "[wəːrk]", - "__v": 0, - "textExampleTranslate": "Им нужно работать вместе, чтобы закончить важный проект", - "textMeaningTranslate": "Работать - это делать работу, за которую тебе платят", - "wordTranslate": "работа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af770" - }, - "group": 1, - "page": 6, - "word": "basis", - "image": "files/07_0721.jpg", - "audio": "files/07_0721.mp3", - "audioMeaning": "files/07_0721_meaning.mp3", - "audioExample": "files/07_0721_example.mp3", - "textMeaning": "The basis of something is the main part of amount of it.", - "textExample": "My grandfather gets his hearing checked on a yearly basis.", - "transcription": "[béisis]", - "__v": 0, - "textExampleTranslate": "Мой дедушка проверяет слух на ежегодной основе", - "textMeaningTranslate": "Основой чего-то является основная часть его количества", - "wordTranslate": "основа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af771" - }, - "group": 1, - "page": 6, - "word": "biology", - "image": "files/07_0722.jpg", - "audio": "files/07_0722.mp3", - "audioMeaning": "files/07_0722_meaning.mp3", - "audioExample": "files/07_0722_example.mp3", - "textMeaning": "Biology is the study of living things.", - "textExample": "We learned about the human heart in biology class.", - "transcription": "[baiɑ́lədʒi]", - "__v": 0, - "textExampleTranslate": "Мы узнали о человеческом сердце на уроке биологии", - "textMeaningTranslate": "Биология - это изучение живых существ", - "wordTranslate": "биология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af773" - }, - "group": 1, - "page": 6, - "word": "colleague", - "image": "files/07_0724.jpg", - "audio": "files/07_0724.mp3", - "audioMeaning": "files/07_0724_meaning.mp3", - "audioExample": "files/07_0724_example.mp3", - "textMeaning": "A colleague is somebody you work with.", - "textExample": "My colleague helped me finish the job.", - "transcription": "[kɑ́liːg]", - "__v": 0, - "textExampleTranslate": "Мой коллега помог мне закончить работу", - "textMeaningTranslate": "Коллега - это тот, с кем ты работаешь", - "wordTranslate": "коллега" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af772" - }, - "group": 1, - "page": 6, - "word": "cage", - "image": "files/07_0723.jpg", - "audio": "files/07_0723.mp3", - "audioMeaning": "files/07_0723_meaning.mp3", - "audioExample": "files/07_0723_example.mp3", - "textMeaning": "A cage is something that holds an animal so it cannot leave.", - "textExample": "We put the parrots in their cage at night.", - "transcription": "[keidʒ]", - "__v": 0, - "textExampleTranslate": "Мы помещаем попугаев в их клетку на ночь", - "textMeaningTranslate": "Клетка - это то, что держит животное, поэтому оно не может уйти", - "wordTranslate": "клетка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af774" - }, - "group": 1, - "page": 6, - "word": "debate", - "image": "files/07_0726.jpg", - "audio": "files/07_0726.mp3", - "audioMeaning": "files/07_0726_meaning.mp3", - "audioExample": "files/07_0726_example.mp3", - "textMeaning": "To debate is to seriously discuss something with someone.", - "textExample": "The husband and wife debated which TV to buy.", - "transcription": "[dibéit]", - "__v": 0, - "textExampleTranslate": "Муж и жена обсуждали, какой телевизор купить", - "textMeaningTranslate": "Обсуждать - значит серьезно обсуждать что-то с кем-то", - "wordTranslate": "дебаты" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af775" - }, - "group": 1, - "page": 6, - "word": "colony", - "image": "files/07_0725.jpg", - "audio": "files/07_0725.mp3", - "audioMeaning": "files/07_0725_meaning.mp3", - "audioExample": "files/07_0725_example.mp3", - "textMeaning": "A colony is a country controlled by another country.", - "textExample": "The USA was at one time a colony of Great Britain.", - "transcription": "[kɑ́ləni]", - "__v": 0, - "textExampleTranslate": "США когда-то были колонией Великобритании", - "textMeaningTranslate": "Колония - это страна, контролируемая другой страной", - "wordTranslate": "колония" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af776" - }, - "group": 1, - "page": 6, - "word": "depart", - "image": "files/07_0727.jpg", - "audio": "files/07_0727.mp3", - "audioMeaning": "files/07_0727_meaning.mp3", - "audioExample": "files/07_0727_example.mp3", - "textMeaning": "To depart is to leave some place so you can go to another place.", - "textExample": "The plane departed for Italy at 3:00 this afternoon.", - "transcription": "[dipɑ́ːrt]", - "__v": 0, - "textExampleTranslate": "Самолет вылетел в Италию в 3 часа дня", - "textMeaningTranslate": "Уйти - значит покинуть какое-то место, чтобы ты мог пойти в другое место", - "wordTranslate": "развестись" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af777" - }, - "group": 1, - "page": 6, - "word": "depress", - "image": "files/07_0728.jpg", - "audio": "files/07_0728.mp3", - "audioMeaning": "files/07_0728_meaning.mp3", - "audioExample": "files/07_0728_example.mp3", - "textMeaning": "To depress someone is to make that person sad.", - "textExample": "The bad news from work depressed the man.", - "transcription": "[diprés]", - "__v": 0, - "textExampleTranslate": "Плохие новости с работы угнетали мужчину", - "textMeaningTranslate": "Подавить кого-то - значит расстроить этого человека", - "wordTranslate": "отжимает" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af778" - }, - "group": 1, - "page": 6, - "word": "factual", - "image": "files/07_0729.jpg", - "audio": "files/07_0729.mp3", - "audioMeaning": "files/07_0729_meaning.mp3", - "audioExample": "files/07_0729_example.mp3", - "textMeaning": "A factual report or message includes true details.", - "textExample": "John learns about history from factual books.", - "transcription": "[fǽktʃuəl]", - "__v": 0, - "textExampleTranslate": "Джон узнает об истории из фактических книг", - "textMeaningTranslate": "Фактический отчет или сообщение содержит правдивые детали", - "wordTranslate": "фактический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af779" - }, - "group": 1, - "page": 6, - "word": "fascinate", - "image": "files/07_0730.jpg", - "audio": "files/07_0730.mp3", - "audioMeaning": "files/07_0730_meaning.mp3", - "audioExample": "files/07_0730_example.mp3", - "textMeaning": "To fascinate someone is to make that person very interested.", - "textExample": "The kitten was fascinated by the ball of yarn.", - "transcription": "[fǽsənèit]", - "__v": 0, - "textExampleTranslate": "Котенок был очарован клубком пряжи", - "textMeaningTranslate": "Чтобы очаровать кого-то, нужно сделать этого человека очень заинтересованным", - "wordTranslate": "завораживает" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af77a" - }, - "group": 1, - "page": 6, - "word": "mission", - "image": "files/07_0731.jpg", - "audio": "files/07_0731.mp3", - "audioMeaning": "files/07_0731_meaning.mp3", - "audioExample": "files/07_0731_example.mp3", - "textMeaning": "A mission is an important job that is sometimes far away.", - "textExample": "The woman’s mission was to help sick people.", - "transcription": "[míʃən]", - "__v": 0, - "textExampleTranslate": "Миссия женщины состояла в том, чтобы помочь больным людям", - "textMeaningTranslate": "Миссия - важная работа, которая иногда далеко", - "wordTranslate": "миссия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af77b" - }, - "group": 1, - "page": 6, - "word": "nevertheless", - "image": "files/07_0732.jpg", - "audio": "files/07_0732.mp3", - "audioMeaning": "files/07_0732_meaning.mp3", - "audioExample": "files/07_0732_example.mp3", - "textMeaning": "Nevertheless shows a difference to what is expected or known.", - "textExample": "He is usually friendly. Nevertheless, he wasn’t friendly this afternoon.", - "transcription": "[nèvəːrðəlés]", - "__v": 0, - "textExampleTranslate": "Он обычно дружелюбен. Тем не менее, он не был дружелюбен сегодня днем", - "textMeaningTranslate": "Тем не менее показывает разницу с тем, что ожидается или известно", - "wordTranslate": "тем не менее" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af77c" - }, - "group": 1, - "page": 6, - "word": "occupation", - "image": "files/07_0733.jpg", - "audio": "files/07_0733.mp3", - "audioMeaning": "files/07_0733_meaning.mp3", - "audioExample": "files/07_0733_example.mp3", - "textMeaning": "An occupation is a person’s job.", - "textExample": "My father’s occupation is a dentist.", - "transcription": "[ɑ̀kjəpéiʃən]", - "__v": 0, - "textExampleTranslate": "Мой отец занимается стоматологом", - "textMeaningTranslate": "Профессия - это работа человека", - "wordTranslate": "род занятий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af77d" - }, - "group": 1, - "page": 6, - "word": "overseas", - "image": "files/07_0734.jpg", - "audio": "files/07_0734.mp3", - "audioMeaning": "files/07_0734_meaning.mp3", - "audioExample": "files/07_0734_example.mp3", - "textMeaning": "Overseas shows an action happens in another country, across an ocean.", - "textExample": "John often goes overseas for vacations.", - "transcription": "[óuvərsíːz]", - "__v": 0, - "textExampleTranslate": "Джон часто ездит за границу на каникулы", - "textMeaningTranslate": "За рубежом видно, что действие происходит в другой стране, за океаном", - "wordTranslate": "за рубежом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af77e" - }, - "group": 1, - "page": 6, - "word": "persuade", - "image": "files/07_0735.jpg", - "audio": "files/07_0735.mp3", - "audioMeaning": "files/07_0735_meaning.mp3", - "audioExample": "files/07_0735_example.mp3", - "textMeaning": "To persuade someone is to make that person agree to do something.", - "textExample": "The children persuaded their parents to buy them gifts.", - "transcription": "[pəːrswéid]", - "__v": 0, - "textExampleTranslate": "Дети уговорили своих родителей купить им подарки", - "textMeaningTranslate": "Убедить кого-то - значит заставить его согласиться на что-то", - "wordTranslate": "уговаривать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af77f" - }, - "group": 1, - "page": 6, - "word": "route", - "image": "files/07_0736.jpg", - "audio": "files/07_0736.mp3", - "audioMeaning": "files/07_0736_meaning.mp3", - "audioExample": "files/07_0736_example.mp3", - "textMeaning": "A route is the way you go from one place to another.", - "textExample": "I saw many new houses along the route to the city.", - "transcription": "[ruːt]", - "__v": 0, - "textExampleTranslate": "Я видел много новых домов на пути к городу", - "textMeaningTranslate": "Маршрут - это путь, которым вы идете из одного места в другое", - "wordTranslate": "маршрут" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af780" - }, - "group": 1, - "page": 6, - "word": "ruins", - "image": "files/07_0737.jpg", - "audio": "files/07_0737.mp3", - "audioMeaning": "files/07_0737_meaning.mp3", - "audioExample": "files/07_0737_example.mp3", - "textMeaning": "Ruins are old buildings that are not used anymore.", - "textExample": "I visited some interesting ruins in Greece.", - "transcription": "[rúːinz]", - "__v": 0, - "textExampleTranslate": "Я посетил некоторые интересные руины в Греции", - "textMeaningTranslate": "Руины - это старые здания, которые больше не используются", - "wordTranslate": "руины" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af781" - }, - "group": 1, - "page": 6, - "word": "scholar", - "image": "files/07_0738.jpg", - "audio": "files/07_0738.mp3", - "audioMeaning": "files/07_0738_meaning.mp3", - "audioExample": "files/07_0738_example.mp3", - "textMeaning": "A scholar is a person who studies something and knows a lot about it.", - "textExample": "The scholar knew much about art history.", - "transcription": "[skɑ́ləːr]", - "__v": 0, - "textExampleTranslate": "Ученый много знал об истории искусства", - "textMeaningTranslate": "Ученый - это человек, который изучает что-то и знает об этом много", - "wordTranslate": "ученый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af782" - }, - "group": 1, - "page": 6, - "word": "significant", - "image": "files/07_0739.jpg", - "audio": "files/07_0739.mp3", - "audioMeaning": "files/07_0739_meaning.mp3", - "audioExample": "files/07_0739_example.mp3", - "textMeaning": "A significant person or thing is important.", - "textExample": "I read many significant novels as a literature major in university.", - "transcription": "[siɡnífikənt]", - "__v": 0, - "textExampleTranslate": "Я прочитал много значимых романов как специальность литературы в университете", - "textMeaningTranslate": "Важный человек или вещь важна", - "wordTranslate": "существенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af783" - }, - "group": 1, - "page": 6, - "word": "volcano", - "image": "files/07_0740.jpg", - "audio": "files/07_0740.mp3", - "audioMeaning": "files/07_0740_meaning.mp3", - "audioExample": "files/07_0740_example.mp3", - "textMeaning": "A volcano is a mountain with a hole on top where hot liquid comes out.", - "textExample": "When the volcano erupted, smoke and heat filled the air.", - "transcription": "[vɑlkéinou]", - "__v": 0, - "textExampleTranslate": "Когда извергся вулкан, воздух наполнил дым и тепло", - "textMeaningTranslate": "Вулкан - это гора с дырой наверху, из которой выходит горячая жидкость", - "wordTranslate": "вулкан" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af784" - }, - "group": 1, - "page": 7, - "word": "broad", - "image": "files/08_0741.jpg", - "audio": "files/08_0741.mp3", - "audioMeaning": "files/08_0741_meaning.mp3", - "audioExample": "files/08_0741_example.mp3", - "textMeaning": "Broad means that something is wide, not narrow.", - "textExample": "The river is very long and broad.", - "transcription": "[brɔːd]", - "__v": 0, - "textExampleTranslate": "Река очень длинная и широкая", - "textMeaningTranslate": "Широкий означает, что что-то широкое, а не узкое", - "wordTranslate": "широкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af785" - }, - "group": 1, - "page": 7, - "word": "bush", - "image": "files/08_0742.jpg", - "audio": "files/08_0742.mp3", - "audioMeaning": "files/08_0742_meaning.mp3", - "audioExample": "files/08_0742_example.mp3", - "textMeaning": "A bush is a woody plant that is smaller than a tree.", - "textExample": "My dad and I planted some small bushes around the house.", - "transcription": "[buʃ]", - "__v": 0, - "textExampleTranslate": "Мы с отцом посадили несколько маленьких кустиков вокруг дома", - "textMeaningTranslate": "Куст - это древесное растение, которое меньше дерева", - "wordTranslate": "куст" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af786" - }, - "group": 1, - "page": 7, - "word": "capable", - "image": "files/08_0743.jpg", - "audio": "files/08_0743.mp3", - "audioMeaning": "files/08_0743_meaning.mp3", - "audioExample": "files/08_0743_example.mp3", - "textMeaning": "A capable person or thing can do an action.", - "textExample": "The Olympic athlete is capable of lifting a lot of weight.", - "transcription": "[kéipəbl]", - "__v": 0, - "textExampleTranslate": "Олимпийский спортсмен способен поднимать большой вес", - "textMeaningTranslate": "Способный человек или вещь могут совершить действие", - "wordTranslate": "способный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af787" - }, - "group": 1, - "page": 7, - "word": "cheat", - "image": "files/08_0744.jpg", - "audio": "files/08_0744.mp3", - "audioMeaning": "files/08_0744_meaning.mp3", - "audioExample": "files/08_0744_example.mp3", - "textMeaning": "To cheat is to be dishonest in order to win or do well.", - "textExample": "They cheated on the test by sharing answers.", - "transcription": "[tʃiːt]", - "__v": 0, - "textExampleTranslate": "Они изменяли тесту, делясь ответами", - "textMeaningTranslate": "Обманывать значит быть нечестным, чтобы побеждать или преуспевать", - "wordTranslate": "обмануть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af788" - }, - "group": 1, - "page": 7, - "word": "concentrate", - "image": "files/08_0745.jpg", - "audio": "files/08_0745.mp3", - "audioMeaning": "files/08_0745_meaning.mp3", - "audioExample": "files/08_0745_example.mp3", - "textMeaning": "To concentrate is to give one’s full attention to something.", - "textExample": "I could not concentrate on my homework because the room was so loud.", - "transcription": "[kάnsəntrèit]", - "__v": 0, - "textExampleTranslate": "Я не мог сосредоточиться на своей домашней работе, потому что в комнате было так громко", - "textMeaningTranslate": "Сосредоточиться - значит уделить все внимание чему-либо", - "wordTranslate": "концентрат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af789" - }, - "group": 1, - "page": 7, - "word": "conclude", - "image": "files/08_0746.jpg", - "audio": "files/08_0746.mp3", - "audioMeaning": "files/08_0746_meaning.mp3", - "audioExample": "files/08_0746_example.mp3", - "textMeaning": "To conclude is to arrive at a logical end by looking at evidence.", - "textExample": "I saw crumbs on my dog’s face, so I concluded that he ate my cookie.", - "transcription": "[kənklúːd]", - "__v": 0, - "textExampleTranslate": "Я видел крошки на лице моей собаки, поэтому я пришел к выводу, что он съел мое печенье", - "textMeaningTranslate": "Заключить - значит прийти к логическому концу, взглянув на доказательства", - "wordTranslate": "заключить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af78a" - }, - "group": 1, - "page": 7, - "word": "confident", - "image": "files/08_0747.jpg", - "audio": "files/08_0747.mp3", - "audioMeaning": "files/08_0747_meaning.mp3", - "audioExample": "files/08_0747_example.mp3", - "textMeaning": "Confident people believe that they can do something without failing.", - "textExample": "She was confident she could climb the mountain due to her training.", - "transcription": "[kɑ́nfidənt]", - "__v": 0, - "textExampleTranslate": "Она была уверена, что сможет подняться на гору благодаря своим тренировкам", - "textMeaningTranslate": "Уверенные люди верят, что они могут сделать что-то без сбоев", - "wordTranslate": "уверенная в себе" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af78b" - }, - "group": 1, - "page": 7, - "word": "considerable", - "image": "files/08_0748.jpg", - "audio": "files/08_0748.mp3", - "audioMeaning": "files/08_0748_meaning.mp3", - "audioExample": "files/08_0748_example.mp3", - "textMeaning": "Considerable means large in size, amount, or extent.", - "textExample": "They paid a considerable amount of money for that car.", - "transcription": "[kənsídərəbl]", - "__v": 0, - "textExampleTranslate": "Они заплатили значительную сумму денег за эту машину", - "textMeaningTranslate": "Значительный означает большой по размеру, количеству или степени", - "wordTranslate": "значительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af78c" - }, - "group": 1, - "page": 7, - "word": "convey", - "image": "files/08_0749.jpg", - "audio": "files/08_0749.mp3", - "audioMeaning": "files/08_0749_meaning.mp3", - "audioExample": "files/08_0749_example.mp3", - "textMeaning": "To convey is to communicate or make ideas known.", - "textExample": "That picture of a crying child conveys a feeling of sadness.", - "transcription": "[kənvéi]", - "__v": 0, - "textExampleTranslate": "Эта картина плачущего ребенка передает чувство грусти", - "textMeaningTranslate": "Передавать - значит общаться или делать идеи известными", - "wordTranslate": "передать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af78d" - }, - "group": 1, - "page": 7, - "word": "definite", - "image": "files/08_0750.jpg", - "audio": "files/08_0750.mp3", - "audioMeaning": "files/08_0750_meaning.mp3", - "audioExample": "files/08_0750_example.mp3", - "textMeaning": "A definite thing is certain or sure to be true.", - "textExample": "There is a definite connection between hard work and success.", - "transcription": "[défənit]", - "__v": 0, - "textExampleTranslate": "Существует определенная связь между трудолюбием и успехом", - "textMeaningTranslate": "Определенная вещь, безусловно, или обязательно будет правдой", - "wordTranslate": "определенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af78e" - }, - "group": 1, - "page": 7, - "word": "delight", - "image": "files/08_0751.jpg", - "audio": "files/08_0751.mp3", - "audioMeaning": "files/08_0751_meaning.mp3", - "audioExample": "files/08_0751_example.mp3", - "textMeaning": "Delight is a feeling of being very happy with something.", - "textExample": "He felt such delight after getting a promotion at work.", - "transcription": "[diláit]", - "__v": 0, - "textExampleTranslate": "Он почувствовал такой восторг после продвижения по службе", - "textMeaningTranslate": "Восторг - это чувство того, что ты чем-то очень доволен", - "wordTranslate": "восторг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af78f" - }, - "group": 1, - "page": 7, - "word": "destination", - "image": "files/08_0752.jpg", - "audio": "files/08_0752.mp3", - "audioMeaning": "files/08_0752_meaning.mp3", - "audioExample": "files/08_0752_example.mp3", - "textMeaning": "A destination is the place where someone or something is going.", - "textExample": "The destination of this plane is Munich, Germany.", - "transcription": "[dèstənéiʃən]", - "__v": 0, - "textExampleTranslate": "Пункт назначения этого самолета - Мюнхен, Германия", - "textMeaningTranslate": "Пункт назначения - это место, куда кто-то или что-то идет", - "wordTranslate": "пункт назначения" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af790" - }, - "group": 1, - "page": 7, - "word": "edge", - "image": "files/08_0753.jpg", - "audio": "files/08_0753.mp3", - "audioMeaning": "files/08_0753_meaning.mp3", - "audioExample": "files/08_0753_example.mp3", - "textMeaning": "The edge is the furthest part or side of something.", - "textExample": "He ran to the edge of the cliff.", - "transcription": "[edʒ]", - "__v": 0, - "textExampleTranslate": "Он побежал к краю обрыва", - "textMeaningTranslate": "Край - самая дальняя часть или сторона чего-либо", - "wordTranslate": "край" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af791" - }, - "group": 1, - "page": 7, - "word": "instructions", - "image": "files/08_0754.jpg", - "audio": "files/08_0754.mp3", - "audioMeaning": "files/08_0754_meaning.mp3", - "audioExample": "files/08_0754_example.mp3", - "textMeaning": "A set of instructions explains how to do something.", - "textExample": "Just follow the instructions and you will be OK.", - "transcription": "[instrΛkʃən]", - "__v": 0, - "textExampleTranslate": "Просто следуйте инструкциям, и вы будете в порядке", - "textMeaningTranslate": "Набор инструкций объясняет, как сделать что-то", - "wordTranslate": "инструкции" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af792" - }, - "group": 1, - "page": 7, - "word": "path", - "image": "files/08_0755.jpg", - "audio": "files/08_0755.mp3", - "audioMeaning": "files/08_0755_meaning.mp3", - "audioExample": "files/08_0755_example.mp3", - "textMeaning": "A path is a way from one place to another that people can walk along.", - "textExample": "We followed a path through the woods.", - "transcription": "[pæθ]", - "__v": 0, - "textExampleTranslate": "Мы шли по тропинке через лес", - "textMeaningTranslate": "Путь - это путь из одного места в другое, по которому люди могут идти", - "wordTranslate": "дорожка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af793" - }, - "group": 1, - "page": 7, - "word": "resort", - "image": "files/08_0756.jpg", - "audio": "files/08_0756.mp3", - "audioMeaning": "files/08_0756_meaning.mp3", - "audioExample": "files/08_0756_example.mp3", - "textMeaning": "To resort to something is to depend on it in order to solve a problem.", - "textExample": "I hope they don’t resort to violence to end the argument.", - "transcription": "[rizɔ́ːrt]", - "__v": 0, - "textExampleTranslate": "Я надеюсь, что они не прибегают к насилию, чтобы закончить спор", - "textMeaningTranslate": "Прибегать к чему-либо - значит зависеть от него для решения проблемы", - "wordTranslate": "курорт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af794" - }, - "group": 1, - "page": 7, - "word": "shadow", - "image": "files/08_0757.jpg", - "audio": "files/08_0757.mp3", - "audioMeaning": "files/08_0757_meaning.mp3", - "audioExample": "files/08_0757_example.mp3", - "textMeaning": "A shadow is the dark area that is made when something blocks light.", - "textExample": "The man’s shadow was taller than he was.", - "transcription": "[ʃǽdou]", - "__v": 0, - "textExampleTranslate": "Тень человека была выше его", - "textMeaningTranslate": "Тень - это темная область, которая создается, когда что-то блокирует свет", - "wordTranslate": "тень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af795" - }, - "group": 1, - "page": 7, - "word": "succeed", - "image": "files/08_0758.jpg", - "audio": "files/08_0758.mp3", - "audioMeaning": "files/08_0758_meaning.mp3", - "audioExample": "files/08_0758_example.mp3", - "textMeaning": "To succeed is to complete something as planned.", - "textExample": "He will continue to work on the robot until he succeeds.", - "transcription": "[səksíːd]", - "__v": 0, - "textExampleTranslate": "Он будет продолжать работать над роботом, пока не добьется успеха", - "textMeaningTranslate": "Чтобы добиться успеха, нужно завершить что-то, как планировалось", - "wordTranslate": "добиться успеха" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af796" - }, - "group": 1, - "page": 7, - "word": "suspect", - "image": "files/08_0759.jpg", - "audio": "files/08_0759.mp3", - "audioMeaning": "files/08_0759_meaning.mp3", - "audioExample": "files/08_0759_example.mp3", - "textMeaning": "To suspect something is to believe that it might be true.", - "textExample": "I suspect that those kids stole the money.", - "transcription": "[səspékt]", - "__v": 0, - "textExampleTranslate": "Я подозреваю, что эти дети украли деньги", - "textMeaningTranslate": "Подозревать что-то значит верить, что это может быть правдой", - "wordTranslate": "подозреваемый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af797" - }, - "group": 1, - "page": 7, - "word": "valley", - "image": "files/08_0760.jpg", - "audio": "files/08_0760.mp3", - "audioMeaning": "files/08_0760_meaning.mp3", - "audioExample": "files/08_0760_example.mp3", - "textMeaning": "A valley is a low area of land between two mountains or hills.", - "textExample": "We looked at the valley below from the top of the mountain.", - "transcription": "[vǽli]", - "__v": 0, - "textExampleTranslate": "Мы смотрели на долину внизу с вершины горы", - "textMeaningTranslate": "Долина - это низменность между двумя горами или холмами", - "wordTranslate": "долина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af798" - }, - "group": 1, - "page": 8, - "word": "against", - "image": "files/09_0761.jpg", - "audio": "files/09_0761.mp3", - "audioMeaning": "files/09_0761_meaning.mp3", - "audioExample": "files/09_0761_example.mp3", - "textMeaning": "To be against something is to be touching it or opposed to it.", - "textExample": "They both leaned against the wall.", - "transcription": "[əgénst]", - "__v": 0, - "textExampleTranslate": "Они оба прислонились к стене", - "textMeaningTranslate": "Быть против чего-то - значит быть с ним трогательным или противостоять ему", - "wordTranslate": "против" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af799" - }, - "group": 1, - "page": 8, - "word": "beach", - "image": "files/09_0762.jpg", - "audio": "files/09_0762.mp3", - "audioMeaning": "files/09_0762_meaning.mp3", - "audioExample": "files/09_0762_example.mp3", - "textMeaning": "The beach is a sandy or rocky place by the ocean.", - "textExample": "The little girl built a sandcastle on the beach.", - "transcription": "[biːtʃ]", - "__v": 0, - "textExampleTranslate": "Маленькая девочка построила замок из песка на пляже", - "textMeaningTranslate": "Пляж - это песчаное или скалистое место у океана", - "wordTranslate": "пляж" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af79a" - }, - "group": 1, - "page": 8, - "word": "damage", - "image": "files/09_0763.jpg", - "audio": "files/09_0763.mp3", - "audioMeaning": "files/09_0763_meaning.mp3", - "audioExample": "files/09_0763_example.mp3", - "textMeaning": "To damage something is to break it.", - "textExample": "The car was damaged in the accident.", - "transcription": "[dǽmidʒ]", - "__v": 0, - "textExampleTranslate": "Автомобиль был поврежден в аварии", - "textMeaningTranslate": "Повредить что-то значит сломать это", - "wordTranslate": "наносить ущерб" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af79b" - }, - "group": 1, - "page": 8, - "word": "discover", - "image": "files/09_0764.jpg", - "audio": "files/09_0764.mp3", - "audioMeaning": "files/09_0764_meaning.mp3", - "audioExample": "files/09_0764_example.mp3", - "textMeaning": "To discover something is to find it for the first time.", - "textExample": "I discovered some new information in this book.", - "transcription": "[diskʌ́vər]", - "__v": 0, - "textExampleTranslate": "Я обнаружил некоторую новую информацию в этой книге", - "textMeaningTranslate": "Обнаружить что-то - значит найти это впервые", - "wordTranslate": "обнаружить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af79c" - }, - "group": 1, - "page": 8, - "word": "emotion", - "image": "files/09_0765.jpg", - "audio": "files/09_0765.mp3", - "audioMeaning": "files/09_0765_meaning.mp3", - "audioExample": "files/09_0765_example.mp3", - "textMeaning": "An emotion is how you feel.", - "textExample": "Anger is a common emotion that we all feel.", - "transcription": "[imóuʃən]", - "__v": 0, - "textExampleTranslate": "Гнев - это общая эмоция, которую мы все чувствуем", - "textMeaningTranslate": "Эмоция - это то, что ты чувствуешь", - "wordTranslate": "эмоция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af79d" - }, - "group": 1, - "page": 8, - "word": "fix", - "image": "files/09_0766.jpg", - "audio": "files/09_0766.mp3", - "audioMeaning": "files/09_0766_meaning.mp3", - "audioExample": "files/09_0766_example.mp3", - "textMeaning": "To fix something is to make it work.", - "textExample": "My dad has many tools to help him fix broken things.", - "transcription": "[fíks]", - "__v": 0, - "textExampleTranslate": "У моего отца много инструментов, которые помогут ему починить сломанные вещи", - "textMeaningTranslate": "Исправить что-то значит заставить работать", - "wordTranslate": "исправить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af79e" - }, - "group": 1, - "page": 8, - "word": "identify", - "image": "files/09_0767.jpg", - "audio": "files/09_0767.mp3", - "audioMeaning": "files/09_0767_meaning.mp3", - "audioExample": "files/09_0767_example.mp3", - "textMeaning": "To identify something is to find out what it is.", - "textExample": "I used the file to identify his name.", - "transcription": "[aidéntəfài]", - "__v": 0, - "textExampleTranslate": "Я использовал файл, чтобы определить его имя", - "textMeaningTranslate": "Идентифицировать что-то значит узнать, что это такое", - "wordTranslate": "определить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af79f" - }, - "group": 1, - "page": 8, - "word": "island", - "image": "files/09_0768.jpg", - "audio": "files/09_0768.mp3", - "audioMeaning": "files/09_0768_meaning.mp3", - "audioExample": "files/09_0768_example.mp3", - "textMeaning": "An island is land in the middle of water.", - "textExample": "Japan is a group of islands.", - "transcription": "[áilənd]", - "__v": 0, - "textExampleTranslate": "Япония - это группа островов", - "textMeaningTranslate": "Остров - это земля посреди воды", - "wordTranslate": "остров" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7a0" - }, - "group": 1, - "page": 8, - "word": "ocean", - "image": "files/09_0769.jpg", - "audio": "files/09_0769.mp3", - "audioMeaning": "files/09_0769_meaning.mp3", - "audioExample": "files/09_0769_example.mp3", - "textMeaning": "The ocean is all of the salt water that surrounds land.", - "textExample": "The ocean can make powerful waves.", - "transcription": "[óuʃən]", - "__v": 0, - "textExampleTranslate": "Океан может создавать мощные волны", - "textMeaningTranslate": "Океан - это вся соленая вода, которая окружает землю", - "wordTranslate": "океан" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7a1" - }, - "group": 1, - "page": 8, - "word": "perhaps", - "image": "files/09_0770.jpg", - "audio": "files/09_0770.mp3", - "audioMeaning": "files/09_0770_meaning.mp3", - "audioExample": "files/09_0770_example.mp3", - "textMeaning": "Perhaps is used when you say that something could happen.", - "textExample": "Perhaps I will eat an apple for lunch.", - "transcription": "[pərhǽps]", - "__v": 0, - "textExampleTranslate": "Возможно, я буду есть яблоко на обед", - "textMeaningTranslate": "Возможно, используется, когда вы говорите, что что-то может произойти", - "wordTranslate": "возможно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7a2" - }, - "group": 1, - "page": 8, - "word": "pleasant", - "image": "files/09_0771.jpg", - "audio": "files/09_0771.mp3", - "audioMeaning": "files/09_0771_meaning.mp3", - "audioExample": "files/09_0771_example.mp3", - "textMeaning": "If something is pleasant, you enjoy it.", - "textExample": "The character had a pleasant look on its face.", - "transcription": "[pléznt]", - "__v": 0, - "textExampleTranslate": "У персонажа было приятное выражение лица", - "textMeaningTranslate": "Если что-то приятное, тебе это нравится", - "wordTranslate": "приятный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7a3" - }, - "group": 1, - "page": 8, - "word": "prevent", - "image": "files/09_0772.jpg", - "audio": "files/09_0772.mp3", - "audioMeaning": "files/09_0772_meaning.mp3", - "audioExample": "files/09_0772_example.mp3", - "textMeaning": "To prevent something is to stop it from happening.", - "textExample": "The handcuffs prevented me from moving my hands.", - "transcription": "[privént]", - "__v": 0, - "textExampleTranslate": "Наручники мешали мне двигаться руками", - "textMeaningTranslate": "Предотвратить что-либо - значит остановить это", - "wordTranslate": "предотвращать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7a4" - }, - "group": 1, - "page": 8, - "word": "rock", - "image": "files/09_0773.jpg", - "audio": "files/09_0773.mp3", - "audioMeaning": "files/09_0773_meaning.mp3", - "audioExample": "files/09_0773_example.mp3", - "textMeaning": "A rock is a hard thing in the dirt.", - "textExample": "I stacked rocks on top of one another.", - "transcription": "[rɑk]", - "__v": 0, - "textExampleTranslate": "Я сложил камни друг на друга", - "textMeaningTranslate": "Камень труден в грязи", - "wordTranslate": "скала" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7a5" - }, - "group": 1, - "page": 8, - "word": "smile", - "image": "files/09_0775.jpg", - "audio": "files/09_0775.mp3", - "audioMeaning": "files/09_0775_meaning.mp3", - "audioExample": "files/09_0775_example.mp3", - "textMeaning": "To smile is to show happiness with your mouth.", - "textExample": "The baby smiled at me.", - "transcription": "[smail]", - "__v": 0, - "textExampleTranslate": "Ребенок улыбнулся мне", - "textMeaningTranslate": "Улыбаться - значит показывать счастье своим ртом", - "wordTranslate": "улыбка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7a6" - }, - "group": 1, - "page": 8, - "word": "save", - "image": "files/09_0774.jpg", - "audio": "files/09_0774.mp3", - "audioMeaning": "files/09_0774_meaning.mp3", - "audioExample": "files/09_0774_example.mp3", - "textMeaning": "To save something is to keep it from being hurt.", - "textExample": "I want to help save the world.", - "transcription": "[seiv]", - "__v": 0, - "textExampleTranslate": "Я хочу помочь спасти мир", - "textMeaningTranslate": "Спасти что-то - значит не причинить вреда", - "wordTranslate": "спасти" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7a7" - }, - "group": 1, - "page": 8, - "word": "step", - "image": "files/09_0776.jpg", - "audio": "files/09_0776.mp3", - "audioMeaning": "files/09_0776_meaning.mp3", - "audioExample": "files/09_0776_example.mp3", - "textMeaning": "To step is to walk.", - "textExample": "Be careful where you step.", - "transcription": "[step]", - "__v": 0, - "textExampleTranslate": "Будь осторожен, куда ступаешь", - "textMeaningTranslate": "Шагать - это ходить", - "wordTranslate": "шаг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7a8" - }, - "group": 1, - "page": 8, - "word": "still", - "image": "files/09_0777.jpg", - "audio": "files/09_0777.mp3", - "audioMeaning": "files/09_0777_meaning.mp3", - "audioExample": "files/09_0777_example.mp3", - "textMeaning": "Still is used when you say that a situation keeps going on.", - "textExample": "They are still waiting in line to get tickets.", - "transcription": "[stil]", - "__v": 0, - "textExampleTranslate": "Они все еще ждут своей очереди, чтобы получить билеты", - "textMeaningTranslate": "По-прежнему используется, когда вы говорите, что ситуация продолжается", - "wordTranslate": "по-прежнему" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7a9" - }, - "group": 1, - "page": 8, - "word": "taste", - "image": "files/09_0778.jpg", - "audio": "files/09_0778.mp3", - "audioMeaning": "files/09_0778_meaning.mp3", - "audioExample": "files/09_0778_example.mp3", - "textMeaning": "A taste is the flavor something makes in your mouth.", - "textExample": "The taste of the fruit was sweet.", - "transcription": "[teist]", - "__v": 0, - "textExampleTranslate": "Вкус плода был сладким", - "textMeaningTranslate": "Вкус - это аромат, который что-то делает во рту", - "wordTranslate": "вкус" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7aa" - }, - "group": 1, - "page": 8, - "word": "throw", - "image": "files/09_0779.jpg", - "audio": "files/09_0779.mp3", - "audioMeaning": "files/09_0779_meaning.mp3", - "audioExample": "files/09_0779_example.mp3", - "textMeaning": "To throw something is to use your hand to make it go through the air.", - "textExample": "The pitcher can throw the baseball very fast.", - "transcription": "[θrou]", - "__v": 0, - "textExampleTranslate": "Кувшин может бросить бейсбол очень быстро", - "textMeaningTranslate": "Чтобы бросить что-то, нужно использовать руку, чтобы она прошла сквозь воздух", - "wordTranslate": "бросить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ab" - }, - "group": 1, - "page": 8, - "word": "wave", - "image": "files/09_0780.jpg", - "audio": "files/09_0780.mp3", - "audioMeaning": "files/09_0780_meaning.mp3", - "audioExample": "files/09_0780_example.mp3", - "textMeaning": "A wave is a line of water that moves higher than the rest of the water.", - "textExample": "The water was filled with large blue waves.", - "transcription": "[weiv]", - "__v": 0, - "textExampleTranslate": "Вода была наполнена большими синими волнами", - "textMeaningTranslate": "Волна - это линия воды, которая движется выше, чем остальная часть воды", - "wordTranslate": "волна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ac" - }, - "group": 1, - "page": 9, - "word": "citizen", - "image": "files/10_0781.jpg", - "audio": "files/10_0781.mp3", - "audioMeaning": "files/10_0781_meaning.mp3", - "audioExample": "files/10_0781_example.mp3", - "textMeaning": "A citizen is someone who lives in a certain place.", - "textExample": "Carlos was born in Spain. He is a Spanish citizen.", - "transcription": "[sítəzən]", - "__v": 0, - "textExampleTranslate": "Карлос родился в Испании. Он гражданин Испании", - "textMeaningTranslate": "Гражданин - это тот, кто живет в определенном месте", - "wordTranslate": "гражданин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ad" - }, - "group": 1, - "page": 9, - "word": "council", - "image": "files/10_0782.jpg", - "audio": "files/10_0782.mp3", - "audioMeaning": "files/10_0782_meaning.mp3", - "audioExample": "files/10_0782_example.mp3", - "textMeaning": "A council is a group of people who run a city or town.", - "textExample": "The council met to discuss the new laws for the city.", - "transcription": "[káunsəl]", - "__v": 0, - "textExampleTranslate": "Совет собрался, чтобы обсудить новые законы для города", - "textMeaningTranslate": "Совет - это группа людей, которые управляют городом или городом", - "wordTranslate": "совет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ae" - }, - "group": 1, - "page": 9, - "word": "declare", - "image": "files/10_0783.jpg", - "audio": "files/10_0783.mp3", - "audioMeaning": "files/10_0783_meaning.mp3", - "audioExample": "files/10_0783_example.mp3", - "textMeaning": "To declare is to say something officially.", - "textExample": "I declared my love for him.", - "transcription": "[diklɛ́ər]", - "__v": 0, - "textExampleTranslate": "Я объявил свою любовь к нему", - "textMeaningTranslate": "Объявить - значит сказать что-то официально", - "wordTranslate": "объявить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7af" - }, - "group": 1, - "page": 9, - "word": "enormous", - "image": "files/10_0784.jpg", - "audio": "files/10_0784.mp3", - "audioMeaning": "files/10_0784_meaning.mp3", - "audioExample": "files/10_0784_example.mp3", - "textMeaning": "Enormous people or things are very large.", - "textExample": "My dog looks enormous next to yours.", - "transcription": "[inɔ́ːrməs]", - "__v": 0, - "textExampleTranslate": "Моя собака выглядит огромной рядом с вашей", - "textMeaningTranslate": "Огромные люди или вещи очень большие", - "wordTranslate": "огромный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7b0" - }, - "group": 1, - "page": 9, - "word": "extraordinary", - "image": "files/10_0785.jpg", - "audio": "files/10_0785.mp3", - "audioMeaning": "files/10_0785_meaning.mp3", - "audioExample": "files/10_0785_example.mp3", - "textMeaning": "Extraordinary things are amazing.", - "textExample": "The fireman who rescued the girl was extraordinary.", - "transcription": "[ikstrɔ́ːrdənèri]", - "__v": 0, - "textExampleTranslate": "Пожарный, который спас девушку, был необычайным", - "textMeaningTranslate": "Необычные вещи удивительны", - "wordTranslate": "экстраординарный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7b1" - }, - "group": 1, - "page": 9, - "word": "fog", - "image": "files/10_0786.jpg", - "audio": "files/10_0786.mp3", - "audioMeaning": "files/10_0786_meaning.mp3", - "audioExample": "files/10_0786_example.mp3", - "textMeaning": "Fog is a thick cloud that is near the ground or water.", - "textExample": "I did not want to drive in the thick fog.", - "transcription": "[fɔːg]", - "__v": 0, - "textExampleTranslate": "Я не хотел ездить в густом тумане", - "textMeaningTranslate": "Туман - это густое облако, которое находится возле земли или воды", - "wordTranslate": "туман" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7b2" - }, - "group": 1, - "page": 9, - "word": "funeral", - "image": "files/10_0787.jpg", - "audio": "files/10_0787.mp3", - "audioMeaning": "files/10_0787_meaning.mp3", - "audioExample": "files/10_0787_example.mp3", - "textMeaning": "A funeral is a ceremony that takes place after a person dies.", - "textExample": "They had a funeral for the soldier who died during the war.", - "transcription": "[fjúːnərəl]", - "__v": 0, - "textExampleTranslate": "У них были похороны для солдата, который погиб во время войны", - "textMeaningTranslate": "Похороны - это церемония, которая происходит после смерти человека", - "wordTranslate": "похороны" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7b3" - }, - "group": 1, - "page": 9, - "word": "giant", - "image": "files/10_0788.jpg", - "audio": "files/10_0788.mp3", - "audioMeaning": "files/10_0788_meaning.mp3", - "audioExample": "files/10_0788_example.mp3", - "textMeaning": "Giant means very big.", - "textExample": "The giant truck got in my way.", - "transcription": "[dʒáiənt]", - "__v": 0, - "textExampleTranslate": "Гигантский грузовик встал у меня на пути", - "textMeaningTranslate": "Гигант означает очень большой", - "wordTranslate": "гигант" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7b4" - }, - "group": 1, - "page": 9, - "word": "impression", - "image": "files/10_0789.jpg", - "audio": "files/10_0789.mp3", - "audioMeaning": "files/10_0789_meaning.mp3", - "audioExample": "files/10_0789_example.mp3", - "textMeaning": "An impression is the way of thinking about someone or something.", - "textExample": "Most people’s first impression of Dr. Giani is that he is mean.", - "transcription": "[impréʃən]", - "__v": 0, - "textExampleTranslate": "У большинства людей первое впечатление о докторе Джани заключается в том, что он злой", - "textMeaningTranslate": "Впечатление - это способ думать о ком-то или о чем-то", - "wordTranslate": "впечатление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7b5" - }, - "group": 1, - "page": 9, - "word": "intention", - "image": "files/10_0790.jpg", - "audio": "files/10_0790.mp3", - "audioMeaning": "files/10_0790_meaning.mp3", - "audioExample": "files/10_0790_example.mp3", - "textMeaning": "An intention is what a person plans to do.", - "textExample": "Do you have good intentions?", - "transcription": "[inténʃən]", - "__v": 0, - "textExampleTranslate": "У тебя хорошие намерения?", - "textMeaningTranslate": "Намерение - это то, что человек планирует делать", - "wordTranslate": "намерение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7b6" - }, - "group": 1, - "page": 9, - "word": "mad", - "image": "files/10_0791.jpg", - "audio": "files/10_0791.mp3", - "audioMeaning": "files/10_0791_meaning.mp3", - "audioExample": "files/10_0791_example.mp3", - "textMeaning": "A mad person or animal is angry.", - "textExample": "Mother got mad when I didn’t listen to her.", - "transcription": "[mæd]", - "__v": 0, - "textExampleTranslate": "Мать разозлилась, когда я ее не слушал", - "textMeaningTranslate": "Безумный человек или животное злится", - "wordTranslate": "без ума" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7b7" - }, - "group": 1, - "page": 9, - "word": "ought", - "image": "files/10_0792.jpg", - "audio": "files/10_0792.mp3", - "audioMeaning": "files/10_0792_meaning.mp3", - "audioExample": "files/10_0792_example.mp3", - "textMeaning": "If you ought to do an action, it is the right thing to do.", - "textExample": "I ought to take my library books back.", - "transcription": "[ɔːt]", - "__v": 0, - "textExampleTranslate": "Я должен забрать свои библиотечные книги обратно", - "textMeaningTranslate": "Если вы должны сделать действие, это правильно", - "wordTranslate": "должен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7b8" - }, - "group": 1, - "page": 9, - "word": "resist", - "image": "files/10_0793.jpg", - "audio": "files/10_0793.mp3", - "audioMeaning": "files/10_0793_meaning.mp3", - "audioExample": "files/10_0793_example.mp3", - "textMeaning": "To resist something is to fight against it.", - "textExample": "He resisted the treatment at the hospital.", - "transcription": "[rizíst]", - "__v": 0, - "textExampleTranslate": "Он сопротивлялся лечению в больнице", - "textMeaningTranslate": "Противостоять чему-либо - значит бороться с этим", - "wordTranslate": "оказывать сопротивление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7b9" - }, - "group": 1, - "page": 9, - "word": "reveal", - "image": "files/10_0794.jpg", - "audio": "files/10_0794.mp3", - "audioMeaning": "files/10_0794_meaning.mp3", - "audioExample": "files/10_0794_example.mp3", - "textMeaning": "To reveal is to show something.", - "textExample": "I will reveal where I hid the candy bar.", - "transcription": "[rivíːl]", - "__v": 0, - "textExampleTranslate": "Я покажу, где я спрятал моноблок", - "textMeaningTranslate": "Раскрыть - значит показать что-то", - "wordTranslate": "раскрыть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ba" - }, - "group": 1, - "page": 9, - "word": "rid", - "image": "files/10_0795.jpg", - "audio": "files/10_0795.mp3", - "audioMeaning": "files/10_0795_meaning.mp3", - "audioExample": "files/10_0795_example.mp3", - "textMeaning": "To rid is to make a place free from something or someone.", - "textExample": "We rid our home of mice by using traps.", - "transcription": "[rid]", - "__v": 0, - "textExampleTranslate": "Мы избавляем наш дом от мышей, используя ловушки", - "textMeaningTranslate": "Избавить - значит освободить место от чего-то или кого-то", - "wordTranslate": "избавиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7bb" - }, - "group": 1, - "page": 9, - "word": "sword", - "image": "files/10_0796.jpg", - "audio": "files/10_0796.mp3", - "audioMeaning": "files/10_0796_meaning.mp3", - "audioExample": "files/10_0796_example.mp3", - "textMeaning": "A sword is a long sharp weapon.", - "textExample": "They used to use swords in battles in ancient times.", - "transcription": "[sɔːrd]", - "__v": 0, - "textExampleTranslate": "Они использовали мечи в сражениях в древние времена", - "textMeaningTranslate": "Меч - длинное острое оружие", - "wordTranslate": "меч" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7bc" - }, - "group": 1, - "page": 9, - "word": "trap", - "image": "files/10_0798.jpg", - "audio": "files/10_0798.mp3", - "audioMeaning": "files/10_0798_meaning.mp3", - "audioExample": "files/10_0798_example.mp3", - "textMeaning": "To trap people or animals is to capture them so they cannot get away.", - "textExample": "We trapped butterflies in a net.", - "transcription": "[træp]", - "__v": 0, - "textExampleTranslate": "Мы поймали бабочек в сеть", - "textMeaningTranslate": "Захватить людей или животных - значит поймать их, чтобы они не могли убежать", - "wordTranslate": "ловушка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7c1" - }, - "group": 1, - "page": 10, - "word": "astronomy", - "image": "files/11_0802.jpg", - "audio": "files/11_0802.mp3", - "audioMeaning": "files/11_0802_meaning.mp3", - "audioExample": "files/11_0802_example.mp3", - "textMeaning": "Astronomy is the study of the stars and planets.", - "textExample": "Harold loved looking at the stars, so he decided to study astronomy.", - "transcription": "[əstrɑ́nəmi]", - "__v": 0, - "textExampleTranslate": "Гарольд любил смотреть на звезды, поэтому он решил изучать астрономию", - "textMeaningTranslate": "Астрономия - это изучение звезд и планет", - "wordTranslate": "астрономия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7bf" - }, - "group": 1, - "page": 9, - "word": "violent", - "image": "files/10_0800.jpg", - "audio": "files/10_0800.mp3", - "audioMeaning": "files/10_0800_meaning.mp3", - "audioExample": "files/10_0800_example.mp3", - "textMeaning": "A violent person or animal uses force to hurt others.", - "textExample": "The man was put into jail because he was violent.", - "transcription": "[váiələnt]", - "__v": 0, - "textExampleTranslate": "Человека посадили в тюрьму за насилие", - "textMeaningTranslate": "Насильственный человек или животное использует силу, чтобы причинить боль другим", - "wordTranslate": "неистовый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7bd" - }, - "group": 1, - "page": 9, - "word": "tale", - "image": "files/10_0797.jpg", - "audio": "files/10_0797.mp3", - "audioMeaning": "files/10_0797_meaning.mp3", - "audioExample": "files/10_0797_example.mp3", - "textMeaning": "A tale is a story.", - "textExample": "She told her two friends about the wild tale of her day.", - "transcription": "[teil]", - "__v": 0, - "textExampleTranslate": "Она рассказала своим двум друзьям о дикой истории ее дня", - "textMeaningTranslate": "Сказка - это история", - "wordTranslate": "сказка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7be" - }, - "group": 1, - "page": 9, - "word": "trial", - "image": "files/10_0799.jpg", - "audio": "files/10_0799.mp3", - "audioMeaning": "files/10_0799_meaning.mp3", - "audioExample": "files/10_0799_example.mp3", - "textMeaning": "A trial is the way a court discovers if a person is guilty or innocent.", - "textExample": "He went on trial for robbing the bank.", - "transcription": "[tráiəl]", - "__v": 0, - "textExampleTranslate": "Он предстал перед судом за ограбление банка", - "textMeaningTranslate": "Суд - это способ, которым суд обнаруживает, виновен ли человек или невиновен", - "wordTranslate": "пробный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7c0" - }, - "group": 1, - "page": 10, - "word": "admission", - "image": "files/11_0801.jpg", - "audio": "files/11_0801.mp3", - "audioMeaning": "files/11_0801_meaning.mp3", - "audioExample": "files/11_0801_example.mp3", - "textMeaning": "Admission is the act of allowing to enter a place.", - "textExample": "The admission ticket to the movie was $5.", - "transcription": "[ədmíʃən]", - "__v": 0, - "textExampleTranslate": "Входной билет в кино был 5 долларов", - "textMeaningTranslate": "Прием - это акт, позволяющий войти в место", - "wordTranslate": "прием" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7c3" - }, - "group": 1, - "page": 10, - "word": "chemistry", - "image": "files/11_0804.jpg", - "audio": "files/11_0804.mp3", - "audioMeaning": "files/11_0804_meaning.mp3", - "audioExample": "files/11_0804_example.mp3", - "textMeaning": "Chemistry is the study of substances and reactions between them.", - "textExample": "In chemistry class, the professor taught us about chemical reactions.", - "transcription": "[kémistri]", - "__v": 0, - "textExampleTranslate": "На уроке химии профессор учил нас химическим реакциям", - "textMeaningTranslate": "Химия - это изучение веществ и реакций между ними", - "wordTranslate": "химия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7c2" - }, - "group": 1, - "page": 10, - "word": "blame", - "image": "files/11_0803.jpg", - "audio": "files/11_0803.mp3", - "audioMeaning": "files/11_0803_meaning.mp3", - "audioExample": "files/11_0803_example.mp3", - "textMeaning": "To blame someone for something bad is to say they did it.", - "textExample": "My mom blamed me for something I didn’t do.", - "transcription": "[bleim]", - "__v": 0, - "textExampleTranslate": "Моя мама обвиняла меня в том, чего я не делала", - "textMeaningTranslate": "Винить кого-то в чем-то плохом - значит сказать, что он это сделал", - "wordTranslate": "вина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7c6" - }, - "group": 1, - "page": 10, - "word": "exhibit", - "image": "files/11_0807.jpg", - "audio": "files/11_0807.mp3", - "audioMeaning": "files/11_0807_meaning.mp3", - "audioExample": "files/11_0807_example.mp3", - "textMeaning": "To exhibit is to show something so that people can go look at it.", - "textExample": "My painting will be exhibited at the fair.", - "transcription": "[igzíbit]", - "__v": 0, - "textExampleTranslate": "Моя картина будет выставлена на ярмарке", - "textMeaningTranslate": "Выставлять - значит показывать что-то, чтобы люди могли посмотреть на это", - "wordTranslate": "экспонат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7c4" - }, - "group": 1, - "page": 10, - "word": "despite", - "image": "files/11_0805.jpg", - "audio": "files/11_0805.mp3", - "audioMeaning": "files/11_0805_meaning.mp3", - "audioExample": "files/11_0805_example.mp3", - "textMeaning": "Despite shows a difference from what is expected.", - "textExample": "We still played the game despite the cold weather.", - "transcription": "[dispáit]", - "__v": 0, - "textExampleTranslate": "Мы все еще играли в игру, несмотря на холодную погоду", - "textMeaningTranslate": "Несмотря на то, что показывает разницу от того, что ожидается", - "wordTranslate": "несмотря на" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7c5" - }, - "group": 1, - "page": 10, - "word": "dinosaur", - "image": "files/11_0806.jpg", - "audio": "files/11_0806.mp3", - "audioMeaning": "files/11_0806_meaning.mp3", - "audioExample": "files/11_0806_example.mp3", - "textMeaning": "A dinosaur is a very big animal that lived millions of years ago.", - "textExample": "I like to see the dinosaur bones at the museum.", - "transcription": "[dáinəsɔ̀ːr]", - "__v": 0, - "textExampleTranslate": "Мне нравится видеть кости динозавра в музее", - "textMeaningTranslate": "Динозавр - это очень большое животное, которое жило миллионы лет назад", - "wordTranslate": "динозавр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7c7" - }, - "group": 1, - "page": 10, - "word": "fame", - "image": "files/11_0808.jpg", - "audio": "files/11_0808.mp3", - "audioMeaning": "files/11_0808_meaning.mp3", - "audioExample": "files/11_0808_example.mp3", - "textMeaning": "Fame is a reputation one has gained among the public.", - "textExample": "He had fame and fortune, but he was not happy.", - "transcription": "[feim]", - "__v": 0, - "textExampleTranslate": "У него была слава и богатство, но он не был счастлив", - "textMeaningTranslate": "Слава - это репутация, которую каждый приобрел среди публики", - "wordTranslate": "слава" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7c8" - }, - "group": 1, - "page": 10, - "word": "forecast", - "image": "files/11_0809.jpg", - "audio": "files/11_0809.mp3", - "audioMeaning": "files/11_0809_meaning.mp3", - "audioExample": "files/11_0809_example.mp3", - "textMeaning": "A forecast is an idea about what the weather will be like in the future.", - "textExample": "The forecast says that it will rain all week.", - "transcription": "[fɔ́ːrkæ̀st]", - "__v": 0, - "textExampleTranslate": "Прогноз говорит, что будет идти дождь всю неделю", - "textMeaningTranslate": "Прогноз - это представление о том, какой будет погода в будущем", - "wordTranslate": "прогноз" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7c9" - }, - "group": 1, - "page": 10, - "word": "genius", - "image": "files/11_0810.jpg", - "audio": "files/11_0810.mp3", - "audioMeaning": "files/11_0810_meaning.mp3", - "audioExample": "files/11_0810_example.mp3", - "textMeaning": "A genius is a very smart person.", - "textExample": "Since she was a genius, she easily passed all of her school exams.", - "transcription": "[dʒíːnjəs]", - "__v": 0, - "textExampleTranslate": "Поскольку она была гением, она легко сдала все школьные экзамены", - "textMeaningTranslate": "Гений очень умный человек", - "wordTranslate": "гений" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ca" - }, - "group": 1, - "page": 10, - "word": "gentle", - "image": "files/11_0811.jpg", - "audio": "files/11_0811.mp3", - "audioMeaning": "files/11_0811_meaning.mp3", - "audioExample": "files/11_0811_example.mp3", - "textMeaning": "Someone who is gentle is kind and calm.", - "textExample": "He is very gentle with the baby.", - "transcription": "[dʒéntl]", - "__v": 0, - "textExampleTranslate": "Он очень нежный с ребенком", - "textMeaningTranslate": "Кто-то, кто нежен, добр и спокоен", - "wordTranslate": "нежный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7cb" - }, - "group": 1, - "page": 10, - "word": "geography", - "image": "files/11_0812.jpg", - "audio": "files/11_0812.mp3", - "audioMeaning": "files/11_0812_meaning.mp3", - "audioExample": "files/11_0812_example.mp3", - "textMeaning": "Geography is the study of the Earth, its land, weather, etc.", - "textExample": "I had to draw a map for geography class.", - "transcription": "[dʒiάgrəfi]", - "__v": 0, - "textExampleTranslate": "Я должен был нарисовать карту для класса географии", - "textMeaningTranslate": "География - это изучение Земли, ее земли, погоды и т. Д", - "wordTranslate": "география" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7cc" - }, - "group": 1, - "page": 10, - "word": "interfere", - "image": "files/11_0813.jpg", - "audio": "files/11_0813.mp3", - "audioMeaning": "files/11_0813_meaning.mp3", - "audioExample": "files/11_0813_example.mp3", - "textMeaning": "To interfere is to cause problems and keep something from happening.", - "textExample": "My little sister always interferes when I’m trying to study.", - "transcription": "[ìntərfíər]", - "__v": 0, - "textExampleTranslate": "Моя младшая сестра всегда мешает, когда я пытаюсь учиться", - "textMeaningTranslate": "Вмешиваться - значит создавать проблемы и препятствовать чему-либо происходить", - "wordTranslate": "вмешиваться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7cd" - }, - "group": 1, - "page": 10, - "word": "lightly", - "image": "files/11_0814.jpg", - "audio": "files/11_0814.mp3", - "audioMeaning": "files/11_0814_meaning.mp3", - "audioExample": "files/11_0814_example.mp3", - "textMeaning": "To do something lightly is to not push very hard.", - "textExample": "Draw lightly so you do not tear your paper.", - "transcription": "[láitli]", - "__v": 0, - "textExampleTranslate": "Рисуй слегка, чтобы не порвать свою бумагу", - "textMeaningTranslate": "Делать что-то слегка - значит не сильно давить", - "wordTranslate": "слегка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ce" - }, - "group": 1, - "page": 10, - "word": "principal", - "image": "files/11_0815.jpg", - "audio": "files/11_0815.mp3", - "audioMeaning": "files/11_0815_meaning.mp3", - "audioExample": "files/11_0815_example.mp3", - "textMeaning": "A principal is a person in charge of a school.", - "textExample": "My school’s principal can be very strict with the rules.", - "transcription": "[prínsəpəl]", - "__v": 0, - "textExampleTranslate": "Директор школы может быть очень строг с правилами", - "textMeaningTranslate": "Директор - это лицо, отвечающее за школу", - "wordTranslate": "принципал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7cf" - }, - "group": 1, - "page": 10, - "word": "row", - "image": "files/11_0816.jpg", - "audio": "files/11_0816.mp3", - "audioMeaning": "files/11_0816_meaning.mp3", - "audioExample": "files/11_0816_example.mp3", - "textMeaning": "A row is a line of things.", - "textExample": "James put all of his toy soldiers into neat rows.", - "transcription": "[rou]", - "__v": 0, - "textExampleTranslate": "Джеймс собрал всех своих игрушечных солдат в аккуратные ряды", - "textMeaningTranslate": "Строка - это линия вещей", - "wordTranslate": "строка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7d0" - }, - "group": 1, - "page": 10, - "word": "shelf", - "image": "files/11_0817.jpg", - "audio": "files/11_0817.mp3", - "audioMeaning": "files/11_0817_meaning.mp3", - "audioExample": "files/11_0817_example.mp3", - "textMeaning": "A shelf is a place on a wall where you put things.", - "textExample": "I keep my clothes on a shelf in my closet.", - "transcription": "[ʃelf]", - "__v": 0, - "textExampleTranslate": "Я держу свою одежду на полке в моем шкафу", - "textMeaningTranslate": "Полка - это место на стене, куда вы кладете вещи", - "wordTranslate": "полка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7d1" - }, - "group": 1, - "page": 10, - "word": "spite", - "image": "files/11_0818.jpg", - "audio": "files/11_0818.mp3", - "audioMeaning": "files/11_0818_meaning.mp3", - "audioExample": "files/11_0818_example.mp3", - "textMeaning": "Spite is the desire to be mean.", - "textExample": "He snuck into his sister’s room and stole her bag out of spite.", - "transcription": "[spait]", - "__v": 0, - "textExampleTranslate": "Он пробрался в комнату своей сестры и украл ее сумку из злости", - "textMeaningTranslate": "Злоба - это желание быть подлым", - "wordTranslate": "злоба" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7d2" - }, - "group": 1, - "page": 10, - "word": "super", - "image": "files/11_0819.jpg", - "audio": "files/11_0819.mp3", - "audioMeaning": "files/11_0819_meaning.mp3", - "audioExample": "files/11_0819_example.mp3", - "textMeaning": "Super means really good.", - "textExample": "My dad said I did a super job cleaning the house.", - "transcription": "[súːpər]", - "__v": 0, - "textExampleTranslate": "Мой папа сказал, что я сделал супер работу по уборке дома", - "textMeaningTranslate": "Супер означает действительно хорошо", - "wordTranslate": "супер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7d3" - }, - "group": 1, - "page": 10, - "word": "wet", - "image": "files/11_0820.jpg", - "audio": "files/11_0820.mp3", - "audioMeaning": "files/11_0820_meaning.mp3", - "audioExample": "files/11_0820_example.mp3", - "textMeaning": "A wet thing has water on it.", - "textExample": "Since my dog was wet, he tried to shake all the water off his body.", - "transcription": "[wet]", - "__v": 0, - "textExampleTranslate": "Так как моя собака была мокрой, он пытался стряхнуть всю воду с тела", - "textMeaningTranslate": "У мокрой вещи есть вода", - "wordTranslate": "мокрый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7d5" - }, - "group": 1, - "page": 11, - "word": "afford", - "image": "files/12_0822.jpg", - "audio": "files/12_0822.mp3", - "audioMeaning": "files/12_0822_meaning.mp3", - "audioExample": "files/12_0822_example.mp3", - "textMeaning": "To afford something means to have enough money to pay for it.", - "textExample": "I’ve been saving my money so I can afford to buy a new bike.", - "transcription": "[əfɔ́ːrd]", - "__v": 0, - "textExampleTranslate": "Я копил деньги, чтобы позволить себе купить новый велосипед", - "textMeaningTranslate": "Позволить себе что-то значит иметь достаточно денег, чтобы заплатить за это", - "wordTranslate": "позволить себе" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7d4" - }, - "group": 1, - "page": 11, - "word": "abuse", - "image": "files/12_0821.jpg", - "audio": "files/12_0821.mp3", - "audioMeaning": "files/12_0821_meaning.mp3", - "audioExample": "files/12_0821_example.mp3", - "textMeaning": "To abuse means to hurt someone or something on purpose.", - "textExample": "The mean man abused his dog when it barked too loudly.", - "transcription": "[əbjúːz]", - "__v": 0, - "textExampleTranslate": "Подлый человек издевался над своей собакой, когда она лаяла слишком громко", - "textMeaningTranslate": "Злоупотреблять означает причинять кому-либо вред или что-то намеренно", - "wordTranslate": "злоупотребление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7d6" - }, - "group": 1, - "page": 11, - "word": "bake", - "image": "files/12_0823.jpg", - "audio": "files/12_0823.mp3", - "audioMeaning": "files/12_0823_meaning.mp3", - "audioExample": "files/12_0823_example.mp3", - "textMeaning": "To bake means to cook food in an oven.", - "textExample": "My sister is a good cook. She bakes delicious cakes.", - "transcription": "[beik]", - "__v": 0, - "textExampleTranslate": "Моя сестра - хороший повар. Она печет вкусные пирожные", - "textMeaningTranslate": "Испечь означает приготовить еду в духовке", - "wordTranslate": "печь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7d7" - }, - "group": 1, - "page": 11, - "word": "bean", - "image": "files/12_0824.jpg", - "audio": "files/12_0824.mp3", - "audioMeaning": "files/12_0824_meaning.mp3", - "audioExample": "files/12_0824_example.mp3", - "textMeaning": "A bean is a plant seed that is good to eat.", - "textExample": "There are many different kinds of beans to eat.", - "transcription": "[biːn]", - "__v": 0, - "textExampleTranslate": "Есть много разных видов бобов, чтобы поесть", - "textMeaningTranslate": "Боб - это растение, которое хорошо поесть", - "wordTranslate": "боб" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7d8" - }, - "group": 1, - "page": 11, - "word": "candle", - "image": "files/12_0825.jpg", - "audio": "files/12_0825.mp3", - "audioMeaning": "files/12_0825_meaning.mp3", - "audioExample": "files/12_0825_example.mp3", - "textMeaning": "A candle is a stick of wax that is lit on fire for light or heat.", - "textExample": "When the lights went out, we lit some candles.", - "transcription": "[kǽndl]", - "__v": 0, - "textExampleTranslate": "Когда погас свет, мы зажгли свечи", - "textMeaningTranslate": "Свеча - это кусок воска, который горит в огне для света или тепла", - "wordTranslate": "свеча" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7d9" - }, - "group": 1, - "page": 11, - "word": "convert", - "image": "files/12_0826.jpg", - "audio": "files/12_0826.mp3", - "audioMeaning": "files/12_0826_meaning.mp3", - "audioExample": "files/12_0826_example.mp3", - "textMeaning": "To convert something means to change it into something else.", - "textExample": "The man converted his messy field into a garden of flowers.", - "transcription": "[kənvə́ːrt]", - "__v": 0, - "textExampleTranslate": "Человек превратил свое грязное поле в сад цветов", - "textMeaningTranslate": "Преобразовать что-то означает превратить это во что-то другое", - "wordTranslate": "конвертировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7da" - }, - "group": 1, - "page": 11, - "word": "decrease", - "image": "files/12_0828.jpg", - "audio": "files/12_0828.mp3", - "audioMeaning": "files/12_0828_meaning.mp3", - "audioExample": "files/12_0828_example.mp3", - "textMeaning": "To decrease something is to make it less than it was before.", - "textExample": "Hiring more police officers has decreased crime in the city.", - "transcription": "[diːkríːs]", - "__v": 0, - "textExampleTranslate": "Наем большего количества полицейских уменьшил преступность в городе", - "textMeaningTranslate": "Уменьшить что-то значит сделать меньше, чем было раньше", - "wordTranslate": "уменьшить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7db" - }, - "group": 1, - "page": 11, - "word": "debt", - "image": "files/12_0827.jpg", - "audio": "files/12_0827.mp3", - "audioMeaning": "files/12_0827_meaning.mp3", - "audioExample": "files/12_0827_example.mp3", - "textMeaning": "A debt is an amount of money that a person owes.", - "textExample": "I have not paid my gas bill. I owe a debt to the gas company.", - "transcription": "[det]", - "__v": 0, - "textExampleTranslate": "Я не оплатил счет за газ. Я задолжал газовой компании", - "textMeaningTranslate": "Долг - это сумма денег, которую человек должен", - "wordTranslate": "долг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7dc" - }, - "group": 1, - "page": 11, - "word": "fault", - "image": "files/12_0829.jpg", - "audio": "files/12_0829.mp3", - "audioMeaning": "files/12_0829_meaning.mp3", - "audioExample": "files/12_0829_example.mp3", - "textMeaning": "A fault is responsibility for a mistake.", - "textExample": "It is my fault that the cat ran away. I left the door open.", - "transcription": "[fɔːlt]", - "__v": 0, - "textExampleTranslate": "Я виноват, что кошка сбежала. Я оставил дверь открытой", - "textMeaningTranslate": "Ошибка - это ответственность за ошибку", - "wordTranslate": "вина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7dd" - }, - "group": 1, - "page": 11, - "word": "fund", - "image": "files/12_0830.jpg", - "audio": "files/12_0830.mp3", - "audioMeaning": "files/12_0830_meaning.mp3", - "audioExample": "files/12_0830_example.mp3", - "textMeaning": "A fund is an amount of money that people have.", - "textExample": "We all put money into our club’s fund.", - "transcription": "[fʌnd]", - "__v": 0, - "textExampleTranslate": "Мы все вкладываем деньги в фонд нашего клуба", - "textMeaningTranslate": "Фонд - это сумма денег, которую имеют люди", - "wordTranslate": "фонд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7de" - }, - "group": 1, - "page": 11, - "word": "generous", - "image": "files/12_0831.jpg", - "audio": "files/12_0831.mp3", - "audioMeaning": "files/12_0831_meaning.mp3", - "audioExample": "files/12_0831_example.mp3", - "textMeaning": "A generous person likes to give things to people.", - "textExample": "The generous man donated several new computers to our school.", - "transcription": "[dʒénərəs]", - "__v": 0, - "textExampleTranslate": "Щедрый человек подарил нашей школе несколько новых компьютеров", - "textMeaningTranslate": "Щедрый человек любит дарить вещи людям", - "wordTranslate": "щедрый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7df" - }, - "group": 1, - "page": 11, - "word": "insist", - "image": "files/12_0833.jpg", - "audio": "files/12_0833.mp3", - "audioMeaning": "files/12_0833_meaning.mp3", - "audioExample": "files/12_0833_example.mp3", - "textMeaning": "To insist means to be firm in telling people what to do.", - "textExample": "I insist that you try some of these cookies.", - "transcription": "[insíst]", - "__v": 0, - "textExampleTranslate": "Я настаиваю на том, чтобы вы попробовали несколько печенек", - "textMeaningTranslate": "Настаивать - значит твердо говорить людям, что делать", - "wordTranslate": "настаивают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7e0" - }, - "group": 1, - "page": 11, - "word": "ingredient", - "image": "files/12_0832.jpg", - "audio": "files/12_0832.mp3", - "audioMeaning": "files/12_0832_meaning.mp3", - "audioExample": "files/12_0832_example.mp3", - "textMeaning": "An ingredient is something that is part of a food dish.", - "textExample": "The main ingredients in cake are eggs, sugar, and flour.", - "transcription": "[ingríːdiənt]", - "__v": 0, - "textExampleTranslate": "Основными ингредиентами торта являются яйца, сахар и мука", - "textMeaningTranslate": "Ингредиент - это то, что является частью пищевого блюда", - "wordTranslate": "ингредиент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7e1" - }, - "group": 1, - "page": 11, - "word": "mess", - "image": "files/12_0834.jpg", - "audio": "files/12_0834.mp3", - "audioMeaning": "files/12_0834_meaning.mp3", - "audioExample": "files/12_0834_example.mp3", - "textMeaning": "A mess is a condition that is not clean or neat.", - "textExample": "Heather’s room was a complete mess.", - "transcription": "[mes]", - "__v": 0, - "textExampleTranslate": "Комната Хизер была полным беспорядком", - "textMeaningTranslate": "Беспорядок - это состояние, которое не является чистым или аккуратным", - "wordTranslate": "беспорядок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7e2" - }, - "group": 1, - "page": 11, - "word": "metal", - "image": "files/12_0835.jpg", - "audio": "files/12_0835.mp3", - "audioMeaning": "files/12_0835_meaning.mp3", - "audioExample": "files/12_0835_example.mp3", - "textMeaning": "Metal is a strong material people use to build things.", - "textExample": "Steel is a common metal that is used to build buildings.", - "transcription": "[métl]", - "__v": 0, - "textExampleTranslate": "Сталь - это обычный металл, который используется для строительства зданий", - "textMeaningTranslate": "Металл - это сильный материал, который люди используют для создания вещей", - "wordTranslate": "металл" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7e3" - }, - "group": 1, - "page": 11, - "word": "monitor", - "image": "files/12_0836.jpg", - "audio": "files/12_0836.mp3", - "audioMeaning": "files/12_0836_meaning.mp3", - "audioExample": "files/12_0836_example.mp3", - "textMeaning": "To monitor people or things is to watch them closely.", - "textExample": "The teacher monitors the students when they take tests.", - "transcription": "[mɑ́nitər]", - "__v": 0, - "textExampleTranslate": "Учитель следит за учениками, когда они сдают тесты", - "textMeaningTranslate": "Наблюдать за людьми или вещами - значит внимательно следить за ними", - "wordTranslate": "монитор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7e4" - }, - "group": 1, - "page": 11, - "word": "oppose", - "image": "files/12_0837.jpg", - "audio": "files/12_0837.mp3", - "audioMeaning": "files/12_0837_meaning.mp3", - "audioExample": "files/12_0837_example.mp3", - "textMeaning": "To oppose something means to dislike it or act against it.", - "textExample": "I want to be a police officer because I oppose crime.", - "transcription": "[əpóuz]", - "__v": 0, - "textExampleTranslate": "Я хочу быть полицейским, потому что я против преступности", - "textMeaningTranslate": "Противостоять чему-либо - значит не любить или действовать против него", - "wordTranslate": "противостоять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7e5" - }, - "group": 1, - "page": 11, - "word": "passive", - "image": "files/12_0838.jpg", - "audio": "files/12_0838.mp3", - "audioMeaning": "files/12_0838_meaning.mp3", - "audioExample": "files/12_0838_example.mp3", - "textMeaning": "A passive person does not take action to solve problems.", - "textExample": "Marcie is so passive that she never solves her own problems.", - "transcription": "[pǽsiv]", - "__v": 0, - "textExampleTranslate": "Марси настолько пассивна, что никогда не решает своих проблем", - "textMeaningTranslate": "Пассивный человек не предпринимает действий для решения проблем", - "wordTranslate": "пассивный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7e6" - }, - "group": 1, - "page": 11, - "word": "quantity", - "image": "files/12_0839.jpg", - "audio": "files/12_0839.mp3", - "audioMeaning": "files/12_0839_meaning.mp3", - "audioExample": "files/12_0839_example.mp3", - "textMeaning": "A quantity is a certain amount of something.", - "textExample": "I have a small quantity of milk in my glass.", - "transcription": "[kwɑ́ntəti]", - "__v": 0, - "textExampleTranslate": "У меня есть небольшое количество молока в моем стакане", - "textMeaningTranslate": "Количество - это определенное количество чего-то", - "wordTranslate": "количество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7e7" - }, - "group": 1, - "page": 11, - "word": "sue", - "image": "files/12_0840.jpg", - "audio": "files/12_0840.mp3", - "audioMeaning": "files/12_0840_meaning.mp3", - "audioExample": "files/12_0840_example.mp3", - "textMeaning": "To sue is to take someone to court for some harmful action.", - "textExample": "I sued the company after I slipped on a banana peel in their hallway.", - "transcription": "[suː]", - "__v": 0, - "textExampleTranslate": "Я подал в суд на компанию после того, как поскользнулся на банановой кожуре в их коридоре", - "textMeaningTranslate": "Подать в суд - значит привлечь кого-либо к суду за какое-либо вредное действие", - "wordTranslate": "подать в суд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7e8" - }, - "group": 1, - "page": 12, - "word": "adequate", - "image": "files/13_0841.jpg", - "audio": "files/13_0841.mp3", - "audioMeaning": "files/13_0841_meaning.mp3", - "audioExample": "files/13_0841_example.mp3", - "textMeaning": "Something adequate is good enough.", - "textExample": "This is adequate for my needs.", - "transcription": "[ǽdikwət]", - "__v": 0, - "textExampleTranslate": "Это соответствует моим потребностям", - "textMeaningTranslate": "Что-то адекватное достаточно хорошо", - "wordTranslate": "адекватный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7e9" - }, - "group": 1, - "page": 12, - "word": "anxiety", - "image": "files/13_0842.jpg", - "audio": "files/13_0842.mp3", - "audioMeaning": "files/13_0842_meaning.mp3", - "audioExample": "files/13_0842_example.mp3", - "textMeaning": "Anxiety is a feeling of worry and fear.", - "textExample": "When I have to climb to high places, I’m filled with anxiety.", - "transcription": "[æŋzáiəti]", - "__v": 0, - "textExampleTranslate": "Когда мне приходится подниматься на высокие места, я полон беспокойства", - "textMeaningTranslate": "Беспокойство - это чувство беспокойства и страха", - "wordTranslate": "тревога" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ea" - }, - "group": 1, - "page": 12, - "word": "army", - "image": "files/13_0843.jpg", - "audio": "files/13_0843.mp3", - "audioMeaning": "files/13_0843_meaning.mp3", - "audioExample": "files/13_0843_example.mp3", - "textMeaning": "An army is a large group of people who fight in wars.", - "textExample": "The army protects all the people in the country.", - "transcription": "[ɑ́ːrmi]", - "__v": 0, - "textExampleTranslate": "Армия защищает всех людей в стране", - "textMeaningTranslate": "Армия - это большая группа людей, которые сражаются в войнах", - "wordTranslate": "армия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7eb" - }, - "group": 1, - "page": 12, - "word": "billion", - "image": "files/13_0844.jpg", - "audio": "files/13_0844.mp3", - "audioMeaning": "files/13_0844_meaning.mp3", - "audioExample": "files/13_0844_example.mp3", - "textMeaning": "A billion is a very large number: 1,000,000,000.", - "textExample": "There are billions of stars in outer space.", - "transcription": "[bíljən]", - "__v": 0, - "textExampleTranslate": "В космосе миллиарды звезд", - "textMeaningTranslate": "Миллиард - это очень большое число: 1 000 000 000", - "wordTranslate": "миллиард" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ec" - }, - "group": 1, - "page": 12, - "word": "carve", - "image": "files/13_0845.jpg", - "audio": "files/13_0845.mp3", - "audioMeaning": "files/13_0845_meaning.mp3", - "audioExample": "files/13_0845_example.mp3", - "textMeaning": "To carve means to cut into something.", - "textExample": "My father usually carves the turkey for Thanksgiving.", - "transcription": "[kɑːrv]", - "__v": 0, - "textExampleTranslate": "Мой отец обычно вырезает индейку на День благодарения", - "textMeaningTranslate": "Вырезать - значит разрезать на что-то", - "wordTranslate": "высекает" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ed" - }, - "group": 1, - "page": 12, - "word": "consult", - "image": "files/13_0846.jpg", - "audio": "files/13_0846.mp3", - "audioMeaning": "files/13_0846_meaning.mp3", - "audioExample": "files/13_0846_example.mp3", - "textMeaning": "To consult means to ask someone for help.", - "textExample": "I will consult my accountant to find a way to pay my bills.", - "transcription": "[kənsʌ́lt]", - "__v": 0, - "textExampleTranslate": "Я проконсультируюсь со своим бухгалтером, чтобы найти способ оплатить счета", - "textMeaningTranslate": "Консультировать означает обратиться к кому-либо за помощью", - "wordTranslate": "консультации" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ee" - }, - "group": 1, - "page": 12, - "word": "initial", - "image": "files/13_0850.jpg", - "audio": "files/13_0850.mp3", - "audioMeaning": "files/13_0850_meaning.mp3", - "audioExample": "files/13_0850_example.mp3", - "textMeaning": "Initial shows that something is first.", - "textExample": "The initial step when writing a paper is to find a good topic.", - "transcription": "[iníʃəl]", - "__v": 0, - "textExampleTranslate": "Первоначальный шаг при написании статьи - найти хорошую тему", - "textMeaningTranslate": "Начальное показывает, что что-то первое", - "wordTranslate": "первоначальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ef" - }, - "group": 1, - "page": 12, - "word": "guarantee", - "image": "files/13_0849.jpg", - "audio": "files/13_0849.mp3", - "audioMeaning": "files/13_0849_meaning.mp3", - "audioExample": "files/13_0849_example.mp3", - "textMeaning": "I will guarantee that the loan will be repaid.", - "textExample": "I guarantee that the sun will come up in the morning.", - "transcription": "[gæ̀rəntíː]", - "__v": 0, - "textExampleTranslate": "Я гарантирую, что солнце взойдет утром", - "textMeaningTranslate": "Я гарантирую, что кредит будет погашен", - "wordTranslate": "гарантия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7f0" - }, - "group": 1, - "page": 12, - "word": "fortune", - "image": "files/13_0848.jpg", - "audio": "files/13_0848.mp3", - "audioMeaning": "files/13_0848_meaning.mp3", - "audioExample": "files/13_0848_example.mp3", - "textMeaning": "Fortune means the things that happen but are not controlled by a person.", - "textExample": "I have good fortune when I play cards.", - "transcription": "[fɔ́ːrʧən]", - "__v": 0, - "textExampleTranslate": "Мне повезло, когда я играю в карты", - "textMeaningTranslate": "Удача означает вещи, которые происходят, но не контролируются человеком", - "wordTranslate": "состояние" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7f1" - }, - "group": 1, - "page": 12, - "word": "emergency", - "image": "files/13_0847.jpg", - "audio": "files/13_0847.mp3", - "audioMeaning": "files/13_0847_meaning.mp3", - "audioExample": "files/13_0847_example.mp3", - "textMeaning": "An emergency is a time when someone needs help right away.", - "textExample": "There is a huge fire in my house! This is an emergency!", - "transcription": "[imə́ːrdʒənsi]", - "__v": 0, - "textExampleTranslate": "В моем доме огромный пожар! Это срочно!", - "textMeaningTranslate": "Чрезвычайная ситуация - это время, когда кому-то нужна помощь сразу", - "wordTranslate": "чрезвычайное происшествие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7f2" - }, - "group": 1, - "page": 12, - "word": "intense", - "image": "files/13_0851.jpg", - "audio": "files/13_0851.mp3", - "audioMeaning": "files/13_0851_meaning.mp3", - "audioExample": "files/13_0851_example.mp3", - "textMeaning": "An intense thing is very strong.", - "textExample": "The skunk made an intense odor that filled the air.", - "transcription": "[inténs]", - "__v": 0, - "textExampleTranslate": "Скунс издал сильный запах, который наполнил воздух", - "textMeaningTranslate": "Интенсивная вещь очень сильна", - "wordTranslate": "интенсивный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7f3" - }, - "group": 1, - "page": 12, - "word": "lend", - "image": "files/13_0852.jpg", - "audio": "files/13_0852.mp3", - "audioMeaning": "files/13_0852_meaning.mp3", - "audioExample": "files/13_0852_example.mp3", - "textMeaning": "To lend something is to give it to someone for a short time.", - "textExample": "My sister lost her pen, so I will lend her mine.", - "transcription": "[lend]", - "__v": 0, - "textExampleTranslate": "Моя сестра потеряла свою ручку, поэтому я одолжу ей свою", - "textMeaningTranslate": "Одолжить что-то значит дать кому-то на короткое время", - "wordTranslate": "давать в долг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7f4" - }, - "group": 1, - "page": 12, - "word": "peak", - "image": "files/13_0853.jpg", - "audio": "files/13_0853.mp3", - "audioMeaning": "files/13_0853_meaning.mp3", - "audioExample": "files/13_0853_example.mp3", - "textMeaning": "The peak is the very top of a mountain.", - "textExample": "There is snow on the peaks of those mountains.", - "transcription": "[piːk]", - "__v": 0, - "textExampleTranslate": "На вершинах этих гор лежит снег", - "textMeaningTranslate": "Вершина - это самая вершина горы", - "wordTranslate": "пик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7f6" - }, - "group": 1, - "page": 12, - "word": "potential", - "image": "files/13_0854.jpg", - "audio": "files/13_0854.mp3", - "audioMeaning": "files/13_0854_meaning.mp3", - "audioExample": "files/13_0854_example.mp3", - "textMeaning": "Potential means capable of being but not yet actual or real.", - "textExample": "I’ve thought of some potential problems with your idea.", - "transcription": "[pouténʃəl]", - "__v": 0, - "textExampleTranslate": "Я подумал о некоторых потенциальных проблемах с вашей идеей", - "textMeaningTranslate": "Потенциал означает возможность быть, но еще не реальным или реальным", - "wordTranslate": "потенциал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7f5" - }, - "group": 1, - "page": 12, - "word": "pride", - "image": "files/13_0855.jpg", - "audio": "files/13_0855.mp3", - "audioMeaning": "files/13_0855_meaning.mp3", - "audioExample": "files/13_0855_example.mp3", - "textMeaning": "Pride is a feeling of happiness about oneself or one’s things.", - "textExample": "I take pride in getting good grades.", - "transcription": "[praid]", - "__v": 0, - "textExampleTranslate": "Я горжусь получением хороших оценок", - "textMeaningTranslate": "Гордость - это чувство счастья о себе или о своих вещах", - "wordTranslate": "гордость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7f7" - }, - "group": 1, - "page": 12, - "word": "proof", - "image": "files/13_0856.jpg", - "audio": "files/13_0856.mp3", - "audioMeaning": "files/13_0856_meaning.mp3", - "audioExample": "files/13_0856_example.mp3", - "textMeaning": "Proof is a fact that shows something is real.", - "textExample": "They used his fingerprint for proof that he committed the crime.", - "transcription": "[pruːf]", - "__v": 0, - "textExampleTranslate": "Они использовали его отпечаток пальца для доказательства того, что он совершил преступление", - "textMeaningTranslate": "Доказательство - это факт, который показывает, что что-то реально", - "wordTranslate": "доказательство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7f8" - }, - "group": 1, - "page": 12, - "word": "quit", - "image": "files/13_0857.jpg", - "audio": "files/13_0857.mp3", - "audioMeaning": "files/13_0857_meaning.mp3", - "audioExample": "files/13_0857_example.mp3", - "textMeaning": "To quit something means to stop doing it.", - "textExample": "I quit running because I got tired.", - "transcription": "[kwit]", - "__v": 0, - "textExampleTranslate": "Я бросил бежать, потому что устал", - "textMeaningTranslate": "Бросить что-то значит прекратить это делать", - "wordTranslate": "уволиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7f9" - }, - "group": 1, - "page": 12, - "word": "tiny", - "image": "files/13_0859.jpg", - "audio": "files/13_0859.mp3", - "audioMeaning": "files/13_0859_meaning.mp3", - "audioExample": "files/13_0859_example.mp3", - "textMeaning": "A tiny thing is very small.", - "textExample": "A baby’s hand is tiny.", - "transcription": "[táini]", - "__v": 0, - "textExampleTranslate": "Рука ребенка крошечная", - "textMeaningTranslate": "Крошечная вещь очень маленькая", - "wordTranslate": "крошечный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7fa" - }, - "group": 1, - "page": 12, - "word": "spin", - "image": "files/13_0858.jpg", - "audio": "files/13_0858.mp3", - "audioMeaning": "files/13_0858_meaning.mp3", - "audioExample": "files/13_0858_example.mp3", - "textMeaning": "To spin is to turn around in circles.", - "textExample": "The boy kept spinning until he fell down.", - "transcription": "[spin]", - "__v": 0, - "textExampleTranslate": "Мальчик продолжал вращаться, пока не упал", - "textMeaningTranslate": "Вращаться - значит вращаться по кругу", - "wordTranslate": "вращение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7fb" - }, - "group": 1, - "page": 12, - "word": "tutor", - "image": "files/13_0860.jpg", - "audio": "files/13_0860.mp3", - "audioMeaning": "files/13_0860_meaning.mp3", - "audioExample": "files/13_0860_example.mp3", - "textMeaning": "A tutor is someone who gives lessons to one student.", - "textExample": "My sister is bad at math. So my mother hired a tutor to help her.", - "transcription": "[tjúːtər]", - "__v": 0, - "textExampleTranslate": "Моя сестра плохо разбирается в математике. Поэтому моя мать наняла репетитора, чтобы помочь ей", - "textMeaningTranslate": "Репетитор - это тот, кто дает уроки одному ученику", - "wordTranslate": "репетитор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7fc" - }, - "group": 1, - "page": 13, - "word": "apparent", - "image": "files/14_0861.jpg", - "audio": "files/14_0861.mp3", - "audioMeaning": "files/14_0861_meaning.mp3", - "audioExample": "files/14_0861_example.mp3", - "textMeaning": "Apparent means clear or easy to see.", - "textExample": "Her happiness was apparent from the smile on her face.", - "transcription": "[əpǽrənt]", - "__v": 0, - "textExampleTranslate": "Ее счастье было видно по улыбке на ее лице", - "textMeaningTranslate": "Видимо означает ясно или легко увидеть", - "wordTranslate": "очевидный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7fd" - }, - "group": 1, - "page": 13, - "word": "blind", - "image": "files/14_0862.jpg", - "audio": "files/14_0862.mp3", - "audioMeaning": "files/14_0862_meaning.mp3", - "audioExample": "files/14_0862_example.mp3", - "textMeaning": "A blind person or animal cannot see.", - "textExample": "The blind man didn’t see the hole and almost fell in.", - "transcription": "[blaind]", - "__v": 0, - "textExampleTranslate": "Слепой не увидел дыру и чуть не упал", - "textMeaningTranslate": "Слепой человек или животное не могут видеть", - "wordTranslate": "слепой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7fe" - }, - "group": 1, - "page": 13, - "word": "calculate", - "image": "files/14_0863.jpg", - "audio": "files/14_0863.mp3", - "audioMeaning": "files/14_0863_meaning.mp3", - "audioExample": "files/14_0863_example.mp3", - "textMeaning": "To calculate is to find an answer using math.", - "textExample": "I calculated how much money I would need to buy the car.", - "transcription": "[kǽlkjəlèit]", - "__v": 0, - "textExampleTranslate": "Я рассчитал, сколько денег мне понадобится, чтобы купить машину", - "textMeaningTranslate": "Рассчитать - значит найти ответ с помощью математики", - "wordTranslate": "подсчитать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af7ff" - }, - "group": 1, - "page": 13, - "word": "chat", - "image": "files/14_0864.jpg", - "audio": "files/14_0864.mp3", - "audioMeaning": "files/14_0864_meaning.mp3", - "audioExample": "files/14_0864_example.mp3", - "textMeaning": "To chat is to talk with someone.", - "textExample": "Even though they were far apart, the couple chatted every day.", - "transcription": "[tʃæt]", - "__v": 0, - "textExampleTranslate": "Хотя они были далеко друг от друга, пара болтали каждый день", - "textMeaningTranslate": "Общаться - значит разговаривать с кем-то", - "wordTranslate": "чат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af801" - }, - "group": 1, - "page": 13, - "word": "compose", - "image": "files/14_0866.jpg", - "audio": "files/14_0866.mp3", - "audioMeaning": "files/14_0866_meaning.mp3", - "audioExample": "files/14_0866_example.mp3", - "textMeaning": "To compose something is to make it from smaller parts.", - "textExample": "Tony composed his report using many sources of information.", - "transcription": "[kəmpóuz]", - "__v": 0, - "textExampleTranslate": "Тони составил свой доклад, используя много источников информации", - "textMeaningTranslate": "Сочинять что-то значит делать из меньших частей", - "wordTranslate": "сочинить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af800" - }, - "group": 1, - "page": 13, - "word": "commit", - "image": "files/14_0865.jpg", - "audio": "files/14_0865.mp3", - "audioMeaning": "files/14_0865_meaning.mp3", - "audioExample": "files/14_0865_example.mp3", - "textMeaning": "To commit to something is to promise to do it.", - "textExample": "Seth wanted to go home, but he had committed to finishing the job.", - "transcription": "[kəmít]", - "__v": 0, - "textExampleTranslate": "Сет хотел пойти домой, но он решил закончить работу", - "textMeaningTranslate": "Обязать что-то - значит обещать это", - "wordTranslate": "совершить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af802" - }, - "group": 1, - "page": 13, - "word": "dormitory", - "image": "files/14_0867.jpg", - "audio": "files/14_0867.mp3", - "audioMeaning": "files/14_0867_meaning.mp3", - "audioExample": "files/14_0867_example.mp3", - "textMeaning": "A dormitory is a school building where students live.", - "textExample": "I will move into the dormitory at the beginning of the school year.", - "transcription": "[dɔ́ːrmətɔ̀ːri]", - "__v": 0, - "textExampleTranslate": "Я перееду в общежитие в начале учебного года", - "textMeaningTranslate": "Общежитие - это здание школы, где живут студенты", - "wordTranslate": "общежитие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af803" - }, - "group": 1, - "page": 13, - "word": "exhaust", - "image": "files/14_0868.jpg", - "audio": "files/14_0868.mp3", - "audioMeaning": "files/14_0868_meaning.mp3", - "audioExample": "files/14_0868_example.mp3", - "textMeaning": "To exhaust someone is to make that person tired.", - "textExample": "John exhausted himself by swimming all day.", - "transcription": "[igzɔ́ːst]", - "__v": 0, - "textExampleTranslate": "Джон исчерпал себя, плавая весь день", - "textMeaningTranslate": "Утомить кого-то - значит утомить этого человека", - "wordTranslate": "выхлопные газы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af804" - }, - "group": 1, - "page": 13, - "word": "greenhouse", - "image": "files/14_0869.jpg", - "audio": "files/14_0869.mp3", - "audioMeaning": "files/14_0869_meaning.mp3", - "audioExample": "files/14_0869_example.mp3", - "textMeaning": "A greenhouse is a small glass building that is used to grow plants.", - "textExample": "We have a small greenhouse in our backyard where we grow plants.", - "transcription": "[gríːnhàus]", - "__v": 0, - "textExampleTranslate": "У нас есть небольшая теплица на заднем дворе, где мы выращиваем растения", - "textMeaningTranslate": "Теплица - это небольшое стеклянное здание, которое используется для выращивания растений", - "wordTranslate": "парниковый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af806" - }, - "group": 1, - "page": 13, - "word": "obvious", - "image": "files/14_0871.jpg", - "audio": "files/14_0871.mp3", - "audioMeaning": "files/14_0871_meaning.mp3", - "audioExample": "files/14_0871_example.mp3", - "textMeaning": "Obvious means clear or easy to see.", - "textExample": "It was obvious that he was tired. He kept falling asleep.", - "transcription": "[ɑ́bviəs]", - "__v": 0, - "textExampleTranslate": "Было очевидно, что он устал. Он продолжал засыпать", - "textMeaningTranslate": "Очевидное означает ясно или легко увидеть", - "wordTranslate": "очевидно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af805" - }, - "group": 1, - "page": 13, - "word": "ignore", - "image": "files/14_0870.jpg", - "audio": "files/14_0870.mp3", - "audioMeaning": "files/14_0870_meaning.mp3", - "audioExample": "files/14_0870_example.mp3", - "textMeaning": "To ignore something is to act like you do not see or hear it.", - "textExample": "I ignored the message he was making and kept studying.", - "transcription": "[ignɔ́ːr]", - "__v": 0, - "textExampleTranslate": "Я проигнорировал сообщение, которое он делал, и продолжал изучать", - "textMeaningTranslate": "Игнорировать что-то - значит действовать так, как будто вы этого не видите или не слышите", - "wordTranslate": "игнорировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af807" - }, - "group": 1, - "page": 13, - "word": "physics", - "image": "files/14_0872.jpg", - "audio": "files/14_0872.mp3", - "audioMeaning": "files/14_0872_meaning.mp3", - "audioExample": "files/14_0872_example.mp3", - "textMeaning": "Physics is a science that deals with energy and how it affects things.", - "textExample": "In physics class, we used Newton’s Cradle to learn about energy.", - "transcription": "[fíziks]", - "__v": 0, - "textExampleTranslate": "На уроке физики мы использовали Колыбель Ньютона, чтобы узнать об энергии", - "textMeaningTranslate": "Физика - это наука, которая имеет дело с энергией и тем, как она влияет на вещи", - "wordTranslate": "физика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af808" - }, - "group": 1, - "page": 13, - "word": "portion", - "image": "files/14_0873.jpg", - "audio": "files/14_0873.mp3", - "audioMeaning": "files/14_0873_meaning.mp3", - "audioExample": "files/14_0873_example.mp3", - "textMeaning": "A portion of something is a part of it.", - "textExample": "I only ate a small portion of the pizza.", - "transcription": "[pɔ́ːrʃən]", - "__v": 0, - "textExampleTranslate": "Я съел только небольшую часть пиццы", - "textMeaningTranslate": "Часть чего-то есть часть этого", - "wordTranslate": "часть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af809" - }, - "group": 1, - "page": 13, - "word": "remind", - "image": "files/14_0874.jpg", - "audio": "files/14_0874.mp3", - "audioMeaning": "files/14_0874_meaning.mp3", - "audioExample": "files/14_0874_example.mp3", - "textMeaning": "To remind is to tell someone to remember to do something.", - "textExample": "Nick’s dad reminded him to do his homework.", - "transcription": "[rimáind]", - "__v": 0, - "textExampleTranslate": "Папа Ника напомнил ему сделать домашнее задание", - "textMeaningTranslate": "Напомнить - значит сказать кому-то, чтобы он помнил, чтобы что-то делать", - "wordTranslate": "напомнить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af80b" - }, - "group": 1, - "page": 13, - "word": "severe", - "image": "files/14_0876.jpg", - "audio": "files/14_0876.mp3", - "audioMeaning": "files/14_0876_meaning.mp3", - "audioExample": "files/14_0876_example.mp3", - "textMeaning": "Severe means very bad or serious.", - "textExample": "After hitting his hand with the hammer, Sam was in severe pain.", - "transcription": "[sivíəːr]", - "__v": 0, - "textExampleTranslate": "После удара молотка по руке, Сэму очень больно", - "textMeaningTranslate": "Серьезный означает очень плохой или серьезный", - "wordTranslate": "тяжелая форма" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af80a" - }, - "group": 1, - "page": 13, - "word": "secretary", - "image": "files/14_0875.jpg", - "audio": "files/14_0875.mp3", - "audioMeaning": "files/14_0875_meaning.mp3", - "audioExample": "files/14_0875_example.mp3", - "textMeaning": "A secretary is a person who works in an office.", - "textExample": "Rebecca asked her secretary to type a report.", - "transcription": "[sékrətèri]", - "__v": 0, - "textExampleTranslate": "Ребекка попросила своего секретаря напечатать отчет", - "textMeaningTranslate": "Секретарь - это человек, который работает в офисе", - "wordTranslate": "секретарь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af80c" - }, - "group": 1, - "page": 13, - "word": "talent", - "image": "files/14_0877.jpg", - "audio": "files/14_0877.mp3", - "audioMeaning": "files/14_0877_meaning.mp3", - "audioExample": "files/14_0877_example.mp3", - "textMeaning": "A talent is a natural ability to do something well.", - "textExample": "Maria has a talent for playing the piano.", - "transcription": "[tǽlənt]", - "__v": 0, - "textExampleTranslate": "У Марии есть талант играть на пианино", - "textMeaningTranslate": "Талант - это естественная способность делать что-то хорошо", - "wordTranslate": "талант" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af80d" - }, - "group": 1, - "page": 13, - "word": "thesis", - "image": "files/14_0878.jpg", - "audio": "files/14_0878.mp3", - "audioMeaning": "files/14_0878_meaning.mp3", - "audioExample": "files/14_0878_example.mp3", - "textMeaning": "A thesis is an idea that needs to be proved.", - "textExample": "She did not support her thesis very well.", - "transcription": "[ɵíːsis]", - "__v": 0, - "textExampleTranslate": "Она не очень хорошо поддержала свой тезис", - "textMeaningTranslate": "Тезис - это идея, которую нужно доказать", - "wordTranslate": "тезис" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af80e" - }, - "group": 1, - "page": 13, - "word": "uniform", - "image": "files/14_0879.jpg", - "audio": "files/14_0879.mp3", - "audioMeaning": "files/14_0879_meaning.mp3", - "audioExample": "files/14_0879_example.mp3", - "textMeaning": "A uniform is a piece of clothing worn by people of the same group.", - "textExample": "All the members of our marching band wear matching uniforms.", - "transcription": "[júːnəfɔ̀ːrm]", - "__v": 0, - "textExampleTranslate": "Все члены нашего оркестра носят подходящую форму", - "textMeaningTranslate": "Униформа - это предмет одежды людей той же группы", - "wordTranslate": "униформа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af80f" - }, - "group": 1, - "page": 13, - "word": "vision", - "image": "files/14_0880.jpg", - "audio": "files/14_0880.mp3", - "audioMeaning": "files/14_0880_meaning.mp3", - "audioExample": "files/14_0880_example.mp3", - "textMeaning": "Vision is the ability to see.", - "textExample": "The eye doctor tested my vision.", - "transcription": "[víʒən]", - "__v": 0, - "textExampleTranslate": "Глазной врач проверил мое зрение", - "textMeaningTranslate": "Видение - это способность видеть", - "wordTranslate": "видение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af810" - }, - "group": 1, - "page": 14, - "word": "absorb", - "image": "files/15_0881.jpg", - "audio": "files/15_0881.mp3", - "audioMeaning": "files/15_0881_meaning.mp3", - "audioExample": "files/15_0881_example.mp3", - "textMeaning": "To absorb a liquid means to take it inside.", - "textExample": "He used a sponge to absorb the water on the floor.", - "transcription": "[əbsɔ́ːrb]", - "__v": 0, - "textExampleTranslate": "Он использовал губку, чтобы впитывать воду на полу", - "textMeaningTranslate": "Поглотить жидкость - значит взять ее внутрь", - "wordTranslate": "поглотить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af811" - }, - "group": 1, - "page": 14, - "word": "boss", - "image": "files/15_0882.jpg", - "audio": "files/15_0882.mp3", - "audioMeaning": "files/15_0882_meaning.mp3", - "audioExample": "files/15_0882_example.mp3", - "textMeaning": "A boss is a person in charge of other people at work.", - "textExample": "My boss is a nice person.", - "transcription": "[bɔːs]", - "__v": 0, - "textExampleTranslate": "Мой босс хороший человек", - "textMeaningTranslate": "Босс - это человек, отвечающий за других людей на работе", - "wordTranslate": "босс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af812" - }, - "group": 1, - "page": 14, - "word": "charitable", - "image": "files/15_0883.jpg", - "audio": "files/15_0883.mp3", - "audioMeaning": "files/15_0883_meaning.mp3", - "audioExample": "files/15_0883_example.mp3", - "textMeaning": "A charitable organization aims to help people.", - "textExample": "I give money each year to a charitable foundation.", - "transcription": "[ʧǽritəbl]", - "__v": 0, - "textExampleTranslate": "Я каждый год отдаю деньги благотворительному фонду", - "textMeaningTranslate": "Благотворительная организация стремится помогать людям", - "wordTranslate": "благотворительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af813" - }, - "group": 1, - "page": 14, - "word": "committee", - "image": "files/15_0884.jpg", - "audio": "files/15_0884.mp3", - "audioMeaning": "files/15_0884_meaning.mp3", - "audioExample": "files/15_0884_example.mp3", - "textMeaning": "A committee is a group of people who meet together to make decisions.", - "textExample": "The school’s committee agreed on a new dress code for students.", - "transcription": "[kəmíti]", - "__v": 0, - "textExampleTranslate": "Школьный комитет согласовал новый дресс-код для учащихся", - "textMeaningTranslate": "Комитет - это группа людей, которые собираются вместе, чтобы принимать решения", - "wordTranslate": "комитет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af814" - }, - "group": 1, - "page": 14, - "word": "contract", - "image": "files/15_0885.jpg", - "audio": "files/15_0885.mp3", - "audioMeaning": "files/15_0885_meaning.mp3", - "audioExample": "files/15_0885_example.mp3", - "textMeaning": "A contract is a written agreement between two people.", - "textExample": "The woman signed a contract when she bought the house.", - "transcription": "[kɑ́ntrækt]", - "__v": 0, - "textExampleTranslate": "Женщина подписала контракт, когда купила дом", - "textMeaningTranslate": "Контракт - это письменное соглашение между двумя людьми", - "wordTranslate": "контракт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af815" - }, - "group": 1, - "page": 14, - "word": "crew", - "image": "files/15_0886.jpg", - "audio": "files/15_0886.mp3", - "audioMeaning": "files/15_0886_meaning.mp3", - "audioExample": "files/15_0886_example.mp3", - "textMeaning": "A crew is a group of workers.", - "textExample": "My father has a crew that helps him build houses.", - "transcription": "[kruː]", - "__v": 0, - "textExampleTranslate": "У моего отца есть команда, которая помогает ему строить дома", - "textMeaningTranslate": "Экипаж - это группа рабочих", - "wordTranslate": "экипаж" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af816" - }, - "group": 1, - "page": 14, - "word": "devote", - "image": "files/15_0887.jpg", - "audio": "files/15_0887.mp3", - "audioMeaning": "files/15_0887_meaning.mp3", - "audioExample": "files/15_0887_example.mp3", - "textMeaning": "To devote time to something means to spend a lot of time doing it.", - "textExample": "She devotes two hours a day to playing the piano.", - "transcription": "[divóut]", - "__v": 0, - "textExampleTranslate": "Она посвящает два часа в день игре на пианино", - "textMeaningTranslate": "Посвятить время чему-либо - значит потратить много времени на это", - "wordTranslate": "посвятить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af817" - }, - "group": 1, - "page": 14, - "word": "dig", - "image": "files/15_0888.jpg", - "audio": "files/15_0888.mp3", - "audioMeaning": "files/15_0888_meaning.mp3", - "audioExample": "files/15_0888_example.mp3", - "textMeaning": "To dig is to make a hole in the ground.", - "textExample": "My dog digs in the yard so he can hide his bones.", - "transcription": "[dig]", - "__v": 0, - "textExampleTranslate": "Моя собака копается во дворе, чтобы он мог спрятать свои кости", - "textMeaningTranslate": "Копать - значит делать яму в земле", - "wordTranslate": "копать землю" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af818" - }, - "group": 1, - "page": 14, - "word": "dine", - "image": "files/15_0889.jpg", - "audio": "files/15_0889.mp3", - "audioMeaning": "files/15_0889_meaning.mp3", - "audioExample": "files/15_0889_example.mp3", - "textMeaning": "To dine means to eat dinner.", - "textExample": "The young couple dined at their home.", - "transcription": "[dain]", - "__v": 0, - "textExampleTranslate": "Молодая пара обедала у себя дома", - "textMeaningTranslate": "Пообедать - значит пообедать", - "wordTranslate": "обедает" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af819" - }, - "group": 1, - "page": 14, - "word": "donate", - "image": "files/15_0890.jpg", - "audio": "files/15_0890.mp3", - "audioMeaning": "files/15_0890_meaning.mp3", - "audioExample": "files/15_0890_example.mp3", - "textMeaning": "To donate is to give something to a charity or organization.", - "textExample": "We donate money to charities every year.", - "transcription": "[dóuneit]", - "__v": 0, - "textExampleTranslate": "Мы жертвуем деньги благотворительным организациям каждый год", - "textMeaningTranslate": "Пожертвовать - значит дать что-то благотворительной организации или организации", - "wordTranslate": "пожертвовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af81a" - }, - "group": 1, - "page": 14, - "word": "double", - "image": "files/15_0891.jpg", - "audio": "files/15_0891.mp3", - "audioMeaning": "files/15_0891_meaning.mp3", - "audioExample": "files/15_0891_example.mp3", - "textMeaning": "Double means twice as much or twice as many.", - "textExample": "I paid almost double the amount for that shirt.", - "transcription": "[dʌ́bəl]", - "__v": 0, - "textExampleTranslate": "Я заплатил почти вдвое больше за эту рубашку", - "textMeaningTranslate": "Двойной означает вдвое больше или вдвое больше", - "wordTranslate": "двойной" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af81b" - }, - "group": 1, - "page": 14, - "word": "flavor", - "image": "files/15_0892.jpg", - "audio": "files/15_0892.mp3", - "audioMeaning": "files/15_0892_meaning.mp3", - "audioExample": "files/15_0892_example.mp3", - "textMeaning": "A flavor is the taste of food or drinks.", - "textExample": "The flavor of the ice cream was very good.", - "transcription": "[fléivər]", - "__v": 0, - "textExampleTranslate": "Вкус мороженого был очень хорошим", - "textMeaningTranslate": "Аромат - это вкус еды или напитков", - "wordTranslate": "аромат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af81c" - }, - "group": 1, - "page": 14, - "word": "foundation", - "image": "files/15_0893.jpg", - "audio": "files/15_0893.mp3", - "audioMeaning": "files/15_0893_meaning.mp3", - "audioExample": "files/15_0893_example.mp3", - "textMeaning": "A foundation is a group that provides money for research.", - "textExample": "The foundation raised money to give scholarships to students.", - "transcription": "[faundéiʃən]", - "__v": 0, - "textExampleTranslate": "Фонд собрал деньги, чтобы дать стипендии студентам", - "textMeaningTranslate": "Фонд - это группа, которая предоставляет деньги на исследования", - "wordTranslate": "фонд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af81d" - }, - "group": 1, - "page": 14, - "word": "generation", - "image": "files/15_0894.jpg", - "audio": "files/15_0894.mp3", - "audioMeaning": "files/15_0894_meaning.mp3", - "audioExample": "files/15_0894_example.mp3", - "textMeaning": "A generation is a group of people who live at the same time.", - "textExample": "My grandparents are from a different generation than me.", - "transcription": "[ʤènəréiʃən]", - "__v": 0, - "textExampleTranslate": "Мои бабушка и дедушка из другого поколения, чем я", - "textMeaningTranslate": "Поколение - это группа людей, которые живут одновременно", - "wordTranslate": "поколение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af81e" - }, - "group": 1, - "page": 14, - "word": "handle", - "image": "files/15_0895.jpg", - "audio": "files/15_0895.mp3", - "audioMeaning": "files/15_0895_meaning.mp3", - "audioExample": "files/15_0895_example.mp3", - "textMeaning": "A handle is the part of an object people hold while using it.", - "textExample": "The pot is very hot, so pick it up by the handle.", - "transcription": "[hǽndl]", - "__v": 0, - "textExampleTranslate": "Горшок очень горячий, поэтому возьмите его за ручку", - "textMeaningTranslate": "Ручка - это часть объекта, которую люди держат во время ее использования", - "wordTranslate": "ручка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af820" - }, - "group": 1, - "page": 14, - "word": "mud", - "image": "files/15_0897.jpg", - "audio": "files/15_0897.mp3", - "audioMeaning": "files/15_0897_meaning.mp3", - "audioExample": "files/15_0897_example.mp3", - "textMeaning": "Mud is soft, wet dirt.", - "textExample": "My brother played rugby in the mud. Now, he’s dirty.", - "transcription": "[mʌd]", - "__v": 0, - "textExampleTranslate": "Мой брат играл в регби в грязи. Теперь он грязный", - "textMeaningTranslate": "Грязь мягкая, мокрая грязь", - "wordTranslate": "грязь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af81f" - }, - "group": 1, - "page": 14, - "word": "layer", - "image": "files/15_0896.jpg", - "audio": "files/15_0896.mp3", - "audioMeaning": "files/15_0896_meaning.mp3", - "audioExample": "files/15_0896_example.mp3", - "textMeaning": "A layer covers over something or is one of several pieces lying on top of each other.", - "textExample": "There was a layer of snow on the tops of the houses this morning.", - "transcription": "[léiər]", - "__v": 0, - "textExampleTranslate": "Этим утром на крышах домов был слой снега", - "textMeaningTranslate": "Слой покрывает что-то или является одним из нескольких кусков, лежащих друг на друге", - "wordTranslate": "слой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af825" - }, - "group": 1, - "page": 15, - "word": "ancient", - "image": "files/16_0902.jpg", - "audio": "files/16_0902.mp3", - "audioMeaning": "files/16_0902_meaning.mp3", - "audioExample": "files/16_0902_example.mp3", - "textMeaning": "If something is ancient, it is very old.", - "textExample": "I want to see the ancient buildings in Rome.", - "transcription": "[éinʃənt]", - "__v": 0, - "textExampleTranslate": "Я хочу увидеть древние здания в Риме", - "textMeaningTranslate": "Если что-то древнее, оно очень старое", - "wordTranslate": "древний" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af821" - }, - "group": 1, - "page": 14, - "word": "smooth", - "image": "files/15_0898.jpg", - "audio": "files/15_0898.mp3", - "audioMeaning": "files/15_0898_meaning.mp3", - "audioExample": "files/15_0898_example.mp3", - "textMeaning": "A smooth thing has no bumps or rough parts.", - "textExample": "The baby’s skin felt very smooth.", - "transcription": "[smuːð]", - "__v": 0, - "textExampleTranslate": "Кожа малыша была очень гладкой", - "textMeaningTranslate": "У гладкой вещи нет неровностей или шероховатостей", - "wordTranslate": "гладкий; плавный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af822" - }, - "group": 1, - "page": 14, - "word": "soil", - "image": "files/15_0899.jpg", - "audio": "files/15_0899.mp3", - "audioMeaning": "files/15_0899_meaning.mp3", - "audioExample": "files/15_0899_example.mp3", - "textMeaning": "Soil is the top layer of land on the Earth.", - "textExample": "The boy planted flowers in the soil and watered them every day.", - "transcription": "[sɔil]", - "__v": 0, - "textExampleTranslate": "Мальчик сажал цветы в почву и поливал их каждый день", - "textMeaningTranslate": "Почва - это верхний слой земли на Земле", - "wordTranslate": "почвы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af823" - }, - "group": 1, - "page": 14, - "word": "unique", - "image": "files/15_0900.jpg", - "audio": "files/15_0900.mp3", - "audioMeaning": "files/15_0900_meaning.mp3", - "audioExample": "files/15_0900_example.mp3", - "textMeaning": "A unique person or thing is not like others.", - "textExample": "Her dog is unique. I’ve never seen one quite like it.", - "transcription": "[juːníːk]", - "__v": 0, - "textExampleTranslate": "Ее собака уникальна. Я никогда не видела такую, как она", - "textMeaningTranslate": "Уникальный человек или вещь не похожа на других", - "wordTranslate": "уникальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af824" - }, - "group": 1, - "page": 15, - "word": "academy", - "image": "files/16_0901.jpg", - "audio": "files/16_0901.mp3", - "audioMeaning": "files/16_0901_meaning.mp3", - "audioExample": "files/16_0901_example.mp3", - "textMeaning": "An academy is a special type of school.", - "textExample": "There are many courses taught at the academy that I go to.", - "transcription": "[əkǽdəmi]", - "__v": 0, - "textExampleTranslate": "В академии я преподаю много курсов", - "textMeaningTranslate": "Академия - это особый тип школы", - "wordTranslate": "академия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af826" - }, - "group": 1, - "page": 15, - "word": "board", - "image": "files/16_0903.jpg", - "audio": "files/16_0903.mp3", - "audioMeaning": "files/16_0903_meaning.mp3", - "audioExample": "files/16_0903_example.mp3", - "textMeaning": "A board is a flat piece of wood.", - "textExample": "The sign was made of a few wooden boards.", - "transcription": "[bɔːrd]", - "__v": 0, - "textExampleTranslate": "Знак был сделан из нескольких деревянных досок", - "textMeaningTranslate": "Доска - это плоский кусок дерева", - "wordTranslate": "доска" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af827" - }, - "group": 1, - "page": 15, - "word": "century", - "image": "files/16_0904.jpg", - "audio": "files/16_0904.mp3", - "audioMeaning": "files/16_0904_meaning.mp3", - "audioExample": "files/16_0904_example.mp3", - "textMeaning": "A century is one hundred years.", - "textExample": "Our company is celebrating a century of business in London.", - "transcription": "[séntʃuri]", - "__v": 0, - "textExampleTranslate": "Наша компания празднует столетие бизнеса в Лондоне", - "textMeaningTranslate": "Век сто лет", - "wordTranslate": "век" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af829" - }, - "group": 1, - "page": 15, - "word": "concert", - "image": "files/16_0906.jpg", - "audio": "files/16_0906.mp3", - "audioMeaning": "files/16_0906_meaning.mp3", - "audioExample": "files/16_0906_example.mp3", - "textMeaning": "A concert is an event where you listen to people play music.", - "textExample": "I enjoyed the concert last night. The band was very good.", - "transcription": "[kάnsəːrt]", - "__v": 0, - "textExampleTranslate": "Мне понравился концерт вчера вечером. Группа была очень хорошей", - "textMeaningTranslate": "Концерт - это событие, когда вы слушаете, как люди играют музыку", - "wordTranslate": "концерт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af82a" - }, - "group": 1, - "page": 15, - "word": "county", - "image": "files/16_0907.jpg", - "audio": "files/16_0907.mp3", - "audioMeaning": "files/16_0907_meaning.mp3", - "audioExample": "files/16_0907_example.mp3", - "textMeaning": "A county is the largest division of a state in a country.", - "textExample": "He wanted to represent the citizens of his county.", - "transcription": "[káunti]", - "__v": 0, - "textExampleTranslate": "Он хотел представлять граждан своего округа", - "textMeaningTranslate": "Округ является крупнейшим подразделением государства в стране", - "wordTranslate": "округ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af828" - }, - "group": 1, - "page": 15, - "word": "clue", - "image": "files/16_0905.jpg", - "audio": "files/16_0905.mp3", - "audioMeaning": "files/16_0905_meaning.mp3", - "audioExample": "files/16_0905_example.mp3", - "textMeaning": "A clue is a fact or object that helps solve a mystery or crime.", - "textExample": "The detective found some clues on the sidewalk.", - "transcription": "[kluː]", - "__v": 0, - "textExampleTranslate": "Детектив нашел улики на тротуаре", - "textMeaningTranslate": "Подсказка - это факт или объект, который помогает раскрыть тайну или преступление", - "wordTranslate": "подсказка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af82b" - }, - "group": 1, - "page": 15, - "word": "dictionary", - "image": "files/16_0908.jpg", - "audio": "files/16_0908.mp3", - "audioMeaning": "files/16_0908_meaning.mp3", - "audioExample": "files/16_0908_example.mp3", - "textMeaning": "A dictionary is a book that tells you what words mean.", - "textExample": "I use the dictionary to learn new words.", - "transcription": "[díkʃənèri]", - "__v": 0, - "textExampleTranslate": "Я использую словарь, чтобы выучить новые слова", - "textMeaningTranslate": "Словарь - это книга, которая говорит вам, что означают слова", - "wordTranslate": "толковый словарь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af82c" - }, - "group": 1, - "page": 15, - "word": "exist", - "image": "files/16_0909.jpg", - "audio": "files/16_0909.mp3", - "audioMeaning": "files/16_0909_meaning.mp3", - "audioExample": "files/16_0909_example.mp3", - "textMeaning": "To exist is to be real.", - "textExample": "Do you really think that unicorns ever existed?", - "transcription": "[igzíst]", - "__v": 0, - "textExampleTranslate": "Вы действительно думаете, что единороги когда-либо существовали?", - "textMeaningTranslate": "Быть значит значит быть настоящим", - "wordTranslate": "существовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af82d" - }, - "group": 1, - "page": 15, - "word": "flat", - "image": "files/16_0910.jpg", - "audio": "files/16_0910.mp3", - "audioMeaning": "files/16_0910_meaning.mp3", - "audioExample": "files/16_0910_example.mp3", - "textMeaning": "Flat describes something that is level and smooth with no curved parts.", - "textExample": "My parents bought a new flat-screen TV on the weekend.", - "transcription": "[fæt]", - "__v": 0, - "textExampleTranslate": "Мои родители купили новый телевизор с плоским экраном на выходных", - "textMeaningTranslate": "Flat описывает нечто ровное и гладкое, без изогнутых частей", - "wordTranslate": "квартира" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af82e" - }, - "group": 1, - "page": 15, - "word": "gentleman", - "image": "files/16_0911.jpg", - "audio": "files/16_0911.mp3", - "audioMeaning": "files/16_0911_meaning.mp3", - "audioExample": "files/16_0911_example.mp3", - "textMeaning": "A gentleman is a nice man.", - "textExample": "My grandfather is a kind and helpful gentleman.", - "transcription": "[ʤéntlmən]", - "__v": 0, - "textExampleTranslate": "Мой дедушка - добрый и отзывчивый джентльмен", - "textMeaningTranslate": "Джентльмен хороший человек", - "wordTranslate": "джентльмен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af82f" - }, - "group": 1, - "page": 15, - "word": "hidden", - "image": "files/16_0912.jpg", - "audio": "files/16_0912.mp3", - "audioMeaning": "files/16_0912_meaning.mp3", - "audioExample": "files/16_0912_example.mp3", - "textMeaning": "Hidden means not easily noticed or too hard to find.", - "textExample": "The hidden camera recorded everything in the parking lot.", - "transcription": "[hídn]", - "__v": 0, - "textExampleTranslate": "Скрытая камера записала все на стоянке", - "textMeaningTranslate": "Скрытое означает не легко заметить или слишком трудно найти", - "wordTranslate": "скрытый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af830" - }, - "group": 1, - "page": 15, - "word": "maybe", - "image": "files/16_0913.jpg", - "audio": "files/16_0913.mp3", - "audioMeaning": "files/16_0913_meaning.mp3", - "audioExample": "files/16_0913_example.mp3", - "textMeaning": "Maybe is used to show that something is possible or may be true.", - "textExample": "If I focus hard enough, maybe I can come up with the right answer.", - "transcription": "[méibi]", - "__v": 0, - "textExampleTranslate": "Если я сфокусируюсь достаточно сильно, возможно, я смогу найти правильный ответ", - "textMeaningTranslate": "Может быть, используется, чтобы показать, что что-то возможно или может быть правдой", - "wordTranslate": "может быть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af831" - }, - "group": 1, - "page": 15, - "word": "officer", - "image": "files/16_0914.jpg", - "audio": "files/16_0914.mp3", - "audioMeaning": "files/16_0914_meaning.mp3", - "audioExample": "files/16_0914_example.mp3", - "textMeaning": "An officer is a leader in the army.", - "textExample": "The soldiers followed the orders of the officer.", - "transcription": "[ɔ́ːfsər]", - "__v": 0, - "textExampleTranslate": "Солдаты следовали приказам офицера", - "textMeaningTranslate": "Офицер - лидер в армии", - "wordTranslate": "офицер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af833" - }, - "group": 1, - "page": 15, - "word": "pound", - "image": "files/16_0916.jpg", - "audio": "files/16_0916.mp3", - "audioMeaning": "files/16_0916_meaning.mp3", - "audioExample": "files/16_0916_example.mp3", - "textMeaning": "To pound something is to hit it many times with a lot of force.", - "textExample": "He pounded the nail with the hammer.", - "transcription": "[paund]", - "__v": 0, - "textExampleTranslate": "Он вбил гвоздь молотком", - "textMeaningTranslate": "Стучать по чему-то - значит многократно бить по нему", - "wordTranslate": "фунт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af834" - }, - "group": 1, - "page": 15, - "word": "process", - "image": "files/16_0917.jpg", - "audio": "files/16_0917.mp3", - "audioMeaning": "files/16_0917_meaning.mp3", - "audioExample": "files/16_0917_example.mp3", - "textMeaning": "A process is the steps to take to do something.", - "textExample": "Making a cake is a long process.", - "transcription": "[prɑ́ses]", - "__v": 0, - "textExampleTranslate": "Создание торта - это долгий процесс", - "textMeaningTranslate": "Процесс - это шаги, которые нужно предпринять, чтобы что-то сделать", - "wordTranslate": "обработать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af832" - }, - "group": 1, - "page": 15, - "word": "original", - "image": "files/16_0915.jpg", - "audio": "files/16_0915.mp3", - "audioMeaning": "files/16_0915_meaning.mp3", - "audioExample": "files/16_0915_example.mp3", - "textMeaning": "If something is original, it is the first one of that thing.", - "textExample": "This is the original painting of the Mona Lisa.", - "transcription": "[ərídʒənəl]", - "__v": 0, - "textExampleTranslate": "Это оригинальная картина Моны Лизы", - "textMeaningTranslate": "Если что-то оригинальное, то это первое", - "wordTranslate": "оригинальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af835" - }, - "group": 1, - "page": 15, - "word": "publish", - "image": "files/16_0918.jpg", - "audio": "files/16_0918.mp3", - "audioMeaning": "files/16_0918_meaning.mp3", - "audioExample": "files/16_0918_example.mp3", - "textMeaning": "To publish a book is to get it printed and ready to sell.", - "textExample": "That company publishes daily newspapers.", - "transcription": "[pʌ́bliʃ]", - "__v": 0, - "textExampleTranslate": "Эта компания издает ежедневные газеты", - "textMeaningTranslate": "Опубликовать книгу - значит распечатать и подготовить к продаже", - "wordTranslate": "публиковать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af836" - }, - "group": 1, - "page": 15, - "word": "theater", - "image": "files/16_0919.jpg", - "audio": "files/16_0919.mp3", - "audioMeaning": "files/16_0919_meaning.mp3", - "audioExample": "files/16_0919_example.mp3", - "textMeaning": "A theater is a building where you watch plays, shows, and movies.", - "textExample": "We went to the theater to see a play.", - "transcription": "[θíːətər]", - "__v": 0, - "textExampleTranslate": "Мы пошли в театр, чтобы посмотреть пьесу", - "textMeaningTranslate": "Театр - это здание, где вы смотрите пьесы, шоу и фильмы", - "wordTranslate": "театр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af837" - }, - "group": 1, - "page": 15, - "word": "wealth", - "image": "files/16_0920.jpg", - "audio": "files/16_0920.mp3", - "audioMeaning": "files/16_0920_meaning.mp3", - "audioExample": "files/16_0920_example.mp3", - "textMeaning": "Wealth is the total of one’s possessions (money, land, etc.).", - "textExample": "One of the most important things for some people is wealth.", - "transcription": "[welθ]", - "__v": 0, - "textExampleTranslate": "Одной из самых важных вещей для некоторых людей является богатство", - "textMeaningTranslate": "Богатство - это сумма имущества (денег, земли и т. Д.)", - "wordTranslate": "богатство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af839" - }, - "group": 1, - "page": 16, - "word": "attach", - "image": "files/17_0922.jpg", - "audio": "files/17_0922.mp3", - "audioMeaning": "files/17_0922_meaning.mp3", - "audioExample": "files/17_0922_example.mp3", - "textMeaning": "To attach is to put two things together.", - "textExample": "I attached the socks to the clothesline to dry.", - "transcription": "[ətǽtʃ]", - "__v": 0, - "textExampleTranslate": "Я прикрепил носки к бельевой веревке, чтобы высохнуть", - "textMeaningTranslate": "Присоединить - значит соединить две вещи", - "wordTranslate": "прикреплять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af838" - }, - "group": 1, - "page": 16, - "word": "aim", - "image": "files/17_0921.jpg", - "audio": "files/17_0921.mp3", - "audioMeaning": "files/17_0921_meaning.mp3", - "audioExample": "files/17_0921_example.mp3", - "textMeaning": "An aim is a goal someone wants to make happen.", - "textExample": "My aim is to become a helicopter pilot.", - "transcription": "[eim]", - "__v": 0, - "textExampleTranslate": "Моя цель - стать пилотом вертолета", - "textMeaningTranslate": "Цель - это цель, которую кто-то хочет реализовать", - "wordTranslate": "цель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af83a" - }, - "group": 1, - "page": 16, - "word": "bet", - "image": "files/17_0923.jpg", - "audio": "files/17_0923.mp3", - "audioMeaning": "files/17_0923_meaning.mp3", - "audioExample": "files/17_0923_example.mp3", - "textMeaning": "To bet is to risk money on the result of a game or a business.", - "textExample": "How much will you bet that your horse will win?", - "transcription": "[bet]", - "__v": 0, - "textExampleTranslate": "На сколько вы поспорите, что ваша лошадь победит?", - "textMeaningTranslate": "Ставить - значит рисковать деньгами в результате игры или бизнеса", - "wordTranslate": "ставка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af83b" - }, - "group": 1, - "page": 16, - "word": "carriage", - "image": "files/17_0924.jpg", - "audio": "files/17_0924.mp3", - "audioMeaning": "files/17_0924_meaning.mp3", - "audioExample": "files/17_0924_example.mp3", - "textMeaning": "A carriage is a vehicle pulled by a horse.", - "textExample": "We took a carriage ride in the park.", - "transcription": "[kǽridʒ]", - "__v": 0, - "textExampleTranslate": "Мы прокатились на карете в парке", - "textMeaningTranslate": "Карета - это машина, запряженная лошадью", - "wordTranslate": "перевозка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af83c" - }, - "group": 1, - "page": 16, - "word": "classic", - "image": "files/17_0925.jpg", - "audio": "files/17_0925.mp3", - "audioMeaning": "files/17_0925_meaning.mp3", - "audioExample": "files/17_0925_example.mp3", - "textMeaning": "A classic thing is something that is common from the past.", - "textExample": "The athlete made a classic mistake-he started running too soon.", - "transcription": "[klǽsik]", - "__v": 0, - "textExampleTranslate": "Спортсмен совершил классическую ошибку - он слишком рано побежал", - "textMeaningTranslate": "Классическая вещь - это нечто общее из прошлого", - "wordTranslate": "классический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af83e" - }, - "group": 1, - "page": 16, - "word": "confirm", - "image": "files/17_0927.jpg", - "audio": "files/17_0927.mp3", - "audioMeaning": "files/17_0927_meaning.mp3", - "audioExample": "files/17_0927_example.mp3", - "textMeaning": "To confirm is to make sure something is correct.", - "textExample": "Winning the game confirmed that James was a good player.", - "transcription": "[kənfə́ːrm]", - "__v": 0, - "textExampleTranslate": "Победа в игре подтвердила, что Джеймс был хорошим игроком", - "textMeaningTranslate": "Подтвердить - значит убедиться, что что-то правильно", - "wordTranslate": "подтвердить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af83d" - }, - "group": 1, - "page": 16, - "word": "commute", - "image": "files/17_0926.jpg", - "audio": "files/17_0926.mp3", - "audioMeaning": "files/17_0926_meaning.mp3", - "audioExample": "files/17_0926_example.mp3", - "textMeaning": "To commute is to travel a long distance to get to work.", - "textExample": "I usually commute to work on the train.", - "transcription": "[kəmjúːt]", - "__v": 0, - "textExampleTranslate": "Я обычно добираюсь до работы на поезде", - "textMeaningTranslate": "Коммутировать - значит путешествовать на большие расстояния, чтобы добраться до работы", - "wordTranslate": "ездить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af83f" - }, - "group": 1, - "page": 16, - "word": "criticize", - "image": "files/17_0928.jpg", - "audio": "files/17_0928.mp3", - "audioMeaning": "files/17_0928_meaning.mp3", - "audioExample": "files/17_0928_example.mp3", - "textMeaning": "To criticize is to say bad things about someone or something.", - "textExample": "He criticized his wife for spending too much money.", - "transcription": "[krítisàiz]", - "__v": 0, - "textExampleTranslate": "Он критиковал свою жену за то, что она потратила слишком много денег", - "textMeaningTranslate": "Критиковать - значит говорить плохие вещи о ком-то или о чем-то", - "wordTranslate": "критиковать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af840" - }, - "group": 1, - "page": 16, - "word": "differ", - "image": "files/17_0929.jpg", - "audio": "files/17_0929.mp3", - "audioMeaning": "files/17_0929_meaning.mp3", - "audioExample": "files/17_0929_example.mp3", - "textMeaning": "To differ is to not be the same as another person or thing.", - "textExample": "I differ from my brother: he is short, while I am tall.", - "transcription": "[dífər]", - "__v": 0, - "textExampleTranslate": "Я отличаюсь от моего брата: он невысокий, а я высокий", - "textMeaningTranslate": "Отличаться - это не значит быть другим человеком или вещью", - "wordTranslate": "отличаются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af841" - }, - "group": 1, - "page": 16, - "word": "expense", - "image": "files/17_0930.jpg", - "audio": "files/17_0930.mp3", - "audioMeaning": "files/17_0930_meaning.mp3", - "audioExample": "files/17_0930_example.mp3", - "textMeaning": "An expense is the money that people spend on something.", - "textExample": "She wrote down all the expenses for her trip.", - "transcription": "[ikspéns]", - "__v": 0, - "textExampleTranslate": "Она записала все расходы на ее поездку", - "textMeaningTranslate": "Расход - это деньги, которые люди тратят на что-то", - "wordTranslate": "расходы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af842" - }, - "group": 1, - "page": 16, - "word": "formal", - "image": "files/17_0931.jpg", - "audio": "files/17_0931.mp3", - "audioMeaning": "files/17_0931_meaning.mp3", - "audioExample": "files/17_0931_example.mp3", - "textMeaning": "A formal thing is official or serious.", - "textExample": "It was a formal dinner, so we wore our best clothes.", - "transcription": "[fɔ́ːrməl]", - "__v": 0, - "textExampleTranslate": "Это был официальный ужин, поэтому мы носили нашу лучшую одежду", - "textMeaningTranslate": "Формальная вещь официальная или серьезная", - "wordTranslate": "формальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af843" - }, - "group": 1, - "page": 16, - "word": "height", - "image": "files/17_0932.jpg", - "audio": "files/17_0932.mp3", - "audioMeaning": "files/17_0932_meaning.mp3", - "audioExample": "files/17_0932_example.mp3", - "textMeaning": "Height is how tall someone or something is.", - "textExample": "My height is 168 centimeters.", - "transcription": "[hait]", - "__v": 0, - "textExampleTranslate": "Мой рост 168 сантиметров", - "textMeaningTranslate": "Высота - это какой рост у кого-то или чего-то", - "wordTranslate": "высота" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af844" - }, - "group": 1, - "page": 16, - "word": "invent", - "image": "files/17_0933.jpg", - "audio": "files/17_0933.mp3", - "audioMeaning": "files/17_0933_meaning.mp3", - "audioExample": "files/17_0933_example.mp3", - "textMeaning": "To invent is to create something that never existed before.", - "textExample": "My grandfather has invented some interesting things.", - "transcription": "[invént]", - "__v": 0, - "textExampleTranslate": "Мой дедушка изобрел некоторые интересные вещи", - "textMeaningTranslate": "Изобретать - значит создавать то, чего раньше никогда не было", - "wordTranslate": "изобрести" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af845" - }, - "group": 1, - "page": 16, - "word": "junior", - "image": "files/17_0934.jpg", - "audio": "files/17_0934.mp3", - "audioMeaning": "files/17_0934_meaning.mp3", - "audioExample": "files/17_0934_example.mp3", - "textMeaning": "A junior person is younger or less experienced.", - "textExample": "When she started at the company, she was only a junior manager.", - "transcription": "[dʒúːnjər]", - "__v": 0, - "textExampleTranslate": "Когда она начинала в компании, она была только младшим менеджером", - "textMeaningTranslate": "Младший человек моложе или менее опытный", - "wordTranslate": "младший" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af846" - }, - "group": 1, - "page": 16, - "word": "labor", - "image": "files/17_0935.jpg", - "audio": "files/17_0935.mp3", - "audioMeaning": "files/17_0935_meaning.mp3", - "audioExample": "files/17_0935_example.mp3", - "textMeaning": "Labor is the act of doing or making something.", - "textExample": "Building the house took a lot of labor.", - "transcription": "[léibər]", - "__v": 0, - "textExampleTranslate": "Строительство дома заняло много труда", - "textMeaningTranslate": "Труд - это действие делать или делать что-то", - "wordTranslate": "труд, работа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af847" - }, - "group": 1, - "page": 16, - "word": "mechanic", - "image": "files/17_0936.jpg", - "audio": "files/17_0936.mp3", - "audioMeaning": "files/17_0936_meaning.mp3", - "audioExample": "files/17_0936_example.mp3", - "textMeaning": "A mechanic is someone who fixes vehicles or machines.", - "textExample": "We took the car to the mechanic to be fixed.", - "transcription": "[məkǽnik]", - "__v": 0, - "textExampleTranslate": "Мы взяли машину к механику, чтобы исправить", - "textMeaningTranslate": "Механик - это тот, кто чинит машины или машины", - "wordTranslate": "механик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af848" - }, - "group": 1, - "page": 16, - "word": "prime", - "image": "files/17_0937.jpg", - "audio": "files/17_0937.mp3", - "audioMeaning": "files/17_0937_meaning.mp3", - "audioExample": "files/17_0937_example.mp3", - "textMeaning": "Prime shows that something is the most important one.", - "textExample": "Dirty air is a prime cause of illness.", - "transcription": "[praim]", - "__v": 0, - "textExampleTranslate": "Грязный воздух - главная причина болезней", - "textMeaningTranslate": "Премьер показывает, что что-то самое важное", - "wordTranslate": "премьер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af849" - }, - "group": 1, - "page": 16, - "word": "shift", - "image": "files/17_0938.jpg", - "audio": "files/17_0938.mp3", - "audioMeaning": "files/17_0938_meaning.mp3", - "audioExample": "files/17_0938_example.mp3", - "textMeaning": "To shift is to move into a different place or direction.", - "textExample": "He shifted to the other side of the table to eat his breakfast.", - "transcription": "[ʃift]", - "__v": 0, - "textExampleTranslate": "Он перешел на другую сторону стола, чтобы съесть свой завтрак", - "textMeaningTranslate": "Сдвиг - это движение в другое место или направление", - "wordTranslate": "сдвиг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af84a" - }, - "group": 1, - "page": 16, - "word": "signal", - "image": "files/17_0939.jpg", - "audio": "files/17_0939.mp3", - "audioMeaning": "files/17_0939_meaning.mp3", - "audioExample": "files/17_0939_example.mp3", - "textMeaning": "A signal is a sound or action that tells someone to do something.", - "textExample": "The coach blew his whistle as a signal to begin the game.", - "transcription": "[sígnəl]", - "__v": 0, - "textExampleTranslate": "Тренер дунул в свисток как сигнал к началу игры", - "textMeaningTranslate": "Сигнал - это звук или действие, которое говорит кому-то что-то делать", - "wordTranslate": "сигнал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af84b" - }, - "group": 1, - "page": 16, - "word": "sincere", - "image": "files/17_0940.jpg", - "audio": "files/17_0940.mp3", - "audioMeaning": "files/17_0940_meaning.mp3", - "audioExample": "files/17_0940_example.mp3", - "textMeaning": "A sincere person is honest, especially about emotions or opinions.", - "textExample": "He sounded sincere when he apologized to me.", - "transcription": "[sinsíəːr]", - "__v": 0, - "textExampleTranslate": "Он звучал искренне, когда извинился передо мной", - "textMeaningTranslate": "Искренний человек честен, особенно в отношении эмоций или мнений", - "wordTranslate": "искренний" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af84c" - }, - "group": 1, - "page": 17, - "word": "ability", - "image": "files/18_0941.jpg", - "audio": "files/18_0941.mp3", - "audioMeaning": "files/18_0941_meaning.mp3", - "audioExample": "files/18_0941_example.mp3", - "textMeaning": "Ability is the quality of a person being able to do something well.", - "textExample": "His swimming abilities let him cross the entire lake.", - "transcription": "[əbíləti]", - "__v": 0, - "textExampleTranslate": "Его способности плавать позволили ему пересечь все озеро", - "textMeaningTranslate": "Способность - это способность человека делать что-то хорошо", - "wordTranslate": "способность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af84d" - }, - "group": 1, - "page": 17, - "word": "agriculture", - "image": "files/18_0942.jpg", - "audio": "files/18_0942.mp3", - "audioMeaning": "files/18_0942_meaning.mp3", - "audioExample": "files/18_0942_example.mp3", - "textMeaning": "Agriculture is the growing of plants and raising of animals for food.", - "textExample": "The farmer studied agriculture in college.", - "transcription": "[ǽgrəkΛlʧər]", - "__v": 0, - "textExampleTranslate": "Фермер изучал сельское хозяйство в колледже", - "textMeaningTranslate": "Сельское хозяйство - это выращивание растений и выращивание животных на корм", - "wordTranslate": "сельское хозяйство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af84e" - }, - "group": 1, - "page": 17, - "word": "cartoon", - "image": "files/18_0943.jpg", - "audio": "files/18_0943.mp3", - "audioMeaning": "files/18_0943_meaning.mp3", - "audioExample": "files/18_0943_example.mp3", - "textMeaning": "A cartoon is a funny drawing.", - "textExample": "Sometimes, people draw cartoons for the newspaper.", - "transcription": "[kaːrtúːn]", - "__v": 0, - "textExampleTranslate": "Иногда люди рисуют мультфильмы для газеты", - "textMeaningTranslate": "Мультфильм - это забавный рисунок", - "wordTranslate": "мультфильм" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af84f" - }, - "group": 1, - "page": 17, - "word": "ceiling", - "image": "files/18_0944.jpg", - "audio": "files/18_0944.mp3", - "audioMeaning": "files/18_0944_meaning.mp3", - "audioExample": "files/18_0944_example.mp3", - "textMeaning": "The ceiling is the top of a room.", - "textExample": "He painted the ceiling with a special roller.", - "transcription": "[síːliŋ]", - "__v": 0, - "textExampleTranslate": "Он расписал потолок специальным валиком", - "textMeaningTranslate": "Потолок - это верх комнаты", - "wordTranslate": "потолок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af850" - }, - "group": 1, - "page": 17, - "word": "convince", - "image": "files/18_0945.jpg", - "audio": "files/18_0945.mp3", - "audioMeaning": "files/18_0945_meaning.mp3", - "audioExample": "files/18_0945_example.mp3", - "textMeaning": "To convince someone means to make that person sure of something.", - "textExample": "She convinced me to buy the house.", - "transcription": "[kənvíns]", - "__v": 0, - "textExampleTranslate": "Она убедила меня купить дом", - "textMeaningTranslate": "Убедить кого-то - значит убедить этого человека в чем-то", - "wordTranslate": "убедить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af851" - }, - "group": 1, - "page": 17, - "word": "curious", - "image": "files/18_0946.jpg", - "audio": "files/18_0946.mp3", - "audioMeaning": "files/18_0946_meaning.mp3", - "audioExample": "files/18_0946_example.mp3", - "textMeaning": "A curious person or animals wants to know about something.", - "textExample": "I opened up the clock because I was curious about how it worked.", - "transcription": "[kjúəriəs]", - "__v": 0, - "textExampleTranslate": "Я открыл часы, потому что мне было любопытно, как это работает", - "textMeaningTranslate": "Любопытный человек или животные хотят что-то узнать", - "wordTranslate": "любопытный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af852" - }, - "group": 1, - "page": 17, - "word": "grain", - "image": "files/18_0951.jpg", - "audio": "files/18_0951.mp3", - "audioMeaning": "files/18_0951_meaning.mp3", - "audioExample": "files/18_0951_example.mp3", - "textMeaning": "A grain is a food crop such as wheat, corn, rice, or oats.", - "textExample": "The farmer planted two fields of grain this year.", - "transcription": "[grein]", - "__v": 0, - "textExampleTranslate": "Фермер посадил два поля зерна в этом году", - "textMeaningTranslate": "Зерно - это продовольственная культура, такая как пшеница, кукуруза, рис или овес", - "wordTranslate": "зерно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af853" - }, - "group": 1, - "page": 17, - "word": "faith", - "image": "files/18_0950.jpg", - "audio": "files/18_0950.mp3", - "audioMeaning": "files/18_0950_meaning.mp3", - "audioExample": "files/18_0950_example.mp3", - "textMeaning": "Faith is trust or belief without proof.", - "textExample": "The sick girl had faith in doctors. She knew they would make her better.", - "transcription": "[feiθ]", - "__v": 0, - "textExampleTranslate": "Больная девушка верила врачам. Она знала, что они сделают ее лучше", - "textMeaningTranslate": "Вера - это доверие или вера без доказательств", - "wordTranslate": "вера" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af854" - }, - "group": 1, - "page": 17, - "word": "delay", - "image": "files/18_0947.jpg", - "audio": "files/18_0947.mp3", - "audioMeaning": "files/18_0947_meaning.mp3", - "audioExample": "files/18_0947_example.mp3", - "textMeaning": "To delay means to wait to do something.", - "textExample": "I was delayed at the airport for over two hours.", - "transcription": "[diléi]", - "__v": 0, - "textExampleTranslate": "Я задержался в аэропорту более двух часов", - "textMeaningTranslate": "Откладывать - значит ждать, чтобы что-то сделать", - "wordTranslate": "задержка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af855" - }, - "group": 1, - "page": 17, - "word": "element", - "image": "files/18_0949.jpg", - "audio": "files/18_0949.mp3", - "audioMeaning": "files/18_0949_meaning.mp3", - "audioExample": "files/18_0949_example.mp3", - "textMeaning": "An element of something is a particular part of it.", - "textExample": "Tackling an opponent is Johnny’s favorite element of American football.", - "transcription": "[éləmənt]", - "__v": 0, - "textExampleTranslate": "Борьба с противником - любимый элемент американского футбола Джонни", - "textMeaningTranslate": "Элемент чего-то является его частной частью", - "wordTranslate": "элемент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af856" - }, - "group": 1, - "page": 17, - "word": "diary", - "image": "files/18_0948.jpg", - "audio": "files/18_0948.mp3", - "audioMeaning": "files/18_0948_meaning.mp3", - "audioExample": "files/18_0948_example.mp3", - "textMeaning": "A diary is a book in which people write their personal experiences.", - "textExample": "I do not let anybody read my diary.", - "transcription": "[dáiəri]", - "__v": 0, - "textExampleTranslate": "Я не позволяю никому читать мой дневник", - "textMeaningTranslate": "Дневник - это книга, в которой люди пишут свой личный опыт", - "wordTranslate": "дневник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af857" - }, - "group": 1, - "page": 17, - "word": "greet", - "image": "files/18_0952.jpg", - "audio": "files/18_0952.mp3", - "audioMeaning": "files/18_0952_meaning.mp3", - "audioExample": "files/18_0952_example.mp3", - "textMeaning": "To greet someone means to meet and welcome that person.", - "textExample": "When my friend came over, I greeted him at the door.", - "transcription": "[griːt]", - "__v": 0, - "textExampleTranslate": "Когда подошел мой друг, я поприветствовал его у двери", - "textMeaningTranslate": "Поприветствовать кого-либо означает встретить и поприветствовать этого человека", - "wordTranslate": "приветствовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af858" - }, - "group": 1, - "page": 17, - "word": "joy", - "image": "files/18_0954.jpg", - "audio": "files/18_0954.mp3", - "audioMeaning": "files/18_0954_meaning.mp3", - "audioExample": "files/18_0954_example.mp3", - "textMeaning": "Joy is a feeling of great happiness.", - "textExample": "I love baseball. I feel joy when I play.", - "transcription": "[dʒɔi]", - "__v": 0, - "textExampleTranslate": "Я люблю бейсбол. Я чувствую радость, когда играю", - "textMeaningTranslate": "Радость - это чувство великого счастья", - "wordTranslate": "радость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af859" - }, - "group": 1, - "page": 17, - "word": "label", - "image": "files/18_0955.jpg", - "audio": "files/18_0955.mp3", - "audioMeaning": "files/18_0955_meaning.mp3", - "audioExample": "files/18_0955_example.mp3", - "textMeaning": "A label is a tag that tells about something.", - "textExample": "The label on the back of your shirt will tell you what size it is.", - "transcription": "[léibəl]", - "__v": 0, - "textExampleTranslate": "Этикетка на задней части вашей рубашки скажет вам, какого она размера", - "textMeaningTranslate": "Метка - это метка, которая говорит о чем-то", - "wordTranslate": "метка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af85a" - }, - "group": 1, - "page": 17, - "word": "investigate", - "image": "files/18_0953.jpg", - "audio": "files/18_0953.mp3", - "audioMeaning": "files/18_0953_meaning.mp3", - "audioExample": "files/18_0953_example.mp3", - "textMeaning": "To investigate means to search for something or learn about it.", - "textExample": "The detective went to investigate the crime.", - "transcription": "[invéstəgèit]", - "__v": 0, - "textExampleTranslate": "Детектив отправился расследовать преступление", - "textMeaningTranslate": "Исследовать - значит искать что-то или узнавать об этом", - "wordTranslate": "исследовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af85b" - }, - "group": 1, - "page": 17, - "word": "monk", - "image": "files/18_0956.jpg", - "audio": "files/18_0956.mp3", - "audioMeaning": "files/18_0956_meaning.mp3", - "audioExample": "files/18_0956_example.mp3", - "textMeaning": "A monk is a religious person who lives a simple life.", - "textExample": "The monks knew a lot about religion.", - "transcription": "[mʌŋk]", - "__v": 0, - "textExampleTranslate": "Монахи много знали о религии", - "textMeaningTranslate": "Монах - религиозный человек, который живет простой жизнью", - "wordTranslate": "монах" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af85c" - }, - "group": 1, - "page": 17, - "word": "odd", - "image": "files/18_0957.jpg", - "audio": "files/18_0957.mp3", - "audioMeaning": "files/18_0957_meaning.mp3", - "audioExample": "files/18_0957_example.mp3", - "textMeaning": "Something odd is unusual.", - "textExample": "Her cat is odd. It walks on two feet.", - "transcription": "[ɑd]", - "__v": 0, - "textExampleTranslate": "Ее кошка странная. Она ходит на двух ногах", - "textMeaningTranslate": "Что-то странное необычно", - "wordTranslate": "странный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af85d" - }, - "group": 1, - "page": 17, - "word": "profession", - "image": "files/18_0960.jpg", - "audio": "files/18_0960.mp3", - "audioMeaning": "files/18_0960_meaning.mp3", - "audioExample": "files/18_0960_example.mp3", - "textMeaning": "A profession is a person’s job.", - "textExample": "He loved sailing, so he chose to work on ships as a profession.", - "transcription": "[prəféʃən]", - "__v": 0, - "textExampleTranslate": "Он любил парусный спорт, поэтому он выбрал профессию на корабле", - "textMeaningTranslate": "Профессия - это работа человека", - "wordTranslate": "профессия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af85e" - }, - "group": 1, - "page": 17, - "word": "priest", - "image": "files/18_0959.jpg", - "audio": "files/18_0959.mp3", - "audioMeaning": "files/18_0959_meaning.mp3", - "audioExample": "files/18_0959_example.mp3", - "textMeaning": "A priest is a person trained to perform religious duties.", - "textExample": "The priest taught us about God.", - "transcription": "[priːst]", - "__v": 0, - "textExampleTranslate": "Священник учил нас о Боге", - "textMeaningTranslate": "Священник - это человек, обученный исполнять религиозные обязанности", - "wordTranslate": "священник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af85f" - }, - "group": 1, - "page": 17, - "word": "pause", - "image": "files/18_0958.jpg", - "audio": "files/18_0958.mp3", - "audioMeaning": "files/18_0958_meaning.mp3", - "audioExample": "files/18_0958_example.mp3", - "textMeaning": "To pause means to stop doing something for a while.", - "textExample": "Since she was so hungry, she paused to make a snack.", - "transcription": "[pɔːz]", - "__v": 0, - "textExampleTranslate": "Так как она была так голодна, она сделала паузу, чтобы перекусить", - "textMeaningTranslate": "Приостановить - значит перестать что-то делать на время", - "wordTranslate": "пауза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af860" - }, - "group": 1, - "page": 18, - "word": "ball", - "image": "files/19_0961.jpg", - "audio": "files/19_0961.mp3", - "audioMeaning": "files/19_0961_meaning.mp3", - "audioExample": "files/19_0961_example.mp3", - "textMeaning": "A ball is a round object that is thrown, kicked, or hit in a game or sport.", - "textExample": "Seth bought a new soccer ball.", - "transcription": "[bɒːl]", - "__v": 0, - "textExampleTranslate": "Сет купил новый футбольный мяч", - "textMeaningTranslate": "Мяч - это круглый объект, который бросается, пинается или попадает в игру или спорт", - "wordTranslate": "мяч" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af861" - }, - "group": 1, - "page": 18, - "word": "bottom", - "image": "files/19_0962.jpg", - "audio": "files/19_0962.mp3", - "audioMeaning": "files/19_0962_meaning.mp3", - "audioExample": "files/19_0962_example.mp3", - "textMeaning": "The bottom is the lowest part, point, or level of something.", - "textExample": "Sarah is so tall that her feet can touch the bottom of the swimming pool.", - "transcription": "[bάtəm]", - "__v": 0, - "textExampleTranslate": "Сара настолько высока, что ее ноги могут касаться дна бассейна", - "textMeaningTranslate": "Низ - это самая низкая часть, точка или уровень чего-либо", - "wordTranslate": "дно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af862" - }, - "group": 1, - "page": 18, - "word": "company", - "image": "files/19_0963.jpg", - "audio": "files/19_0963.mp3", - "audioMeaning": "files/19_0963_meaning.mp3", - "audioExample": "files/19_0963_example.mp3", - "textMeaning": "A company is a business or organization that makes or sells goods or services.", - "textExample": "I want to work for a small software company.", - "transcription": "[kʌmpəni]", - "__v": 0, - "textExampleTranslate": "Я хочу работать в небольшой софтверной компании", - "textMeaningTranslate": "Компания - это бизнес или организация, которая производит или продает товары или услуги", - "wordTranslate": "компания" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af863" - }, - "group": 1, - "page": 18, - "word": "drink", - "image": "files/19_0964.jpg", - "audio": "files/19_0964.mp3", - "audioMeaning": "files/19_0964_meaning.mp3", - "audioExample": "files/19_0964_example.mp3", - "textMeaning": "To drink is to take liquid into the body through the mouth.", - "textExample": "The woman likes to drink water after she exercises.", - "transcription": "[driŋk]", - "__v": 0, - "textExampleTranslate": "Женщина любит пить воду после упражнений", - "textMeaningTranslate": "Пить - значит впитывать жидкость в организм через рот", - "wordTranslate": "напиток" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af864" - }, - "group": 1, - "page": 18, - "word": "line", - "image": "files/19_0966.jpg", - "audio": "files/19_0966.mp3", - "audioMeaning": "files/19_0966_meaning.mp3", - "audioExample": "files/19_0966_example.mp3", - "textMeaning": "A line is a row of people or things.", - "textExample": "This is the longest line I have ever seen.", - "transcription": "[lain]", - "__v": 0, - "textExampleTranslate": "Это самая длинная линия, которую я когда-либо видел", - "textMeaningTranslate": "Линия - это ряд людей или вещей", - "wordTranslate": "линия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af865" - }, - "group": 1, - "page": 18, - "word": "few", - "image": "files/19_0965.jpg", - "audio": "files/19_0965.mp3", - "audioMeaning": "files/19_0965_meaning.mp3", - "audioExample": "files/19_0965_example.mp3", - "textMeaning": "A few things is a small number of them.", - "textExample": "I have only a few coins.", - "transcription": "[fjuː]", - "__v": 0, - "textExampleTranslate": "У меня всего несколько монет", - "textMeaningTranslate": "Несколько вещей, их мало", - "wordTranslate": "несколько" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af866" - }, - "group": 1, - "page": 18, - "word": "pet", - "image": "files/19_0967.jpg", - "audio": "files/19_0967.mp3", - "audioMeaning": "files/19_0967_meaning.mp3", - "audioExample": "files/19_0967_example.mp3", - "textMeaning": "A pet is an animal such as a cat or dog that people keep and care for.", - "textExample": "Tyler likes to spend time with his pet dog.", - "transcription": "[pet]", - "__v": 0, - "textExampleTranslate": "Тайлер любит проводить время со своей собакой", - "textMeaningTranslate": "Домашнее животное - это животное, такое как кошка или собака, за которым люди ухаживают", - "wordTranslate": "домашнее животное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af867" - }, - "group": 1, - "page": 18, - "word": "product", - "image": "files/19_0968.jpg", - "audio": "files/19_0968.mp3", - "audioMeaning": "files/19_0968_meaning.mp3", - "audioExample": "files/19_0968_example.mp3", - "textMeaning": "A product is something grown or made in a factory in order to be sold.", - "textExample": "There’s no room for even one more product in Melissa’s bag.", - "transcription": "[prάdʌkt]", - "__v": 0, - "textExampleTranslate": "В сумке Мелиссы нет места даже для еще одного продукта", - "textMeaningTranslate": "Продукт - это что-то выращенное или изготовленное на фабрике для продажи", - "wordTranslate": "товар" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af868" - }, - "group": 1, - "page": 18, - "word": "responsible", - "image": "files/19_0969.jpg", - "audio": "files/19_0969.mp3", - "audioMeaning": "files/19_0969_meaning.mp3", - "audioExample": "files/19_0969_example.mp3", - "textMeaning": "A responsible person is in charge of someone or something.", - "textExample": "Peter is responsible for leading his department.", - "transcription": "[rispάnsəbl]", - "__v": 0, - "textExampleTranslate": "Петр отвечает за руководство своим отделом", - "textMeaningTranslate": "Ответственный человек отвечает за кого-то или что-то", - "wordTranslate": "ответственность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af869" - }, - "group": 1, - "page": 18, - "word": "snake", - "image": "files/19_0971.jpg", - "audio": "files/19_0971.mp3", - "audioMeaning": "files/19_0971_meaning.mp3", - "audioExample": "files/19_0971_example.mp3", - "textMeaning": "A snake is an animal with a long, thin body and no legs.", - "textExample": "Be careful of the snake in the tree.", - "transcription": "[sneik]", - "__v": 0, - "textExampleTranslate": "Будь осторожен со змеей на дереве", - "textMeaningTranslate": "Змея - это животное с длинным тонким телом и без ног", - "wordTranslate": "змей" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af86a" - }, - "group": 1, - "page": 18, - "word": "sell", - "image": "files/19_0970.jpg", - "audio": "files/19_0970.mp3", - "audioMeaning": "files/19_0970_meaning.mp3", - "audioExample": "files/19_0970_example.mp3", - "textMeaning": "To sell is to give something to someone in exchange for money.", - "textExample": "This man’s job is to sell houses.", - "transcription": "[sel]", - "__v": 0, - "textExampleTranslate": "Работа этого человека - продавать дома", - "textMeaningTranslate": "Продать - значит дать что-то кому-то в обмен на деньги", - "wordTranslate": "продать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af86b" - }, - "group": 1, - "page": 18, - "word": "stand", - "image": "files/19_0972.jpg", - "audio": "files/19_0972.mp3", - "audioMeaning": "files/19_0972_meaning.mp3", - "audioExample": "files/19_0972_example.mp3", - "textMeaning": "To stand is to use the legs and feet to hold the body upright.", - "textExample": "Allan prefers to stand and work at his desk.", - "transcription": "[stænd]", - "__v": 0, - "textExampleTranslate": "Аллан предпочитает стоять и работать за своим столом", - "textMeaningTranslate": "Стоять - значит использовать ноги и ступни, чтобы держать тело в вертикальном положении", - "wordTranslate": "стоять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af86c" - }, - "group": 1, - "page": 18, - "word": "strange", - "image": "files/19_0973.jpg", - "audio": "files/19_0973.mp3", - "audioMeaning": "files/19_0973_meaning.mp3", - "audioExample": "files/19_0973_example.mp3", - "textMeaning": "A strange thing is unusual or surprising.", - "textExample": "They are wearing strange masks.", - "transcription": "[streindʒ]", - "__v": 0, - "textExampleTranslate": "Они носят странные маски", - "textMeaningTranslate": "Странная вещь необычна или удивительна", - "wordTranslate": "странный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af86e" - }, - "group": 1, - "page": 18, - "word": "tongue", - "image": "files/19_0976.jpg", - "audio": "files/19_0976.mp3", - "audioMeaning": "files/19_0976_meaning.mp3", - "audioExample": "files/19_0976_example.mp3", - "textMeaning": "A tongue is the movable muscle inside the mouth that is used to speak, eat, and drink.", - "textExample": "The cat uses its tongue to drink water.", - "transcription": "[tʌŋ]", - "__v": 0, - "textExampleTranslate": "Кошка использует свой язык, чтобы пить воду", - "textMeaningTranslate": "Язык - это подвижная мышца во рту, которая используется, чтобы говорить, есть и пить", - "wordTranslate": "язык" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af86d" - }, - "group": 1, - "page": 18, - "word": "tea", - "image": "files/19_0974.jpg", - "audio": "files/19_0974.mp3", - "audioMeaning": "files/19_0974_meaning.mp3", - "audioExample": "files/19_0974_example.mp3", - "textMeaning": "Tea is a drink made by pouring boiling water onto dried leaves.", - "textExample": "Many people drink green tea because it has many health benefits.", - "transcription": "[tiː]", - "__v": 0, - "textExampleTranslate": "Многие люди пьют зеленый чай, потому что он имеет много пользы для здоровья", - "textMeaningTranslate": "Чай - это напиток, заливаемый кипятком на высушенные листья", - "wordTranslate": "чай" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af86f" - }, - "group": 1, - "page": 18, - "word": "test", - "image": "files/19_0975.jpg", - "audio": "files/19_0975.mp3", - "audioMeaning": "files/19_0975_meaning.mp3", - "audioExample": "files/19_0975_example.mp3", - "textMeaning": "To test is to examine something to see if its quality is good.", - "textExample": "His job is to test the electricity to make sure it works correctly.", - "transcription": "[test]", - "__v": 0, - "textExampleTranslate": "Его работа - проверять электричество, чтобы убедиться, что оно работает правильно", - "textMeaningTranslate": "Тестировать - значит исследовать что-то, чтобы увидеть, хорошее ли это качество", - "wordTranslate": "тестовое задание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af870" - }, - "group": 1, - "page": 18, - "word": "they", - "image": "files/19_0977.jpg", - "audio": "files/19_0977.mp3", - "audioMeaning": "files/19_0977_meaning.mp3", - "audioExample": "files/19_0977_example.mp3", - "textMeaning": "They refers to two or more people or things.", - "textExample": "They are playing a fun game.", - "transcription": "[ðei]", - "__v": 0, - "textExampleTranslate": "Они играют в веселую игру", - "textMeaningTranslate": "Они относятся к двум или более людям или вещам", - "wordTranslate": "они" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af871" - }, - "group": 1, - "page": 18, - "word": "type", - "image": "files/19_0978.jpg", - "audio": "files/19_0978.mp3", - "audioMeaning": "files/19_0978_meaning.mp3", - "audioExample": "files/19_0978_example.mp3", - "textMeaning": "A type is a particular kind or group of things or people.", - "textExample": "Tulips are a type of flower.", - "transcription": "[taip]", - "__v": 0, - "textExampleTranslate": "Тюльпаны - это разновидность цветка", - "textMeaningTranslate": "Тип - это особый вид или группа вещей или людей", - "wordTranslate": "тип" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af872" - }, - "group": 1, - "page": 18, - "word": "very", - "image": "files/19_0979.jpg", - "audio": "files/19_0979.mp3", - "audioMeaning": "files/19_0979_meaning.mp3", - "audioExample": "files/19_0979_example.mp3", - "textMeaning": "Very is used to emphasize an adjective or adverb.", - "textExample": "An elephant is a very big animal.", - "transcription": "[veri]", - "__v": 0, - "textExampleTranslate": "Слон очень большое животное", - "textMeaningTranslate": "Очень используется, чтобы подчеркнуть прилагательное или наречие", - "wordTranslate": "очень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af874" - }, - "group": 1, - "page": 19, - "word": "approve", - "image": "files/20_0982.jpg", - "audio": "files/20_0982.mp3", - "audioMeaning": "files/20_0982_meaning.mp3", - "audioExample": "files/20_0982_example.mp3", - "textMeaning": "To approve of something means you like or agree with that thing.", - "textExample": "Her co-workers approved her new plan.", - "transcription": "[əprúːv]", - "__v": 0, - "textExampleTranslate": "Ее сотрудники одобрили ее новый план", - "textMeaningTranslate": "Утвердить что-то означает, что вам нравится или согласен с этим", - "wordTranslate": "одобрить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af873" - }, - "group": 1, - "page": 18, - "word": "wait", - "image": "files/19_0980.jpg", - "audio": "files/19_0980.mp3", - "audioMeaning": "files/19_0980_meaning.mp3", - "audioExample": "files/19_0980_example.mp3", - "textMeaning": "To wait is to stay in a place until an expected event happens.", - "textExample": "She has to wait for the airplane to arrive.", - "transcription": "[weit]", - "__v": 0, - "textExampleTranslate": "Она должна ждать прибытия самолета", - "textMeaningTranslate": "Ждать - значит оставаться на месте, пока не произойдет ожидаемое событие", - "wordTranslate": "подождите" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af875" - }, - "group": 1, - "page": 19, - "word": "accomplish", - "image": "files/20_0981.jpg", - "audio": "files/20_0981.mp3", - "audioMeaning": "files/20_0981_meaning.mp3", - "audioExample": "files/20_0981_example.mp3", - "textMeaning": "To accomplish something means to finish it.", - "textExample": "He accomplished his goal of running ten miles.", - "transcription": "[əkɑ́mpliʃ]", - "__v": 0, - "textExampleTranslate": "Он достиг своей цели - пробежать десять миль", - "textMeaningTranslate": "Добиться чего-либо - значит закончить это", - "wordTranslate": "выполнить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af876" - }, - "group": 1, - "page": 19, - "word": "approximate", - "image": "files/20_0983.jpg", - "audio": "files/20_0983.mp3", - "audioMeaning": "files/20_0983_meaning.mp3", - "audioExample": "files/20_0983_example.mp3", - "textMeaning": "Approximate means close to an exact amount, number, or time.", - "textExample": "My approximate height is two meters.", - "transcription": "[əprɑ́ksəmit]", - "__v": 0, - "textExampleTranslate": "Мой приблизительный рост - два метра", - "textMeaningTranslate": "Приблизительное означает, что близко к точной сумме, числу или времени", - "wordTranslate": "приблизительно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af877" - }, - "group": 1, - "page": 19, - "word": "barrier", - "image": "files/20_0984.jpg", - "audio": "files/20_0984.mp3", - "audioMeaning": "files/20_0984_meaning.mp3", - "audioExample": "files/20_0984_example.mp3", - "textMeaning": "A barrier is something that blocks a path or way.", - "textExample": "The Great Wall was a barrier between China and its enemies.", - "transcription": "[bǽriər]", - "__v": 0, - "textExampleTranslate": "Великая китайская стена была барьером между Китаем и его врагами", - "textMeaningTranslate": "Барьер - это то, что блокирует путь или путь", - "wordTranslate": "барьер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af878" - }, - "group": 1, - "page": 19, - "word": "detect", - "image": "files/20_0985.jpg", - "audio": "files/20_0985.mp3", - "audioMeaning": "files/20_0985_meaning.mp3", - "audioExample": "files/20_0985_example.mp3", - "textMeaning": "To detect means to notice or find something.", - "textExample": "The boy ran to the kitchen when he detected the smell of cookies.", - "transcription": "[ditékt]", - "__v": 0, - "textExampleTranslate": "Мальчик побежал на кухню, когда обнаружил запах печенья", - "textMeaningTranslate": "Обнаружить - значит заметить или найти что-то", - "wordTranslate": "обнаружить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af879" - }, - "group": 1, - "page": 19, - "word": "duty", - "image": "files/20_0986.jpg", - "audio": "files/20_0986.mp3", - "audioMeaning": "files/20_0986_meaning.mp3", - "audioExample": "files/20_0986_example.mp3", - "textMeaning": "A duty is something that a person has to do.", - "textExample": "It is parents’ duty to take care of their children.", - "transcription": "[djúːti]", - "__v": 0, - "textExampleTranslate": "Родители обязаны заботиться о своих детях", - "textMeaningTranslate": "Долг - это то, что должен делать человек", - "wordTranslate": "долг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af87a" - }, - "group": 1, - "page": 19, - "word": "elementary", - "image": "files/20_0987.jpg", - "audio": "files/20_0987.mp3", - "audioMeaning": "files/20_0987_meaning.mp3", - "audioExample": "files/20_0987_example.mp3", - "textMeaning": "An elementary thing is the first or most simple thing.", - "textExample": "Children go to elementary school before high school.", - "transcription": "[èləméntəri]", - "__v": 0, - "textExampleTranslate": "Дети ходят в начальную школу до старшей школы", - "textMeaningTranslate": "Элементарная вещь - это первая или самая простая вещь", - "wordTranslate": "элементарный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af87b" - }, - "group": 1, - "page": 19, - "word": "failure", - "image": "files/20_0988.jpg", - "audio": "files/20_0988.mp3", - "audioMeaning": "files/20_0988_meaning.mp3", - "audioExample": "files/20_0988_example.mp3", - "textMeaning": "A failure happens when something is not done right.", - "textExample": "My cooking ended in failure because I burned the food.", - "transcription": "[féiljər]", - "__v": 0, - "textExampleTranslate": "Моя готовка закончилась неудачей, потому что я сжег еду", - "textMeaningTranslate": "Отказ происходит, когда что-то сделано неправильно", - "wordTranslate": "провал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af87c" - }, - "group": 1, - "page": 19, - "word": "gradual", - "image": "files/20_0989.jpg", - "audio": "files/20_0989.mp3", - "audioMeaning": "files/20_0989_meaning.mp3", - "audioExample": "files/20_0989_example.mp3", - "textMeaning": "Something gradual happens slowly.", - "textExample": "Children learn to read at a gradual pace. They do not learn right away.", - "transcription": "[grǽdʒuəl]", - "__v": 0, - "textExampleTranslate": "Дети учатся читать постепенно. Они не учатся сразу", - "textMeaningTranslate": "Что-то постепенное происходит медленно", - "wordTranslate": "постепенное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af87d" - }, - "group": 1, - "page": 19, - "word": "immigrant", - "image": "files/20_0990.jpg", - "audio": "files/20_0990.mp3", - "audioMeaning": "files/20_0990_meaning.mp3", - "audioExample": "files/20_0990_example.mp3", - "textMeaning": "An immigrant is a person who moves to a different country.", - "textExample": "My parents were immigrants. They came from Poland.", - "transcription": "[ímigrənt]", - "__v": 0, - "textExampleTranslate": "Мои родители были иммигрантами. Они приехали из Польши", - "textMeaningTranslate": "Иммигрант - это человек, который переезжает в другую страну", - "wordTranslate": "иммигрант" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af87e" - }, - "group": 1, - "page": 19, - "word": "instant", - "image": "files/20_0992.jpg", - "audio": "files/20_0992.mp3", - "audioMeaning": "files/20_0992_meaning.mp3", - "audioExample": "files/20_0992_example.mp3", - "textMeaning": "An instant is a very short amount of time.", - "textExample": "A microwave oven cooks food in an instant.", - "transcription": "[ínstənt]", - "__v": 0, - "textExampleTranslate": "Микроволновая печь готовит еду в одно мгновение", - "textMeaningTranslate": "Мгновение - это очень короткий промежуток времени", - "wordTranslate": "мгновенное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af87f" - }, - "group": 1, - "page": 19, - "word": "insert", - "image": "files/20_0991.jpg", - "audio": "files/20_0991.mp3", - "audioMeaning": "files/20_0991_meaning.mp3", - "audioExample": "files/20_0991_example.mp3", - "textMeaning": "To insert something means to put it in something else.", - "textExample": "He inserted an extra sentence into the story.", - "transcription": "[insə́ːrt]", - "__v": 0, - "textExampleTranslate": "Он вставил дополнительное предложение в историю", - "textMeaningTranslate": "Вставить что-то - значит вставить это во что-то другое", - "wordTranslate": "вставить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af880" - }, - "group": 1, - "page": 19, - "word": "poverty", - "image": "files/20_0993.jpg", - "audio": "files/20_0993.mp3", - "audioMeaning": "files/20_0993_meaning.mp3", - "audioExample": "files/20_0993_example.mp3", - "textMeaning": "Poverty is the state of being poor.", - "textExample": "Poverty is a problem in many countries around the world.", - "transcription": "[pɑ́vərti]", - "__v": 0, - "textExampleTranslate": "Бедность является проблемой во многих странах мира", - "textMeaningTranslate": "Бедность - это состояние бедности", - "wordTranslate": "бедность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af881" - }, - "group": 1, - "page": 19, - "word": "pretend", - "image": "files/20_0994.jpg", - "audio": "files/20_0994.mp3", - "audioMeaning": "files/20_0994_meaning.mp3", - "audioExample": "files/20_0994_example.mp3", - "textMeaning": "To pretend means to make believe something is real.", - "textExample": "The boy liked to pretend he was a king.", - "transcription": "[priténd]", - "__v": 0, - "textExampleTranslate": "Мальчику нравилось притворяться, что он король", - "textMeaningTranslate": "Притворяться - значит верить, что что-то реально", - "wordTranslate": "делать вид" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af882" - }, - "group": 1, - "page": 19, - "word": "rank", - "image": "files/20_0995.jpg", - "audio": "files/20_0995.mp3", - "audioMeaning": "files/20_0995_meaning.mp3", - "audioExample": "files/20_0995_example.mp3", - "textMeaning": "A rank is a person’s place in an order of people.", - "textExample": "The man got to the rank of captain in the navy.", - "transcription": "[ræŋk]", - "__v": 0, - "textExampleTranslate": "Человек получил звание капитана во флоте", - "textMeaningTranslate": "Ранг - это место человека в порядке людей", - "wordTranslate": "ранг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af883" - }, - "group": 1, - "page": 19, - "word": "recognition", - "image": "files/20_0996.jpg", - "audio": "files/20_0996.mp3", - "audioMeaning": "files/20_0996_meaning.mp3", - "audioExample": "files/20_0996_example.mp3", - "textMeaning": "Recognition is the act of getting praise from other people.", - "textExample": "The hero got recognition for his brave deed.", - "transcription": "[rèkəgníʃən]", - "__v": 0, - "textExampleTranslate": "Герой получил признание за свой смелый поступок", - "textMeaningTranslate": "Признание - это акт похвалы от других людей", - "wordTranslate": "признание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af884" - }, - "group": 1, - "page": 19, - "word": "refrigerate", - "image": "files/20_0997.jpg", - "audio": "files/20_0997.mp3", - "audioMeaning": "files/20_0997_meaning.mp3", - "audioExample": "files/20_0997_example.mp3", - "textMeaning": "To refrigerate something means to make it cold.", - "textExample": "Supermarkets refrigerate fruit to make it last long.", - "transcription": "[rifrídʒərèit]", - "__v": 0, - "textExampleTranslate": "Супермаркеты хранят фрукты в холодильнике так долго", - "textMeaningTranslate": "Охлаждать что-то - значит охлаждать", - "wordTranslate": "замораживать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af885" - }, - "group": 1, - "page": 19, - "word": "rent", - "image": "files/20_0998.jpg", - "audio": "files/20_0998.mp3", - "audioMeaning": "files/20_0998_meaning.mp3", - "audioExample": "files/20_0998_example.mp3", - "textMeaning": "Rent is the money people pay to live in a certain place.", - "textExample": "To live in this house, I have to pay rent at the start of each month.", - "transcription": "[rent]", - "__v": 0, - "textExampleTranslate": "Чтобы жить в этом доме, я должен платить за аренду в начале каждого месяца", - "textMeaningTranslate": "Рента - это деньги, которые люди платят, чтобы жить в определенном месте", - "wordTranslate": "арендная плата" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af887" - }, - "group": 1, - "page": 20, - "word": "accident", - "image": "files/21_1001.jpg", - "audio": "files/21_1001.mp3", - "audioMeaning": "files/21_1001_meaning.mp3", - "audioExample": "files/21_1001_example.mp3", - "textMeaning": "An accident is unexpected, and may cause some trouble.", - "textExample": "He damaged the car in an accident.", - "transcription": "[ǽksidənt]", - "__v": 0, - "textExampleTranslate": "Он повредил машину в результате аварии", - "textMeaningTranslate": "Авария является неожиданной и может вызвать проблемы", - "wordTranslate": "несчастный случай" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af889" - }, - "group": 1, - "page": 20, - "word": "astronaut", - "image": "files/21_1002.jpg", - "audio": "files/21_1002.mp3", - "audioMeaning": "files/21_1002_meaning.mp3", - "audioExample": "files/21_1002_example.mp3", - "textMeaning": "An astronaut is a person who goes into outer space.", - "textExample": "The astronaut was walking on the moon.", - "transcription": "[ǽstrənɔ̀ːt]", - "__v": 0, - "textExampleTranslate": "Астронавт шел по луне", - "textMeaningTranslate": "Астронавт - это человек, который летит в космос", - "wordTranslate": "космонавт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af886" - }, - "group": 1, - "page": 19, - "word": "retire", - "image": "files/20_0999.jpg", - "audio": "files/20_0999.mp3", - "audioMeaning": "files/20_0999_meaning.mp3", - "audioExample": "files/20_0999_example.mp3", - "textMeaning": "To retire is to leave a job, usually because of old age.", - "textExample": "My father is sixty-five years old. He is about to retire from work.", - "transcription": "[ritáiəːr]", - "__v": 0, - "textExampleTranslate": "Моему отцу шестьдесят пять лет. Он собирается уйти с работы", - "textMeaningTranslate": "Уйти на пенсию - это уйти с работы, как правило, из-за старости", - "wordTranslate": "выходить на пенсию" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af888" - }, - "group": 1, - "page": 19, - "word": "statistic", - "image": "files/20_1000.jpg", - "audio": "files/20_1000.mp3", - "audioMeaning": "files/20_1000_meaning.mp3", - "audioExample": "files/20_1000_example.mp3", - "textMeaning": "A statistic is a number that tells a fact about something.", - "textExample": "The statistics showed that we did just as well this year as last year.", - "transcription": "[stətístik]", - "__v": 0, - "textExampleTranslate": "Статистика показала, что мы сделали так же хорошо, как и в прошлом году", - "textMeaningTranslate": "Статистика - это число, которое говорит о чем-то", - "wordTranslate": "статистика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af88a" - }, - "group": 1, - "page": 20, - "word": "awake", - "image": "files/21_1003.jpg", - "audio": "files/21_1003.mp3", - "audioMeaning": "files/21_1003_meaning.mp3", - "audioExample": "files/21_1003_example.mp3", - "textMeaning": "A person who is awake is not asleep.", - "textExample": "Sometimes, I lay awake in bed because I am not tired.", - "transcription": "[əwéik]", - "__v": 0, - "textExampleTranslate": "Иногда я лежу без сна в постели, потому что я не устал", - "textMeaningTranslate": "Человек, который не спит, не спит", - "wordTranslate": "просыпаются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af88c" - }, - "group": 1, - "page": 20, - "word": "float", - "image": "files/21_1005.jpg", - "audio": "files/21_1005.mp3", - "audioMeaning": "files/21_1005_meaning.mp3", - "audioExample": "files/21_1005_example.mp3", - "textMeaning": "To float is to move on top of water without sinking.", - "textExample": "The boy’s toy boat floated in the pool.", - "transcription": "[fout]", - "__v": 0, - "textExampleTranslate": "Игрушечная лодка мальчика плыла в бассейне", - "textMeaningTranslate": "Плавать - значит двигаться по воде, не тоня", - "wordTranslate": "плавать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af88b" - }, - "group": 1, - "page": 20, - "word": "courage", - "image": "files/21_1004.jpg", - "audio": "files/21_1004.mp3", - "audioMeaning": "files/21_1004_meaning.mp3", - "audioExample": "files/21_1004_example.mp3", - "textMeaning": "Courage is the feeling of not being afraid.", - "textExample": "The man had the courage to touch the lion.", - "transcription": "[kə́ːridʒ]", - "__v": 0, - "textExampleTranslate": "Человек имел смелость дотронуться до льва", - "textMeaningTranslate": "Мужество - это чувство не бояться", - "wordTranslate": "мужество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af88d" - }, - "group": 1, - "page": 20, - "word": "grant", - "image": "files/21_1006.jpg", - "audio": "files/21_1006.mp3", - "audioMeaning": "files/21_1006_meaning.mp3", - "audioExample": "files/21_1006_example.mp3", - "textMeaning": "To grant something is to allow someone to have it.", - "textExample": "The teacher granted us a break after studying hard all day.", - "transcription": "[grænt]", - "__v": 0, - "textExampleTranslate": "Учитель предоставил нам перерыв после тяжелого учебного дня", - "textMeaningTranslate": "Предоставить что-то - значит позволить кому-то иметь это", - "wordTranslate": "выдать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af88e" - }, - "group": 1, - "page": 20, - "word": "gravity", - "image": "files/21_1007.jpg", - "audio": "files/21_1007.mp3", - "audioMeaning": "files/21_1007_meaning.mp3", - "audioExample": "files/21_1007_example.mp3", - "textMeaning": "Gravity is the force that makes things fall to Earth.", - "textExample": "There is no gravity in space.", - "transcription": "[grǽvəti]", - "__v": 0, - "textExampleTranslate": "В космосе нет гравитации", - "textMeaningTranslate": "Гравитация - это сила, которая заставляет вещи падать на Землю", - "wordTranslate": "сила тяжести" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af88f" - }, - "group": 1, - "page": 20, - "word": "jewel", - "image": "files/21_1008.jpg", - "audio": "files/21_1008.mp3", - "audioMeaning": "files/21_1008_meaning.mp3", - "audioExample": "files/21_1008_example.mp3", - "textMeaning": "A jewel is a beautiful stone that is worth a lot of money.", - "textExample": "A diamond is one of the most expensive jewels in the world.", - "transcription": "[dʒúːəl]", - "__v": 0, - "textExampleTranslate": "Бриллиант является одним из самых дорогих драгоценных камней в мире", - "textMeaningTranslate": "Драгоценный камень - это красивый камень, который стоит много денег", - "wordTranslate": "драгоценный камень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af890" - }, - "group": 1, - "page": 20, - "word": "miner", - "image": "files/21_1009.jpg", - "audio": "files/21_1009.mp3", - "audioMeaning": "files/21_1009_meaning.mp3", - "audioExample": "files/21_1009_example.mp3", - "textMeaning": "A miner is a person who works in a mine.", - "textExample": "The miner was looking for gold.", - "transcription": "[máinər]", - "__v": 0, - "textExampleTranslate": "Шахтер искал золото", - "textMeaningTranslate": "Шахтер - это человек, который работает в шахте", - "wordTranslate": "шахтер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af892" - }, - "group": 1, - "page": 20, - "word": "permission", - "image": "files/21_1012.jpg", - "audio": "files/21_1012.mp3", - "audioMeaning": "files/21_1012_meaning.mp3", - "audioExample": "files/21_1012_example.mp3", - "textMeaning": "Permission means the act of allowing some action.", - "textExample": "I have permission to drive my mom’s car.", - "transcription": "[pəːrmíʃən]", - "__v": 0, - "textExampleTranslate": "У меня есть разрешение водить машину моей мамы", - "textMeaningTranslate": "Разрешение означает акт разрешения какого-либо действия", - "wordTranslate": "разрешение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af891" - }, - "group": 1, - "page": 20, - "word": "mineral", - "image": "files/21_1010.jpg", - "audio": "files/21_1010.mp3", - "audioMeaning": "files/21_1010_meaning.mp3", - "audioExample": "files/21_1010_example.mp3", - "textMeaning": "A mineral is a type of substance found in the Earth.", - "textExample": "Rocks are made up of different kinds of minerals.", - "transcription": "[mínərəl]", - "__v": 0, - "textExampleTranslate": "Горные породы состоят из разных видов минералов", - "textMeaningTranslate": "Минерал - это тип вещества, найденного на Земле", - "wordTranslate": "минеральная" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af893" - }, - "group": 1, - "page": 20, - "word": "participate", - "image": "files/21_1011.jpg", - "audio": "files/21_1011.mp3", - "audioMeaning": "files/21_1011_meaning.mp3", - "audioExample": "files/21_1011_example.mp3", - "textMeaning": "To participate is to be active and do something.", - "textExample": "The students participated in the school play.", - "transcription": "[pɑːrtísəpèit]", - "__v": 0, - "textExampleTranslate": "Учащиеся участвовали в школьной пьесе", - "textMeaningTranslate": "Участвовать - значит быть активным и что-то делать", - "wordTranslate": "участвовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af894" - }, - "group": 1, - "page": 20, - "word": "pour", - "image": "files/21_1013.jpg", - "audio": "files/21_1013.mp3", - "audioMeaning": "files/21_1013_meaning.mp3", - "audioExample": "files/21_1013_example.mp3", - "textMeaning": "To pour a liquid means to make it come out of a container.", - "textExample": "I poured some milk into my sister’s cup.", - "transcription": "[pɔːr]", - "__v": 0, - "textExampleTranslate": "Я налил немного молока в чашку моей сестры", - "textMeaningTranslate": "Залить жидкость - значит вытащить ее из контейнера", - "wordTranslate": "влить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af895" - }, - "group": 1, - "page": 20, - "word": "raw", - "image": "files/21_1014.jpg", - "audio": "files/21_1014.mp3", - "audioMeaning": "files/21_1014_meaning.mp3", - "audioExample": "files/21_1014_example.mp3", - "textMeaning": "A raw material is natural and has not been processed.", - "textExample": "The company dumped raw sewage into the river.", - "transcription": "[rɔː]", - "__v": 0, - "textExampleTranslate": "Компания сбросила сырые сточные воды в реку", - "textMeaningTranslate": "Сырье натуральное и не переработано", - "wordTranslate": "сырой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af897" - }, - "group": 1, - "page": 20, - "word": "stretch", - "image": "files/21_1018.jpg", - "audio": "files/21_1018.mp3", - "audioMeaning": "files/21_1018_meaning.mp3", - "audioExample": "files/21_1018_example.mp3", - "textMeaning": "To stretch is to make your arms or legs reach out.", - "textExample": "She stretched her body before exercising.", - "transcription": "[stretʃ]", - "__v": 0, - "textExampleTranslate": "Она вытянула тело перед тренировкой", - "textMeaningTranslate": "Растягивать - значит вытягивать руки или ноги", - "wordTranslate": "протяжение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af896" - }, - "group": 1, - "page": 20, - "word": "satellite", - "image": "files/21_1015.jpg", - "audio": "files/21_1015.mp3", - "audioMeaning": "files/21_1015_meaning.mp3", - "audioExample": "files/21_1015_example.mp3", - "textMeaning": "A satellite is a machine sent into space to get information.", - "textExample": "The satellite was traveling around the Earth.", - "transcription": "[sǽtəlàit]", - "__v": 0, - "textExampleTranslate": "Спутник путешествовал вокруг Земли", - "textMeaningTranslate": "Спутник - это машина, отправленная в космос для получения информации", - "wordTranslate": "спутниковое" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af898" - }, - "group": 1, - "page": 20, - "word": "skip", - "image": "files/21_1017.jpg", - "audio": "files/21_1017.mp3", - "audioMeaning": "files/21_1017_meaning.mp3", - "audioExample": "files/21_1017_example.mp3", - "textMeaning": "To skip something is to not do it.", - "textExample": "He skipped work to get more sleep.", - "transcription": "[skip]", - "__v": 0, - "textExampleTranslate": "Он пропустил работу, чтобы больше спать", - "textMeaningTranslate": "Пропустить что-то значит не делать этого", - "wordTranslate": "пропускать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af899" - }, - "group": 1, - "page": 20, - "word": "scale", - "image": "files/21_1016.jpg", - "audio": "files/21_1016.mp3", - "audioMeaning": "files/21_1016_meaning.mp3", - "audioExample": "files/21_1016_example.mp3", - "textMeaning": "The scale of something is its size, especially when it is very large.", - "textExample": "I was surprised by the scale of the buildings in the downtown area.", - "transcription": "[skeil]", - "__v": 0, - "textExampleTranslate": "Я был удивлен масштабом зданий в центре города", - "textMeaningTranslate": "Масштаб чего-либо - это его размер, особенно когда он очень большой", - "wordTranslate": "шкала" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af89a" - }, - "group": 1, - "page": 20, - "word": "telescope", - "image": "files/21_1019.jpg", - "audio": "files/21_1019.mp3", - "audioMeaning": "files/21_1019_meaning.mp3", - "audioExample": "files/21_1019_example.mp3", - "textMeaning": "A telescope is a tool people use to look at the stars.", - "textExample": "With a telescope, you can see the moon and stars easily.", - "transcription": "[téləskòup]", - "__v": 0, - "textExampleTranslate": "С помощью телескопа вы можете легко увидеть луну и звезды", - "textMeaningTranslate": "Телескоп - это инструмент, который люди используют, чтобы смотреть на звезды", - "wordTranslate": "телескоп" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af89c" - }, - "group": 1, - "page": 21, - "word": "alarm", - "image": "files/22_1021.jpg", - "audio": "files/22_1021.mp3", - "audioMeaning": "files/22_1021_meaning.mp3", - "audioExample": "files/22_1021_example.mp3", - "textMeaning": "An alarm is something that warns people of danger.", - "textExample": "When the students heard the fire alarm, they left the building.", - "transcription": "[əlɑ́ːrm]", - "__v": 0, - "textExampleTranslate": "Когда студенты услышали пожарную тревогу, они покинули здание", - "textMeaningTranslate": "Тревога - это то, что предупреждает людей об опасности", - "wordTranslate": "аварийная сигнализация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af89d" - }, - "group": 1, - "page": 21, - "word": "award", - "image": "files/22_1023.jpg", - "audio": "files/22_1023.mp3", - "audioMeaning": "files/22_1023_meaning.mp3", - "audioExample": "files/22_1023_example.mp3", - "textMeaning": "An award is a prize for doing something well.", - "textExample": "He got an award for having the best grades in class.", - "transcription": "[əwɔ́ːrd]", - "__v": 0, - "textExampleTranslate": "Он получил награду за лучшие оценки в классе", - "textMeaningTranslate": "Награда - это приз за то, что делаешь хорошо", - "wordTranslate": "награда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af89b" - }, - "group": 1, - "page": 20, - "word": "underground", - "image": "files/21_1020.jpg", - "audio": "files/21_1020.mp3", - "audioMeaning": "files/21_1020_meaning.mp3", - "audioExample": "files/21_1020_example.mp3", - "textMeaning": "An underground action happens below the surface of the Earth.", - "textExample": "Subway trains travel underground.", - "transcription": "[ʌ́ndərgràund]", - "__v": 0, - "textExampleTranslate": "Поезда метрополитена едут под землей", - "textMeaningTranslate": "Под землей происходит подземная акция", - "wordTranslate": "метро" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af89e" - }, - "group": 1, - "page": 21, - "word": "arrest", - "image": "files/22_1022.jpg", - "audio": "files/22_1022.mp3", - "audioMeaning": "files/22_1022_meaning.mp3", - "audioExample": "files/22_1022_example.mp3", - "textMeaning": "To arrest someone means to catch that person for doing something bad.", - "textExample": "The man was arrested for breaking the law.", - "transcription": "[ərést]", - "__v": 0, - "textExampleTranslate": "Человек был арестован за нарушение закона", - "textMeaningTranslate": "Арестовать кого-то - значит поймать этого человека за то, что он совершил что-то плохое", - "wordTranslate": "арест" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af89f" - }, - "group": 1, - "page": 21, - "word": "breed", - "image": "files/22_1024.jpg", - "audio": "files/22_1024.mp3", - "audioMeaning": "files/22_1024_meaning.mp3", - "audioExample": "files/22_1024_example.mp3", - "textMeaning": "A breed is a group of animals within a species.", - "textExample": "I like small dog breeds, such as terriers.", - "transcription": "[briːd]", - "__v": 0, - "textExampleTranslate": "Мне нравятся маленькие породы собак, такие как терьеры", - "textMeaningTranslate": "Порода - это группа животных внутри вида", - "wordTranslate": "разводить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8a0" - }, - "group": 1, - "page": 21, - "word": "bucket", - "image": "files/22_1025.jpg", - "audio": "files/22_1025.mp3", - "audioMeaning": "files/22_1025_meaning.mp3", - "audioExample": "files/22_1025_example.mp3", - "textMeaning": "A bucket is a round container to put things in.", - "textExample": "I filled the bucket with water.", - "transcription": "[bʌ́kit]", - "__v": 0, - "textExampleTranslate": "Я наполнил ведро водой", - "textMeaningTranslate": "Ведро - это круглый контейнер для вещей", - "wordTranslate": "ведро" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8a2" - }, - "group": 1, - "page": 21, - "word": "convict", - "image": "files/22_1027.jpg", - "audio": "files/22_1027.mp3", - "audioMeaning": "files/22_1027_meaning.mp3", - "audioExample": "files/22_1027_example.mp3", - "textMeaning": "To convict means to prove that someone did a bad thing.", - "textExample": "He was convicted of the crime and sent to jail.", - "transcription": "[kənvíkt]", - "__v": 0, - "textExampleTranslate": "Он был осужден за преступление и отправлен в тюрьму", - "textMeaningTranslate": "Осудить - значит доказать, что кто-то совершил плохую вещь", - "wordTranslate": "осужденный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8a1" - }, - "group": 1, - "page": 21, - "word": "contest", - "image": "files/22_1026.jpg", - "audio": "files/22_1026.mp3", - "audioMeaning": "files/22_1026_meaning.mp3", - "audioExample": "files/22_1026_example.mp3", - "textMeaning": "A contest is a game or a race.", - "textExample": "The girls had a contest to see who could jump higher.", - "transcription": "[kɑ́ntest]", - "__v": 0, - "textExampleTranslate": "У девушек был конкурс, чтобы увидеть, кто может прыгнуть выше", - "textMeaningTranslate": "Конкурс - это игра или гонка", - "wordTranslate": "конкурс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8a3" - }, - "group": 1, - "page": 21, - "word": "festival", - "image": "files/22_1028.jpg", - "audio": "files/22_1028.mp3", - "audioMeaning": "files/22_1028_meaning.mp3", - "audioExample": "files/22_1028_example.mp3", - "textMeaning": "A festival is an event that is held to celebrate a particular thing.", - "textExample": "I heard the song at the music festival in London.", - "transcription": "[féstəvəl]", - "__v": 0, - "textExampleTranslate": "Я слышал песню на музыкальном фестивале в Лондоне", - "textMeaningTranslate": "Фестиваль - это событие, которое проводится, чтобы отпраздновать определенную вещь", - "wordTranslate": "фестиваль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8a4" - }, - "group": 1, - "page": 21, - "word": "garage", - "image": "files/22_1029.jpg", - "audio": "files/22_1029.mp3", - "audioMeaning": "files/22_1029_meaning.mp3", - "audioExample": "files/22_1029_example.mp3", - "textMeaning": "A garage is the part of a house where people put their cars.", - "textExample": "My car does not get dirty because I keep it in the garage.", - "transcription": "[gərɑ́ːʒ]", - "__v": 0, - "textExampleTranslate": "Моя машина не пачкается, потому что я держу ее в гараже", - "textMeaningTranslate": "Гараж - это часть дома, где люди ставят свои машины", - "wordTranslate": "гараж" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8a6" - }, - "group": 1, - "page": 21, - "word": "pup", - "image": "files/22_1031.jpg", - "audio": "files/22_1031.mp3", - "audioMeaning": "files/22_1031_meaning.mp3", - "audioExample": "files/22_1031_example.mp3", - "textMeaning": "A pup is a young dog.", - "textExample": "All the girl wanted for her birthday was a pup.", - "transcription": "[pʌp]", - "__v": 0, - "textExampleTranslate": "Все, чего девушка хотела на день рождения, это щенок", - "textMeaningTranslate": "Щенок - молодая собака", - "wordTranslate": "щенок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8a7" - }, - "group": 1, - "page": 21, - "word": "qualify", - "image": "files/22_1032.jpg", - "audio": "files/22_1032.mp3", - "audioMeaning": "files/22_1032_meaning.mp3", - "audioExample": "files/22_1032_example.mp3", - "textMeaning": "To qualify is to have or do things that are needed for something.", - "textExample": "He qualified to go to the final match by beating the opponent.", - "transcription": "[kwɑ́ləfài]", - "__v": 0, - "textExampleTranslate": "Он получил право выходить в финальный матч, обыгрывая соперника", - "textMeaningTranslate": "Квалифицироваться - значит иметь или делать то, что нужно для чего-то", - "wordTranslate": "право" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8a5" - }, - "group": 1, - "page": 21, - "word": "journalist", - "image": "files/22_1030.jpg", - "audio": "files/22_1030.mp3", - "audioMeaning": "files/22_1030_meaning.mp3", - "audioExample": "files/22_1030_example.mp3", - "textMeaning": "A journalist is a person who writes news stories.", - "textExample": "The journalist took notes for a story he was writing.", - "transcription": "[dʒə́ːrnəlist]", - "__v": 0, - "textExampleTranslate": "Журналист делал заметки для рассказа, который он писал", - "textMeaningTranslate": "Журналист - это человек, который пишет новости", - "wordTranslate": "журналист" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8a8" - }, - "group": 1, - "page": 21, - "word": "repair", - "image": "files/22_1033.jpg", - "audio": "files/22_1033.mp3", - "audioMeaning": "files/22_1033_meaning.mp3", - "audioExample": "files/22_1033_example.mp3", - "textMeaning": "To repair something is to fix it.", - "textExample": "I repaired the flat tire on my car.", - "transcription": "[ripɛ́əːr]", - "__v": 0, - "textExampleTranslate": "Я отремонтировал спущенное колесо на моей машине", - "textMeaningTranslate": "Отремонтировать что-то - это исправить", - "wordTranslate": "ремонт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8a9" - }, - "group": 1, - "page": 21, - "word": "resume", - "image": "files/22_1034.jpg", - "audio": "files/22_1034.mp3", - "audioMeaning": "files/22_1034_meaning.mp3", - "audioExample": "files/22_1034_example.mp3", - "textMeaning": "To resume something means to start it again after taking a break.", - "textExample": "I put the newspaper down to eat breakfast. Then, I resumed reading.", - "transcription": "[rizúːm]", - "__v": 0, - "textExampleTranslate": "Я положил газету, чтобы съесть завтрак. Затем я возобновил чтение", - "textMeaningTranslate": "Возобновить что-то значит начать все заново после перерыва", - "wordTranslate": "резюме" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ab" - }, - "group": 1, - "page": 21, - "word": "slip", - "image": "files/22_1036.jpg", - "audio": "files/22_1036.mp3", - "audioMeaning": "files/22_1036_meaning.mp3", - "audioExample": "files/22_1036_example.mp3", - "textMeaning": "To slip means to slide and fall down.", - "textExample": "The man slipped on the wet floor.", - "transcription": "[slip]", - "__v": 0, - "textExampleTranslate": "Человек поскользнулся на мокром полу", - "textMeaningTranslate": "Скольжение означает скольжение и падение", - "wordTranslate": "проскальзывание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ac" - }, - "group": 1, - "page": 21, - "word": "somewhat", - "image": "files/22_1037.jpg", - "audio": "files/22_1037.mp3", - "audioMeaning": "files/22_1037_meaning.mp3", - "audioExample": "files/22_1037_example.mp3", - "textMeaning": "Somewhat means to some degree, but not to a large degree.", - "textExample": "James was somewhat upset when he had to move heavy boxes.", - "transcription": "[sʌ́mhwɑ̀t]", - "__v": 0, - "textExampleTranslate": "Джеймс был несколько расстроен, когда ему пришлось перенести тяжелые коробки", - "textMeaningTranslate": "В некоторой степени означает в некоторой степени, но не в большой степени", - "wordTranslate": "в некотором роде" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8aa" - }, - "group": 1, - "page": 21, - "word": "rob", - "image": "files/22_1035.jpg", - "audio": "files/22_1035.mp3", - "audioMeaning": "files/22_1035_meaning.mp3", - "audioExample": "files/22_1035_example.mp3", - "textMeaning": "To rob is to take property by using force.", - "textExample": "A thief has robbed me of my passport.", - "transcription": "[rɑb]", - "__v": 0, - "textExampleTranslate": "Вор украл у меня паспорт", - "textMeaningTranslate": "Ограбить - значит захватить собственность с помощью силы", - "wordTranslate": "грабят" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ad" - }, - "group": 1, - "page": 21, - "word": "stable", - "image": "files/22_1038.jpg", - "audio": "files/22_1038.mp3", - "audioMeaning": "files/22_1038_meaning.mp3", - "audioExample": "files/22_1038_example.mp3", - "textMeaning": "A stable thing will not move, change, or fall over.", - "textExample": "The chair is stable. Its legs are strong.", - "transcription": "[stéibl]", - "__v": 0, - "textExampleTranslate": "Стул устойчив. Его ноги крепкие", - "textMeaningTranslate": "Стабильная вещь не будет двигаться, меняться или падать", - "wordTranslate": "стабильный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8af" - }, - "group": 1, - "page": 21, - "word": "yard", - "image": "files/22_1040.jpg", - "audio": "files/22_1040.mp3", - "audioMeaning": "files/22_1040_meaning.mp3", - "audioExample": "files/22_1040_example.mp3", - "textMeaning": "A yard is the ground just outside of a house.", - "textExample": "The girls jumped rope in the yard.", - "transcription": "[jɑːrd]", - "__v": 0, - "textExampleTranslate": "Девушки прыгали через скакалку во дворе", - "textMeaningTranslate": "Двор - это земля снаружи дома", - "wordTranslate": "двор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8b1" - }, - "group": 1, - "page": 22, - "word": "card", - "image": "files/23_1042.jpg", - "audio": "files/23_1042.mp3", - "audioMeaning": "files/23_1042_meaning.mp3", - "audioExample": "files/23_1042_example.mp3", - "textMeaning": "A card is a small piece of plastic or paper used to buy or use things.", - "textExample": "Adam used his library card to borrow a book.", - "transcription": "[kɑːrd]", - "__v": 0, - "textExampleTranslate": "Адам использовал свою библиотечную карточку, чтобы одолжить книгу", - "textMeaningTranslate": "Карта - это маленький кусочек пластика или бумаги, который используется для покупки или использования вещей", - "wordTranslate": "открытка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ae" - }, - "group": 1, - "page": 21, - "word": "tissue", - "image": "files/22_1039.jpg", - "audio": "files/22_1039.mp3", - "audioMeaning": "files/22_1039_meaning.mp3", - "audioExample": "files/22_1039_example.mp3", - "textMeaning": "A tissue is a soft piece of paper people use to wipe their noses.", - "textExample": "There was a box of tissue on the table.", - "transcription": "[tíʃuː]", - "__v": 0, - "textExampleTranslate": "На столе была коробка с тканью", - "textMeaningTranslate": "Ткань - это мягкая бумажка, которую люди используют, чтобы вытереть нос", - "wordTranslate": "ткань" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8b0" - }, - "group": 1, - "page": 22, - "word": "best", - "image": "files/23_1041.jpg", - "audio": "files/23_1041.mp3", - "audioMeaning": "files/23_1041_meaning.mp3", - "audioExample": "files/23_1041_example.mp3", - "textMeaning": "The best person or thing is better than all the others.", - "textExample": "I got the best score on the math test.", - "transcription": "[best]", - "__v": 0, - "textExampleTranslate": "Я получил лучший результат на тесте по математике", - "textMeaningTranslate": "Лучший человек или вещь лучше всех остальных", - "wordTranslate": "лучший" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8b2" - }, - "group": 1, - "page": 22, - "word": "crowd", - "image": "files/23_1043.jpg", - "audio": "files/23_1043.mp3", - "audioMeaning": "files/23_1043_meaning.mp3", - "audioExample": "files/23_1043_example.mp3", - "textMeaning": "A crowd is a large group of people who are together in one place.", - "textExample": "The crowd waved to the camera.", - "transcription": "[kraud]", - "__v": 0, - "textExampleTranslate": "Толпа помахала перед камерой", - "textMeaningTranslate": "Толпа - это большая группа людей, которые вместе в одном месте", - "wordTranslate": "толпа людей" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8b3" - }, - "group": 1, - "page": 22, - "word": "dish", - "image": "files/23_1045.jpg", - "audio": "files/23_1045.mp3", - "audioMeaning": "files/23_1045_meaning.mp3", - "audioExample": "files/23_1045_example.mp3", - "textMeaning": "A dish is a type of food that is cooked in a particular way.", - "textExample": "My favorite dish at the restaurant is chicken curry.", - "transcription": "[diʃ]", - "__v": 0, - "textExampleTranslate": "Мое любимое блюдо в ресторане - куриное карри", - "textMeaningTranslate": "Блюдо - это вид пищи, который готовится особым образом", - "wordTranslate": "блюдо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8b6" - }, - "group": 1, - "page": 22, - "word": "experience", - "image": "files/23_1047.jpg", - "audio": "files/23_1047.mp3", - "audioMeaning": "files/23_1047_meaning.mp3", - "audioExample": "files/23_1047_example.mp3", - "textMeaning": "To experience is to do or see something or have something happen to you.", - "textExample": "Going to the concert was the best thing I’ve ever experienced.", - "transcription": "[ikspíəriəns]", - "__v": 0, - "textExampleTranslate": "Ходить на концерт было лучшим, что я когда-либо испытывал", - "textMeaningTranslate": "Испытывать - значит делать или видеть что-то, или что-то случается с тобой", - "wordTranslate": "опыт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8b4" - }, - "group": 1, - "page": 22, - "word": "day", - "image": "files/23_1044.jpg", - "audio": "files/23_1044.mp3", - "audioMeaning": "files/23_1044_meaning.mp3", - "audioExample": "files/23_1044_example.mp3", - "textMeaning": "A day is a period of twenty-four hours, beginning at midnight.", - "textExample": "There are two more days until the weekend.", - "transcription": "[dei]", - "__v": 0, - "textExampleTranslate": "До выходных осталось еще два дня", - "textMeaningTranslate": "День - это период в двадцать четыре часа, начиная с полуночи", - "wordTranslate": "день" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8b5" - }, - "group": 1, - "page": 22, - "word": "easy", - "image": "files/23_1046.jpg", - "audio": "files/23_1046.mp3", - "audioMeaning": "files/23_1046_meaning.mp3", - "audioExample": "files/23_1046_example.mp3", - "textMeaning": "An easy action is not difficult to do.", - "textExample": "Karen is happy because her English homework is easy.", - "transcription": "[iːzi]", - "__v": 0, - "textExampleTranslate": "Карен счастлива, потому что ее домашнее задание по английскому легко", - "textMeaningTranslate": "Легкое действие не сложно сделать", - "wordTranslate": "легко" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8b7" - }, - "group": 1, - "page": 22, - "word": "market", - "image": "files/23_1051.jpg", - "audio": "files/23_1051.mp3", - "audioMeaning": "files/23_1051_meaning.mp3", - "audioExample": "files/23_1051_example.mp3", - "textMeaning": "A market is a place where people buy and sell products or food.", - "textExample": "I go to the market every weekend to buy vegetables.", - "transcription": "[mάːrkit]", - "__v": 0, - "textExampleTranslate": "Я иду на рынок каждые выходные, чтобы купить овощи", - "textMeaningTranslate": "Рынок - это место, где люди покупают и продают продукты или продукты питания", - "wordTranslate": "рынок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8b8" - }, - "group": 1, - "page": 22, - "word": "light", - "image": "files/23_1050.jpg", - "audio": "files/23_1050.mp3", - "audioMeaning": "files/23_1050_meaning.mp3", - "audioExample": "files/23_1050_example.mp3", - "textMeaning": "Light is a form of energy or brightness that makes it possible to see something.", - "textExample": "I will turn on the light so that you can see.", - "transcription": "[lait]", - "__v": 0, - "textExampleTranslate": "Я включу свет, чтобы вы могли видеть", - "textMeaningTranslate": "Свет - это форма энергии или яркости, которая позволяет увидеть что-то", - "wordTranslate": "светлый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ba" - }, - "group": 1, - "page": 22, - "word": "hotel", - "image": "files/23_1048.jpg", - "audio": "files/23_1048.mp3", - "audioMeaning": "files/23_1048_meaning.mp3", - "audioExample": "files/23_1048_example.mp3", - "textMeaning": "A hotel is a place where people stay overnight when they are traveling.", - "textExample": "This family is staying at their favorite hotel.", - "transcription": "[houtél]", - "__v": 0, - "textExampleTranslate": "Эта семья останавливается в своем любимом отеле", - "textMeaningTranslate": "Отель - это место, где люди остаются на ночь, когда путешествуют", - "wordTranslate": "гостиница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8bb" - }, - "group": 1, - "page": 22, - "word": "hour", - "image": "files/23_1049.jpg", - "audio": "files/23_1049.mp3", - "audioMeaning": "files/23_1049_meaning.mp3", - "audioExample": "files/23_1049_example.mp3", - "textMeaning": "An hour is sixty minutes.", - "textExample": "The man waited for the train for over an hour.", - "transcription": "[auər]", - "__v": 0, - "textExampleTranslate": "Человек ждал поезда более часа", - "textMeaningTranslate": "Час шестьдесят минут", - "wordTranslate": "час" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8b9" - }, - "group": 1, - "page": 22, - "word": "plan", - "image": "files/23_1052.jpg", - "audio": "files/23_1052.mp3", - "audioMeaning": "files/23_1052_meaning.mp3", - "audioExample": "files/23_1052_example.mp3", - "textMeaning": "To plan is to think about and arrange the details of something you want to do.", - "textExample": "It’s Sam’s turn to plan the company party.", - "transcription": "[plæn]", - "__v": 0, - "textExampleTranslate": "Сейчас очередь Сэма спланировать вечеринку компании", - "textMeaningTranslate": "Планировать - значит думать и согласовывать детали того, что вы хотите сделать", - "wordTranslate": "план" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8bc" - }, - "group": 1, - "page": 22, - "word": "short", - "image": "files/23_1054.jpg", - "audio": "files/23_1054.mp3", - "audioMeaning": "files/23_1054_meaning.mp3", - "audioExample": "files/23_1054_example.mp3", - "textMeaning": "A short thing is not long or not tall.", - "textExample": "The days are short in the winter.", - "transcription": "[ʃɔːrt]", - "__v": 0, - "textExampleTranslate": "Дни зимой короткие", - "textMeaningTranslate": "Короткая вещь не длинная или не высокая", - "wordTranslate": "короткая" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8bd" - }, - "group": 1, - "page": 22, - "word": "price", - "image": "files/23_1053.jpg", - "audio": "files/23_1053.mp3", - "audioMeaning": "files/23_1053_meaning.mp3", - "audioExample": "files/23_1053_example.mp3", - "textMeaning": "The price is the amount of money needed to pay for something.", - "textExample": "Julie is checking the price of a sweater.", - "transcription": "[prais]", - "__v": 0, - "textExampleTranslate": "Джули проверяет цену на свитер", - "textMeaningTranslate": "Цена - это сумма денег, необходимая для оплаты чего-либо", - "wordTranslate": "цена" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8be" - }, - "group": 1, - "page": 22, - "word": "surprise", - "image": "files/23_1057.jpg", - "audio": "files/23_1057.mp3", - "audioMeaning": "files/23_1057_meaning.mp3", - "audioExample": "files/23_1057_example.mp3", - "textMeaning": "To surprise is to cause something that is unexpected.", - "textExample": "His parents decided to surprise him with a puppy.", - "transcription": "[sərpráiz]", - "__v": 0, - "textExampleTranslate": "Его родители решили удивить его щенком", - "textMeaningTranslate": "Удивить - значит вызвать нечто неожиданное", - "wordTranslate": "сюрприз" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8c0" - }, - "group": 1, - "page": 22, - "word": "shop", - "image": "files/23_1055.jpg", - "audio": "files/23_1055.mp3", - "audioMeaning": "files/23_1055_meaning.mp3", - "audioExample": "files/23_1055_example.mp3", - "textMeaning": "To shop is to visit places where goods are sold in order to look at and buy things.", - "textExample": "Tom decided to shop for groceries on his way home.", - "transcription": "[ʃɑːp]", - "__v": 0, - "textExampleTranslate": "Том решил купить продукты по пути домой", - "textMeaningTranslate": "Делать покупки - значит посещать места, где продаются товары, чтобы смотреть и покупать вещи", - "wordTranslate": "магазин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8bf" - }, - "group": 1, - "page": 22, - "word": "station", - "image": "files/23_1056.jpg", - "audio": "files/23_1056.mp3", - "audioMeaning": "files/23_1056_meaning.mp3", - "audioExample": "files/23_1056_example.mp3", - "textMeaning": "A station is a place where buses and trains stop for passengers.", - "textExample": "This man is waiting at the train station.", - "transcription": "[stéiʃən]", - "__v": 0, - "textExampleTranslate": "Этот человек ждет на вокзале", - "textMeaningTranslate": "Станция - это место, где автобусы и поезда останавливаются для пассажиров", - "wordTranslate": "станция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8c1" - }, - "group": 1, - "page": 22, - "word": "taxi", - "image": "files/23_1059.jpg", - "audio": "files/23_1059.mp3", - "audioMeaning": "files/23_1059_meaning.mp3", - "audioExample": "files/23_1059_example.mp3", - "textMeaning": "A taxi is a car and driver that you pay to take you somewhere.", - "textExample": "Gary drives a taxi, so he knows the roads very well.", - "transcription": "[tæksi]", - "__v": 0, - "textExampleTranslate": "Гари водит такси, поэтому он очень хорошо знает дороги", - "textMeaningTranslate": "Такси - это машина и водитель, которые вы платите, чтобы отвезти вас куда-нибудь", - "wordTranslate": "такси" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8c2" - }, - "group": 1, - "page": 22, - "word": "system", - "image": "files/23_1058.jpg", - "audio": "files/23_1058.mp3", - "audioMeaning": "files/23_1058_meaning.mp3", - "audioExample": "files/23_1058_example.mp3", - "textMeaning": "A system is a group of related parts that move or work together.", - "textExample": "This device controls the building’s heating system.", - "transcription": "[sístəm]", - "__v": 0, - "textExampleTranslate": "Это устройство управляет системой отопления здания", - "textMeaningTranslate": "Система - это группа связанных частей, которые перемещаются или работают вместе", - "wordTranslate": "система" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8c5" - }, - "group": 1, - "page": 22, - "word": "two", - "image": "files/23_1060.jpg", - "audio": "files/23_1060.mp3", - "audioMeaning": "files/23_1060_meaning.mp3", - "audioExample": "files/23_1060_example.mp3", - "textMeaning": "Two is the word for the number 2.", - "textExample": "Two friends study together at the coffee shop.", - "transcription": "[tuː]", - "__v": 0, - "textExampleTranslate": "Двое друзей учатся вместе в кафе", - "textMeaningTranslate": "Два - это слово для числа 2", - "wordTranslate": "два" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8c4" - }, - "group": 1, - "page": 23, - "word": "bath", - "image": "files/24_1061.jpg", - "audio": "files/24_1061.mp3", - "audioMeaning": "files/24_1061_meaning.mp3", - "audioExample": "files/24_1061_example.mp3", - "textMeaning": "A bath is the act of sitting in a tub of water in order to get clean.", - "textExample": "After playing in the dirt, the boy took a bath.", - "transcription": "[bæθ]", - "__v": 0, - "textExampleTranslate": "Поиграв в грязи, мальчик принял ванну", - "textMeaningTranslate": "Ванна - это акт сидения в ванне с водой, чтобы очиститься", - "wordTranslate": "ванна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8c3" - }, - "group": 1, - "page": 23, - "word": "bend", - "image": "files/24_1062.jpg", - "audio": "files/24_1062.mp3", - "audioMeaning": "files/24_1062_meaning.mp3", - "audioExample": "files/24_1062_example.mp3", - "textMeaning": "To bend is to move something so it is not straight.", - "textExample": "Lee bent over and picked up the paper on the ground.", - "transcription": "[bend]", - "__v": 0, - "textExampleTranslate": "Ли наклонился и взял газету на землю", - "textMeaningTranslate": "Сгибаться - значит двигать что-то, чтобы оно не было прямым", - "wordTranslate": "гнуть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8c6" - }, - "group": 1, - "page": 23, - "word": "chew", - "image": "files/24_1063.jpg", - "audio": "files/24_1063.mp3", - "audioMeaning": "files/24_1063_meaning.mp3", - "audioExample": "files/24_1063_example.mp3", - "textMeaning": "To chew is to break up food by using the mouth and teeth.", - "textExample": "I always chew my food carefully before swallowing it.", - "transcription": "[tʃuː]", - "__v": 0, - "textExampleTranslate": "Я всегда тщательно пережевываю еду, прежде чем проглотить ее", - "textMeaningTranslate": "Жевать - значит разбивать еду, используя рот и зубы", - "wordTranslate": "жевать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8c7" - }, - "group": 1, - "page": 23, - "word": "disabled", - "image": "files/24_1064.jpg", - "audio": "files/24_1064.mp3", - "audioMeaning": "files/24_1064_meaning.mp3", - "audioExample": "files/24_1064_example.mp3", - "textMeaning": "A disabled person has a physical problem that makes some activities difficult.", - "textExample": "The disabled man used a wheelchair to move around.", - "transcription": "[diséibəld]", - "__v": 0, - "textExampleTranslate": "Инвалид использовал инвалидное кресло для передвижения", - "textMeaningTranslate": "У инвалида есть физическая проблема, которая затрудняет некоторые виды деятельности", - "wordTranslate": "отключен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8c8" - }, - "group": 1, - "page": 23, - "word": "flag", - "image": "files/24_1067.jpg", - "audio": "files/24_1067.mp3", - "audioMeaning": "files/24_1067_meaning.mp3", - "audioExample": "files/24_1067_example.mp3", - "textMeaning": "A flag is a piece of colored cloth that represents something.", - "textExample": "Our country has a beautiful flag.", - "transcription": "[flǽɡ]", - "__v": 0, - "textExampleTranslate": "У нашей страны красивый флаг", - "textMeaningTranslate": "Флаг - это кусок цветной ткани, который представляет что-то", - "wordTranslate": "флаг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8c9" - }, - "group": 1, - "page": 23, - "word": "fantastic", - "image": "files/24_1065.jpg", - "audio": "files/24_1065.mp3", - "audioMeaning": "files/24_1065_meaning.mp3", - "audioExample": "files/24_1065_example.mp3", - "textMeaning": "A fantastic thing is really good.", - "textExample": "The student did a fantastic job on his project and got an award.", - "transcription": "[fæntǽstik]", - "__v": 0, - "textExampleTranslate": "Студент проделал фантастическую работу над своим проектом и получил награду", - "textMeaningTranslate": "Фантастическая вещь действительно хороша", - "wordTranslate": "фантастический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ca" - }, - "group": 1, - "page": 23, - "word": "fiction", - "image": "files/24_1066.jpg", - "audio": "files/24_1066.mp3", - "audioMeaning": "files/24_1066_meaning.mp3", - "audioExample": "files/24_1066_example.mp3", - "textMeaning": "Fiction is a story that is not true.", - "textExample": "I enjoy reading works of fiction because they are very entertaining.", - "transcription": "[fíkʃən]", - "__v": 0, - "textExampleTranslate": "Мне нравится читать художественные произведения, потому что они очень интересны", - "textMeaningTranslate": "Фантастика - это история, которая не соответствует действительности", - "wordTranslate": "фантастика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8cb" - }, - "group": 1, - "page": 23, - "word": "inspect", - "image": "files/24_1068.jpg", - "audio": "files/24_1068.mp3", - "audioMeaning": "files/24_1068_meaning.mp3", - "audioExample": "files/24_1068_example.mp3", - "textMeaning": "To inspect is to look at something carefully.", - "textExample": "The mechanic inspected our car to see if it had any problems.", - "transcription": "[inspékt]", - "__v": 0, - "textExampleTranslate": "Механик осмотрел нашу машину, чтобы увидеть, есть ли у нее проблемы", - "textMeaningTranslate": "Осматривать - значит внимательно смотреть на что-то", - "wordTranslate": "осмотреть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8cc" - }, - "group": 1, - "page": 23, - "word": "journal", - "image": "files/24_1069.jpg", - "audio": "files/24_1069.mp3", - "audioMeaning": "files/24_1069_meaning.mp3", - "audioExample": "files/24_1069_example.mp3", - "textMeaning": "A journal is a type of magazine that deals with an academic subject.", - "textExample": "Mi-young was busy working on an article for an art journal.", - "transcription": "[dʒə́ːrnəl]", - "__v": 0, - "textExampleTranslate": "Ми-Янг был занят работой над статьей для художественного журнала", - "textMeaningTranslate": "Журнал - это тип журнала, посвященный академической теме", - "wordTranslate": "журнал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8cd" - }, - "group": 1, - "page": 23, - "word": "liquid", - "image": "files/24_1070.jpg", - "audio": "files/24_1070.mp3", - "audioMeaning": "files/24_1070_meaning.mp3", - "audioExample": "files/24_1070_example.mp3", - "textMeaning": "A liquid is a substance that is neither solid nor gas.", - "textExample": "Water is the most important liquid for life.", - "transcription": "[líkwid]", - "__v": 0, - "textExampleTranslate": "Вода - самая важная жидкость для жизни", - "textMeaningTranslate": "Жидкость - это вещество, которое не является ни твердым, ни газообразным", - "wordTranslate": "жидкость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8cf" - }, - "group": 1, - "page": 23, - "word": "overcome", - "image": "files/24_1072.jpg", - "audio": "files/24_1072.mp3", - "audioMeaning": "files/24_1072_meaning.mp3", - "audioExample": "files/24_1072_example.mp3", - "textMeaning": "To overcome a problem is to successfully fix it.", - "textExample": "She overcame her shyness and spoke in front of the class.", - "transcription": "[òuvərkʌ́m]", - "__v": 0, - "textExampleTranslate": "Она преодолела свою стеснительность и говорила перед классом", - "textMeaningTranslate": "Преодолеть проблему - значит успешно ее решить", - "wordTranslate": "преодолеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ce" - }, - "group": 1, - "page": 23, - "word": "marvel", - "image": "files/24_1071.jpg", - "audio": "files/24_1071.mp3", - "audioMeaning": "files/24_1071_meaning.mp3", - "audioExample": "files/24_1071_example.mp3", - "textMeaning": "To marvel at something is to feel surprise and interest in it.", - "textExample": "We marveled at her excellent piano playing.", - "transcription": "[mɑ́ːrvəl]", - "__v": 0, - "textExampleTranslate": "Мы восхищались ее великолепной игрой на пианино", - "textMeaningTranslate": "Удивляться чему-то - значит чувствовать удивление и интерес к этому", - "wordTranslate": "удивляюсь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8d0" - }, - "group": 1, - "page": 23, - "word": "recall", - "image": "files/24_1073.jpg", - "audio": "files/24_1073.mp3", - "audioMeaning": "files/24_1073_meaning.mp3", - "audioExample": "files/24_1073_example.mp3", - "textMeaning": "To recall something is to remember it.", - "textExample": "She was trying to recall what she had told her friend.", - "transcription": "[rikɔ́ːl]", - "__v": 0, - "textExampleTranslate": "Она пыталась вспомнить то, что сказала своей подруге", - "textMeaningTranslate": "Вспомнить что-то - это вспомнить", - "wordTranslate": "отзыв" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8d1" - }, - "group": 1, - "page": 23, - "word": "regret", - "image": "files/24_1074.jpg", - "audio": "files/24_1074.mp3", - "audioMeaning": "files/24_1074_meaning.mp3", - "audioExample": "files/24_1074_example.mp3", - "textMeaning": "To regret something is to wish that it hadn’t happened.", - "textExample": "I regret that I was mean to my sister.", - "transcription": "[rigrét]", - "__v": 0, - "textExampleTranslate": "Я сожалею, что я был злым с моей сестрой", - "textMeaningTranslate": "Сожалеть о чем-то, значит желать, чтобы этого не произошло", - "wordTranslate": "сожаление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8d2" - }, - "group": 1, - "page": 23, - "word": "soul", - "image": "files/24_1075.jpg", - "audio": "files/24_1075.mp3", - "audioMeaning": "files/24_1075_meaning.mp3", - "audioExample": "files/24_1075_example.mp3", - "textMeaning": "A soul is a person’s spirit.", - "textExample": "Some people believe that the soul lives after the body dies.", - "transcription": "[soul]", - "__v": 0, - "textExampleTranslate": "Некоторые люди считают, что душа живет после того, как тело умирает", - "textMeaningTranslate": "Душа - это дух человека", - "wordTranslate": "душа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8d3" - }, - "group": 1, - "page": 23, - "word": "sufficient", - "image": "files/24_1076.jpg", - "audio": "files/24_1076.mp3", - "audioMeaning": "files/24_1076_meaning.mp3", - "audioExample": "files/24_1076_example.mp3", - "textMeaning": "Sufficient shows that something is enough, in quality or quantity.", - "textExample": "After eating a sufficient amount of food, I left the table.", - "transcription": "[səfíʃənt]", - "__v": 0, - "textExampleTranslate": "Съев достаточное количество еды, я покинул стол", - "textMeaningTranslate": "Достаточно показывает, что чего-то достаточно, по качеству или количеству", - "wordTranslate": "достаточно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8d4" - }, - "group": 1, - "page": 23, - "word": "surgery", - "image": "files/24_1077.jpg", - "audio": "files/24_1077.mp3", - "audioMeaning": "files/24_1077_meaning.mp3", - "audioExample": "files/24_1077_example.mp3", - "textMeaning": "Surgery is medical treatment involving a doctor cutting into a body.", - "textExample": "I needed surgery to repair my leg after the accident.", - "transcription": "[sə́ːrdʒəri]", - "__v": 0, - "textExampleTranslate": "Мне нужна была операция, чтобы восстановить ногу после аварии", - "textMeaningTranslate": "Хирургия - это медицинское лечение с участием врача, прорезающего тело", - "wordTranslate": "операция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8d5" - }, - "group": 1, - "page": 23, - "word": "tough", - "image": "files/24_1078.jpg", - "audio": "files/24_1078.mp3", - "audioMeaning": "files/24_1078_meaning.mp3", - "audioExample": "files/24_1078_example.mp3", - "textMeaning": "A tough thing is difficult.", - "textExample": "The man passed his driving test even though it was very tough.", - "transcription": "[tʌf]", - "__v": 0, - "textExampleTranslate": "Человек сдал экзамен по вождению, хотя это было очень тяжело", - "textMeaningTranslate": "Трудная вещь трудная", - "wordTranslate": "жесткая" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8d6" - }, - "group": 1, - "page": 23, - "word": "tube", - "image": "files/24_1079.jpg", - "audio": "files/24_1079.mp3", - "audioMeaning": "files/24_1079_meaning.mp3", - "audioExample": "files/24_1079_example.mp3", - "textMeaning": "A tube is a pipe through which water or air passes.", - "textExample": "The pile of tubes was going to be put in the ground.", - "transcription": "[tjuːb]", - "__v": 0, - "textExampleTranslate": "Кучу труб собирались положить в землю", - "textMeaningTranslate": "Трубка - это труба, по которой проходит вода или воздух", - "wordTranslate": "труба" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8d7" - }, - "group": 1, - "page": 23, - "word": "value", - "image": "files/24_1080.jpg", - "audio": "files/24_1080.mp3", - "audioMeaning": "files/24_1080_meaning.mp3", - "audioExample": "files/24_1080_example.mp3", - "textMeaning": "The value of something is what it is worth.", - "textExample": "Your love for me has greater value than gold.", - "transcription": "[vǽljuː]", - "__v": 0, - "textExampleTranslate": "Твоя любовь ко мне имеет большую ценность, чем золото", - "textMeaningTranslate": "Ценность чего-то - это то, что оно стоит", - "wordTranslate": "ценность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8d8" - }, - "group": 1, - "page": 24, - "word": "beautiful", - "image": "files/25_1082.jpg", - "audio": "files/25_1082.mp3", - "audioMeaning": "files/25_1082_meaning.mp3", - "audioExample": "files/25_1082_example.mp3", - "textMeaning": "A beautiful thing is good to look at.", - "textExample": "There was a beautiful sunset.", - "transcription": "[bjúːtəfəl]", - "__v": 0, - "textExampleTranslate": "Был красивый закат", - "textMeaningTranslate": "На красивую вещь приятно смотреть", - "wordTranslate": "прекрасный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8d9" - }, - "group": 1, - "page": 24, - "word": "atom", - "image": "files/25_1081.jpg", - "audio": "files/25_1081.mp3", - "audioMeaning": "files/25_1081_meaning.mp3", - "audioExample": "files/25_1081_example.mp3", - "textMeaning": "An atom is the smallest unit of a substance.", - "textExample": "A molecule consists of a combination of two or more atoms.", - "transcription": "[ǽtəm]", - "__v": 0, - "textExampleTranslate": "Молекула состоит из комбинации двух или более атомов", - "textMeaningTranslate": "Атом - это самая маленькая единица вещества", - "wordTranslate": "атом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8da" - }, - "group": 1, - "page": 24, - "word": "breadth", - "image": "files/25_1083.jpg", - "audio": "files/25_1083.mp3", - "audioMeaning": "files/25_1083_meaning.mp3", - "audioExample": "files/25_1083_example.mp3", - "textMeaning": "Breadth is the distance from one side to the other side of something.", - "textExample": "The breadth of the northern wall of the house is twenty meters.", - "transcription": "[bredθ]", - "__v": 0, - "textExampleTranslate": "Ширина северной стены дома двадцать метров", - "textMeaningTranslate": "Ширина - это расстояние от одной стороны до другой стороны чего-либо", - "wordTranslate": "широта" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8db" - }, - "group": 1, - "page": 24, - "word": "comet", - "image": "files/25_1084.jpg", - "audio": "files/25_1084.mp3", - "audioMeaning": "files/25_1084_meaning.mp3", - "audioExample": "files/25_1084_example.mp3", - "textMeaning": "A comet is an object in space made of ice and rock with a tail of glowing dust.", - "textExample": "Comets take many decades to complete an orbit around a star.", - "transcription": "[kɑ́mit]", - "__v": 0, - "textExampleTranslate": "Кометам требуется много десятилетий, чтобы завершить орбиту вокруг звезды", - "textMeaningTranslate": "Комета - это объект в космосе, сделанный из льда и камня с хвостом пылающей пыли", - "wordTranslate": "комета" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8dc" - }, - "group": 1, - "page": 24, - "word": "cover", - "image": "files/25_1085.jpg", - "audio": "files/25_1085.mp3", - "audioMeaning": "files/25_1085_meaning.mp3", - "audioExample": "files/25_1085_example.mp3", - "textMeaning": "To cover something is to put things over it.", - "textExample": "The Earth was covered with clouds.", - "transcription": "[kΛvər]", - "__v": 0, - "textExampleTranslate": "Земля была покрыта облаками", - "textMeaningTranslate": "Покрыть что-то - значит положить что-то поверх этого", - "wordTranslate": "обложка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8dd" - }, - "group": 1, - "page": 24, - "word": "despair", - "image": "files/25_1086.jpg", - "audio": "files/25_1086.mp3", - "audioMeaning": "files/25_1086_meaning.mp3", - "audioExample": "files/25_1086_example.mp3", - "textMeaning": "Despair is the feeling of having no hope.", - "textExample": "After we lost the big account, our salespeople were filled with despair.", - "transcription": "[dispɛ́ər]", - "__v": 0, - "textExampleTranslate": "После того, как мы потеряли большой счет, наши продавцы были полны отчаяния", - "textMeaningTranslate": "Отчаяние - это чувство отсутствия надежды", - "wordTranslate": "отчаяние" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8de" - }, - "group": 1, - "page": 24, - "word": "form", - "image": "files/25_1087.jpg", - "audio": "files/25_1087.mp3", - "audioMeaning": "files/25_1087_meaning.mp3", - "audioExample": "files/25_1087_example.mp3", - "textMeaning": "To form is to make or to shape something.", - "textExample": "They formed a new government.", - "transcription": "[fɔːrm]", - "__v": 0, - "textExampleTranslate": "Они сформировали новое правительство", - "textMeaningTranslate": "Формировать - значит создавать или формировать что-то", - "wordTranslate": "форма" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8df" - }, - "group": 1, - "page": 24, - "word": "fragment", - "image": "files/25_1088.jpg", - "audio": "files/25_1088.mp3", - "audioMeaning": "files/25_1088_meaning.mp3", - "audioExample": "files/25_1088_example.mp3", - "textMeaning": "A fragment is a small part of something.", - "textExample": "After the light broke, there were fragments of glass to clean up.", - "transcription": "[frǽgmənt]", - "__v": 0, - "textExampleTranslate": "После того, как свет погас, были осколки стекла для очистки", - "textMeaningTranslate": "Фрагмент - это маленькая часть чего-то", - "wordTranslate": "фрагмент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8e0" - }, - "group": 1, - "page": 24, - "word": "galaxy", - "image": "files/25_1089.jpg", - "audio": "files/25_1089.mp3", - "audioMeaning": "files/25_1089_meaning.mp3", - "audioExample": "files/25_1089_example.mp3", - "textMeaning": "A galaxy is an extremely large collection of star systems.", - "textExample": "Our solar system is located in the outer area of our galaxy.", - "transcription": "[gǽləksi]", - "__v": 0, - "textExampleTranslate": "Наша солнечная система расположена во внешней области нашей галактики", - "textMeaningTranslate": "Галактика - это чрезвычайно большая коллекция звездных систем", - "wordTranslate": "галактика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8e1" - }, - "group": 1, - "page": 24, - "word": "gloom", - "image": "files/25_1090.jpg", - "audio": "files/25_1090.mp3", - "audioMeaning": "files/25_1090_meaning.mp3", - "audioExample": "files/25_1090_example.mp3", - "textMeaning": "Gloom is a state of almost complete darkness or sadness.", - "textExample": "In the gloom of the morning, it was difficult to see the boat on the lake.", - "transcription": "[gluːm]", - "__v": 0, - "textExampleTranslate": "Во мраке утра было трудно увидеть лодку на озере", - "textMeaningTranslate": "Мрак - это состояние почти полной темноты или грусти", - "wordTranslate": "мрак" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8e2" - }, - "group": 1, - "page": 24, - "word": "large", - "image": "files/25_1091.jpg", - "audio": "files/25_1091.mp3", - "audioMeaning": "files/25_1091_meaning.mp3", - "audioExample": "files/25_1091_example.mp3", - "textMeaning": "Something large is very big.", - "textExample": "I was frightened by a large bird.", - "transcription": "[laːrdʒ]", - "__v": 0, - "textExampleTranslate": "Я был напуган большой птицей", - "textMeaningTranslate": "Что-то большое, очень большое", - "wordTranslate": "большой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8e3" - }, - "group": 1, - "page": 24, - "word": "moon", - "image": "files/25_1092.jpg", - "audio": "files/25_1092.mp3", - "audioMeaning": "files/25_1092_meaning.mp3", - "audioExample": "files/25_1092_example.mp3", - "textMeaning": "The moon is an object that travels around our Earth.", - "textExample": "The moon looks beautiful tonight.", - "transcription": "[muːn]", - "__v": 0, - "textExampleTranslate": "Луна выглядит красиво сегодня вечером", - "textMeaningTranslate": "Луна - это объект, который путешествует вокруг нашей Земли", - "wordTranslate": "луна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8e4" - }, - "group": 1, - "page": 24, - "word": "radiate", - "image": "files/25_1093.jpg", - "audio": "files/25_1093.mp3", - "audioMeaning": "files/25_1093_meaning.mp3", - "audioExample": "files/25_1093_example.mp3", - "textMeaning": "To radiate means to send out energy or heat.", - "textExample": "The heat from the fireplace radiated throughout the room.", - "transcription": "[réidièit]", - "__v": 0, - "textExampleTranslate": "Тепло от камина излучается по всей комнате", - "textMeaningTranslate": "Излучать означает отправлять энергию или тепло", - "wordTranslate": "излучать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8e5" - }, - "group": 1, - "page": 24, - "word": "roam", - "image": "files/25_1094.jpg", - "audio": "files/25_1094.mp3", - "audioMeaning": "files/25_1094_meaning.mp3", - "audioExample": "files/25_1094_example.mp3", - "textMeaning": "To roam means to move around without a plan or purpose.", - "textExample": "All day, the cows roamed around the field eating grass.", - "transcription": "[roum]", - "__v": 0, - "textExampleTranslate": "Весь день коровы бродили по полю, питаясь травой", - "textMeaningTranslate": "Бродить - значит передвигаться без плана или цели", - "wordTranslate": "странствовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8e6" - }, - "group": 1, - "page": 24, - "word": "solitary", - "image": "files/25_1095.jpg", - "audio": "files/25_1095.mp3", - "audioMeaning": "files/25_1095_meaning.mp3", - "audioExample": "files/25_1095_example.mp3", - "textMeaning": "A solitary thing is lonely or the only one.", - "textExample": "The only thing in the room was a solitary chair.", - "transcription": "[sɑ́litèri]", - "__v": 0, - "textExampleTranslate": "Единственное, что было в комнате - это одинокий стул", - "textMeaningTranslate": "Одинокая вещь одинока или единственная", - "wordTranslate": "одинокий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8e7" - }, - "group": 1, - "page": 24, - "word": "spectrum", - "image": "files/25_1096.jpg", - "audio": "files/25_1096.mp3", - "audioMeaning": "files/25_1096_meaning.mp3", - "audioExample": "files/25_1096_example.mp3", - "textMeaning": "The spectrum is the full range of color ranging from red to violet.", - "textExample": "You can see the entire spectrum in a rainbow.", - "transcription": "[spéktrəm]", - "__v": 0, - "textExampleTranslate": "Вы можете увидеть весь спектр в радуге", - "textMeaningTranslate": "Спектр - это полный спектр цветов от красного до фиолетового", - "wordTranslate": "спектр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8e8" - }, - "group": 1, - "page": 24, - "word": "sphere", - "image": "files/25_1097.jpg", - "audio": "files/25_1097.mp3", - "audioMeaning": "files/25_1097_meaning.mp3", - "audioExample": "files/25_1097_example.mp3", - "textMeaning": "A sphere is a three-dimensional round shape, like a ball.", - "textExample": "The balloons were inflated into a variety of colorful spheres.", - "transcription": "[sfiəːr]", - "__v": 0, - "textExampleTranslate": "Воздушные шары были накачаны во множество красочных сфер", - "textMeaningTranslate": "Сфера - это трехмерная круглая форма, похожая на шар", - "wordTranslate": "сфера" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8e9" - }, - "group": 1, - "page": 24, - "word": "star", - "image": "files/25_1098.jpg", - "audio": "files/25_1098.mp3", - "audioMeaning": "files/25_1098_meaning.mp3", - "audioExample": "files/25_1098_example.mp3", - "textMeaning": "A star is a bright shining thing in the night sky.", - "textExample": "The stars come out at night.", - "transcription": "[staːr]", - "__v": 0, - "textExampleTranslate": "Звезды выходят ночью", - "textMeaningTranslate": "Звезда - это яркая сияющая вещь в ночном небе", - "wordTranslate": "звезда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ea" - }, - "group": 1, - "page": 24, - "word": "status", - "image": "files/25_1099.jpg", - "audio": "files/25_1099.mp3", - "audioMeaning": "files/25_1099_meaning.mp3", - "audioExample": "files/25_1099_example.mp3", - "textMeaning": "Status is the position of something or someone in relation to others.", - "textExample": "She had achieved the status of being the smartest girl in the class.", - "transcription": "[stéitəs]", - "__v": 0, - "textExampleTranslate": "Она достигла статуса самой умной девочки в классе", - "textMeaningTranslate": "Статус - это позиция чего-то или кого-то по отношению к другим", - "wordTranslate": "положение дел" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ec" - }, - "group": 1, - "page": 25, - "word": "accuse", - "image": "files/26_1101.jpg", - "audio": "files/26_1101.mp3", - "audioMeaning": "files/26_1101_meaning.mp3", - "audioExample": "files/26_1101_example.mp3", - "textMeaning": "To accuse someone of something is to blame them for doing it.", - "textExample": "She accused her brother of breaking her computer.", - "transcription": "[əkjúːz]", - "__v": 0, - "textExampleTranslate": "Она обвинила своего брата в том, что он сломал свой компьютер", - "textMeaningTranslate": "Обвинять кого-то в чем-то - значит обвинять его в этом", - "wordTranslate": "обвиняют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ee" - }, - "group": 1, - "page": 25, - "word": "amuse", - "image": "files/26_1103.jpg", - "audio": "files/26_1103.mp3", - "audioMeaning": "files/26_1103_meaning.mp3", - "audioExample": "files/26_1103_example.mp3", - "textMeaning": "To amuse someone means to do something that is funny or entertaining.", - "textExample": "The singer was very good. She amused the crowd.", - "transcription": "[əmjúːz]", - "__v": 0, - "textExampleTranslate": "Певица была очень хороша. Она позабавила толпу", - "textMeaningTranslate": "Развлекать кого-то - значит делать что-то смешное или занимательное", - "wordTranslate": "развлекаться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ed" - }, - "group": 1, - "page": 25, - "word": "adjust", - "image": "files/26_1102.jpg", - "audio": "files/26_1102.mp3", - "audioMeaning": "files/26_1102_meaning.mp3", - "audioExample": "files/26_1102_example.mp3", - "textMeaning": "To adjust something means to change it so it is better.", - "textExample": "He adjusted the old guitar to make it sound better.", - "transcription": "[ədʒʌ́st]", - "__v": 0, - "textExampleTranslate": "Он настроил старую гитару, чтобы она звучала лучше", - "textMeaningTranslate": "Настроить что-то значит изменить это так, чтобы оно было лучше", - "wordTranslate": "настроить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8eb" - }, - "group": 1, - "page": 24, - "word": "ugly", - "image": "files/25_1100.jpg", - "audio": "files/25_1100.mp3", - "audioMeaning": "files/25_1100_meaning.mp3", - "audioExample": "files/25_1100_example.mp3", - "textMeaning": "Something ugly is not good to look at.", - "textExample": "It was an ugly sight.", - "transcription": "[Λgli]", - "__v": 0, - "textExampleTranslate": "Это было ужасное зрелище", - "textMeaningTranslate": "Что-то уродливое нехорошо смотреть", - "wordTranslate": "некрасиво" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ef" - }, - "group": 1, - "page": 25, - "word": "coral", - "image": "files/26_1104.jpg", - "audio": "files/26_1104.mp3", - "audioMeaning": "files/26_1104_meaning.mp3", - "audioExample": "files/26_1104_example.mp3", - "textMeaning": "Coral is the hard, colorful material formed by the shells of animals.", - "textExample": "The diver admired the beautiful coral under the water.", - "transcription": "[kɔ́ːrəl]", - "__v": 0, - "textExampleTranslate": "Дайвер восхищался красивым кораллом под водой", - "textMeaningTranslate": "Коралл - твердый, красочный материал, образованный раковинами животных", - "wordTranslate": "коралл" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8f3" - }, - "group": 1, - "page": 25, - "word": "engage", - "image": "files/26_1108.jpg", - "audio": "files/26_1108.mp3", - "audioMeaning": "files/26_1108_meaning.mp3", - "audioExample": "files/26_1108_example.mp3", - "textMeaning": "To engage in something means to do it.", - "textExample": "Dad was engaged in sawing a piece of wood in half.", - "transcription": "[engéidʒ]", - "__v": 0, - "textExampleTranslate": "Папа занимался распиливанием куска дерева пополам", - "textMeaningTranslate": "Заниматься чем-то - значит делать это", - "wordTranslate": "заниматься" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8f0" - }, - "group": 1, - "page": 25, - "word": "cotton", - "image": "files/26_1105.jpg", - "audio": "files/26_1105.mp3", - "audioMeaning": "files/26_1105_meaning.mp3", - "audioExample": "files/26_1105_example.mp3", - "textMeaning": "Cotton is a cloth made from the fibers of the cotton plant.", - "textExample": "I like to wear clothes made from cotton in the summer.", - "transcription": "[kɑ́tn]", - "__v": 0, - "textExampleTranslate": "Мне нравится носить одежду из хлопка летом", - "textMeaningTranslate": "Хлопок - это ткань, изготовленная из волокон хлопкового завода", - "wordTranslate": "хлопок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8f1" - }, - "group": 1, - "page": 25, - "word": "crash", - "image": "files/26_1106.jpg", - "audio": "files/26_1106.mp3", - "audioMeaning": "files/26_1106_meaning.mp3", - "audioExample": "files/26_1106_example.mp3", - "textMeaning": "To crash means to hit and break something.", - "textExample": "There was a loud noise when the car crashed into the tree.", - "transcription": "[kræʃ]", - "__v": 0, - "textExampleTranslate": "Был громкий шум, когда машина врезалась в дерево", - "textMeaningTranslate": "Врезаться - значит ударить и сломать что-то", - "wordTranslate": "авария" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8f2" - }, - "group": 1, - "page": 25, - "word": "deck", - "image": "files/26_1107.jpg", - "audio": "files/26_1107.mp3", - "audioMeaning": "files/26_1107_meaning.mp3", - "audioExample": "files/26_1107_example.mp3", - "textMeaning": "A deck is a wooden floor built outside of a house or the floor of a ship.", - "textExample": "A ship will store many supplies below its deck.", - "transcription": "[dek]", - "__v": 0, - "textExampleTranslate": "Корабль будет хранить много припасов под своей палубой", - "textMeaningTranslate": "Палуба - это деревянный пол, построенный вне дома или пола корабля", - "wordTranslate": "палуба" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8f4" - }, - "group": 1, - "page": 25, - "word": "firm", - "image": "files/26_1109.jpg", - "audio": "files/26_1109.mp3", - "audioMeaning": "files/26_1109_meaning.mp3", - "audioExample": "files/26_1109_example.mp3", - "textMeaning": "A firm thing is solid but not too hard.", - "textExample": "He sleeps better on a firm bed.", - "transcription": "[fəːrm]", - "__v": 0, - "textExampleTranslate": "Он лучше спит на твердой кровати", - "textMeaningTranslate": "Твердая вещь крепкая, но не слишком жесткая", - "wordTranslate": "фирма" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8f5" - }, - "group": 1, - "page": 25, - "word": "fuel", - "image": "files/26_1110.jpg", - "audio": "files/26_1110.mp3", - "audioMeaning": "files/26_1110_meaning.mp3", - "audioExample": "files/26_1110_example.mp3", - "textMeaning": "Fuel is something that creates heat or energy.", - "textExample": "Wood is the fuel that burns to make heat in this fire.", - "transcription": "[fjúːəl]", - "__v": 0, - "textExampleTranslate": "Древесина - это топливо, которое сгорает, выделяя тепло в этом огне", - "textMeaningTranslate": "Топливо - это то, что создает тепло или энергию", - "wordTranslate": "топливо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8f8" - }, - "group": 1, - "page": 25, - "word": "loss", - "image": "files/26_1113.jpg", - "audio": "files/26_1113.mp3", - "audioMeaning": "files/26_1113_meaning.mp3", - "audioExample": "files/26_1113_example.mp3", - "textMeaning": "A loss is the act or instance of losing something.", - "textExample": "I suffered a big loss while I was gambling.", - "transcription": "[lɔːs]", - "__v": 0, - "textExampleTranslate": "Я понес большие потери, играя в азартные игры", - "textMeaningTranslate": "Потеря - это акт или случай потери чего-либо", - "wordTranslate": "потеря" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8f6" - }, - "group": 1, - "page": 25, - "word": "grand", - "image": "files/26_1111.jpg", - "audio": "files/26_1111.mp3", - "audioMeaning": "files/26_1111_meaning.mp3", - "audioExample": "files/26_1111_example.mp3", - "textMeaning": "Something grand is big and liked by people.", - "textExample": "The grand mountain rose high into the sky.", - "transcription": "[grænd]", - "__v": 0, - "textExampleTranslate": "Великая гора поднялась высоко в небо", - "textMeaningTranslate": "Что-то грандиозное, большое и любимое людьми", - "wordTranslate": "гранд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8f7" - }, - "group": 1, - "page": 25, - "word": "hurricane", - "image": "files/26_1112.jpg", - "audio": "files/26_1112.mp3", - "audioMeaning": "files/26_1112_meaning.mp3", - "audioExample": "files/26_1112_example.mp3", - "textMeaning": "A hurricane is a bad storm that happens over the ocean.", - "textExample": "The wind from the hurricane bent the palm tree.", - "transcription": "[hə́ːrəkèin]", - "__v": 0, - "textExampleTranslate": "Ветер от урагана согнул пальму", - "textMeaningTranslate": "Ураган - это сильный шторм, который случается над океаном", - "wordTranslate": "ураган" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8f9" - }, - "group": 1, - "page": 25, - "word": "plain", - "image": "files/26_1114.jpg", - "audio": "files/26_1114.mp3", - "audioMeaning": "files/26_1114_meaning.mp3", - "audioExample": "files/26_1114_example.mp3", - "textMeaning": "A plain thing is simple and not decorated.", - "textExample": "He bought a pair of plain white shoes over the weekend.", - "transcription": "[plein]", - "__v": 0, - "textExampleTranslate": "Он купил пару простых белых ботинок на выходных", - "textMeaningTranslate": "Простая вещь проста и не украшена", - "wordTranslate": "простой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8fa" - }, - "group": 1, - "page": 25, - "word": "reef", - "image": "files/26_1115.jpg", - "audio": "files/26_1115.mp3", - "audioMeaning": "files/26_1115_meaning.mp3", - "audioExample": "files/26_1115_example.mp3", - "textMeaning": "A reef is a group of rocks or coral in the ocean.", - "textExample": "He walked along the reef and looked at the water below.", - "transcription": "[riːf]", - "__v": 0, - "textExampleTranslate": "Он шел вдоль рифа и смотрел на воду внизу", - "textMeaningTranslate": "Риф - это группа камней или кораллов в океане", - "wordTranslate": "риф" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8fd" - }, - "group": 1, - "page": 25, - "word": "surf", - "image": "files/26_1118.jpg", - "audio": "files/26_1118.mp3", - "audioMeaning": "files/26_1118_meaning.mp3", - "audioExample": "files/26_1118_example.mp3", - "textMeaning": "To surf means to use a special board to ride on waves in the ocean.", - "textExample": "The students went to the beach to surf during their vacation.", - "transcription": "[səːrf]", - "__v": 0, - "textExampleTranslate": "Студенты отправились на пляж для серфинга во время каникул", - "textMeaningTranslate": "Серфить - значит использовать специальную доску для катания на волнах в океане", - "wordTranslate": "прибой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8fc" - }, - "group": 1, - "page": 25, - "word": "strict", - "image": "files/26_1117.jpg", - "audio": "files/26_1117.mp3", - "audioMeaning": "files/26_1117_meaning.mp3", - "audioExample": "files/26_1117_example.mp3", - "textMeaning": "A strict person makes sure others follow rules.", - "textExample": "The teacher is strict. She does not let students talk in class.", - "transcription": "[strikt]", - "__v": 0, - "textExampleTranslate": "Учитель строгий. Она не позволяет ученикам говорить в классе", - "textMeaningTranslate": "Строгий человек следит за тем, чтобы другие следовали правилам", - "wordTranslate": "строгий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8fb" - }, - "group": 1, - "page": 25, - "word": "shut", - "image": "files/26_1116.jpg", - "audio": "files/26_1116.mp3", - "audioMeaning": "files/26_1116_meaning.mp3", - "audioExample": "files/26_1116_example.mp3", - "textMeaning": "To shut something means to close it tightly.", - "textExample": "Please shut the door; the air outside is cold.", - "transcription": "[ʃʌt]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, закрой дверь; воздух снаружи холодный", - "textMeaningTranslate": "Закрыть что-то значит плотно закрыть", - "wordTranslate": "закрыть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8fe" - }, - "group": 1, - "page": 25, - "word": "task", - "image": "files/26_1119.jpg", - "audio": "files/26_1119.mp3", - "audioMeaning": "files/26_1119_meaning.mp3", - "audioExample": "files/26_1119_example.mp3", - "textMeaning": "A task is a piece of work to be done that is usually difficult.", - "textExample": "My task for the weekend was to clean the entire back yard.", - "transcription": "[tæsk]", - "__v": 0, - "textExampleTranslate": "Моей задачей на выходные было убрать весь задний двор", - "textMeaningTranslate": "Задача - это работа, которую обычно нужно выполнить", - "wordTranslate": "задача" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af8ff" - }, - "group": 1, - "page": 25, - "word": "zone", - "image": "files/26_1120.jpg", - "audio": "files/26_1120.mp3", - "audioMeaning": "files/26_1120_meaning.mp3", - "audioExample": "files/26_1120_example.mp3", - "textMeaning": "A zone is an area that has different qualities from the ones around it.", - "textExample": "Firefighters often work in danger zones.", - "transcription": "[zoun]", - "__v": 0, - "textExampleTranslate": "Пожарные часто работают в опасных зонах", - "textMeaningTranslate": "Зона - это область, которая отличается от окружающих ее качеств", - "wordTranslate": "зона" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af900" - }, - "group": 1, - "page": 26, - "word": "apology", - "image": "files/27_1121.jpg", - "audio": "files/27_1121.mp3", - "audioMeaning": "files/27_1121_meaning.mp3", - "audioExample": "files/27_1121_example.mp3", - "textMeaning": "An apology is what people say to show that they are sorry.", - "textExample": "After arguing with her teacher, the girl wrote the teacher an apology.", - "transcription": "[əpɑ́lədʒi]", - "__v": 0, - "textExampleTranslate": "Поспорив со своим учителем, девушка написала учителю извинения", - "textMeaningTranslate": "Извинение - это то, что люди говорят, чтобы показать, что они сожалеют", - "wordTranslate": "извинение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af901" - }, - "group": 1, - "page": 26, - "word": "bold", - "image": "files/27_1122.jpg", - "audio": "files/27_1122.mp3", - "audioMeaning": "files/27_1122_meaning.mp3", - "audioExample": "files/27_1122_example.mp3", - "textMeaning": "A bold person is not afraid of doing something.", - "textExample": "The bold man climbed the high mountain.", - "transcription": "[bould]", - "__v": 0, - "textExampleTranslate": "Смелый человек поднялся на высокую гору", - "textMeaningTranslate": "Смелый человек не боится что-то делать", - "wordTranslate": "смелый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af902" - }, - "group": 1, - "page": 26, - "word": "bug", - "image": "files/27_1123.jpg", - "audio": "files/27_1123.mp3", - "audioMeaning": "files/27_1123_meaning.mp3", - "audioExample": "files/27_1123_example.mp3", - "textMeaning": "A bug is a small insect.", - "textExample": "Birds like eating bugs.", - "transcription": "[bʌg]", - "__v": 0, - "textExampleTranslate": "Птицы любят есть жуков", - "textMeaningTranslate": "Жук - маленькое насекомое", - "wordTranslate": "ошибка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af903" - }, - "group": 1, - "page": 26, - "word": "capture", - "image": "files/27_1124.jpg", - "audio": "files/27_1124.mp3", - "audioMeaning": "files/27_1124_meaning.mp3", - "audioExample": "files/27_1124_example.mp3", - "textMeaning": "To capture something is to catch and hold it.", - "textExample": "James tried to capture the bubbles in his hands.", - "transcription": "[kǽpʧər]", - "__v": 0, - "textExampleTranslate": "Джеймс пытался поймать пузырьки в руках", - "textMeaningTranslate": "Захватить что-то - значит поймать и удержать", - "wordTranslate": "захватить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af904" - }, - "group": 1, - "page": 26, - "word": "duke", - "image": "files/27_1125.jpg", - "audio": "files/27_1125.mp3", - "audioMeaning": "files/27_1125_meaning.mp3", - "audioExample": "files/27_1125_example.mp3", - "textMeaning": "A duke is a man of high social rank but below a king or queen.", - "textExample": "The duke ruled over the land.", - "transcription": "[djuːk]", - "__v": 0, - "textExampleTranslate": "Герцог правил страной", - "textMeaningTranslate": "Герцог - человек высокого социального ранга, но ниже короля или королевы", - "wordTranslate": "герцог" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af907" - }, - "group": 1, - "page": 26, - "word": "hire", - "image": "files/27_1128.jpg", - "audio": "files/27_1128.mp3", - "audioMeaning": "files/27_1128_meaning.mp3", - "audioExample": "files/27_1128_example.mp3", - "textMeaning": "To hire someone is to pay that person money to work for you.", - "textExample": "We hired a man to paint our house.", - "transcription": "[haiər]", - "__v": 0, - "textExampleTranslate": "Мы наняли человека, чтобы нарисовать наш дом", - "textMeaningTranslate": "Нанять кого-то - значит заплатить этому человеку деньги, чтобы он работал на вас", - "wordTranslate": "наем" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af906" - }, - "group": 1, - "page": 26, - "word": "guilty", - "image": "files/27_1127.jpg", - "audio": "files/27_1127.mp3", - "audioMeaning": "files/27_1127_meaning.mp3", - "audioExample": "files/27_1127_example.mp3", - "textMeaning": "Guilty people feel bad for something they did.", - "textExample": "I felt guilty for taking my sister’s cookies.", - "transcription": "[gílti]", - "__v": 0, - "textExampleTranslate": "Я чувствовал себя виноватым за то, что взял печенье моей сестры", - "textMeaningTranslate": "Виновные люди чувствуют себя плохо из-за того, что они сделали", - "wordTranslate": "виновен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af905" - }, - "group": 1, - "page": 26, - "word": "expose", - "image": "files/27_1126.jpg", - "audio": "files/27_1126.mp3", - "audioMeaning": "files/27_1126_meaning.mp3", - "audioExample": "files/27_1126_example.mp3", - "textMeaning": "To expose is to make known something that is hidden.", - "textExample": "He took off his shirt to expose his costume.", - "transcription": "[ikspóuz]", - "__v": 0, - "textExampleTranslate": "Он снял рубашку, чтобы выставить свой костюм", - "textMeaningTranslate": "Разоблачать - значит делать известным то, что скрыто", - "wordTranslate": "выставить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af908" - }, - "group": 1, - "page": 26, - "word": "innocent", - "image": "files/27_1129.jpg", - "audio": "files/27_1129.mp3", - "audioMeaning": "files/27_1129_meaning.mp3", - "audioExample": "files/27_1129_example.mp3", - "textMeaning": "An innocent person is not guilty of a crime.", - "textExample": "The judge said that the woman was innocent of the crime.", - "transcription": "[ínəsnt]", - "__v": 0, - "textExampleTranslate": "Судья сказал, что женщина была невиновна в совершении преступления", - "textMeaningTranslate": "Невинный человек не виновен в преступлении", - "wordTranslate": "невиновен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af909" - }, - "group": 1, - "page": 26, - "word": "language", - "image": "files/27_1130.jpg", - "audio": "files/27_1130.mp3", - "audioMeaning": "files/27_1130_meaning.mp3", - "audioExample": "files/27_1130_example.mp3", - "textMeaning": "A language is a system of communication.", - "textExample": "The reporter spoke a language Sally had never heard before.", - "transcription": "[lǽŋgwidʒ]", - "__v": 0, - "textExampleTranslate": "Репортер говорил на языке, который Салли никогда раньше не слышала", - "textMeaningTranslate": "Язык - это система общения", - "wordTranslate": "язык" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af90a" - }, - "group": 1, - "page": 26, - "word": "minister", - "image": "files/27_1131.jpg", - "audio": "files/27_1131.mp3", - "audioMeaning": "files/27_1131_meaning.mp3", - "audioExample": "files/27_1131_example.mp3", - "textMeaning": "A minister is an important person in government with many duties.", - "textExample": "The minister of education controls the country’s schools.", - "transcription": "[mínistər]", - "__v": 0, - "textExampleTranslate": "Министр образования контролирует школы страны", - "textMeaningTranslate": "Министр - важный человек в правительстве со многими обязанностями", - "wordTranslate": "министр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af90c" - }, - "group": 1, - "page": 26, - "word": "permanent", - "image": "files/27_1133.jpg", - "audio": "files/27_1133.mp3", - "audioMeaning": "files/27_1133_meaning.mp3", - "audioExample": "files/27_1133_example.mp3", - "textMeaning": "Something permanent lasts for a long time or forever.", - "textExample": "We don’t know if Aunt Mildred’s visit will be a permanent one.", - "transcription": "[pə́ːrmənənt]", - "__v": 0, - "textExampleTranslate": "Мы не знаем, будет ли визит тети Милдред постоянным", - "textMeaningTranslate": "Что-то постоянное длится долго или навсегда", - "wordTranslate": "постоянный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af90b" - }, - "group": 1, - "page": 26, - "word": "ordinary", - "image": "files/27_1132.jpg", - "audio": "files/27_1132.mp3", - "audioMeaning": "files/27_1132_meaning.mp3", - "audioExample": "files/27_1132_example.mp3", - "textMeaning": "Ordinary means normal, or not special in any way.", - "textExample": "Today was just an ordinary day. Nothing unusual happened.", - "transcription": "[ɔ́ːrdənèri]", - "__v": 0, - "textExampleTranslate": "Сегодня был обычный день. Ничего необычного не произошло", - "textMeaningTranslate": "Обычный означает нормальный или не особенный в любом случае", - "wordTranslate": "обычный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af90d" - }, - "group": 1, - "page": 26, - "word": "preserve", - "image": "files/27_1134.jpg", - "audio": "files/27_1134.mp3", - "audioMeaning": "files/27_1134_meaning.mp3", - "audioExample": "files/27_1134_example.mp3", - "textMeaning": "To preserve is to protect something from harm.", - "textExample": "Dad sprayed a chemical on the house to help preserve the walls.", - "transcription": "[prizə́ːrv]", - "__v": 0, - "textExampleTranslate": "Папа распылил химикат на дом, чтобы помочь сохранить стены", - "textMeaningTranslate": "Сохранять - значит защищать что-то от вреда", - "wordTranslate": "сохранить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af90e" - }, - "group": 1, - "page": 26, - "word": "pronounce", - "image": "files/27_1135.jpg", - "audio": "files/27_1135.mp3", - "audioMeaning": "files/27_1135_meaning.mp3", - "audioExample": "files/27_1135_example.mp3", - "textMeaning": "To pronounce is to say the sounds of letters or words.", - "textExample": "Young children often have trouble pronouncing words right.", - "transcription": "[prənáuns]", - "__v": 0, - "textExampleTranslate": "Маленьким детям часто трудно правильно произносить слова", - "textMeaningTranslate": "Произносить - значит произносить звуки букв или слов", - "wordTranslate": "произносится" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af90f" - }, - "group": 1, - "page": 26, - "word": "resemble", - "image": "files/27_1136.jpg", - "audio": "files/27_1136.mp3", - "audioMeaning": "files/27_1136_meaning.mp3", - "audioExample": "files/27_1136_example.mp3", - "textMeaning": "To resemble someone is to look like that person.", - "textExample": "The baby really resembles his father.", - "transcription": "[rizémbəl]", - "__v": 0, - "textExampleTranslate": "Ребенок действительно похож на своего отца", - "textMeaningTranslate": "Быть похожим на кого-то - значит выглядеть таким человеком", - "wordTranslate": "напоминают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af910" - }, - "group": 1, - "page": 26, - "word": "symptom", - "image": "files/27_1137.jpg", - "audio": "files/27_1137.mp3", - "audioMeaning": "files/27_1137_meaning.mp3", - "audioExample": "files/27_1137_example.mp3", - "textMeaning": "A symptom of a bad condition or illness is a sign that it is happening.", - "textExample": "Sneezing and a high fever are symptoms of the common cold.", - "transcription": "[símptəm]", - "__v": 0, - "textExampleTranslate": "Чихание и высокая температура - симптомы простуды", - "textMeaningTranslate": "Симптом плохого состояния или болезни - признак того, что это происходит", - "wordTranslate": "симптом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af911" - }, - "group": 1, - "page": 26, - "word": "tobacco", - "image": "files/27_1138.jpg", - "audio": "files/27_1138.mp3", - "audioMeaning": "files/27_1138_meaning.mp3", - "audioExample": "files/27_1138_example.mp3", - "textMeaning": "Tobacco is a plant whose leaves are smoked, such as in cigarettes.", - "textExample": "The tobacco in cigarettes is bad for you.", - "transcription": "[təbǽkou]", - "__v": 0, - "textExampleTranslate": "Табак в сигаретах вреден для вас", - "textMeaningTranslate": "Табак - это растение, листья которого курят, например, в сигаретах", - "wordTranslate": "табак" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af912" - }, - "group": 1, - "page": 26, - "word": "twin", - "image": "files/27_1139.jpg", - "audio": "files/27_1139.mp3", - "audioMeaning": "files/27_1139_meaning.mp3", - "audioExample": "files/27_1139_example.mp3", - "textMeaning": "Twins are two children born at the same time.", - "textExample": "My sister and I are twins. We look exactly the same.", - "transcription": "[twin]", - "__v": 0, - "textExampleTranslate": "Мы с сестрой близнецы. Мы выглядим одинаково", - "textMeaningTranslate": "Близнецы - это двое детей, рожденных одновременно", - "wordTranslate": "близнец" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af914" - }, - "group": 1, - "page": 27, - "word": "accompany", - "image": "files/28_1141.jpg", - "audio": "files/28_1141.mp3", - "audioMeaning": "files/28_1141_meaning.mp3", - "audioExample": "files/28_1141_example.mp3", - "textMeaning": "To accompany other people means to join them or go with them.", - "textExample": "My brothers accompanied me to the movie.", - "transcription": "[əkʌ́mpəni]", - "__v": 0, - "textExampleTranslate": "Мои братья сопровождали меня в кино", - "textMeaningTranslate": "Сопровождать других людей - значит присоединяться к ним или идти с ними", - "wordTranslate": "сопровождать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af913" - }, - "group": 1, - "page": 26, - "word": "witch", - "image": "files/27_1140.jpg", - "audio": "files/27_1140.mp3", - "audioMeaning": "files/27_1140_meaning.mp3", - "audioExample": "files/27_1140_example.mp3", - "textMeaning": "A witch is a woman with magical powers.", - "textExample": "People think that witches fly around on broomsticks.", - "transcription": "[witʃ]", - "__v": 0, - "textExampleTranslate": "Люди думают, что ведьмы летают на метлах", - "textMeaningTranslate": "Ведьма - это женщина с магическими способностями", - "wordTranslate": "ведьма" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af916" - }, - "group": 1, - "page": 27, - "word": "branch", - "image": "files/28_1143.jpg", - "audio": "files/28_1143.mp3", - "audioMeaning": "files/28_1143_meaning.mp3", - "audioExample": "files/28_1143_example.mp3", - "textMeaning": "A branch is the part of a tree with leaves.", - "textExample": "The monkey was hanging from a branch on the tree.", - "transcription": "[bræntʃ]", - "__v": 0, - "textExampleTranslate": "Обезьяна висела на ветке на дереве", - "textMeaningTranslate": "Ветвь - это часть дерева с листьями", - "wordTranslate": "филиал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af915" - }, - "group": 1, - "page": 27, - "word": "bare", - "image": "files/28_1142.jpg", - "audio": "files/28_1142.mp3", - "audioMeaning": "files/28_1142_meaning.mp3", - "audioExample": "files/28_1142_example.mp3", - "textMeaning": "A bare thing is plain and not covered.", - "textExample": "He likes to walk around in his bare feet.", - "transcription": "[bɛər]", - "__v": 0, - "textExampleTranslate": "Он любит гулять босиком", - "textMeaningTranslate": "Голая вещь проста и не покрыта", - "wordTranslate": "голый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af917" - }, - "group": 1, - "page": 27, - "word": "breath", - "image": "files/28_1144.jpg", - "audio": "files/28_1144.mp3", - "audioMeaning": "files/28_1144_meaning.mp3", - "audioExample": "files/28_1144_example.mp3", - "textMeaning": "A breath is the air that goes into and out of one’s lungs.", - "textExample": "You can’t take a breath under water.", - "transcription": "[breθ]", - "__v": 0, - "textExampleTranslate": "Нельзя дышать под водой", - "textMeaningTranslate": "Дыхание - это воздух, который входит и выходит из легких", - "wordTranslate": "дыхание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af918" - }, - "group": 1, - "page": 27, - "word": "bridge", - "image": "files/28_1145.jpg", - "audio": "files/28_1145.mp3", - "audioMeaning": "files/28_1145_meaning.mp3", - "audioExample": "files/28_1145_example.mp3", - "textMeaning": "A bridge is something that is built over a river so people can cross it.", - "textExample": "The old bridge fell into the river.", - "transcription": "[bridʒ]", - "__v": 0, - "textExampleTranslate": "Старый мост упал в реку", - "textMeaningTranslate": "Мост - это нечто, что построено над рекой, чтобы люди могли пересечь его", - "wordTranslate": "мост" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af919" - }, - "group": 1, - "page": 27, - "word": "cast", - "image": "files/28_1146.jpg", - "audio": "files/28_1146.mp3", - "audioMeaning": "files/28_1146_meaning.mp3", - "audioExample": "files/28_1146_example.mp3", - "textMeaning": "To cast something means to throw it.", - "textExample": "The fisherman cast his line into the water.", - "transcription": "[kæst]", - "__v": 0, - "textExampleTranslate": "Рыбак бросил свою леску в воду", - "textMeaningTranslate": "Бросить что-то значит бросить это", - "wordTranslate": "бросать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af91a" - }, - "group": 1, - "page": 27, - "word": "dare", - "image": "files/28_1147.jpg", - "audio": "files/28_1147.mp3", - "audioMeaning": "files/28_1147_meaning.mp3", - "audioExample": "files/28_1147_example.mp3", - "textMeaning": "To dare means to be brave enough to try something.", - "textExample": "He dared to jump out of the airplane and skydive.", - "transcription": "[dɛər]", - "__v": 0, - "textExampleTranslate": "Он осмелился выпрыгнуть из самолета и прыгнуть с парашютом", - "textMeaningTranslate": "Дерзать значит быть достаточно смелым, чтобы что-то попробовать", - "wordTranslate": "смели" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af91b" - }, - "group": 1, - "page": 27, - "word": "electronic", - "image": "files/28_1148.jpg", - "audio": "files/28_1148.mp3", - "audioMeaning": "files/28_1148_meaning.mp3", - "audioExample": "files/28_1148_example.mp3", - "textMeaning": "An electronic thing uses electricity to work.", - "textExample": "I like having electronic devices such as an MP3 player.", - "transcription": "[ilèktrɑ́nik]", - "__v": 0, - "textExampleTranslate": "Мне нравится иметь электронные устройства, такие как MP3-плеер", - "textMeaningTranslate": "Электронная вещь использует электричество для работы", - "wordTranslate": "электронный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af91c" - }, - "group": 1, - "page": 27, - "word": "pot", - "image": "files/28_1152.jpg", - "audio": "files/28_1152.mp3", - "audioMeaning": "files/28_1152_meaning.mp3", - "audioExample": "files/28_1152_example.mp3", - "textMeaning": "A pot is a deep, round metal container used for cooking.", - "textExample": "Don’t touch the pot on the stove. It’s hot.", - "transcription": "[pɑt]", - "__v": 0, - "textExampleTranslate": "Не трогай кастрюлю на плите. Она горячая", - "textMeaningTranslate": "Горшок - это глубокий круглый металлический контейнер, используемый для приготовления пищи", - "wordTranslate": "горшок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af91d" - }, - "group": 1, - "page": 27, - "word": "net", - "image": "files/28_1150.jpg", - "audio": "files/28_1150.mp3", - "audioMeaning": "files/28_1150_meaning.mp3", - "audioExample": "files/28_1150_example.mp3", - "textMeaning": "A net is a bag made of strong thread. It is used to catch animals.", - "textExample": "The boy caught butterflies in his net.", - "transcription": "[net]", - "__v": 0, - "textExampleTranslate": "Мальчик поймал бабочек в своей сети", - "textMeaningTranslate": "Сетка - это сумка из прочной нити. Она используется для ловли животных", - "wordTranslate": "сеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af91e" - }, - "group": 1, - "page": 27, - "word": "philosophy", - "image": "files/28_1151.jpg", - "audio": "files/28_1151.mp3", - "audioMeaning": "files/28_1151_meaning.mp3", - "audioExample": "files/28_1151_example.mp3", - "textMeaning": "A philosophy is a way to think about truth and life.", - "textExample": "My philosophy is “live and let live.”", - "transcription": "[flɑ́səf]", - "__v": 0, - "textExampleTranslate": "Моя философия - 'живи и дай жить другим'", - "textMeaningTranslate": "Философия - это способ думать об истине и жизни", - "wordTranslate": "философия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af91f" - }, - "group": 1, - "page": 27, - "word": "seed", - "image": "files/28_1153.jpg", - "audio": "files/28_1153.mp3", - "audioMeaning": "files/28_1153_meaning.mp3", - "audioExample": "files/28_1153_example.mp3", - "textMeaning": "A seed is the hard part of a plant or fruit that trees grow from.", - "textExample": "I planted the seed in the dirt, hoping that it would grow into a tree.", - "transcription": "[siːd]", - "__v": 0, - "textExampleTranslate": "Я посадил семя в грязи, надеясь, что оно вырастет в дерево", - "textMeaningTranslate": "Семя - это твердая часть растения или плода, из которого растут деревья", - "wordTranslate": "семя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af920" - }, - "group": 1, - "page": 27, - "word": "inn", - "image": "files/28_1149.jpg", - "audio": "files/28_1149.mp3", - "audioMeaning": "files/28_1149_meaning.mp3", - "audioExample": "files/28_1149_example.mp3", - "textMeaning": "An inn is a place where travelers can rest and eat.", - "textExample": "The visitor got a room at the inn.", - "transcription": "[in]", - "__v": 0, - "textExampleTranslate": "Посетитель получил комнату в гостинице", - "textMeaningTranslate": "Гостиница - это место, где путешественники могут отдохнуть и поесть", - "wordTranslate": "гостиница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af921" - }, - "group": 1, - "page": 27, - "word": "sharp", - "image": "files/28_1154.jpg", - "audio": "files/28_1154.mp3", - "audioMeaning": "files/28_1154_meaning.mp3", - "audioExample": "files/28_1154_example.mp3", - "textMeaning": "A sharp object has a thin edge that cuts things easily.", - "textExample": "That knife is very sharp. Be careful not to hurt yourself.", - "transcription": "[ʃɑːrp]", - "__v": 0, - "textExampleTranslate": "Этот нож очень острый. Будьте осторожны, чтобы не пораниться", - "textMeaningTranslate": "Острый предмет имеет тонкий край, который легко режет", - "wordTranslate": "острый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af923" - }, - "group": 1, - "page": 27, - "word": "virtual", - "image": "files/28_1158.jpg", - "audio": "files/28_1158.mp3", - "audioMeaning": "files/28_1158_meaning.mp3", - "audioExample": "files/28_1158_example.mp3", - "textMeaning": "A virtual thing is very close to being true or accurate.", - "textExample": "Because he’s popular, Joe is the virtual leader of the group.", - "transcription": "[və́ːrtʃuəl]", - "__v": 0, - "textExampleTranslate": "Поскольку он популярен, Джо является виртуальным лидером группы", - "textMeaningTranslate": "Виртуальная вещь очень близка к тому, чтобы быть правдивой или точной", - "wordTranslate": "виртуальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af922" - }, - "group": 1, - "page": 27, - "word": "sort", - "image": "files/28_1155.jpg", - "audio": "files/28_1155.mp3", - "audioMeaning": "files/28_1155_meaning.mp3", - "audioExample": "files/28_1155_example.mp3", - "textMeaning": "A sort of something is a type of it.", - "textExample": "What sort of instrument do you want to learn to play?", - "transcription": "[sɔːrt]", - "__v": 0, - "textExampleTranslate": "На каком инструменте ты хочешь научиться играть?", - "textMeaningTranslate": "Вид чего-то есть тип этого", - "wordTranslate": "сортировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af924" - }, - "group": 1, - "page": 27, - "word": "subtract", - "image": "files/28_1156.jpg", - "audio": "files/28_1156.mp3", - "audioMeaning": "files/28_1156_meaning.mp3", - "audioExample": "files/28_1156_example.mp3", - "textMeaning": "To subtract means to take something away.", - "textExample": "We learned how to subtract numbers in class.", - "transcription": "[səbtrǽkt]", - "__v": 0, - "textExampleTranslate": "Мы научились вычитать числа в классе", - "textMeaningTranslate": "Вычесть значит отнять что-то", - "wordTranslate": "вычитать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af925" - }, - "group": 1, - "page": 27, - "word": "tight", - "image": "files/28_1157.jpg", - "audio": "files/28_1157.mp3", - "audioMeaning": "files/28_1157_meaning.mp3", - "audioExample": "files/28_1157_example.mp3", - "textMeaning": "A tight thing is hard to move because it is firmly in place.", - "textExample": "The knots were too tight to untie.", - "transcription": "[tait]", - "__v": 0, - "textExampleTranslate": "Узлы были слишком туго, чтобы развязать", - "textMeaningTranslate": "Трудно двигаться, потому что он прочно закреплен", - "wordTranslate": "плотно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af926" - }, - "group": 1, - "page": 27, - "word": "weigh", - "image": "files/28_1159.jpg", - "audio": "files/28_1159.mp3", - "audioMeaning": "files/28_1159_meaning.mp3", - "audioExample": "files/28_1159_example.mp3", - "textMeaning": "To weigh something means to measure how heavy it is.", - "textExample": "The little dog weighed exactly 3 kilograms.", - "transcription": "[wei]", - "__v": 0, - "textExampleTranslate": "Маленькая собачка весила ровно 3 килограмма", - "textMeaningTranslate": "Взвешивать что-то значит измерять, насколько это тяжело", - "wordTranslate": "весят" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af928" - }, - "group": 1, - "page": 28, - "word": "abstract", - "image": "files/29_1161.jpg", - "audio": "files/29_1161.mp3", - "audioMeaning": "files/29_1161_meaning.mp3", - "audioExample": "files/29_1161_example.mp3", - "textMeaning": "An abstract thing is an idea or thought, not a physical thing.", - "textExample": "The idea of beauty is abstract and changes over time.", - "transcription": "[æbstrǽkt]", - "__v": 0, - "textExampleTranslate": "Идея красоты абстрактна и меняется со временем", - "textMeaningTranslate": "Абстрактная вещь - это идея или мысль, а не физическая вещь", - "wordTranslate": "аннотация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af927" - }, - "group": 1, - "page": 27, - "word": "whisper", - "image": "files/28_1160.jpg", - "audio": "files/28_1160.mp3", - "audioMeaning": "files/28_1160_meaning.mp3", - "audioExample": "files/28_1160_example.mp3", - "textMeaning": "To whisper means to say very quietly.", - "textExample": "We have to whisper in the library so people can focus on reading.", - "transcription": "[hwíspəːr]", - "__v": 0, - "textExampleTranslate": "Мы должны шептать в библиотеке, чтобы люди могли сосредоточиться на чтении", - "textMeaningTranslate": "Шептать - значит говорить очень тихо", - "wordTranslate": "шепот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af929" - }, - "group": 1, - "page": 28, - "word": "annual", - "image": "files/29_1162.jpg", - "audio": "files/29_1162.mp3", - "audioMeaning": "files/29_1162_meaning.mp3", - "audioExample": "files/29_1162_example.mp3", - "textMeaning": "An annual event happens once a year.", - "textExample": "The only time I see my aunts and uncles is at our annual family picnic.", - "transcription": "[ǽnjuəl]", - "__v": 0, - "textExampleTranslate": "Единственный раз, когда я вижу своих тетей и дядей, это наш ежегодный семейный пикник", - "textMeaningTranslate": "Ежегодное событие происходит один раз в год", - "wordTranslate": "годовой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af92a" - }, - "group": 1, - "page": 28, - "word": "clay", - "image": "files/29_1163.jpg", - "audio": "files/29_1163.mp3", - "audioMeaning": "files/29_1163_meaning.mp3", - "audioExample": "files/29_1163_example.mp3", - "textMeaning": "Clay is a type of heavy, wet soil used to make pots.", - "textExample": "She made a bowl out of the clay.", - "transcription": "[klei]", - "__v": 0, - "textExampleTranslate": "Она сделала миску из глины", - "textMeaningTranslate": "Глина - это тип тяжелой, влажной почвы, используемой для приготовления горшков", - "wordTranslate": "глина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af92b" - }, - "group": 1, - "page": 28, - "word": "cloth", - "image": "files/29_1164.jpg", - "audio": "files/29_1164.mp3", - "audioMeaning": "files/29_1164_meaning.mp3", - "audioExample": "files/29_1164_example.mp3", - "textMeaning": "Cloth is material used to make clothes.", - "textExample": "His shirt is made of a very soft type of cloth.", - "transcription": "[klɔːθ]", - "__v": 0, - "textExampleTranslate": "Его рубашка сделана из очень мягкой ткани", - "textMeaningTranslate": "Ткань - это материал, из которого делают одежду", - "wordTranslate": "ткань" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af92c" - }, - "group": 1, - "page": 28, - "word": "curtain", - "image": "files/29_1165.jpg", - "audio": "files/29_1165.mp3", - "audioMeaning": "files/29_1165_meaning.mp3", - "audioExample": "files/29_1165_example.mp3", - "textMeaning": "A curtain is a cloth hung over a window or used to divide a room.", - "textExample": "She opened the curtains to let light into the room.", - "transcription": "[kə́ːrtən]", - "__v": 0, - "textExampleTranslate": "Она открыла шторы, чтобы пропустить свет в комнату", - "textMeaningTranslate": "Занавес - это ткань, повешенная над окном или используемая для разделения комнаты", - "wordTranslate": "занавес" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af92d" - }, - "group": 1, - "page": 28, - "word": "deserve", - "image": "files/29_1166.jpg", - "audio": "files/29_1166.mp3", - "audioMeaning": "files/29_1166_meaning.mp3", - "audioExample": "files/29_1166_example.mp3", - "textMeaning": "To deserve is to be worthy of something as a result of one’s actions.", - "textExample": "The dog deserved a bone for behaving very well.", - "transcription": "[dizə́ːrv]", - "__v": 0, - "textExampleTranslate": "Собака заслуживает кости за хорошее поведение", - "textMeaningTranslate": "Заслужить - значит быть достойным чего-либо в результате своих действий", - "wordTranslate": "заслуживают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af92e" - }, - "group": 1, - "page": 28, - "word": "fertile", - "image": "files/29_1168.jpg", - "audio": "files/29_1168.mp3", - "audioMeaning": "files/29_1168_meaning.mp3", - "audioExample": "files/29_1168_example.mp3", - "textMeaning": "Fertile land is able to produce good crops and plants.", - "textExample": "The farmer grew many vegetables in the fertile soil.", - "transcription": "[fə́ːrtl]", - "__v": 0, - "textExampleTranslate": "Фермер выращивал много овощей на плодородной почве", - "textMeaningTranslate": "Плодородная земля способна производить хорошие культуры и растения", - "wordTranslate": "плодородный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af92f" - }, - "group": 1, - "page": 28, - "word": "feather", - "image": "files/29_1167.jpg", - "audio": "files/29_1167.mp3", - "audioMeaning": "files/29_1167_meaning.mp3", - "audioExample": "files/29_1167_example.mp3", - "textMeaning": "Feathers are the things covering a bird’s bodies.", - "textExample": "That bird has orange feathers on its chest.", - "transcription": "[féðər]", - "__v": 0, - "textExampleTranslate": "У этой птицы оранжевые перья на груди", - "textMeaningTranslate": "Перья - это вещи, покрывающие тела птицы", - "wordTranslate": " Перо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af930" - }, - "group": 1, - "page": 28, - "word": "flood", - "image": "files/29_1169.jpg", - "audio": "files/29_1169.mp3", - "audioMeaning": "files/29_1169_meaning.mp3", - "audioExample": "files/29_1169_example.mp3", - "textMeaning": "A flood is an event in which water covers an area that is usually dry.", - "textExample": "After three days of rain, there was a flood in the city.", - "transcription": "[flʌ́d]", - "__v": 0, - "textExampleTranslate": "После трех дней дождя в городе произошло наводнение", - "textMeaningTranslate": "Наводнение - это событие, при котором вода покрывает обычно сухую область", - "wordTranslate": "наводнение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af931" - }, - "group": 1, - "page": 28, - "word": "furniture", - "image": "files/29_1170.jpg", - "audio": "files/29_1170.mp3", - "audioMeaning": "files/29_1170_meaning.mp3", - "audioExample": "files/29_1170_example.mp3", - "textMeaning": "Furniture means the things used in a house such as tables and chairs.", - "textExample": "His living room only had a few simple pieces of furniture.", - "transcription": "[fəː́rnitʃəːr]", - "__v": 0, - "textExampleTranslate": "В его гостиной было всего несколько простых предметов мебели", - "textMeaningTranslate": "Мебель означает вещи, используемые в доме, такие как столы и стулья", - "wordTranslate": "мебель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af932" - }, - "group": 1, - "page": 28, - "word": "grave", - "image": "files/29_1171.jpg", - "audio": "files/29_1171.mp3", - "audioMeaning": "files/29_1171_meaning.mp3", - "audioExample": "files/29_1171_example.mp3", - "textMeaning": "A grave is the place where a dead person is buried.", - "textExample": "We visit our grandfather’s grave each year.", - "transcription": "[greiv]", - "__v": 0, - "textExampleTranslate": "Мы посещаем могилу нашего деда каждый год", - "textMeaningTranslate": "Могила - это место, где похоронен мертвец", - "wordTranslate": "могила" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af933" - }, - "group": 1, - "page": 28, - "word": "ideal", - "image": "files/29_1172.jpg", - "audio": "files/29_1172.mp3", - "audioMeaning": "files/29_1172_meaning.mp3", - "audioExample": "files/29_1172_example.mp3", - "textMeaning": "An ideal thing is the best that it can possibly be.", - "textExample": "This house is an ideal place for my family. It has everything we need.", - "transcription": "[aidíːəl]", - "__v": 0, - "textExampleTranslate": "Этот дом - идеальное место для моей семьи. В нем есть все, что нам нужно", - "textMeaningTranslate": "Идеальная вещь - лучшее, что может быть", - "wordTranslate": "идеальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af934" - }, - "group": 1, - "page": 28, - "word": "intelligence", - "image": "files/29_1173.jpg", - "audio": "files/29_1173.mp3", - "audioMeaning": "files/29_1173_meaning.mp3", - "audioExample": "files/29_1173_example.mp3", - "textMeaning": "Intelligence is the ability to learn and understand things.", - "textExample": "Because of his high intelligence, he finished school early.", - "transcription": "[intélədʒəns]", - "__v": 0, - "textExampleTranslate": "Из-за его высокого интеллекта он закончил школу рано", - "textMeaningTranslate": "Интеллект - это способность учиться и понимать вещи", - "wordTranslate": "интеллект" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af935" - }, - "group": 1, - "page": 28, - "word": "obtain", - "image": "files/29_1174.jpg", - "audio": "files/29_1174.mp3", - "audioMeaning": "files/29_1174_meaning.mp3", - "audioExample": "files/29_1174_example.mp3", - "textMeaning": "To obtain is to get something you want or need.", - "textExample": "After I passed the test, I obtained my driver’s license.", - "transcription": "[əbtéin]", - "__v": 0, - "textExampleTranslate": "После прохождения теста я получил водительские права", - "textMeaningTranslate": "Получить - это получить то, что вы хотите или нуждаетесь", - "wordTranslate": "получить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af936" - }, - "group": 1, - "page": 28, - "word": "religious", - "image": "files/29_1175.jpg", - "audio": "files/29_1175.mp3", - "audioMeaning": "files/29_1175_meaning.mp3", - "audioExample": "files/29_1175_example.mp3", - "textMeaning": "Religious means related to or about religion.", - "textExample": "The holy man spoke about religious topics.", - "transcription": "[rilídʒəs]", - "__v": 0, - "textExampleTranslate": "Святой говорил о религиозных темах", - "textMeaningTranslate": "Религиозные средства, связанные с религией или о ней", - "wordTranslate": "религиозный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af937" - }, - "group": 1, - "page": 28, - "word": "romantic", - "image": "files/29_1176.jpg", - "audio": "files/29_1176.mp3", - "audioMeaning": "files/29_1176_meaning.mp3", - "audioExample": "files/29_1176_example.mp3", - "textMeaning": "Romantic means related to or about love.", - "textExample": "The young couple went to see a romantic movie.", - "transcription": "[roumǽntik]", - "__v": 0, - "textExampleTranslate": "Молодая пара пошла посмотреть романтический фильм", - "textMeaningTranslate": "Романтические средства, связанные с любовью или о ней", - "wordTranslate": "романтик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af938" - }, - "group": 1, - "page": 28, - "word": "shell", - "image": "files/29_1177.jpg", - "audio": "files/29_1177.mp3", - "audioMeaning": "files/29_1177_meaning.mp3", - "audioExample": "files/29_1177_example.mp3", - "textMeaning": "A shell is a hard covering that protects the body of some sea creatures.", - "textExample": "There were many pretty shells on the beach.", - "transcription": "[ʃel]", - "__v": 0, - "textExampleTranslate": "На пляже было много красивых раковин", - "textMeaningTranslate": "Оболочка - это твердое покрытие, которое защищает тело некоторых морских существ", - "wordTranslate": "ракушка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af939" - }, - "group": 1, - "page": 28, - "word": "wheel", - "image": "files/29_1179.jpg", - "audio": "files/29_1179.mp3", - "audioMeaning": "files/29_1179_meaning.mp3", - "audioExample": "files/29_1179_example.mp3", - "textMeaning": "A wheel is a round thing on a vehicle that turns when it moves.", - "textExample": "A car has four wheels.", - "transcription": "[hwiːl]", - "__v": 0, - "textExampleTranslate": "У машины четыре колеса", - "textMeaningTranslate": "Колесо - это круглая вещь на транспортном средстве, которое вращается при движении", - "wordTranslate": "рулевое колесо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af93a" - }, - "group": 1, - "page": 28, - "word": "shore", - "image": "files/29_1178.jpg", - "audio": "files/29_1178.mp3", - "audioMeaning": "files/29_1178_meaning.mp3", - "audioExample": "files/29_1178_example.mp3", - "textMeaning": "A shore is the edge of a large body of water.", - "textExample": "All of the boats were floating near the shore.", - "transcription": "[ʃɔːr]", - "__v": 0, - "textExampleTranslate": "Все лодки плавали у берега", - "textMeaningTranslate": "Берег - это край большого водоема", - "wordTranslate": "берег" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af93b" - }, - "group": 1, - "page": 28, - "word": "wooden", - "image": "files/29_1180.jpg", - "audio": "files/29_1180.mp3", - "audioMeaning": "files/29_1180_meaning.mp3", - "audioExample": "files/29_1180_example.mp3", - "textMeaning": "Wooden objects are made of wood.", - "textExample": "My mother gave me a wooden spoon.", - "transcription": "[wúdn]", - "__v": 0, - "textExampleTranslate": "Моя мама дала мне деревянную ложку", - "textMeaningTranslate": "Деревянные предметы сделаны из дерева", - "wordTranslate": "деревянный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af93c" - }, - "group": 1, - "page": 29, - "word": "appliance", - "image": "files/30_1181.jpg", - "audio": "files/30_1181.mp3", - "audioMeaning": "files/30_1181_meaning.mp3", - "audioExample": "files/30_1181_example.mp3", - "textMeaning": "An appliance is a piece of equipment used for jobs in the home.", - "textExample": "Many homes have appliances like ovens, toasters, and refrigerators.", - "transcription": "[əpláiəns]", - "__v": 0, - "textExampleTranslate": "Во многих домах есть такие приборы, как духовки, тостеры и холодильники", - "textMeaningTranslate": "Прибор - это часть оборудования, используемого для работы в доме", - "wordTranslate": "устройство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af93d" - }, - "group": 1, - "page": 29, - "word": "basin", - "image": "files/30_1182.jpg", - "audio": "files/30_1182.mp3", - "audioMeaning": "files/30_1182_meaning.mp3", - "audioExample": "files/30_1182_example.mp3", - "textMeaning": "A basin is large bowl for washing things. A sink is sometimes called a basin.", - "textExample": "She filled the basin with water and washed her face.", - "transcription": "[béisən]", - "__v": 0, - "textExampleTranslate": "Она наполнила таз водой и вымыла лицо", - "textMeaningTranslate": "Тазик - это большая чаша для мытья вещей. Раковину иногда называют тазом", - "wordTranslate": "таз" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af93e" - }, - "group": 1, - "page": 29, - "word": "broom", - "image": "files/30_1183.jpg", - "audio": "files/30_1183.mp3", - "audioMeaning": "files/30_1183_meaning.mp3", - "audioExample": "files/30_1183_example.mp3", - "textMeaning": "A broom is a brush with a long handle used for cleaning floors.", - "textExample": "My father usually uses a broom to sweep away dust in the basement.", - "transcription": "[bruːm]", - "__v": 0, - "textExampleTranslate": "Мой отец обычно использует метлу, чтобы сметать пыль в подвале", - "textMeaningTranslate": "Метла - это щетка с длинной ручкой, используемая для мытья полов", - "wordTranslate": "метла" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af93f" - }, - "group": 1, - "page": 29, - "word": "cupboard", - "image": "files/30_1185.jpg", - "audio": "files/30_1185.mp3", - "audioMeaning": "files/30_1185_meaning.mp3", - "audioExample": "files/30_1185_example.mp3", - "textMeaning": "A cupboard is a piece of furniture that is used to store food or household items.", - "textExample": "We put all of our dishes and food in the cupboards.", - "transcription": "[kʌ́bərd]", - "__v": 0, - "textExampleTranslate": "Мы кладем все наши блюда и еду в шкафы", - "textMeaningTranslate": "Шкаф - это предмет мебели, который используется для хранения продуктов питания или предметов домашнего обихода", - "wordTranslate": "шкаф" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af940" - }, - "group": 1, - "page": 29, - "word": "caterpillar", - "image": "files/30_1184.jpg", - "audio": "files/30_1184.mp3", - "audioMeaning": "files/30_1184_meaning.mp3", - "audioExample": "files/30_1184_example.mp3", - "textMeaning": "A caterpillar is a small insect that looks like a worm and eats plants.", - "textExample": "After eating a lot of leaves, caterpillars change into butterflies.", - "transcription": "[kǽtərpìlər]", - "__v": 0, - "textExampleTranslate": "Съев много листьев, гусеницы превращаются в бабочек", - "textMeaningTranslate": "Гусеница - это маленькое насекомое, похожее на червя и питающееся растениями", - "wordTranslate": "гусеница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af941" - }, - "group": 1, - "page": 29, - "word": "delicate", - "image": "files/30_1186.jpg", - "audio": "files/30_1186.mp3", - "audioMeaning": "files/30_1186_meaning.mp3", - "audioExample": "files/30_1186_example.mp3", - "textMeaning": "Delicate things are easy to break or harm.", - "textExample": "You should hold the baby carefully because she’s very delicate.", - "transcription": "[déləkit]", - "__v": 0, - "textExampleTranslate": "Вы должны бережно держать ребенка, потому что она очень нежная", - "textMeaningTranslate": "Деликатные вещи легко сломать или навредить", - "wordTranslate": "тонкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af942" - }, - "group": 1, - "page": 29, - "word": "emerge", - "image": "files/30_1187.jpg", - "audio": "files/30_1187.mp3", - "audioMeaning": "files/30_1187_meaning.mp3", - "audioExample": "files/30_1187_example.mp3", - "textMeaning": "To emerge from something means to come out of it.", - "textExample": "A groundhog emerged from a snow covered hole.", - "transcription": "[imə́ːrdʒ]", - "__v": 0, - "textExampleTranslate": "Сурок появился из заснеженной ямы", - "textMeaningTranslate": "Выйти из чего-то - значит выйти из этого", - "wordTranslate": "всплывать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af943" - }, - "group": 1, - "page": 29, - "word": "handicap", - "image": "files/30_1188.jpg", - "audio": "files/30_1188.mp3", - "audioMeaning": "files/30_1188_meaning.mp3", - "audioExample": "files/30_1188_example.mp3", - "textMeaning": "A handicap is a condition that limits someone’s mental or physical abilities.", - "textExample": "Joe has a slight handicap, so he uses a walker to get around.", - "transcription": "[hǽndikæ̀p]", - "__v": 0, - "textExampleTranslate": "У Джо небольшой недостаток, поэтому он использует ходунки, чтобы передвигаться", - "textMeaningTranslate": "Гандикап - это состояние, которое ограничивает чьи-то умственные или физические способности", - "wordTranslate": "гандикап" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af944" - }, - "group": 1, - "page": 29, - "word": "hole", - "image": "files/30_1189.jpg", - "audio": "files/30_1189.mp3", - "audioMeaning": "files/30_1189_meaning.mp3", - "audioExample": "files/30_1189_example.mp3", - "textMeaning": "A hole is a hollow space in something solid.", - "textExample": "They made a big hole in the wall.", - "transcription": "[houl]", - "__v": 0, - "textExampleTranslate": "Они сделали большую дыру в стене", - "textMeaningTranslate": "Дыра - это пустое пространство в чем-то твердом", - "wordTranslate": "отверстие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af945" - }, - "group": 1, - "page": 29, - "word": "hook", - "image": "files/30_1190.jpg", - "audio": "files/30_1190.mp3", - "audioMeaning": "files/30_1190_meaning.mp3", - "audioExample": "files/30_1190_example.mp3", - "textMeaning": "A hook is a sharp curved piece of metal used for catching or holding things.", - "textExample": "The fish went after the sharp hook.", - "transcription": "[huk]", - "__v": 0, - "textExampleTranslate": "Рыба пошла за острым крючком", - "textMeaningTranslate": "Крюк - это острый изогнутый кусок металла, используемый для захвата или удержания вещей", - "wordTranslate": "крюк" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af946" - }, - "group": 1, - "page": 29, - "word": "hop", - "image": "files/30_1191.jpg", - "audio": "files/30_1191.mp3", - "audioMeaning": "files/30_1191_meaning.mp3", - "audioExample": "files/30_1191_example.mp3", - "textMeaning": "To hop means to jump a short distance.", - "textExample": "The kangaroo quickly hopped away from danger.", - "transcription": "[hɔp]", - "__v": 0, - "textExampleTranslate": "Кенгуру быстро отскочил от опасности", - "textMeaningTranslate": "Прыгать - значит прыгать на короткое расстояние", - "wordTranslate": "хоп" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af947" - }, - "group": 1, - "page": 29, - "word": "laundry", - "image": "files/30_1192.jpg", - "audio": "files/30_1192.mp3", - "audioMeaning": "files/30_1192_meaning.mp3", - "audioExample": "files/30_1192_example.mp3", - "textMeaning": "Laundry is clothes that have been or need to be washed.", - "textExample": "He folded the clean laundry and put the dirty laundry in a basket.", - "transcription": "[lɔ́ːndri]", - "__v": 0, - "textExampleTranslate": "Он сложил чистое белье и положил грязное белье в корзину", - "textMeaningTranslate": "Прачечная - это одежда, которая была или должна быть постирана", - "wordTranslate": "прачечная" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af948" - }, - "group": 1, - "page": 29, - "word": "sleeve", - "image": "files/30_1195.jpg", - "audio": "files/30_1195.mp3", - "audioMeaning": "files/30_1195_meaning.mp3", - "audioExample": "files/30_1195_example.mp3", - "textMeaning": "Sleeves are the part of a shirt in which arms go.", - "textExample": "Ryan bought a new shirt with long sleeves to keep his arms warm.", - "transcription": "[sliːv]", - "__v": 0, - "textExampleTranslate": "Райан купил новую рубашку с длинными рукавами, чтобы держать руки в тепле", - "textMeaningTranslate": "Рукава - это часть рубашки, в которой идут руки", - "wordTranslate": "рукав" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af949" - }, - "group": 1, - "page": 29, - "word": "reluctant", - "image": "files/30_1194.jpg", - "audio": "files/30_1194.mp3", - "audioMeaning": "files/30_1194_meaning.mp3", - "audioExample": "files/30_1194_example.mp3", - "textMeaning": "Reluctant means not wanting to do something.", - "textExample": "She was reluctant to say that she saw the robbery.", - "transcription": "[rilʌ́ktənt]", - "__v": 0, - "textExampleTranslate": "Она не хотела говорить, что видела ограбление", - "textMeaningTranslate": "Неохотно значит не хотеть что-то делать", - "wordTranslate": "неохотно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af94a" - }, - "group": 1, - "page": 29, - "word": "pursue", - "image": "files/30_1193.jpg", - "audio": "files/30_1193.mp3", - "audioMeaning": "files/30_1193_meaning.mp3", - "audioExample": "files/30_1193_example.mp3", - "textMeaning": "To pursue is to chase or follow someone or something.", - "textExample": "The mother pursued her young child down the hill.", - "transcription": "[pərsúː]", - "__v": 0, - "textExampleTranslate": "Мать преследовала своего маленького ребенка вниз по склону", - "textMeaningTranslate": "Преследовать - это преследовать или следовать за кем-то или чем-то", - "wordTranslate": "продолжить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af94b" - }, - "group": 1, - "page": 29, - "word": "spine", - "image": "files/30_1196.jpg", - "audio": "files/30_1196.mp3", - "audioMeaning": "files/30_1196_meaning.mp3", - "audioExample": "files/30_1196_example.mp3", - "textMeaning": "The spine is the group of bones that run up and down the middle of the back.", - "textExample": "Our spine helps us to stand up nice and straight.", - "transcription": "[spain]", - "__v": 0, - "textExampleTranslate": "Наш позвоночник помогает нам встать красиво и прямо", - "textMeaningTranslate": "Позвоночник - это группа костей, которые бегут вверх и вниз по середине спины", - "wordTranslate": "позвоночник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af94d" - }, - "group": 1, - "page": 29, - "word": "strip", - "image": "files/30_1198.jpg", - "audio": "files/30_1198.mp3", - "audioMeaning": "files/30_1198_meaning.mp3", - "audioExample": "files/30_1198_example.mp3", - "textMeaning": "A strip is a long, narrow piece of material or land.", - "textExample": "He had long strips of film that held images of his trip abroad.", - "transcription": "[strip]", - "__v": 0, - "textExampleTranslate": "У него были длинные полосы фильма, на которых были изображения его поездки за границу", - "textMeaningTranslate": "Полоса - это длинный, узкий кусок материала или земли", - "wordTranslate": "полоса" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af94c" - }, - "group": 1, - "page": 29, - "word": "stain", - "image": "files/30_1197.jpg", - "audio": "files/30_1197.mp3", - "audioMeaning": "files/30_1197_meaning.mp3", - "audioExample": "files/30_1197_example.mp3", - "textMeaning": "A stain is a dirty mark that is difficult to clean.", - "textExample": "He had a red stain on the collar of his shirt.", - "transcription": "[stein]", - "__v": 0, - "textExampleTranslate": "У него было красное пятно на воротнике рубашки", - "textMeaningTranslate": "Пятно - это грязная отметка, которую трудно очистить", - "wordTranslate": "пятно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af94e" - }, - "group": 1, - "page": 29, - "word": "swear", - "image": "files/30_1199.jpg", - "audio": "files/30_1199.mp3", - "audioMeaning": "files/30_1199_meaning.mp3", - "audioExample": "files/30_1199_example.mp3", - "textMeaning": "To swear means to promise to do something.", - "textExample": "I will put my hand on the Bible and swear to do my best for the country.", - "transcription": "[swɛər]", - "__v": 0, - "textExampleTranslate": "Я положу руку на Библию и клянусь сделать все возможное для страны", - "textMeaningTranslate": "Клясться - значит обещать что-то сделать", - "wordTranslate": "поклясться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af952" - }, - "group": 2, - "page": 0, - "word": "channel", - "image": "files/01_1205.jpg", - "audio": "files/01_1205.mp3", - "audioMeaning": "files/01_1205_meaning.mp3", - "audioExample": "files/01_1205_example.mp3", - "textMeaning": "A channel is a long, deep space between two edges.", - "textExample": "The river cut a channel through the rocks.", - "transcription": "[ʧǽnl]", - "__v": 0, - "textExampleTranslate": "Река пробила канал сквозь скалы", - "textMeaningTranslate": "Канал - это длинное глубокое пространство между двумя краями", - "wordTranslate": "канал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af950" - }, - "group": 2, - "page": 0, - "word": "acre", - "image": "files/01_1201.jpg", - "audio": "files/01_1201.mp3", - "audioMeaning": "files/01_1201_meaning.mp3", - "audioExample": "files/01_1201_example.mp3", - "textMeaning": "An acre is a unit for measuring area.", - "textExample": "They lived on a 150-acre farm.", - "transcription": "[éikər]", - "__v": 0, - "textExampleTranslate": "Они жили на 150-акровой ферме", - "textMeaningTranslate": "Акр - это единица измерения площади", - "wordTranslate": "акр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af953" - }, - "group": 2, - "page": 0, - "word": "archaeology", - "image": "files/01_1203.jpg", - "audio": "files/01_1203.mp3", - "audioMeaning": "files/01_1203_meaning.mp3", - "audioExample": "files/01_1203_example.mp3", - "textMeaning": "Archaeology is the study of the remains left by ancient societies.", - "textExample": "He enjoyed visiting the Great Pyramids of Egypt because he loves archaeology.", - "transcription": "[ὰːrkiάlədʒi]", - "__v": 0, - "textExampleTranslate": "Ему нравилось посещать Великие пирамиды Египта, потому что он любит археологию", - "textMeaningTranslate": "Археология - это изучение останков, оставленных древними обществами", - "wordTranslate": "археология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af94f" - }, - "group": 1, - "page": 29, - "word": "swing", - "image": "files/30_1200.jpg", - "audio": "files/30_1200.mp3", - "audioMeaning": "files/30_1200_meaning.mp3", - "audioExample": "files/30_1200_example.mp3", - "textMeaning": "To swing something means to move it back and forth or from side to side.", - "textExample": "He can swing a golf club very powerfully.", - "transcription": "[swiŋ]", - "__v": 0, - "textExampleTranslate": "Он может очень сильно размахивать гольф-клубом", - "textMeaningTranslate": "Размахивать чем-то - значит перемещать это вперед и назад или из стороны в сторону", - "wordTranslate": "качели" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af951" - }, - "group": 2, - "page": 0, - "word": "afterlife", - "image": "files/01_1202.jpg", - "audio": "files/01_1202.mp3", - "audioMeaning": "files/01_1202_meaning.mp3", - "audioExample": "files/01_1202_example.mp3", - "textMeaning": "The afterlife is a life that some people believe begins when a person dies.", - "textExample": "I believe that there is an afterlife.", - "transcription": "[ǽftərlaif]", - "__v": 0, - "textExampleTranslate": "Я считаю, что есть загробная жизнь", - "textMeaningTranslate": "Загробная жизнь - это жизнь, в которую верят некоторые люди, когда человек умирает", - "wordTranslate": "жизнь после смерти" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af954" - }, - "group": 2, - "page": 0, - "word": "chamber", - "image": "files/01_1204.jpg", - "audio": "files/01_1204.mp3", - "audioMeaning": "files/01_1204_meaning.mp3", - "audioExample": "files/01_1204_example.mp3", - "textMeaning": "A chamber is a closed space or room used for a special purpose.", - "textExample": "The meeting was held in the faculty chamber.", - "transcription": "[ʧéimbər]", - "__v": 0, - "textExampleTranslate": "Встреча прошла в факультетской палате", - "textMeaningTranslate": "Камера - это закрытое пространство или комната, используемая для специальных целей", - "wordTranslate": "камера" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af956" - }, - "group": 2, - "page": 0, - "word": "corridor", - "image": "files/01_1207.jpg", - "audio": "files/01_1207.mp3", - "audioMeaning": "files/01_1207_meaning.mp3", - "audioExample": "files/01_1207_example.mp3", - "textMeaning": "A corridor is a narrow passage that leads into other areas.", - "textExample": "He took the corridor on the left to go to his office.", - "transcription": "[kɔ́ːridər]", - "__v": 0, - "textExampleTranslate": "Он взял коридор слева, чтобы пойти в свой офис", - "textMeaningTranslate": "Коридор - это узкий проход, ведущий в другие районы", - "wordTranslate": "коридор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af955" - }, - "group": 2, - "page": 0, - "word": "core", - "image": "files/01_1206.jpg", - "audio": "files/01_1206.mp3", - "audioMeaning": "files/01_1206_meaning.mp3", - "audioExample": "files/01_1206_example.mp3", - "textMeaning": "A core is the main or central part of something.", - "textExample": "Earth has a solid inner core.", - "transcription": "[kɔːr]", - "__v": 0, - "textExampleTranslate": "Земля имеет твердое внутреннее ядро", - "textMeaningTranslate": "Ядро - это главная или центральная часть чего-либо", - "wordTranslate": "ядро" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af958" - }, - "group": 2, - "page": 0, - "word": "elite", - "image": "files/01_1209.jpg", - "audio": "files/01_1209.mp3", - "audioMeaning": "files/01_1209_meaning.mp3", - "audioExample": "files/01_1209_example.mp3", - "textMeaning": "Elite means of or from a high-level group.", - "textExample": "Only an elite group was allowed membership into the club.", - "transcription": "[eilíːt]", - "__v": 0, - "textExampleTranslate": "Только элитная группа была допущена к членству в клубе", - "textMeaningTranslate": "Элитные средства из группы высокого уровня", - "wordTranslate": "элита" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af957" - }, - "group": 2, - "page": 0, - "word": "distinct", - "image": "files/01_1208.jpg", - "audio": "files/01_1208.mp3", - "audioMeaning": "files/01_1208_meaning.mp3", - "audioExample": "files/01_1208_example.mp3", - "textMeaning": "A distinct thing is different or stands out.", - "textExample": "He has a distinct accent.", - "transcription": "[distíŋkt]", - "__v": 0, - "textExampleTranslate": "У него отчетливый акцент", - "textMeaningTranslate": "Отличная вещь отличается или выделяется", - "wordTranslate": "отличный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af959" - }, - "group": 2, - "page": 0, - "word": "engineer", - "image": "files/01_1210.jpg", - "audio": "files/01_1210.mp3", - "audioMeaning": "files/01_1210_meaning.mp3", - "audioExample": "files/01_1210_example.mp3", - "textMeaning": "To engineer something is to skillfully plan out how to make that thing.", - "textExample": "After engineering the robot, they needed to find the correct parts to build it.", - "transcription": "[èndʒiníər]", - "__v": 0, - "textExampleTranslate": "После разработки робота им нужно было найти правильные детали для его сборки", - "textMeaningTranslate": "Инженерно что-то значит умело планировать, как это сделать", - "wordTranslate": "инженер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af95a" - }, - "group": 2, - "page": 0, - "word": "found", - "image": "files/01_1211.jpg", - "audio": "files/01_1211.mp3", - "audioMeaning": "files/01_1211_meaning.mp3", - "audioExample": "files/01_1211_example.mp3", - "textMeaning": "To found something means to start, organize, or establish that thing.", - "textExample": "My grandfather founded the City Bank.", - "transcription": "[fə́und]", - "__v": 0, - "textExampleTranslate": "Мой дед основал городской банк", - "textMeaningTranslate": "Найти что-то значит начать, организовать или установить эту вещь", - "wordTranslate": "нашел" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af95b" - }, - "group": 2, - "page": 0, - "word": "gap", - "image": "files/01_1212.jpg", - "audio": "files/01_1212.mp3", - "audioMeaning": "files/01_1212_meaning.mp3", - "audioExample": "files/01_1212_example.mp3", - "textMeaning": "A gap is a space between two things.", - "textExample": "There is a small gap between the blocks of wood.", - "transcription": "[ɡæp]", - "__v": 0, - "textExampleTranslate": "Между блоками дерева есть небольшой зазор", - "textMeaningTranslate": "Разрыв - это пространство между двумя вещами", - "wordTranslate": "пробел" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af95d" - }, - "group": 2, - "page": 0, - "word": "interior", - "image": "files/01_1214.jpg", - "audio": "files/01_1214.mp3", - "audioMeaning": "files/01_1214_meaning.mp3", - "audioExample": "files/01_1214_example.mp3", - "textMeaning": "An interior is the inside of something.", - "textExample": "They looked at the interior of the box.", - "transcription": "[intíəriər]", - "__v": 0, - "textExampleTranslate": "Они посмотрели на внутреннюю часть коробки", - "textMeaningTranslate": "Интерьер - это что-то внутри", - "wordTranslate": "интерьер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af95c" - }, - "group": 2, - "page": 0, - "word": "glory", - "image": "files/01_1213.jpg", - "audio": "files/01_1213.mp3", - "audioMeaning": "files/01_1213_meaning.mp3", - "audioExample": "files/01_1213_example.mp3", - "textMeaning": "Glory is the importance, magnificence, or specialness of something.", - "textExample": "They enjoyed the glory of the beautiful sunset.", - "transcription": "[glɔ́ːri]", - "__v": 0, - "textExampleTranslate": "Они наслаждались славой прекрасного заката", - "textMeaningTranslate": "Слава - это важность, великолепие или особенность чего-либо", - "wordTranslate": "слава" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af95e" - }, - "group": 2, - "page": 0, - "word": "lion", - "image": "files/01_1215.jpg", - "audio": "files/01_1215.mp3", - "audioMeaning": "files/01_1215_meaning.mp3", - "audioExample": "files/01_1215_example.mp3", - "textMeaning": "A lion is a large animal in the cat family.", - "textExample": "We went to see the lion at the zoo.", - "transcription": "[láiən]", - "__v": 0, - "textExampleTranslate": "Мы пошли, чтобы увидеть льва в зоопарке", - "textMeaningTranslate": "Лев - большое животное в семье кошек", - "wordTranslate": "лев" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af95f" - }, - "group": 2, - "page": 0, - "word": "role", - "image": "files/01_1216.jpg", - "audio": "files/01_1216.mp3", - "audioMeaning": "files/01_1216_meaning.mp3", - "audioExample": "files/01_1216_example.mp3", - "textMeaning": "A role is a job, position, or part in something.", - "textExample": "Her role in the office is to sell products to customers.", - "transcription": "[roʊl]", - "__v": 0, - "textExampleTranslate": "Ее роль в офисе - продавать товары покупателям", - "textMeaningTranslate": "Роль - это работа, должность или часть в чем-то", - "wordTranslate": "роль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af961" - }, - "group": 2, - "page": 0, - "word": "sole", - "image": "files/01_1218.jpg", - "audio": "files/01_1218.mp3", - "audioMeaning": "files/01_1218_meaning.mp3", - "audioExample": "files/01_1218_example.mp3", - "textMeaning": "A sole person or thing is the only one.", - "textExample": "She was the sole woman in the room.", - "transcription": "[soul]", - "__v": 0, - "textExampleTranslate": "Она была единственной женщиной в комнате", - "textMeaningTranslate": "Единственный человек или вещь - единственный", - "wordTranslate": "подошва" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af960" - }, - "group": 2, - "page": 0, - "word": "royal", - "image": "files/01_1217.jpg", - "audio": "files/01_1217.mp3", - "audioMeaning": "files/01_1217_meaning.mp3", - "audioExample": "files/01_1217_example.mp3", - "textMeaning": "Royal means related to a king or queen.", - "textExample": "The Duchess was part of the royal family.", - "transcription": "[rɔ́iəl]", - "__v": 0, - "textExampleTranslate": "Герцогиня была частью королевской семьи", - "textMeaningTranslate": "Королевские средства, связанные с королем или королевой", - "wordTranslate": "королевский" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af962" - }, - "group": 2, - "page": 0, - "word": "stairs", - "image": "files/01_1219.jpg", - "audio": "files/01_1219.mp3", - "audioMeaning": "files/01_1219_meaning.mp3", - "audioExample": "files/01_1219_example.mp3", - "textMeaning": "Stairs are a set of steps built to go from one level of a building to another.", - "textExample": "He took the stairs instead of the elevator.", - "transcription": "[stεərz]", - "__v": 0, - "textExampleTranslate": "Он поднялся по лестнице вместо лифта", - "textMeaningTranslate": "Лестница представляет собой набор ступеней, построенных для перехода с одного уровня здания на другой", - "wordTranslate": "лестница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af963" - }, - "group": 2, - "page": 0, - "word": "surface", - "image": "files/01_1220.jpg", - "audio": "files/01_1220.mp3", - "audioMeaning": "files/01_1220_meaning.mp3", - "audioExample": "files/01_1220_example.mp3", - "textMeaning": "The surface is the top layer of something.", - "textExample": "She wiped the surface of the table.", - "transcription": "[sə́ːrfis]", - "__v": 0, - "textExampleTranslate": "Она вытерла поверхность стола", - "textMeaningTranslate": "Поверхность - это верхний слой чего-либо", - "wordTranslate": "поверхность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af964" - }, - "group": 2, - "page": 1, - "word": "agreement", - "image": "files/02_1221.jpg", - "audio": "files/02_1221.mp3", - "audioMeaning": "files/02_1221_meaning.mp3", - "audioExample": "files/02_1221_example.mp3", - "textMeaning": "An agreement is a formal decision about future action.", - "textExample": "I think you’ll get Tom’s agreement to this proposal.", - "transcription": "[əgríːmənt]", - "__v": 0, - "textExampleTranslate": "Я думаю, что вы получите согласие Тома на это предложение", - "textMeaningTranslate": "Соглашение - это формальное решение о будущих действиях", - "wordTranslate": "соглашение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af965" - }, - "group": 2, - "page": 1, - "word": "arise", - "image": "files/02_1222.jpg", - "audio": "files/02_1222.mp3", - "audioMeaning": "files/02_1222_meaning.mp3", - "audioExample": "files/02_1222_example.mp3", - "textMeaning": "To arise is to happen.", - "textExample": "Difficulties arose with his computer because it was old.", - "transcription": "[əráiz]", - "__v": 0, - "textExampleTranslate": "Трудности возникли с его компьютером, потому что он был старым", - "textMeaningTranslate": "Встать - значит случиться", - "wordTranslate": "возникают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af966" - }, - "group": 2, - "page": 1, - "word": "benefactor", - "image": "files/02_1223.jpg", - "audio": "files/02_1223.mp3", - "audioMeaning": "files/02_1223_meaning.mp3", - "audioExample": "files/02_1223_example.mp3", - "textMeaning": "A benefactor is a person who gives money to help someone.", - "textExample": "The student’s benefactor gave him money to spend on his studies.", - "transcription": "[bénəfӕktər]", - "__v": 0, - "textExampleTranslate": "Благодетель студента дал ему деньги на учебу", - "textMeaningTranslate": "Благодетель - это человек, который дает деньги, чтобы помочь кому-то", - "wordTranslate": "благодетель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af967" - }, - "group": 2, - "page": 1, - "word": "blacksmith", - "image": "files/02_1224.jpg", - "audio": "files/02_1224.mp3", - "audioMeaning": "files/02_1224_meaning.mp3", - "audioExample": "files/02_1224_example.mp3", - "textMeaning": "A blacksmith is a person who makes things out of metal.", - "textExample": "The blacksmith pounded the piece of metal until it was flat.", - "transcription": "[blǽksmìθ]", - "__v": 0, - "textExampleTranslate": "Кузнец стучал по куску металла, пока он не стал плоским", - "textMeaningTranslate": "Кузнец - это человек, который делает вещи из металла", - "wordTranslate": "кузнец" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af968" - }, - "group": 2, - "page": 1, - "word": "chimney", - "image": "files/02_1225.jpg", - "audio": "files/02_1225.mp3", - "audioMeaning": "files/02_1225_meaning.mp3", - "audioExample": "files/02_1225_example.mp3", - "textMeaning": "A chimney is a tall pipe used to carry smoke out of a building.", - "textExample": "The cat was sitting on the roof next to the chimney.", - "transcription": "[tʃímni]", - "__v": 0, - "textExampleTranslate": "Кот сидел на крыше рядом с дымоходом", - "textMeaningTranslate": "Дымоход - это высокая труба, используемая для выведения дыма из здания", - "wordTranslate": "печная труба" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af969" - }, - "group": 2, - "page": 1, - "word": "compensate", - "image": "files/02_1226.jpg", - "audio": "files/02_1226.mp3", - "audioMeaning": "files/02_1226_meaning.mp3", - "audioExample": "files/02_1226_example.mp3", - "textMeaning": "To compensate is to pay someone for the time they spent doing something.", - "textExample": "Her boss compensated her for the extra work she did last week.", - "transcription": "[kάmpənsèit]", - "__v": 0, - "textExampleTranslate": "Ее босс дал ей компенсацию за дополнительную работу, которую она сделала на прошлой неделе", - "textMeaningTranslate": "Компенсировать - это платить кому-то за потраченное время на то, чтобы что-то сделать", - "wordTranslate": "компенсация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af96b" - }, - "group": 2, - "page": 1, - "word": "exceed", - "image": "files/02_1228.jpg", - "audio": "files/02_1228.mp3", - "audioMeaning": "files/02_1228_meaning.mp3", - "audioExample": "files/02_1228_example.mp3", - "textMeaning": "To exceed is to be more than something.", - "textExample": "Since I exceeded my limit, I decided to get rid of my credit cards.", - "transcription": "[Iksíːd]", - "__v": 0, - "textExampleTranslate": "Поскольку я превысил свой лимит, я решил избавиться от своих кредитных карт", - "textMeaningTranslate": "Превзойти - значит быть чем-то большим", - "wordTranslate": "превышать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af96a" - }, - "group": 2, - "page": 1, - "word": "encounter", - "image": "files/02_1227.jpg", - "audio": "files/02_1227.mp3", - "audioMeaning": "files/02_1227_meaning.mp3", - "audioExample": "files/02_1227_example.mp3", - "textMeaning": "To encounter is to find or meet a person or thing.", - "textExample": "I encountered a sea turtle while I was swimming.", - "transcription": "[inkáuntər]", - "__v": 0, - "textExampleTranslate": "Я столкнулся с морской черепахой во время плавания", - "textMeaningTranslate": "Встретить - значит найти или встретить человека или вещь", - "wordTranslate": "встреча" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af96c" - }, - "group": 2, - "page": 1, - "word": "forge", - "image": "files/02_1229.jpg", - "audio": "files/02_1229.mp3", - "audioMeaning": "files/02_1229_meaning.mp3", - "audioExample": "files/02_1229_example.mp3", - "textMeaning": "To forge is to make or produce, especially with difficulty.", - "textExample": "Stacy and Heather forged their friendship when they were teenagers.", - "transcription": "[fɔːrdʒ]", - "__v": 0, - "textExampleTranslate": "Стейси и Хизер подружились, когда были подростками", - "textMeaningTranslate": "Подделать - значит делать или производить, особенно с трудом", - "wordTranslate": "кузница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af96d" - }, - "group": 2, - "page": 1, - "word": "iron", - "image": "files/02_1231.jpg", - "audio": "files/02_1231.mp3", - "audioMeaning": "files/02_1231_meaning.mp3", - "audioExample": "files/02_1231_example.mp3", - "textMeaning": "Iron is a strong metal that is used to make many objects.", - "textExample": "The horse had shoes made of iron.", - "transcription": "[áiərn]", - "__v": 0, - "textExampleTranslate": "У лошади были туфли из железа", - "textMeaningTranslate": "Железо - это прочный металл, который используется для изготовления многих предметов", - "wordTranslate": "утюг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af96e" - }, - "group": 2, - "page": 1, - "word": "humble", - "image": "files/02_1230.jpg", - "audio": "files/02_1230.mp3", - "audioMeaning": "files/02_1230_meaning.mp3", - "audioExample": "files/02_1230_example.mp3", - "textMeaning": "People who are humble do not believe that they are better than other people.", - "textExample": "Even though Bob is the smartest boy in his class, he is humble.", - "transcription": "[hʌ́mbl]", - "__v": 0, - "textExampleTranslate": "Хотя Боб самый умный мальчик в своем классе, он скромный", - "textMeaningTranslate": "Смиренные люди не верят, что они лучше других", - "wordTranslate": "скромный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af970" - }, - "group": 2, - "page": 1, - "word": "modest", - "image": "files/02_1233.jpg", - "audio": "files/02_1233.mp3", - "audioMeaning": "files/02_1233_meaning.mp3", - "audioExample": "files/02_1233_example.mp3", - "textMeaning": "If people are modest, they do not think that they are too important.", - "textExample": "Derek is very modest for someone who is so rich.", - "transcription": "[mάdist]", - "__v": 0, - "textExampleTranslate": "Дерек очень скромен для такого богатого человека", - "textMeaningTranslate": "Если люди скромны, они не думают, что они слишком важны", - "wordTranslate": "скромные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af96f" - }, - "group": 2, - "page": 1, - "word": "ladder", - "image": "files/02_1232.jpg", - "audio": "files/02_1232.mp3", - "audioMeaning": "files/02_1232_meaning.mp3", - "audioExample": "files/02_1232_example.mp3", - "textMeaning": "A ladder is an object that is used to climb up and down things.", - "textExample": "He used a ladder to climb to the top of his tree house.", - "transcription": "[lǽdər]", - "__v": 0, - "textExampleTranslate": "Он использовал лестницу, чтобы подняться на вершину своего дома на дереве", - "textMeaningTranslate": "Лестница - это объект, который используется для подъема и опускания вещей", - "wordTranslate": "лестница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af971" - }, - "group": 2, - "page": 1, - "word": "occupy", - "image": "files/02_1234.jpg", - "audio": "files/02_1234.mp3", - "audioMeaning": "files/02_1234_meaning.mp3", - "audioExample": "files/02_1234_example.mp3", - "textMeaning": "To occupy a place is to live, work, or be there.", - "textExample": "Kevin and Alice occupied the chairs and had a long discussion.", - "transcription": "[άkjupài]", - "__v": 0, - "textExampleTranslate": "Кевин и Алиса заняли стулья и долго беседовали", - "textMeaningTranslate": "Занимать место - значит жить, работать или быть там", - "wordTranslate": "занимают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af972" - }, - "group": 2, - "page": 1, - "word": "penny", - "image": "files/02_1235.jpg", - "audio": "files/02_1235.mp3", - "audioMeaning": "files/02_1235_meaning.mp3", - "audioExample": "files/02_1235_example.mp3", - "textMeaning": "A penny is a coin worth one cent.", - "textExample": "US President Abraham Lincoln is on the penny.", - "transcription": "[péni]", - "__v": 0, - "textExampleTranslate": "Президент США Авраам Линкольн на пенни", - "textMeaningTranslate": "Пенни - это монета стоимостью один цент", - "wordTranslate": "копейка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af973" - }, - "group": 2, - "page": 1, - "word": "preach", - "image": "files/02_1236.jpg", - "audio": "files/02_1236.mp3", - "audioMeaning": "files/02_1236_meaning.mp3", - "audioExample": "files/02_1236_example.mp3", - "textMeaning": "To preach is to talk about and promote a religious idea.", - "textExample": "Aaron often preached about living an honest life.", - "transcription": "[priːtʃ]", - "__v": 0, - "textExampleTranslate": "Аарон часто проповедовал о честной жизни", - "textMeaningTranslate": "Проповедовать - значит говорить и пропагандировать религиозную идею", - "wordTranslate": "проповедовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af974" - }, - "group": 2, - "page": 1, - "word": "prosper", - "image": "files/02_1237.jpg", - "audio": "files/02_1237.mp3", - "audioMeaning": "files/02_1237_meaning.mp3", - "audioExample": "files/02_1237_example.mp3", - "textMeaning": "To prosper is to be successful or make a lot of money.", - "textExample": "Frank’s new business finally prospered after many years of hard work.", - "transcription": "[prɑ́spər]", - "__v": 0, - "textExampleTranslate": "Новый бизнес Фрэнка наконец процветал после многих лет напряженной работы", - "textMeaningTranslate": "Процветать - значит быть успешным или зарабатывать много денег", - "wordTranslate": "процветать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af976" - }, - "group": 2, - "page": 1, - "word": "satisfaction", - "image": "files/02_1239.jpg", - "audio": "files/02_1239.mp3", - "audioMeaning": "files/02_1239_meaning.mp3", - "audioExample": "files/02_1239_example.mp3", - "textMeaning": "Satisfaction is the feeling of having done or received something good.", - "textExample": "Brad was filled with satisfaction when he saw what was for dinner.", - "transcription": "[sӕtisfǽkʃən]", - "__v": 0, - "textExampleTranslate": "Брэд был полон удовлетворения, когда увидел, что было на обед", - "textMeaningTranslate": "Удовлетворение - это чувство того, что ты сделал или получил что-то хорошее", - "wordTranslate": "удовлетворение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af975" - }, - "group": 2, - "page": 1, - "word": "province", - "image": "files/02_1238.jpg", - "audio": "files/02_1238.mp3", - "audioMeaning": "files/02_1238_meaning.mp3", - "audioExample": "files/02_1238_example.mp3", - "textMeaning": "A province is an area that is controlled by a country.", - "textExample": "Canada is divided into several different provinces.", - "transcription": "[prάvins]", - "__v": 0, - "textExampleTranslate": "Канада разделена на несколько разных провинций", - "textMeaningTranslate": "Провинция - это территория, контролируемая страной", - "wordTranslate": "провинция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af977" - }, - "group": 2, - "page": 1, - "word": "sustain", - "image": "files/02_1240.jpg", - "audio": "files/02_1240.mp3", - "audioMeaning": "files/02_1240_meaning.mp3", - "audioExample": "files/02_1240_example.mp3", - "textMeaning": "To sustain something is to keep it going.", - "textExample": "Wind power is a clean way to sustain a city with energy.", - "transcription": "[səstéin]", - "__v": 0, - "textExampleTranslate": "Энергия ветра - это чистый способ поддержать город энергией", - "textMeaningTranslate": "Поддерживать что-то - значит поддерживать это", - "wordTranslate": "сохранить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af978" - }, - "group": 2, - "page": 2, - "word": "acquire", - "image": "files/03_1241.jpg", - "audio": "files/03_1241.mp3", - "audioMeaning": "files/03_1241_meaning.mp3", - "audioExample": "files/03_1241_example.mp3", - "textMeaning": "To acquire something is to get or gain possession of that thing.", - "textExample": "Tina acquired a strange package yesterday.", - "transcription": "[əkwáiər]", - "__v": 0, - "textExampleTranslate": "Тина вчера приобрела странную посылку", - "textMeaningTranslate": "Приобретать что-то - значит приобретать или приобретать эту вещь", - "wordTranslate": "приобретать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af979" - }, - "group": 2, - "page": 2, - "word": "awkward", - "image": "files/03_1242.jpg", - "audio": "files/03_1242.mp3", - "audioMeaning": "files/03_1242_meaning.mp3", - "audioExample": "files/03_1242_example.mp3", - "textMeaning": "An awkward thing is embarrassing and uncomfortable.", - "textExample": "After dropping his coffee cup, Robbie felt awkward.", - "transcription": "[ɔ́ːkwərd]", - "__v": 0, - "textExampleTranslate": "Уронив чашку с кофе, Робби почувствовал себя неловко", - "textMeaningTranslate": "Неловко, неловко и неудобно", - "wordTranslate": "неловко" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af97a" - }, - "group": 2, - "page": 2, - "word": "caretaker", - "image": "files/03_1243.jpg", - "audio": "files/03_1243.mp3", - "audioMeaning": "files/03_1243_meaning.mp3", - "audioExample": "files/03_1243_example.mp3", - "textMeaning": "A caretaker is a person who takes care of very young, old, or sick people.", - "textExample": "My grandmother’s caretaker helps her get around the house.", - "transcription": "[kέərtèikər]", - "__v": 0, - "textExampleTranslate": "Смотритель моей бабушки помогает ей передвигаться по дому", - "textMeaningTranslate": "Смотритель - это человек, который заботится о очень молодых, старых или больных людях", - "wordTranslate": "сторож" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af97b" - }, - "group": 2, - "page": 2, - "word": "deceive", - "image": "files/03_1244.jpg", - "audio": "files/03_1244.mp3", - "audioMeaning": "files/03_1244_meaning.mp3", - "audioExample": "files/03_1244_example.mp3", - "textMeaning": "To deceive is to make someone believe something that is not true.", - "textExample": "He tried to deceive his friends with a card trick.", - "transcription": "[disíːv]", - "__v": 0, - "textExampleTranslate": "Он пытался обмануть своих друзей карточным фокусом", - "textMeaningTranslate": "Обмануть - значит заставить кого-то поверить в нечто неправдивое", - "wordTranslate": "обмануть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af97c" - }, - "group": 2, - "page": 2, - "word": "discourage", - "image": "files/03_1245.jpg", - "audio": "files/03_1245.mp3", - "audioMeaning": "files/03_1245_meaning.mp3", - "audioExample": "files/03_1245_example.mp3", - "textMeaning": "To discourage is to make someone feel less excited about something.", - "textExample": "Mr. Perry discouraged the students from quitting school.", - "transcription": "[diskə́ːridʒ]", - "__v": 0, - "textExampleTranslate": "Мистер Перри отговорил учеников бросить школу", - "textMeaningTranslate": "Обескураживать - значит заставлять кого-то чувствовать себя менее заинтересованным", - "wordTranslate": "отбить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af97d" - }, - "group": 2, - "page": 2, - "word": "fake", - "image": "files/03_1246.jpg", - "audio": "files/03_1246.mp3", - "audioMeaning": "files/03_1246_meaning.mp3", - "audioExample": "files/03_1246_example.mp3", - "textMeaning": "A fake thing is made to look real in order to trick people.", - "textExample": "The model was wearing fake hair.", - "transcription": "[feik]", - "__v": 0, - "textExampleTranslate": "Модель носила поддельные волосы", - "textMeaningTranslate": "Поддельная вещь сделана, чтобы выглядеть реальной, чтобы обмануть людей", - "wordTranslate": "не настоящие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af97e" - }, - "group": 2, - "page": 2, - "word": "hatred", - "image": "files/03_1247.jpg", - "audio": "files/03_1247.mp3", - "audioMeaning": "files/03_1247_meaning.mp3", - "audioExample": "files/03_1247_example.mp3", - "textMeaning": "Hatred is a strong feeling of not liking someone or something.", - "textExample": "I have a hatred for the taste of medicine.", - "transcription": "[héitrid]", - "__v": 0, - "textExampleTranslate": "У меня есть ненависть к вкусу лекарства", - "textMeaningTranslate": "Ненависть - это сильное чувство не любить кого-то или что-то", - "wordTranslate": "ненависть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af97f" - }, - "group": 2, - "page": 2, - "word": "hut", - "image": "files/03_1248.jpg", - "audio": "files/03_1248.mp3", - "audioMeaning": "files/03_1248_meaning.mp3", - "audioExample": "files/03_1248_example.mp3", - "textMeaning": "A hut is a house made of wood, grass, or mud that has only one or two rooms.", - "textExample": "We all went into the hut to sleep.", - "transcription": "[hʌt]", - "__v": 0, - "textExampleTranslate": "Мы все пошли в хижину спать", - "textMeaningTranslate": "Хижина - это дом из дерева, травы или грязи, в котором есть только одна или две комнаты", - "wordTranslate": "хижина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af980" - }, - "group": 2, - "page": 2, - "word": "inferior", - "image": "files/03_1249.jpg", - "audio": "files/03_1249.mp3", - "audioMeaning": "files/03_1249_meaning.mp3", - "audioExample": "files/03_1249_example.mp3", - "textMeaning": "An inferior thing is not as good as something else.", - "textExample": "Cars built a hundred years ago are inferior to ones built today.", - "transcription": "[infíəriər]", - "__v": 0, - "textExampleTranslate": "Автомобили, построенные сто лет назад, уступают тем, которые были построены сегодня", - "textMeaningTranslate": "Низшая вещь не так хороша, как что-то еще", - "wordTranslate": "низший" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af981" - }, - "group": 2, - "page": 2, - "word": "lodge", - "image": "files/03_1250.jpg", - "audio": "files/03_1250.mp3", - "audioMeaning": "files/03_1250_meaning.mp3", - "audioExample": "files/03_1250_example.mp3", - "textMeaning": "A lodge is a house in the mountains used by people who hunt or fish.", - "textExample": "During our ski trip, we stayed at a lodge.", - "transcription": "[lɑdʒ]", - "__v": 0, - "textExampleTranslate": "Во время нашей лыжной поездки мы остановились в лодже", - "textMeaningTranslate": "Домик - это дом в горах, используемый людьми, которые охотятся или ловят рыбу", - "wordTranslate": "поселить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af982" - }, - "group": 2, - "page": 2, - "word": "neglect", - "image": "files/03_1251.jpg", - "audio": "files/03_1251.mp3", - "audioMeaning": "files/03_1251_meaning.mp3", - "audioExample": "files/03_1251_example.mp3", - "textMeaning": "To neglect someone or something is to not take care of it properly.", - "textExample": "William neglected his room, so it is a complete mess.", - "transcription": "[niglékt]", - "__v": 0, - "textExampleTranslate": "Уильям забросил свою комнату, так что это полный беспорядок", - "textMeaningTranslate": "Пренебречь кем-то или чем-то - значит не заботиться об этом должным образом", - "wordTranslate": "халатное отношение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af983" - }, - "group": 2, - "page": 2, - "word": "newcomer", - "image": "files/03_1252.jpg", - "audio": "files/03_1252.mp3", - "audioMeaning": "files/03_1252_meaning.mp3", - "audioExample": "files/03_1252_example.mp3", - "textMeaning": "A newcomer is a person who has recently arrived at a place or a group.", - "textExample": "The students happily welcomed the newcomer to the school.", - "transcription": "[njúːkʌ̀məːr]", - "__v": 0, - "textExampleTranslate": "Студенты с радостью приветствовали новичка в школе", - "textMeaningTranslate": "Новичок - это человек, который недавно прибыл в место или группу", - "wordTranslate": "новичок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af984" - }, - "group": 2, - "page": 2, - "word": "offense", - "image": "files/03_1253.jpg", - "audio": "files/03_1253.mp3", - "audioMeaning": "files/03_1253_meaning.mp3", - "audioExample": "files/03_1253_example.mp3", - "textMeaning": "An offense is behavior that is wrong or breaks a law.", - "textExample": "Stealing a car is a very serious offense.", - "transcription": "[əféns]", - "__v": 0, - "textExampleTranslate": "Кража автомобиля - очень серьезное преступление", - "textMeaningTranslate": "Правонарушение - это поведение, которое является неправильным или нарушает закон", - "wordTranslate": "преступление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af986" - }, - "group": 2, - "page": 2, - "word": "repay", - "image": "files/03_1255.jpg", - "audio": "files/03_1255.mp3", - "audioMeaning": "files/03_1255_meaning.mp3", - "audioExample": "files/03_1255_example.mp3", - "textMeaning": "To repay is to pay back or to reward someone or something.", - "textExample": "She repaid her friend for all of his hard work with a small gift.", - "transcription": "[riːpéi]", - "__v": 0, - "textExampleTranslate": "Она заплатила своему другу за всю его тяжелую работу небольшим подарком", - "textMeaningTranslate": "Погасить - значит заплатить или вознаградить кого-то или что-то", - "wordTranslate": "погашать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af985" - }, - "group": 2, - "page": 2, - "word": "overlook", - "image": "files/03_1254.jpg", - "audio": "files/03_1254.mp3", - "audioMeaning": "files/03_1254_meaning.mp3", - "audioExample": "files/03_1254_example.mp3", - "textMeaning": "To overlook something is to not notice it or to not realize that it is important.", - "textExample": "Brenda overlooked the last step and had a bad fall.", - "transcription": "[òuvərlúk]", - "__v": 0, - "textExampleTranslate": "Бренда упустила последний шаг и потерпела неудачу", - "textMeaningTranslate": "Пропускать что-то значит не замечать этого или не осознавать, что это важно", - "wordTranslate": "не заметить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af987" - }, - "group": 2, - "page": 2, - "word": "ridiculous", - "image": "files/03_1256.jpg", - "audio": "files/03_1256.mp3", - "audioMeaning": "files/03_1256_meaning.mp3", - "audioExample": "files/03_1256_example.mp3", - "textMeaning": "A ridiculous thing is silly or strange.", - "textExample": "Steve looked ridiculous with those huge blue sunglasses.", - "transcription": "[ridíkjələs]", - "__v": 0, - "textExampleTranslate": "Стив выглядел смешно с этими огромными синими солнцезащитными очками", - "textMeaningTranslate": "Смешная вещь глупая или странная", - "wordTranslate": "смешной" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af988" - }, - "group": 2, - "page": 2, - "word": "satisfactory", - "image": "files/03_1257.jpg", - "audio": "files/03_1257.mp3", - "audioMeaning": "files/03_1257_meaning.mp3", - "audioExample": "files/03_1257_example.mp3", - "textMeaning": "A satisfactory thing is good enough.", - "textExample": "Mina often received satisfactory grades since she studied so hard.", - "transcription": "[sæ̀tisfǽktəri]", - "__v": 0, - "textExampleTranslate": "Мина часто получала удовлетворительные оценки, так как она так усердно училась", - "textMeaningTranslate": "Удовлетворительная вещь достаточно хороша", - "wordTranslate": "удовлетворительно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af989" - }, - "group": 2, - "page": 2, - "word": "shepherd", - "image": "files/03_1258.jpg", - "audio": "files/03_1258.mp3", - "audioMeaning": "files/03_1258_meaning.mp3", - "audioExample": "files/03_1258_example.mp3", - "textMeaning": "A shepherd is a person who protects and cares for sheep.", - "textExample": "The shepherd moved the sheep to another field.", - "transcription": "[ʃépərd]", - "__v": 0, - "textExampleTranslate": "Пастух перенес овец в другое поле", - "textMeaningTranslate": "Пастух - это человек, который защищает овец и заботится о них", - "wordTranslate": "пасти" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af98a" - }, - "group": 2, - "page": 2, - "word": "venture", - "image": "files/03_1259.jpg", - "audio": "files/03_1259.mp3", - "audioMeaning": "files/03_1259_meaning.mp3", - "audioExample": "files/03_1259_example.mp3", - "textMeaning": "To venture is to go to a place that may be dangerous.", - "textExample": "Even though it was dangerous, they ventured up the mountain.", - "transcription": "[véntʃər]", - "__v": 0, - "textExampleTranslate": "Хотя это было опасно, они рискнули подняться на гору", - "textMeaningTranslate": "Рискнуть - это пойти в место, которое может быть опасным", - "wordTranslate": "предприятие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af98b" - }, - "group": 2, - "page": 2, - "word": "wheat", - "image": "files/03_1260.jpg", - "audio": "files/03_1260.mp3", - "audioMeaning": "files/03_1260_meaning.mp3", - "audioExample": "files/03_1260_example.mp3", - "textMeaning": "Wheat is a plant from which we get the grain used to make bread.", - "textExample": "The field of golden wheat was ready to be harvested.", - "transcription": "[hwiːt]", - "__v": 0, - "textExampleTranslate": "Поле золотой пшеницы было готово к уборке", - "textMeaningTranslate": "Пшеница - это растение, из которого мы получаем зерно, из которого делают хлеб", - "wordTranslate": "пшеница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af98c" - }, - "group": 2, - "page": 3, - "word": "alley", - "image": "files/04_1261.jpg", - "audio": "files/04_1261.mp3", - "audioMeaning": "files/04_1261_meaning.mp3", - "audioExample": "files/04_1261_example.mp3", - "textMeaning": "An alley is a narrow road between houses or buildings.", - "textExample": "The alley behind my house looks dirty.", - "transcription": "[ǽli]", - "__v": 0, - "textExampleTranslate": "Аллея позади моего дома выглядит грязной", - "textMeaningTranslate": "Аллея - это узкая дорога между домами или зданиями", - "wordTranslate": "аллея" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af98d" - }, - "group": 2, - "page": 3, - "word": "bunch", - "image": "files/04_1263.jpg", - "audio": "files/04_1263.mp3", - "audioMeaning": "files/04_1263_meaning.mp3", - "audioExample": "files/04_1263_example.mp3", - "textMeaning": "A bunch is a group of the same things.", - "textExample": "She was hungry, so she ate the entire bunch of grapes.", - "transcription": "[bʌntʃ]", - "__v": 0, - "textExampleTranslate": "Она была голодна, поэтому съела всю гроздь винограда", - "textMeaningTranslate": "Связка - это группа одинаковых вещей", - "wordTranslate": "связка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af98e" - }, - "group": 2, - "page": 3, - "word": "ax", - "image": "files/04_1262.jpg", - "audio": "files/04_1262.mp3", - "audioMeaning": "files/04_1262_meaning.mp3", - "audioExample": "files/04_1262_example.mp3", - "textMeaning": "An ax is a tool used to cut wood.", - "textExample": "She used an ax to cut some wood for the fire.", - "transcription": "[æks]", - "__v": 0, - "textExampleTranslate": "Она использовала топор, чтобы срубить дрова для огня", - "textMeaningTranslate": "Топор - это инструмент, используемый для резки дерева", - "wordTranslate": "топор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af98f" - }, - "group": 2, - "page": 3, - "word": "chore", - "image": "files/04_1264.jpg", - "audio": "files/04_1264.mp3", - "audioMeaning": "files/04_1264_meaning.mp3", - "audioExample": "files/04_1264_example.mp3", - "textMeaning": "A chore is an unpleasant job that must be done.", - "textExample": "It’s Nikki’s chore to do the dishes every Tuesday and Wednesday night.", - "transcription": "[tʃɔːr]", - "__v": 0, - "textExampleTranslate": "Это работа Никки, чтобы мыть посуду каждый вторник и среду вечером", - "textMeaningTranslate": "Работа по дому - неприятная работа, которую нужно выполнить", - "wordTranslate": "рутина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af990" - }, - "group": 2, - "page": 3, - "word": "decent", - "image": "files/04_1265.jpg", - "audio": "files/04_1265.mp3", - "audioMeaning": "files/04_1265_meaning.mp3", - "audioExample": "files/04_1265_example.mp3", - "textMeaning": "A decent person or thing is OK or good enough.", - "textExample": "Eric did a decent job painting the fence.", - "transcription": "[díːsənt]", - "__v": 0, - "textExampleTranslate": "Эрик проделал достойную работу, покрасив забор", - "textMeaningTranslate": "Приличный человек или вещь в порядке или достаточно хороши", - "wordTranslate": "приличный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af991" - }, - "group": 2, - "page": 3, - "word": "disgraceful", - "image": "files/04_1266.jpg", - "audio": "files/04_1266.mp3", - "audioMeaning": "files/04_1266_meaning.mp3", - "audioExample": "files/04_1266_example.mp3", - "textMeaning": "Disgraceful behavior is behavior that is very bad.", - "textExample": "This is a disgraceful waste of money.", - "transcription": "[disgréisful]", - "__v": 0, - "textExampleTranslate": "Это позорная трата денег", - "textMeaningTranslate": "Позорное поведение - это очень плохое поведение", - "wordTranslate": "позорно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af992" - }, - "group": 2, - "page": 3, - "word": "grateful", - "image": "files/04_1268.jpg", - "audio": "files/04_1268.mp3", - "audioMeaning": "files/04_1268_meaning.mp3", - "audioExample": "files/04_1268_example.mp3", - "textMeaning": "A grateful person feels thankful about something.", - "textExample": "The girls were grateful for the chance to visit their grandfather.", - "transcription": "[gréitfəl]", - "__v": 0, - "textExampleTranslate": "Девушки были благодарны за возможность навестить дедушку", - "textMeaningTranslate": "Благодарный человек чувствует себя благодарным за что-то", - "wordTranslate": "благодарен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af993" - }, - "group": 2, - "page": 3, - "word": "elbow", - "image": "files/04_1267.jpg", - "audio": "files/04_1267.mp3", - "audioMeaning": "files/04_1267_meaning.mp3", - "audioExample": "files/04_1267_example.mp3", - "textMeaning": "The elbow is the middle part of an arm, where it bends.", - "textExample": "She pointed to her elbow to show me where she hurt herself.", - "transcription": "[élbou]", - "__v": 0, - "textExampleTranslate": "Она указала на свой локоть, чтобы показать мне, где она поранилась", - "textMeaningTranslate": "Локоть - это средняя часть руки, где он сгибается", - "wordTranslate": "локоть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af994" - }, - "group": 2, - "page": 3, - "word": "irritate", - "image": "files/04_1269.jpg", - "audio": "files/04_1269.mp3", - "audioMeaning": "files/04_1269_meaning.mp3", - "audioExample": "files/04_1269_example.mp3", - "textMeaning": "To irritate means to annoy someone.", - "textExample": "She was irritated when her brother told her that he had lost her camera.", - "transcription": "[írətèit]", - "__v": 0, - "textExampleTranslate": "Она была раздражена, когда ее брат сказал ей, что он потерял ее камеру", - "textMeaningTranslate": "Раздражать - значит раздражать кого-то", - "wordTranslate": "раздражать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af995" - }, - "group": 2, - "page": 3, - "word": "kid", - "image": "files/04_1270.jpg", - "audio": "files/04_1270.mp3", - "audioMeaning": "files/04_1270_meaning.mp3", - "audioExample": "files/04_1270_example.mp3", - "textMeaning": "To kid is to say something that is not true as a joke.", - "textExample": "I am not really mad. I was kidding when I said I was angry.", - "transcription": "[kid]", - "__v": 0, - "textExampleTranslate": "Я на самом деле не злюсь. Я пошутил, когда сказал, что злюсь", - "textMeaningTranslate": "Для ребенка значит сказать что-то, что не является правдой в шутку", - "wordTranslate": "дитя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af996" - }, - "group": 2, - "page": 3, - "word": "loose", - "image": "files/04_1271.jpg", - "audio": "files/04_1271.mp3", - "audioMeaning": "files/04_1271_meaning.mp3", - "audioExample": "files/04_1271_example.mp3", - "textMeaning": "A loose thing is not held in place tightly.", - "textExample": "The bolt was loose, so I tightened it with the wrench.", - "transcription": "[luːs]", - "__v": 0, - "textExampleTranslate": "Болт был ослаблен, поэтому я затянул его гаечным ключом", - "textMeaningTranslate": "Свободная вещь не держится на месте крепко", - "wordTranslate": "потерять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af997" - }, - "group": 2, - "page": 3, - "word": "offend", - "image": "files/04_1272.jpg", - "audio": "files/04_1272.mp3", - "audioMeaning": "files/04_1272_meaning.mp3", - "audioExample": "files/04_1272_example.mp3", - "textMeaning": "To offend is to make someone angry or upset.", - "textExample": "They were both offended by what they had said to each other.", - "transcription": "[əfénd]", - "__v": 0, - "textExampleTranslate": "Они оба были оскорблены тем, что они сказали друг другу", - "textMeaningTranslate": "Обидеть значит обидеть кого-то или расстроить", - "wordTranslate": "обидеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af998" - }, - "group": 2, - "page": 3, - "word": "overnight", - "image": "files/04_1273.jpg", - "audio": "files/04_1273.mp3", - "audioMeaning": "files/04_1273_meaning.mp3", - "audioExample": "files/04_1273_example.mp3", - "textMeaning": "An overnight action happens during the night.", - "textExample": "The campers stayed in the tent overnight.", - "transcription": "[óuvərnait]", - "__v": 0, - "textExampleTranslate": "Отдыхающие остались в палатке на ночь", - "textMeaningTranslate": "Ночное действие происходит ночью", - "wordTranslate": "с ночевкой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af999" - }, - "group": 2, - "page": 3, - "word": "persist", - "image": "files/04_1274.jpg", - "audio": "files/04_1274.mp3", - "audioMeaning": "files/04_1274_meaning.mp3", - "audioExample": "files/04_1274_example.mp3", - "textMeaning": "To persist means to keep doing something even when it is hard.", - "textExample": "Even though the lesson was difficult, he persisted until he understood.", - "transcription": "[pərsíst]", - "__v": 0, - "textExampleTranslate": "Хотя урок был трудным, он продолжал, пока не понял", - "textMeaningTranslate": "Упорствовать - значит продолжать делать что-то, даже когда это трудно", - "wordTranslate": "сохраняются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af99b" - }, - "group": 2, - "page": 3, - "word": "scar", - "image": "files/04_1276.jpg", - "audio": "files/04_1276.mp3", - "audioMeaning": "files/04_1276_meaning.mp3", - "audioExample": "files/04_1276_example.mp3", - "textMeaning": "A scar is a mark on the skin after a wound heals.", - "textExample": "The man had horrible scars on his cheek and forehead.", - "transcription": "[skɑːr]", - "__v": 0, - "textExampleTranslate": "У человека были ужасные шрамы на щеке и лбу", - "textMeaningTranslate": "Рубец - это след на коже после заживления раны", - "wordTranslate": "шрам" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af99a" - }, - "group": 2, - "page": 3, - "word": "pine", - "image": "files/04_1275.jpg", - "audio": "files/04_1275.mp3", - "audioMeaning": "files/04_1275_meaning.mp3", - "audioExample": "files/04_1275_example.mp3", - "textMeaning": "A pine is a type of tall, thin tree with needles instead of leaves.", - "textExample": "There were many beautiful pine trees in the forest.", - "transcription": "[pain]", - "__v": 0, - "textExampleTranslate": "В лесу было много прекрасных сосен", - "textMeaningTranslate": "Сосна - это тип высокого, тонкого дерева с иголками вместо листьев", - "wordTranslate": "сосна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af99c" - }, - "group": 2, - "page": 3, - "word": "sensation", - "image": "files/04_1277.jpg", - "audio": "files/04_1277.mp3", - "audioMeaning": "files/04_1277_meaning.mp3", - "audioExample": "files/04_1277_example.mp3", - "textMeaning": "A sensation is a feeling that people get from their senses.", - "textExample": "Mom got a painful sensation in her head from the loud noise.", - "transcription": "[senséiʃən]", - "__v": 0, - "textExampleTranslate": "Мама получила болезненное ощущение в голове от громкого шума", - "textMeaningTranslate": "Сенсация - это чувство, которое люди получают от своих чувств", - "wordTranslate": "ощущение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af99d" - }, - "group": 2, - "page": 3, - "word": "sled", - "image": "files/04_1278.jpg", - "audio": "files/04_1278.mp3", - "audioMeaning": "files/04_1278_meaning.mp3", - "audioExample": "files/04_1278_example.mp3", - "textMeaning": "A sled is a small vehicle used on snow.", - "textExample": "Marvin likes to ride his sled down the hill in winter.", - "transcription": "[sled]", - "__v": 0, - "textExampleTranslate": "Марвин любит кататься на санках зимой вниз по склону", - "textMeaningTranslate": "Сани - это маленький автомобиль, используемый на снегу", - "wordTranslate": "санки" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af99e" - }, - "group": 2, - "page": 3, - "word": "tease", - "image": "files/04_1279.jpg", - "audio": "files/04_1279.mp3", - "audioMeaning": "files/04_1279_meaning.mp3", - "audioExample": "files/04_1279_example.mp3", - "textMeaning": "To tease means to laugh at or make fun of someone.", - "textExample": "Jake teased Charlie because he was the new student.", - "transcription": "[tiːz]", - "__v": 0, - "textExampleTranslate": "Джейк дразнил Чарли, потому что он был новым учеником", - "textMeaningTranslate": "Дразнить означает смеяться или смеяться над кем-то", - "wordTranslate": "дразнить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af99f" - }, - "group": 2, - "page": 3, - "word": "valentine", - "image": "files/04_1280.jpg", - "audio": "files/04_1280.mp3", - "audioMeaning": "files/04_1280_meaning.mp3", - "audioExample": "files/04_1280_example.mp3", - "textMeaning": "A valentine is someone loved or admired with great affection.", - "textExample": "Harry wanted Molly to be his valentine.", - "transcription": "[vǽləntàin]", - "__v": 0, - "textExampleTranslate": "Гарри хотел, чтобы Молли была его валентинкой", - "textMeaningTranslate": "Валентина - это тот, кого любят или восхищают с большой любовью", - "wordTranslate": "валентин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9a0" - }, - "group": 2, - "page": 4, - "word": "acquaint", - "image": "files/05_1281.jpg", - "audio": "files/05_1281.mp3", - "audioMeaning": "files/05_1281_meaning.mp3", - "audioExample": "files/05_1281_example.mp3", - "textMeaning": "To acquaint is to get to know something or someone.", - "textExample": "Nancy acquainted herself with the new computer.", - "transcription": "[əkwéint]", - "__v": 0, - "textExampleTranslate": "Нэнси познакомилась с новым компьютером", - "textMeaningTranslate": "Познакомиться - значит узнать что-то или кого-то", - "wordTranslate": "знакомят" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9a1" - }, - "group": 2, - "page": 4, - "word": "cemetery", - "image": "files/05_1282.jpg", - "audio": "files/05_1282.mp3", - "audioMeaning": "files/05_1282_meaning.mp3", - "audioExample": "files/05_1282_example.mp3", - "textMeaning": "A cemetery is a place where people are buried when they die.", - "textExample": "Some people are scared of cemeteries.", - "transcription": "[sémətèri]", - "__v": 0, - "textExampleTranslate": "Некоторые люди боятся кладбищ", - "textMeaningTranslate": "Кладбище - это место, где люди похоронены, когда они умирают", - "wordTranslate": "кладбище" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9a2" - }, - "group": 2, - "page": 4, - "word": "disguise", - "image": "files/05_1285.jpg", - "audio": "files/05_1285.mp3", - "audioMeaning": "files/05_1285_meaning.mp3", - "audioExample": "files/05_1285_example.mp3", - "textMeaning": "A disguise is something you wear so people cannot tell who you are.", - "textExample": "Everyone knew that it was Dad in the Santa disguise.", - "transcription": "[disgáiz]", - "__v": 0, - "textExampleTranslate": "Все знали, что это был папа в маске Санты", - "textMeaningTranslate": "Маскировка - это то, что вы носите, чтобы люди не могли сказать, кто вы", - "wordTranslate": "маскировка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9a3" - }, - "group": 2, - "page": 4, - "word": "fancy", - "image": "files/05_1286.jpg", - "audio": "files/05_1286.mp3", - "audioMeaning": "files/05_1286_meaning.mp3", - "audioExample": "files/05_1286_example.mp3", - "textMeaning": "A fancy thing is nicer or more detailed than normal.", - "textExample": "Their table was all set for a fancy dinner.", - "transcription": "[fǽnsi]", - "__v": 0, - "textExampleTranslate": "Их стол был накрыт для шикарного ужина", - "textMeaningTranslate": "Необычная вещь приятнее или детальнее, чем обычно", - "wordTranslate": "фантазия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9a4" - }, - "group": 2, - "page": 4, - "word": "creature", - "image": "files/05_1283.jpg", - "audio": "files/05_1283.mp3", - "audioMeaning": "files/05_1283_meaning.mp3", - "audioExample": "files/05_1283_example.mp3", - "textMeaning": "A creature is an animal or person.", - "textExample": "Those creatures live in Africa.", - "transcription": "[kríːʧər]", - "__v": 0, - "textExampleTranslate": "Эти существа живут в Африке", - "textMeaningTranslate": "Существо - это животное или человек", - "wordTranslate": "существо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9a5" - }, - "group": 2, - "page": 4, - "word": "curse", - "image": "files/05_1284.jpg", - "audio": "files/05_1284.mp3", - "audioMeaning": "files/05_1284_meaning.mp3", - "audioExample": "files/05_1284_example.mp3", - "textMeaning": "To curse someone is to hope that bad things happen to that person.", - "textExample": "The witch cursed the village.", - "transcription": "[kəːrs]", - "__v": 0, - "textExampleTranslate": "Ведьма прокляла деревню", - "textMeaningTranslate": "Проклясть кого-то - это надеяться, что с ним случится что-то плохое", - "wordTranslate": "проклясть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9a6" - }, - "group": 2, - "page": 4, - "word": "hood", - "image": "files/05_1288.jpg", - "audio": "files/05_1288.mp3", - "audioMeaning": "files/05_1288_meaning.mp3", - "audioExample": "files/05_1288_example.mp3", - "textMeaning": "A hood is part of a coat that goes over a person’s head.", - "textExample": "She put on her hood to keep her head warm.", - "transcription": "[hud]", - "__v": 0, - "textExampleTranslate": "Она надела свой капюшон, чтобы держать голову в тепле", - "textMeaningTranslate": "Капюшон является частью пальто, которое проходит над головой человека", - "wordTranslate": "капот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9a7" - }, - "group": 2, - "page": 4, - "word": "flashlight", - "image": "files/05_1287.jpg", - "audio": "files/05_1287.mp3", - "audioMeaning": "files/05_1287_meaning.mp3", - "audioExample": "files/05_1287_example.mp3", - "textMeaning": "A flashlight is a small electric light that people carry in their hands.", - "textExample": "We took a flashlight when we went camping.", - "transcription": "[flǽʃlàit]", - "__v": 0, - "textExampleTranslate": "Мы взяли фонарик, когда пошли в поход", - "textMeaningTranslate": "Фонарик - это маленький электрический свет, который люди несут в руках", - "wordTranslate": "фонарик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9a8" - }, - "group": 2, - "page": 4, - "word": "pirate", - "image": "files/05_1291.jpg", - "audio": "files/05_1291.mp3", - "audioMeaning": "files/05_1291_meaning.mp3", - "audioExample": "files/05_1291_example.mp3", - "textMeaning": "A pirate is a sailor who steals things from other boats.", - "textExample": "Pirates are very scary characters.", - "transcription": "[páiərət]", - "__v": 0, - "textExampleTranslate": "Пираты очень страшные персонажи", - "textMeaningTranslate": "Пират - это моряк, который крадет вещи у других лодок", - "wordTranslate": "пират" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9a9" - }, - "group": 2, - "page": 4, - "word": "inhabitant", - "image": "files/05_1289.jpg", - "audio": "files/05_1289.mp3", - "audioMeaning": "files/05_1289_meaning.mp3", - "audioExample": "files/05_1289_example.mp3", - "textMeaning": "An inhabitant is a person who lives in a certain place.", - "textExample": "The number of inhabitants in the countryside is increasing.", - "transcription": "[inhǽbətənt]", - "__v": 0, - "textExampleTranslate": "Число жителей в сельской местности увеличивается", - "textMeaningTranslate": "Житель - это человек, который живет в определенном месте", - "wordTranslate": "житель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9aa" - }, - "group": 2, - "page": 4, - "word": "nourish", - "image": "files/05_1290.jpg", - "audio": "files/05_1290.mp3", - "audioMeaning": "files/05_1290_meaning.mp3", - "audioExample": "files/05_1290_example.mp3", - "textMeaning": "To nourish is to give someone or something the food needed to live.", - "textExample": "A good mother will nourish her baby every day.", - "transcription": "[nə́ːriʃ]", - "__v": 0, - "textExampleTranslate": "Хорошая мама будет кормить ребенка каждый день", - "textMeaningTranslate": "Питать - значит давать кому-то или чему-то пищу, необходимую для жизни", - "wordTranslate": "лелеять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ab" - }, - "group": 2, - "page": 4, - "word": "publication", - "image": "files/05_1292.jpg", - "audio": "files/05_1292.mp3", - "audioMeaning": "files/05_1292_meaning.mp3", - "audioExample": "files/05_1292_example.mp3", - "textMeaning": "A publication is something printed, like a newspaper or book.", - "textExample": "She’s been a subscriber to that publication for over ten years.", - "transcription": "[pΛbləkéiʃən]", - "__v": 0, - "textExampleTranslate": "Она была подписчиком этой публикации более десяти лет", - "textMeaningTranslate": "Публикация - это что-то напечатанное, как газета или книга", - "wordTranslate": "публикация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ac" - }, - "group": 2, - "page": 4, - "word": "riddle", - "image": "files/05_1293.jpg", - "audio": "files/05_1293.mp3", - "audioMeaning": "files/05_1293_meaning.mp3", - "audioExample": "files/05_1293_example.mp3", - "textMeaning": "A riddle is a question that is difficult to answer but meant to be funny.", - "textExample": "I could not answer Wendy’s riddle, but it made me laugh.", - "transcription": "[rídl]", - "__v": 0, - "textExampleTranslate": "Я не мог ответить на загадку Венди, но это заставило меня смеяться", - "textMeaningTranslate": "Загадка - это вопрос, на который трудно ответить, но который должен быть смешным", - "wordTranslate": "загадка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ad" - }, - "group": 2, - "page": 4, - "word": "shortly", - "image": "files/05_1295.jpg", - "audio": "files/05_1295.mp3", - "audioMeaning": "files/05_1295_meaning.mp3", - "audioExample": "files/05_1295_example.mp3", - "textMeaning": "An action that happens shortly happens very soon.", - "textExample": "My workday will end shortly.", - "transcription": "[ʃɔ́ːrtli]", - "__v": 0, - "textExampleTranslate": "Мой рабочий день скоро закончится", - "textMeaningTranslate": "Действие, которое происходит в ближайшее время, происходит очень скоро", - "wordTranslate": "в ближайшее время" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ae" - }, - "group": 2, - "page": 4, - "word": "rot", - "image": "files/05_1294.jpg", - "audio": "files/05_1294.mp3", - "audioMeaning": "files/05_1294_meaning.mp3", - "audioExample": "files/05_1294_example.mp3", - "textMeaning": "To rot is to slowly get softer and become destroyed.", - "textExample": "The old log began to rot in the forest.", - "transcription": "[rɔt]", - "__v": 0, - "textExampleTranslate": "Старое бревно начало гнить в лесу", - "textMeaningTranslate": "Гнить означает медленно размягчаться и разрушаться", - "wordTranslate": "гниль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9af" - }, - "group": 2, - "page": 4, - "word": "skeleton", - "image": "files/05_1296.jpg", - "audio": "files/05_1296.mp3", - "audioMeaning": "files/05_1296_meaning.mp3", - "audioExample": "files/05_1296_example.mp3", - "textMeaning": "A skeleton is all the bones of a body.", - "textExample": "There is a skeleton in the science classroom.", - "transcription": "[skélətn]", - "__v": 0, - "textExampleTranslate": "В научном классе есть скелет", - "textMeaningTranslate": "Скелет - это все кости тела", - "wordTranslate": "скелет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9b0" - }, - "group": 2, - "page": 4, - "word": "spoil", - "image": "files/05_1297.jpg", - "audio": "files/05_1297.mp3", - "audioMeaning": "files/05_1297_meaning.mp3", - "audioExample": "files/05_1297_example.mp3", - "textMeaning": "To spoil is to rot or to make bad.", - "textExample": "We left the fruit out too long, and it spoiled.", - "transcription": "[spɔil]", - "__v": 0, - "textExampleTranslate": "Мы оставили фрукты слишком долго, и они испортились", - "textMeaningTranslate": "Испортить - значит гнить или делать плохо", - "wordTranslate": "портятся" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9b1" - }, - "group": 2, - "page": 4, - "word": "starve", - "image": "files/05_1298.jpg", - "audio": "files/05_1298.mp3", - "audioMeaning": "files/05_1298_meaning.mp3", - "audioExample": "files/05_1298_example.mp3", - "textMeaning": "To starve is to not get enough food for a long period of time.", - "textExample": "During the war, many people starved.", - "transcription": "[stɑːrv]", - "__v": 0, - "textExampleTranslate": "Во время войны многие люди голодали", - "textMeaningTranslate": "Голодать - значит не получать достаточно еды в течение длительного периода времени", - "wordTranslate": "голодать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9b2" - }, - "group": 2, - "page": 4, - "word": "thrill", - "image": "files/05_1299.jpg", - "audio": "files/05_1299.mp3", - "audioMeaning": "files/05_1299_meaning.mp3", - "audioExample": "files/05_1299_example.mp3", - "textMeaning": "A thrill is an exciting feeling.", - "textExample": "The surfer enjoys the thrill of surfing a big wave.", - "transcription": "[θril]", - "__v": 0, - "textExampleTranslate": "Серфер наслаждается ощущением от серфинга на большой волне", - "textMeaningTranslate": "Острые ощущения - это захватывающее чувство", - "wordTranslate": "кайф" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9b3" - }, - "group": 2, - "page": 4, - "word": "wicked", - "image": "files/05_1300.jpg", - "audio": "files/05_1300.mp3", - "audioMeaning": "files/05_1300_meaning.mp3", - "audioExample": "files/05_1300_example.mp3", - "textMeaning": "A wicked person is very bad or evil.", - "textExample": "My boss is a very wicked man.", - "transcription": "[wíkid]", - "__v": 0, - "textExampleTranslate": "Мой босс очень злой человек", - "textMeaningTranslate": "Злой человек очень плохой или злой", - "wordTranslate": "злой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9b5" - }, - "group": 2, - "page": 5, - "word": "broadcast", - "image": "files/06_1302.jpg", - "audio": "files/06_1302.mp3", - "audioMeaning": "files/06_1302_meaning.mp3", - "audioExample": "files/06_1302_example.mp3", - "textMeaning": "A broadcast is a television or radio show.", - "textExample": "We watched the broadcast of the local news on TV.", - "transcription": "[brɔ́ːdkæ̀st]", - "__v": 0, - "textExampleTranslate": "Мы смотрели трансляцию местных новостей по телевизору", - "textMeaningTranslate": "Трансляция - это телевизионное или радио-шоу", - "wordTranslate": "вещание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9b8" - }, - "group": 2, - "page": 5, - "word": "chop", - "image": "files/06_1305.jpg", - "audio": "files/06_1305.mp3", - "audioMeaning": "files/06_1305_meaning.mp3", - "audioExample": "files/06_1305_example.mp3", - "textMeaning": "To chop something means to cut it into pieces with a tool.", - "textExample": "Mom chopped some vegetables to put into the stew.", - "transcription": "[tʃɑp]", - "__v": 0, - "textExampleTranslate": "Мама нарезала овощи, чтобы положить в рагу", - "textMeaningTranslate": "Нарезать что-то означает разрезать его на куски с помощью инструмента", - "wordTranslate": "рубить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9b7" - }, - "group": 2, - "page": 5, - "word": "bump", - "image": "files/06_1304.jpg", - "audio": "files/06_1304.mp3", - "audioMeaning": "files/06_1304_meaning.mp3", - "audioExample": "files/06_1304_example.mp3", - "textMeaning": "A bump is a small raised area on a surface.", - "textExample": "The monkey got a bump on his head because he was hit by a rock.", - "transcription": "[bʌmp]", - "__v": 0, - "textExampleTranslate": "Обезьяна получила удар по голове, потому что его ударило камнем", - "textMeaningTranslate": "Удар - это небольшой выступающий участок на поверхности", - "wordTranslate": "удар" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9b4" - }, - "group": 2, - "page": 5, - "word": "alert", - "image": "files/06_1301.jpg", - "audio": "files/06_1301.mp3", - "audioMeaning": "files/06_1301_meaning.mp3", - "audioExample": "files/06_1301_example.mp3", - "textMeaning": "To alert someone is to tell or warn that person about something.", - "textExample": "The fire alarm alerted us that there was a problem.", - "transcription": "[ələ́ːrt]", - "__v": 0, - "textExampleTranslate": "Пожарная тревога предупредила нас, что возникла проблема", - "textMeaningTranslate": "Предупредить кого-либо - значит сказать или предупредить этого человека о чем-либо", - "wordTranslate": "тревога" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9b6" - }, - "group": 2, - "page": 5, - "word": "bulletin", - "image": "files/06_1303.jpg", - "audio": "files/06_1303.mp3", - "audioMeaning": "files/06_1303_meaning.mp3", - "audioExample": "files/06_1303_example.mp3", - "textMeaning": "A bulletin is a news report about very recent and important events.", - "textExample": "There was a live bulletin reporting on the economy of the city.", - "transcription": "[búlətin]", - "__v": 0, - "textExampleTranslate": "Был прямой репортаж об экономике города", - "textMeaningTranslate": "Бюллетень - это новостной репортаж о недавних и важных событиях", - "wordTranslate": "бюллетень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9b9" - }, - "group": 2, - "page": 5, - "word": "closet", - "image": "files/06_1306.jpg", - "audio": "files/06_1306.mp3", - "audioMeaning": "files/06_1306_meaning.mp3", - "audioExample": "files/06_1306_example.mp3", - "textMeaning": "A closet is a small room used to store things.", - "textExample": "Marie has many clothes inside of her closet.", - "transcription": "[klɑ́zit]", - "__v": 0, - "textExampleTranslate": "У Мари много одежды в шкафу", - "textMeaningTranslate": "Шкаф - это маленькая комната для хранения вещей", - "wordTranslate": "стенной шкаф" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9bb" - }, - "group": 2, - "page": 5, - "word": "district", - "image": "files/06_1308.jpg", - "audio": "files/06_1308.mp3", - "audioMeaning": "files/06_1308_meaning.mp3", - "audioExample": "files/06_1308_example.mp3", - "textMeaning": "A district is a small part of a city, county, state, or country.", - "textExample": "I live in a residential district of Seattle, Washington.", - "transcription": "[dístrikt]", - "__v": 0, - "textExampleTranslate": "Я живу в жилом районе Сиэтла, штат Вашингтон", - "textMeaningTranslate": "Район - это небольшая часть города, округа, штата или страны", - "wordTranslate": "район" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ba" - }, - "group": 2, - "page": 5, - "word": "console", - "image": "files/06_1307.jpg", - "audio": "files/06_1307.mp3", - "audioMeaning": "files/06_1307_meaning.mp3", - "audioExample": "files/06_1307_example.mp3", - "textMeaning": "To console is to give comfort to a person who feels sad.", - "textExample": "When my dog ran away, my dad consoled me.", - "transcription": "[kənsóul]", - "__v": 0, - "textExampleTranslate": "Когда моя собака убежала, папа утешил меня", - "textMeaningTranslate": "Утешать - значит утешать человека, который грустит", - "wordTranslate": "приставка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9bc" - }, - "group": 2, - "page": 5, - "word": "drawer", - "image": "files/06_1309.jpg", - "audio": "files/06_1309.mp3", - "audioMeaning": "files/06_1309_meaning.mp3", - "audioExample": "files/06_1309_example.mp3", - "textMeaning": "A drawer is a small part in furniture that is used to store things.", - "textExample": "I put my clothes into the empty drawers.", - "transcription": "[drɔ́ːər]", - "__v": 0, - "textExampleTranslate": "Я положил свою одежду в пустые ящики", - "textMeaningTranslate": "Ящик - это небольшая часть мебели, которая используется для хранения вещей", - "wordTranslate": "выдвижной ящик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9bd" - }, - "group": 2, - "page": 5, - "word": "endure", - "image": "files/06_1310.jpg", - "audio": "files/06_1310.mp3", - "audioMeaning": "files/06_1310_meaning.mp3", - "audioExample": "files/06_1310_example.mp3", - "textMeaning": "To endure means to experience and survive something difficult.", - "textExample": "She had to endure her husband shouting all day long.", - "transcription": "[endjúər]", - "__v": 0, - "textExampleTranslate": "Она должна была терпеть, что ее муж весь день кричал", - "textMeaningTranslate": "Терпеть - значит переживать и переживать что-то трудное", - "wordTranslate": "терпеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9be" - }, - "group": 2, - "page": 5, - "word": "execute", - "image": "files/06_1311.jpg", - "audio": "files/06_1311.mp3", - "audioMeaning": "files/06_1311_meaning.mp3", - "audioExample": "files/06_1311_example.mp3", - "textMeaning": "To execute means to kill someone as a legal punishment.", - "textExample": "Some people are executed for serious crimes.", - "transcription": "[éksikjùːt]", - "__v": 0, - "textExampleTranslate": "Некоторые люди казнены за серьезные преступления", - "textMeaningTranslate": "Выполнить - значит убить кого-то как законное наказание", - "wordTranslate": "выполнить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9bf" - }, - "group": 2, - "page": 5, - "word": "grasp", - "image": "files/06_1312.jpg", - "audio": "files/06_1312.mp3", - "audioMeaning": "files/06_1312_meaning.mp3", - "audioExample": "files/06_1312_example.mp3", - "textMeaning": "To grasp something means to hold it.", - "textExample": "He grasped the bag of money tightly.", - "transcription": "[græsp]", - "__v": 0, - "textExampleTranslate": "Он крепко схватил мешок с деньгами", - "textMeaningTranslate": "Захватить что-то значит удержать это", - "wordTranslate": "ухватить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9c0" - }, - "group": 2, - "page": 5, - "word": "rear", - "image": "files/06_1313.jpg", - "audio": "files/06_1313.mp3", - "audioMeaning": "files/06_1313_meaning.mp3", - "audioExample": "files/06_1313_example.mp3", - "textMeaning": "The rear of something is the back part of that thing.", - "textExample": "The man loaded the rear of his truck with boxes.", - "transcription": "[riəːr]", - "__v": 0, - "textExampleTranslate": "Человек загрузил заднюю часть своего грузовика ящиками", - "textMeaningTranslate": "Задняя часть чего-то является задней частью этой вещи", - "wordTranslate": "задний" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9c2" - }, - "group": 2, - "page": 5, - "word": "skull", - "image": "files/06_1315.jpg", - "audio": "files/06_1315.mp3", - "audioMeaning": "files/06_1315_meaning.mp3", - "audioExample": "files/06_1315_example.mp3", - "textMeaning": "A skull is the hard head bone that protects the brain.", - "textExample": "The brain is protected by the skull.", - "transcription": "[skʌl]", - "__v": 0, - "textExampleTranslate": "Мозг защищен черепом", - "textMeaningTranslate": "Череп - это твердая кость головы, которая защищает мозг", - "wordTranslate": "череп" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9c1" - }, - "group": 2, - "page": 5, - "word": "senator", - "image": "files/06_1314.jpg", - "audio": "files/06_1314.mp3", - "audioMeaning": "files/06_1314_meaning.mp3", - "audioExample": "files/06_1314_example.mp3", - "textMeaning": "A senator is someone who makes laws for a state.", - "textExample": "The young senator promised to make laws that would help the people.", - "transcription": "[sénətər]", - "__v": 0, - "textExampleTranslate": "Молодой сенатор обещал принять законы, которые помогут людям", - "textMeaningTranslate": "Сенатор - это тот, кто создает законы для государства", - "wordTranslate": "сенатор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9c3" - }, - "group": 2, - "page": 5, - "word": "stir", - "image": "files/06_1316.jpg", - "audio": "files/06_1316.mp3", - "audioMeaning": "files/06_1316_meaning.mp3", - "audioExample": "files/06_1316_example.mp3", - "textMeaning": "To stir something means to mix it using something small, like a spoon.", - "textExample": "Mom stirred the batter until it was smooth.", - "transcription": "[stəːr]", - "__v": 0, - "textExampleTranslate": "Мама размешивала тесто, пока оно не стало гладким", - "textMeaningTranslate": "Размешать что-то означает смешать это, используя что-то маленькое, например, ложку", - "wordTranslate": "размешать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9c4" - }, - "group": 2, - "page": 5, - "word": "tap", - "image": "files/06_1317.jpg", - "audio": "files/06_1317.mp3", - "audioMeaning": "files/06_1317_meaning.mp3", - "audioExample": "files/06_1317_example.mp3", - "textMeaning": "To tap something is to hit it lightly.", - "textExample": "He tapped the keys of the keyboard to write a short word.", - "transcription": "[tæp]", - "__v": 0, - "textExampleTranslate": "Он постучал по клавишам клавиатуры, чтобы написать короткое слово", - "textMeaningTranslate": "Нажать на что-то - значит слегка ударить", - "wordTranslate": "нажмите" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9c7" - }, - "group": 2, - "page": 5, - "word": "worm", - "image": "files/06_1320.jpg", - "audio": "files/06_1320.mp3", - "audioMeaning": "files/06_1320_meaning.mp3", - "audioExample": "files/06_1320_example.mp3", - "textMeaning": "A worm is a small animal with a long, thin body.", - "textExample": "Worms are often used to help catch fish.", - "transcription": "[wəːrm]", - "__v": 0, - "textExampleTranslate": "Черви часто используются для ловли рыбы", - "textMeaningTranslate": "Червь - это маленькое животное с длинным тонким телом", - "wordTranslate": "червь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9c6" - }, - "group": 2, - "page": 5, - "word": "underneath", - "image": "files/06_1319.jpg", - "audio": "files/06_1319.mp3", - "audioMeaning": "files/06_1319_meaning.mp3", - "audioExample": "files/06_1319_example.mp3", - "textMeaning": "Underneath means below or under.", - "textExample": "The roots of a tree are located underneath the ground.", - "transcription": "[Λndərníːθ]", - "__v": 0, - "textExampleTranslate": "Корни дерева расположены под землей", - "textMeaningTranslate": "Под значит ниже или ниже", - "wordTranslate": "под" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9c5" - }, - "group": 2, - "page": 5, - "word": "tremendous", - "image": "files/06_1318.jpg", - "audio": "files/06_1318.mp3", - "audioMeaning": "files/06_1318_meaning.mp3", - "audioExample": "files/06_1318_example.mp3", - "textMeaning": "A tremendous thing is very large or very good.", - "textExample": "The Earth’s oceans are filled with a tremendous amount of water.", - "transcription": "[triméndəs]", - "__v": 0, - "textExampleTranslate": "Мировые океаны наполнены огромным количеством воды", - "textMeaningTranslate": "Потрясающая вещь очень большая или очень хорошая", - "wordTranslate": "огромный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9c8" - }, - "group": 2, - "page": 6, - "word": "abandon", - "image": "files/07_1321.jpg", - "audio": "files/07_1321.mp3", - "audioMeaning": "files/07_1321_meaning.mp3", - "audioExample": "files/07_1321_example.mp3", - "textMeaning": "To abandon something is to leave it forever or for a long time.", - "textExample": "The old room had been abandoned years before.", - "transcription": "[əbǽndən]", - "__v": 0, - "textExampleTranslate": "Старая комната была заброшена много лет назад", - "textMeaningTranslate": "Оставить что-то - значит оставить это навсегда или надолго", - "wordTranslate": "отказаться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9cc" - }, - "group": 2, - "page": 6, - "word": "brilliant", - "image": "files/07_1325.jpg", - "audio": "files/07_1325.mp3", - "audioMeaning": "files/07_1325_meaning.mp3", - "audioExample": "files/07_1325_example.mp3", - "textMeaning": "A brilliant person is very bright or smart.", - "textExample": "My younger sister is brilliant for someone her age.", - "transcription": "[bríljənt]", - "__v": 0, - "textExampleTranslate": "Моя младшая сестра великолепна для своего возраста", - "textMeaningTranslate": "Блестящий человек очень яркий или умный", - "wordTranslate": "блестящий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ca" - }, - "group": 2, - "page": 6, - "word": "bark", - "image": "files/07_1323.jpg", - "audio": "files/07_1323.mp3", - "audioMeaning": "files/07_1323_meaning.mp3", - "audioExample": "files/07_1323_example.mp3", - "textMeaning": "To bark is to make a short, loud noise, like a dog.", - "textExample": "The dog barked loudly and frighteningly.", - "transcription": "[baːrk]", - "__v": 0, - "textExampleTranslate": "Пес лаял громко и пугающе", - "textMeaningTranslate": "Лать - это издавать короткий, громкий шум, как собака", - "wordTranslate": "лай" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9c9" - }, - "group": 2, - "page": 6, - "word": "ambitious", - "image": "files/07_1322.jpg", - "audio": "files/07_1322.mp3", - "audioMeaning": "files/07_1322_meaning.mp3", - "audioExample": "files/07_1322_example.mp3", - "textMeaning": "An ambitious person wants to be rich or successful.", - "textExample": "Kendra had to be ambitious to get into medical school.", - "transcription": "[æmbíʃəs]", - "__v": 0, - "textExampleTranslate": "Кендре нужно было амбициозно поступить в медицинскую школу", - "textMeaningTranslate": "Амбициозный человек хочет быть богатым или успешным", - "wordTranslate": "честолюбивый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9cb" - }, - "group": 2, - "page": 6, - "word": "bay", - "image": "files/07_1324.jpg", - "audio": "files/07_1324.mp3", - "audioMeaning": "files/07_1324_meaning.mp3", - "audioExample": "files/07_1324_example.mp3", - "textMeaning": "A bay is an area near the ocean where the land goes inward.", - "textExample": "The Golden Gate Bridge crosses San Francisco Bay.", - "transcription": "[bei]", - "__v": 0, - "textExampleTranslate": "Мост Золотые Ворота пересекает залив Сан-Франциско", - "textMeaningTranslate": "Залив - это область около океана, где земля идет внутрь", - "wordTranslate": "залив" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9cd" - }, - "group": 2, - "page": 6, - "word": "chin", - "image": "files/07_1326.jpg", - "audio": "files/07_1326.mp3", - "audioMeaning": "files/07_1326_meaning.mp3", - "audioExample": "files/07_1326_example.mp3", - "textMeaning": "A chin is the hard part at the bottom of a person’s face.", - "textExample": "Luke pointed to the hair on his chin.", - "transcription": "[tʃin]", - "__v": 0, - "textExampleTranslate": "Люк указал на волосы на подбородке", - "textMeaningTranslate": "Подбородок - это твердая часть лица человека", - "wordTranslate": "подбородок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ce" - }, - "group": 2, - "page": 6, - "word": "complaint", - "image": "files/07_1327.jpg", - "audio": "files/07_1327.mp3", - "audioMeaning": "files/07_1327_meaning.mp3", - "audioExample": "files/07_1327_example.mp3", - "textMeaning": "A complaint is an expression of unhappiness about something.", - "textExample": "Mom said she didn’t want to hear my brother’s complaints.", - "transcription": "[kəmpléint]", - "__v": 0, - "textExampleTranslate": "Мама сказала, что не хочет слышать жалобы моего брата", - "textMeaningTranslate": "Жалоба - это выражение несчастья о чем-то", - "wordTranslate": "жалоба" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9d0" - }, - "group": 2, - "page": 6, - "word": "enthusiastic", - "image": "files/07_1329.jpg", - "audio": "files/07_1329.mp3", - "audioMeaning": "files/07_1329_meaning.mp3", - "audioExample": "files/07_1329_example.mp3", - "textMeaning": "An enthusiastic person is excited by or interested in something.", - "textExample": "The man was enthusiastic about his job.", - "transcription": "[inθùːziǽstik]", - "__v": 0, - "textExampleTranslate": "Человек был в восторге от своей работы", - "textMeaningTranslate": "Восторженный человек чем-то увлечен или заинтересован", - "wordTranslate": "энтузиазм" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9cf" - }, - "group": 2, - "page": 6, - "word": "deaf", - "image": "files/07_1328.jpg", - "audio": "files/07_1328.mp3", - "audioMeaning": "files/07_1328_meaning.mp3", - "audioExample": "files/07_1328_example.mp3", - "textMeaning": "A deaf person or animal cannot hear.", - "textExample": "Susan uses sign language because she is deaf.", - "transcription": "[def]", - "__v": 0, - "textExampleTranslate": "Сьюзен использует язык жестов, потому что она глухая", - "textMeaningTranslate": "Глухой человек или животное не слышат", - "wordTranslate": "глухой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9d1" - }, - "group": 2, - "page": 6, - "word": "expedition", - "image": "files/07_1330.jpg", - "audio": "files/07_1330.mp3", - "audioMeaning": "files/07_1330_meaning.mp3", - "audioExample": "files/07_1330_example.mp3", - "textMeaning": "An expedition is a long trip, usually to a place very far away.", - "textExample": "They got into their spaceship to begin their expedition.", - "transcription": "[èkspədíʃən]", - "__v": 0, - "textExampleTranslate": "Они сели в свой космический корабль, чтобы начать свою экспедицию", - "textMeaningTranslate": "Экспедиция - это долгое путешествие, обычно в очень далекое место", - "wordTranslate": "экспедиция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9d2" - }, - "group": 2, - "page": 6, - "word": "horizon", - "image": "files/07_1331.jpg", - "audio": "files/07_1331.mp3", - "audioMeaning": "files/07_1331_meaning.mp3", - "audioExample": "files/07_1331_example.mp3", - "textMeaning": "The horizon is where the sky looks like it meets the ground.", - "textExample": "The sun dipped below the horizon.", - "transcription": "[həráizn]", - "__v": 0, - "textExampleTranslate": "Солнце опустилось за горизонт", - "textMeaningTranslate": "Горизонт - это то, где небо выглядит так, будто оно встречается с землей", - "wordTranslate": "горизонт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9d3" - }, - "group": 2, - "page": 6, - "word": "loyal", - "image": "files/07_1332.jpg", - "audio": "files/07_1332.mp3", - "audioMeaning": "files/07_1332_meaning.mp3", - "audioExample": "files/07_1332_example.mp3", - "textMeaning": "Loyal people always help or support a certain person or thing.", - "textExample": "The three friends are very loyal to each other.", - "transcription": "[lɔ́iəl]", - "__v": 0, - "textExampleTranslate": "Трое друзей очень преданы друг другу", - "textMeaningTranslate": "Верные люди всегда помогают или поддерживают определенного человека или вещь", - "wordTranslate": "верный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9d4" - }, - "group": 2, - "page": 6, - "word": "mayor", - "image": "files/07_1333.jpg", - "audio": "files/07_1333.mp3", - "audioMeaning": "files/07_1333_meaning.mp3", - "audioExample": "files/07_1333_example.mp3", - "textMeaning": "The mayor is the person in charge of a city.", - "textExample": "The mayor of my hometown is quite a powerful speaker.", - "transcription": "[méiəːr]", - "__v": 0, - "textExampleTranslate": "Мэр моего родного города довольно мощный оратор", - "textMeaningTranslate": "Мэр - лицо, ответственное за город", - "wordTranslate": "мэр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9d5" - }, - "group": 2, - "page": 6, - "word": "mutual", - "image": "files/07_1334.jpg", - "audio": "files/07_1334.mp3", - "audioMeaning": "files/07_1334_meaning.mp3", - "audioExample": "files/07_1334_example.mp3", - "textMeaning": "A mutual thing is felt in the same way by two or more people.", - "textExample": "Robert likes Sarah, and she likes him. The feeling is mutual.", - "transcription": "[mjúːtʃuəl]", - "__v": 0, - "textExampleTranslate": "Роберту нравится Сара, и она любит его. Чувство взаимно", - "textMeaningTranslate": "Взаимная вещь ощущается одинаково двумя или более людьми", - "wordTranslate": "взаимный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9d6" - }, - "group": 2, - "page": 6, - "word": "overweight", - "image": "files/07_1335.jpg", - "audio": "files/07_1335.mp3", - "audioMeaning": "files/07_1335_meaning.mp3", - "audioExample": "files/07_1335_example.mp3", - "textMeaning": "Overweight people or animals are heavier than is healthy.", - "textExample": "Lisa eats too much, so now she’s overweight.", - "transcription": "[òuvərwéit]", - "__v": 0, - "textExampleTranslate": "Лиза ест слишком много, так что теперь она весит больше нормы", - "textMeaningTranslate": "Люди или животные с избыточным весом тяжелее здоровых", - "wordTranslate": "избыточный вес" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9d7" - }, - "group": 2, - "page": 6, - "word": "refuge", - "image": "files/07_1336.jpg", - "audio": "files/07_1336.mp3", - "audioMeaning": "files/07_1336_meaning.mp3", - "audioExample": "files/07_1336_example.mp3", - "textMeaning": "A refuge is a place of safety.", - "textExample": "When it started to rain, she found refuge in the house.", - "transcription": "[réfjuːdʒ]", - "__v": 0, - "textExampleTranslate": "Когда начался дождь, она нашла убежище в доме", - "textMeaningTranslate": "Убежище - это безопасное место", - "wordTranslate": "убежище" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9d8" - }, - "group": 2, - "page": 6, - "word": "restore", - "image": "files/07_1337.jpg", - "audio": "files/07_1337.mp3", - "audioMeaning": "files/07_1337_meaning.mp3", - "audioExample": "files/07_1337_example.mp3", - "textMeaning": "To restore something is to put it back the way it was.", - "textExample": "Victor restored the old car.", - "transcription": "[ristɔ́ːr]", - "__v": 0, - "textExampleTranslate": "Виктор восстановил старую машину", - "textMeaningTranslate": "Восстановить что-то - значит вернуть это так, как было", - "wordTranslate": "восстановить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9da" - }, - "group": 2, - "page": 6, - "word": "senses", - "image": "files/07_1339.jpg", - "audio": "files/07_1339.mp3", - "audioMeaning": "files/07_1339_meaning.mp3", - "audioExample": "files/07_1339_example.mp3", - "textMeaning": "The senses are how living things experience the world: sight, taste, smell, hearing and touch.", - "textExample": "It would be hard to live without your five senses.", - "transcription": "[sensiz]", - "__v": 0, - "textExampleTranslate": "Было бы трудно жить без твоих пяти чувств", - "textMeaningTranslate": "Чувства - это то, как живые существа испытывают мир: зрение, вкус, обоняние, слух и осязание", - "wordTranslate": "чувство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9d9" - }, - "group": 2, - "page": 6, - "word": "rub", - "image": "files/07_1338.jpg", - "audio": "files/07_1338.mp3", - "audioMeaning": "files/07_1338_meaning.mp3", - "audioExample": "files/07_1338_example.mp3", - "textMeaning": "To rub something is to push on it and move your hand back and forth.", - "textExample": "Mom’s feet were sore, so she rubbed them.", - "transcription": "[rʌb]", - "__v": 0, - "textExampleTranslate": "У мамы болели ноги, поэтому она потерла их", - "textMeaningTranslate": "Потирать что-то - значит давить на него и двигать рукой вперед-назад", - "wordTranslate": "тереть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9db" - }, - "group": 2, - "page": 6, - "word": "veterinarian", - "image": "files/07_1340.jpg", - "audio": "files/07_1340.mp3", - "audioMeaning": "files/07_1340_meaning.mp3", - "audioExample": "files/07_1340_example.mp3", - "textMeaning": "A veterinarian is a doctor who takes care of animals.", - "textExample": "Wanda became a veterinarian because she loves dogs.", - "transcription": "[vètərənέəriən]", - "__v": 0, - "textExampleTranslate": "Ванда стала ветеринаром, потому что она любит собак", - "textMeaningTranslate": "Ветеринар - это врач, который заботится о животных", - "wordTranslate": "ветеринар" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9dc" - }, - "group": 2, - "page": 7, - "word": "anniversary", - "image": "files/08_1341.jpg", - "audio": "files/08_1341.mp3", - "audioMeaning": "files/08_1341_meaning.mp3", - "audioExample": "files/08_1341_example.mp3", - "textMeaning": "An anniversary is a day that celebrates something from the past.", - "textExample": "My parents went out to a restaurant for their wedding anniversary.", - "transcription": "[ӕnəvə́ːrsəri]", - "__v": 0, - "textExampleTranslate": "Мои родители вышли в ресторан на годовщину свадьбы", - "textMeaningTranslate": "Юбилей - это день, который празднует что-то из прошлого", - "wordTranslate": "годовщина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9dd" - }, - "group": 2, - "page": 7, - "word": "arithmetic", - "image": "files/08_1342.jpg", - "audio": "files/08_1342.mp3", - "audioMeaning": "files/08_1342_meaning.mp3", - "audioExample": "files/08_1342_example.mp3", - "textMeaning": "Arithmetic is math.", - "textExample": "I like to study arithmetic at school.", - "transcription": "[əríθmətik]", - "__v": 0, - "textExampleTranslate": "Мне нравится изучать арифметику в школе", - "textMeaningTranslate": "Арифметика - это математика", - "wordTranslate": "арифметика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9de" - }, - "group": 2, - "page": 7, - "word": "ashamed", - "image": "files/08_1343.jpg", - "audio": "files/08_1343.mp3", - "audioMeaning": "files/08_1343_meaning.mp3", - "audioExample": "files/08_1343_example.mp3", - "textMeaning": "Ashamed means feeling upset and embarrassed because of a bad action.", - "textExample": "He was ashamed when he forgot his teacher’s name.", - "transcription": "[əʃéimd]", - "__v": 0, - "textExampleTranslate": "Ему было стыдно, когда он забыл имя своего учителя", - "textMeaningTranslate": "Стыдно означает чувствовать себя расстроенным и смущенным из-за плохих действий", - "wordTranslate": "стыдно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9df" - }, - "group": 2, - "page": 7, - "word": "burst", - "image": "files/08_1344.jpg", - "audio": "files/08_1344.mp3", - "audioMeaning": "files/08_1344_meaning.mp3", - "audioExample": "files/08_1344_example.mp3", - "textMeaning": "To burst is to suddenly break open or apart.", - "textExample": "The bomb burst over the city.", - "transcription": "[bəːrst]", - "__v": 0, - "textExampleTranslate": "Взрыв бомбы над городом", - "textMeaningTranslate": "Ворваться - это внезапно раскрыться или разойтись", - "wordTranslate": "взрыв" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9e0" - }, - "group": 2, - "page": 7, - "word": "carpenter", - "image": "files/08_1345.jpg", - "audio": "files/08_1345.mp3", - "audioMeaning": "files/08_1345_meaning.mp3", - "audioExample": "files/08_1345_example.mp3", - "textMeaning": "A carpenter is a person who builds things with wood.", - "textExample": "We hired a carpenter to make a cupboard.", - "transcription": "[kɑ́ːrpəntər]", - "__v": 0, - "textExampleTranslate": "Мы наняли плотника, чтобы сделать шкаф", - "textMeaningTranslate": "Плотник - это человек, который строит вещи из дерева", - "wordTranslate": "плотник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9e1" - }, - "group": 2, - "page": 7, - "word": "coal", - "image": "files/08_1346.jpg", - "audio": "files/08_1346.mp3", - "audioMeaning": "files/08_1346_meaning.mp3", - "audioExample": "files/08_1346_example.mp3", - "textMeaning": "Coal is a hard black material that people burn for heat.", - "textExample": "Many power stations burn coal to produce energy.", - "transcription": "[koul]", - "__v": 0, - "textExampleTranslate": "Многие электростанции сжигают уголь для производства энергии", - "textMeaningTranslate": "Уголь - твердый черный материал, который люди сжигают для тепла", - "wordTranslate": "уголь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9e2" - }, - "group": 2, - "page": 7, - "word": "couch", - "image": "files/08_1347.jpg", - "audio": "files/08_1347.mp3", - "audioMeaning": "files/08_1347_meaning.mp3", - "audioExample": "files/08_1347_example.mp3", - "textMeaning": "A couch is a long, soft seat that many people can sit on.", - "textExample": "Kim and Martin’s new couch was very expensive.", - "transcription": "[kautʃ]", - "__v": 0, - "textExampleTranslate": "Новый диван Ким и Мартина был очень дорогим", - "textMeaningTranslate": "Диван - это длинное мягкое сиденье, на котором могут сидеть многие люди", - "wordTranslate": "диван" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9e3" - }, - "group": 2, - "page": 7, - "word": "drip", - "image": "files/08_1348.jpg", - "audio": "files/08_1348.mp3", - "audioMeaning": "files/08_1348_meaning.mp3", - "audioExample": "files/08_1348_example.mp3", - "textMeaning": "To drip is to fall a little bit at a time.", - "textExample": "I heard water dripping from the faucet.", - "transcription": "[drip]", - "__v": 0, - "textExampleTranslate": "Я слышал, как вода капала из крана", - "textMeaningTranslate": "Капать - значит падать немного за раз", - "wordTranslate": "капать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9e4" - }, - "group": 2, - "page": 7, - "word": "elegant", - "image": "files/08_1349.jpg", - "audio": "files/08_1349.mp3", - "audioMeaning": "files/08_1349_meaning.mp3", - "audioExample": "files/08_1349_example.mp3", - "textMeaning": "Something elegant is very fancy and pleasing.", - "textExample": "In Japan, women wear elegant kimonos on special occasions.", - "transcription": "[éligənt]", - "__v": 0, - "textExampleTranslate": "В Японии женщины носят элегантные кимоно в особых случаях", - "textMeaningTranslate": "Что-то элегантное очень модно и приятно", - "wordTranslate": "элегантный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9e5" - }, - "group": 2, - "page": 7, - "word": "fabric", - "image": "files/08_1350.jpg", - "audio": "files/08_1350.mp3", - "audioMeaning": "files/08_1350_meaning.mp3", - "audioExample": "files/08_1350_example.mp3", - "textMeaning": "Fabric is cloth used to make clothes, furniture, etc.", - "textExample": "The towels were made from a soft fabric.", - "transcription": "[fæbrik]", - "__v": 0, - "textExampleTranslate": "Полотенца были сделаны из мягкой ткани", - "textMeaningTranslate": "Ткань - это ткань, используемая для изготовления одежды, мебели и т. Д", - "wordTranslate": "ткань" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9e6" - }, - "group": 2, - "page": 7, - "word": "highlands", - "image": "files/08_1351.jpg", - "audio": "files/08_1351.mp3", - "audioMeaning": "files/08_1351_meaning.mp3", - "audioExample": "files/08_1351_example.mp3", - "textMeaning": "Highlands are high areas of land, usually with mountains.", - "textExample": "The man had a small home in the highlands.", - "transcription": "[háiləndz]", - "__v": 0, - "textExampleTranslate": "У этого человека был маленький дом в горах", - "textMeaningTranslate": "Высокогорье - это высокие земли, обычно с горами", - "wordTranslate": "высокогорье" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9e8" - }, - "group": 2, - "page": 7, - "word": "mill", - "image": "files/08_1353.jpg", - "audio": "files/08_1353.mp3", - "audioMeaning": "files/08_1353_meaning.mp3", - "audioExample": "files/08_1353_example.mp3", - "textMeaning": "A mill is a building in which wheat is ground into flour.", - "textExample": "The farmer took his wheat to the mill to make it into flour.", - "transcription": "[mil]", - "__v": 0, - "textExampleTranslate": "Фермер взял свою пшеницу на мельницу, чтобы превратить ее в муку", - "textMeaningTranslate": "Мельница - это здание, в котором пшеница измельчается в муку", - "wordTranslate": "мельница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9e7" - }, - "group": 2, - "page": 7, - "word": "ivory", - "image": "files/08_1352.jpg", - "audio": "files/08_1352.mp3", - "audioMeaning": "files/08_1352_meaning.mp3", - "audioExample": "files/08_1352_example.mp3", - "textMeaning": "Ivory is a hard, white substance that comes from elephants.", - "textExample": "The elephant’s long ivory tusks looked very impressive.", - "transcription": "[áivəri]", - "__v": 0, - "textExampleTranslate": "Длинные клыки слона выглядели очень впечатляюще", - "textMeaningTranslate": "Слоновая кость - это твердое белое вещество, полученное от слонов", - "wordTranslate": "слоновая кость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9e9" - }, - "group": 2, - "page": 7, - "word": "needle", - "image": "files/08_1354.jpg", - "audio": "files/08_1354.mp3", - "audioMeaning": "files/08_1354_meaning.mp3", - "audioExample": "files/08_1354_example.mp3", - "textMeaning": "A needle is a small, sharp piece of metal used to make or fix clothes.", - "textExample": "I used a needle to fix the hole in my pants.", - "transcription": "[níːdl]", - "__v": 0, - "textExampleTranslate": "Я использовал иглу, чтобы исправить дыру в штанах", - "textMeaningTranslate": "Игла - это маленький острый кусок металла, который используется для изготовления или ремонта одежды", - "wordTranslate": "игла" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ea" - }, - "group": 2, - "page": 7, - "word": "polish", - "image": "files/08_1355.jpg", - "audio": "files/08_1355.mp3", - "audioMeaning": "files/08_1355_meaning.mp3", - "audioExample": "files/08_1355_example.mp3", - "textMeaning": "To polish something is to rub it in order to make it shiny.", - "textExample": "Mark spent all morning polishing his shoes for the wedding.", - "transcription": "[pɑ́liʃ]", - "__v": 0, - "textExampleTranslate": "Марк провел все утро, полируя свою обувь для свадьбы", - "textMeaningTranslate": "Полировать что-то - это натирать, чтобы оно было блестящим", - "wordTranslate": "польский" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9eb" - }, - "group": 2, - "page": 7, - "word": "sew", - "image": "files/08_1356.jpg", - "audio": "files/08_1356.mp3", - "audioMeaning": "files/08_1356_meaning.mp3", - "audioExample": "files/08_1356_example.mp3", - "textMeaning": "To sew means to put pieces of cloth together using string or thread.", - "textExample": "I learned to sew when I was a little girl.", - "transcription": "[sou]", - "__v": 0, - "textExampleTranslate": "Я научился шить, когда был маленькой девочкой", - "textMeaningTranslate": "Шить означает соединять кусочки ткани ниткой или ниткой", - "wordTranslate": "шьют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ec" - }, - "group": 2, - "page": 7, - "word": "shed", - "image": "files/08_1357.jpg", - "audio": "files/08_1357.mp3", - "audioMeaning": "files/08_1357_meaning.mp3", - "audioExample": "files/08_1357_example.mp3", - "textMeaning": "A shed is a small building in which people store things like tools.", - "textExample": "We have a small shed in the backyard for storage.", - "transcription": "[ʃed]", - "__v": 0, - "textExampleTranslate": "У нас есть небольшой сарай на заднем дворе для хранения", - "textMeaningTranslate": "Сарай - это небольшое здание, в котором люди хранят такие вещи, как инструменты", - "wordTranslate": "сарай" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ed" - }, - "group": 2, - "page": 7, - "word": "thread", - "image": "files/08_1358.jpg", - "audio": "files/08_1358.mp3", - "audioMeaning": "files/08_1358_meaning.mp3", - "audioExample": "files/08_1358_example.mp3", - "textMeaning": "A thread is a thin piece of string.", - "textExample": "I have many different colors of thread at home.", - "transcription": "[θred]", - "__v": 0, - "textExampleTranslate": "У меня дома много разных цветов ниток", - "textMeaningTranslate": "Нить - это тонкий кусок нити", - "wordTranslate": "нить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ee" - }, - "group": 2, - "page": 7, - "word": "trim", - "image": "files/08_1359.jpg", - "audio": "files/08_1359.mp3", - "audioMeaning": "files/08_1359_meaning.mp3", - "audioExample": "files/08_1359_example.mp3", - "textMeaning": "To trim something is to cut it a little bit.", - "textExample": "I had my hair trimmed this afternoon.", - "transcription": "[trim]", - "__v": 0, - "textExampleTranslate": "Мне подстригли сегодня днем", - "textMeaningTranslate": "Обрезать что-то - значит немного обрезать", - "wordTranslate": "отделка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ef" - }, - "group": 2, - "page": 7, - "word": "upwards", - "image": "files/08_1360.jpg", - "audio": "files/08_1360.mp3", - "audioMeaning": "files/08_1360_meaning.mp3", - "audioExample": "files/08_1360_example.mp3", - "textMeaning": "An upwards action moves vertically towards the direction above.", - "textExample": "The kite went upwards further and further.", - "transcription": "[ʌ́pwərdz]", - "__v": 0, - "textExampleTranslate": "Воздушный змей шел вверх и дальше", - "textMeaningTranslate": "Действие вверх движется вертикально в направлении выше", - "wordTranslate": "снизу вверх" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9f0" - }, - "group": 2, - "page": 8, - "word": "ally", - "image": "files/09_1361.jpg", - "audio": "files/09_1361.mp3", - "audioMeaning": "files/09_1361_meaning.mp3", - "audioExample": "files/09_1361_example.mp3", - "textMeaning": "An ally is someone who agrees to help or support another person or group.", - "textExample": "I was happy to find many allies who shared my opinion.", - "transcription": "[ǽlai]", - "__v": 0, - "textExampleTranslate": "Я был счастлив найти много союзников, которые разделяли мое мнение", - "textMeaningTranslate": "Союзник - это тот, кто соглашается помогать или поддерживать другого человека или группу", - "wordTranslate": "союзник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9f1" - }, - "group": 2, - "page": 8, - "word": "boast", - "image": "files/09_1362.jpg", - "audio": "files/09_1362.mp3", - "audioMeaning": "files/09_1362_meaning.mp3", - "audioExample": "files/09_1362_example.mp3", - "textMeaning": "To boast is to talk about how great one is.", - "textExample": "We all became tired of listening to him boast about himself all day.", - "transcription": "[boust]", - "__v": 0, - "textExampleTranslate": "Мы все устали слушать его хвастовство о себе весь день", - "textMeaningTranslate": "Хвастаться - значит говорить о том, какой ты великий", - "wordTranslate": "хвастовство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9f3" - }, - "group": 2, - "page": 8, - "word": "bully", - "image": "files/09_1364.jpg", - "audio": "files/09_1364.mp3", - "audioMeaning": "files/09_1364_meaning.mp3", - "audioExample": "files/09_1364_example.mp3", - "textMeaning": "A bully is a person who is mean to others.", - "textExample": "The two bullies always picked on the smaller, weaker kids.", - "transcription": "[búli]", - "__v": 0, - "textExampleTranslate": "Два хулигана всегда выбирают более слабых детей", - "textMeaningTranslate": "Хулиган - это человек, который подлый для других", - "wordTranslate": "хулиган" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9f2" - }, - "group": 2, - "page": 8, - "word": "bounce", - "image": "files/09_1363.jpg", - "audio": "files/09_1363.mp3", - "audioMeaning": "files/09_1363_meaning.mp3", - "audioExample": "files/09_1363_example.mp3", - "textMeaning": "To bounce is to move up and away from a surface after hitting it.", - "textExample": "Owen bounced the ball on the ground.", - "transcription": "[bauns]", - "__v": 0, - "textExampleTranslate": "Оуэн отскочил мяч на землю", - "textMeaningTranslate": "Прыгать - значит двигаться вверх и от поверхности после удара по ней", - "wordTranslate": "подпрыгивать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9f4" - }, - "group": 2, - "page": 8, - "word": "carbohydrate", - "image": "files/09_1365.jpg", - "audio": "files/09_1365.mp3", - "audioMeaning": "files/09_1365_meaning.mp3", - "audioExample": "files/09_1365_example.mp3", - "textMeaning": "Carbohydrates are substances in foods like bread that give energy.", - "textExample": "Carbohydrates like rice are a good source of energy for active people.", - "transcription": "[kὰːrbouháidreit]", - "__v": 0, - "textExampleTranslate": "Углеводы, такие как рис, являются хорошим источником энергии для активных людей", - "textMeaningTranslate": "Углеводы - это вещества в таких продуктах, как хлеб, которые дают энергию", - "wordTranslate": "углевод" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9f5" - }, - "group": 2, - "page": 8, - "word": "crawl", - "image": "files/09_1366.jpg", - "audio": "files/09_1366.mp3", - "audioMeaning": "files/09_1366_meaning.mp3", - "audioExample": "files/09_1366_example.mp3", - "textMeaning": "To crawl is to move slowly on hands and knees.", - "textExample": "The baby crawled across the floor.", - "transcription": "[krɔːl]", - "__v": 0, - "textExampleTranslate": "Ребенок ползал по полу", - "textMeaningTranslate": "Ползать - значит медленно двигаться на руках и коленях", - "wordTranslate": "ползти" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9f6" - }, - "group": 2, - "page": 8, - "word": "defeat", - "image": "files/09_1367.jpg", - "audio": "files/09_1367.mp3", - "audioMeaning": "files/09_1367_meaning.mp3", - "audioExample": "files/09_1367_example.mp3", - "textMeaning": "To defeat someone is to beat that person in a game or battle.", - "textExample": "The champion defeated the challenger in the boxing match.", - "transcription": "[difíːt]", - "__v": 0, - "textExampleTranslate": "Чемпион победил претендента в боксерском поединке", - "textMeaningTranslate": "Победить кого-то - значит победить этого человека в игре или битве", - "wordTranslate": "поражение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9f7" - }, - "group": 2, - "page": 8, - "word": "dial", - "image": "files/09_1368.jpg", - "audio": "files/09_1368.mp3", - "audioMeaning": "files/09_1368_meaning.mp3", - "audioExample": "files/09_1368_example.mp3", - "textMeaning": "A dial is a circular tool, like the front of a clock.", - "textExample": "I looked at the dial to see what time it was.", - "transcription": "[dáiəl]", - "__v": 0, - "textExampleTranslate": "Я посмотрел на циферблат, чтобы увидеть, который час", - "textMeaningTranslate": "Циферблат - это круглый инструмент, похожий на фронт часов", - "wordTranslate": "набирать номер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9f8" - }, - "group": 2, - "page": 8, - "word": "dominant", - "image": "files/09_1369.jpg", - "audio": "files/09_1369.mp3", - "audioMeaning": "files/09_1369_meaning.mp3", - "audioExample": "files/09_1369_example.mp3", - "textMeaning": "A dominant person or thing is stronger than others.", - "textExample": "The gorilla is one of the dominant animals in the jungle.", - "transcription": "[dɑ́mənənt]", - "__v": 0, - "textExampleTranslate": "Горилла является одним из доминирующих животных в джунглях", - "textMeaningTranslate": "Доминирующий человек или вещь сильнее других", - "wordTranslate": "доминирующий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9f9" - }, - "group": 2, - "page": 8, - "word": "entire", - "image": "files/09_1370.jpg", - "audio": "files/09_1370.mp3", - "audioMeaning": "files/09_1370_meaning.mp3", - "audioExample": "files/09_1370_example.mp3", - "textMeaning": "Entire means the whole thing or group.", - "textExample": "The entire table was covered with food.", - "transcription": "[intáiər]", - "__v": 0, - "textExampleTranslate": "Весь стол был накрыт едой", - "textMeaningTranslate": "Целое означает целое или группу", - "wordTranslate": "весь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9fa" - }, - "group": 2, - "page": 8, - "word": "mercy", - "image": "files/09_1371.jpg", - "audio": "files/09_1371.mp3", - "audioMeaning": "files/09_1371_meaning.mp3", - "audioExample": "files/09_1371_example.mp3", - "textMeaning": "Mercy is a feeling or act of kindness.", - "textExample": "He asked his boss for mercy and to not fire him.", - "transcription": "[mə́ːrsi]", - "__v": 0, - "textExampleTranslate": "Он попросил своего босса о пощаде и не уволить его", - "textMeaningTranslate": "Милосердие - это чувство или доброта", - "wordTranslate": "милость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9fb" - }, - "group": 2, - "page": 8, - "word": "nod", - "image": "files/09_1372.jpg", - "audio": "files/09_1372.mp3", - "audioMeaning": "files/09_1372_meaning.mp3", - "audioExample": "files/09_1372_example.mp3", - "textMeaning": "To nod is to move your head up and down.", - "textExample": "I nodded my head as I listened to the song.", - "transcription": "[nɑd]", - "__v": 0, - "textExampleTranslate": "Я кивнул головой, слушая песню", - "textMeaningTranslate": "Кивать - значит двигать головой вверх и вниз", - "wordTranslate": "кивать головой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9fc" - }, - "group": 2, - "page": 8, - "word": "opponent", - "image": "files/09_1373.jpg", - "audio": "files/09_1373.mp3", - "audioMeaning": "files/09_1373_meaning.mp3", - "audioExample": "files/09_1373_example.mp3", - "textMeaning": "An opponent is a person or group trying to defeat another person or group.", - "textExample": "On the field, our opponents were too good for us.", - "transcription": "[əpóunənt]", - "__v": 0, - "textExampleTranslate": "На поле наши соперники были слишком хороши для нас", - "textMeaningTranslate": "Противник - это человек или группа, пытающиеся победить другого человека или группу", - "wordTranslate": "противник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9fd" - }, - "group": 2, - "page": 8, - "word": "quarrel", - "image": "files/09_1374.jpg", - "audio": "files/09_1374.mp3", - "audioMeaning": "files/09_1374_meaning.mp3", - "audioExample": "files/09_1374_example.mp3", - "textMeaning": "To quarrel is to argue or fight.", - "textExample": "Billy quarreled with his wife about buying a new house.", - "transcription": "[kwɔ́ːrəl]", - "__v": 0, - "textExampleTranslate": "Билли поссорился со своей женой о покупке нового дома", - "textMeaningTranslate": "Ссориться - значит спорить или бороться", - "wordTranslate": "ссориться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9fe" - }, - "group": 2, - "page": 8, - "word": "rival", - "image": "files/09_1375.jpg", - "audio": "files/09_1375.mp3", - "audioMeaning": "files/09_1375_meaning.mp3", - "audioExample": "files/09_1375_example.mp3", - "textMeaning": "A rival is someone trying to achieve the same thing as another.", - "textExample": "The three rivals were all competing for the same job.", - "transcription": "[ráivəl]", - "__v": 0, - "textExampleTranslate": "Все три соперника боролись за одну и ту же работу", - "textMeaningTranslate": "Соперник - это тот, кто пытается достичь того же, что и другой", - "wordTranslate": "конкурент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21af9ff" - }, - "group": 2, - "page": 8, - "word": "sore", - "image": "files/09_1376.jpg", - "audio": "files/09_1376.mp3", - "audioMeaning": "files/09_1376_meaning.mp3", - "audioExample": "files/09_1376_example.mp3", - "textMeaning": "Sore means feeling or causing pain.", - "textExample": "After lifting the heavy box, Mona’s back was sore.", - "transcription": "[sɔːr]", - "__v": 0, - "textExampleTranslate": "Подняв тяжелый ящик, у Моны болела спина", - "textMeaningTranslate": "Болит значит чувствовать или причинять боль", - "wordTranslate": "боль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa00" - }, - "group": 2, - "page": 8, - "word": "sting", - "image": "files/09_1377.jpg", - "audio": "files/09_1377.mp3", - "audioMeaning": "files/09_1377_meaning.mp3", - "audioExample": "files/09_1377_example.mp3", - "textMeaning": "To sting is to cause pain by pushing a sharp part into the skin.", - "textExample": "The needle stung my arm and made me say, “Ouch!”", - "transcription": "[stiŋ]", - "__v": 0, - "textExampleTranslate": "Игла ужалила мне руку и заставила сказать: 'Ой!'", - "textMeaningTranslate": "Жалить - значит причинять боль, проталкивая острую часть в кожу", - "wordTranslate": "жалить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa01" - }, - "group": 2, - "page": 8, - "word": "strain", - "image": "files/09_1378.jpg", - "audio": "files/09_1378.mp3", - "audioMeaning": "files/09_1378_meaning.mp3", - "audioExample": "files/09_1378_example.mp3", - "textMeaning": "To strain is to try very hard.", - "textExample": "Casey strained to lift the heavy box.", - "transcription": "[strein]", - "__v": 0, - "textExampleTranslate": "Кейси напряглась, чтобы поднять тяжелую коробку", - "textMeaningTranslate": "Напрягать - значит очень стараться", - "wordTranslate": "напряжение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa02" - }, - "group": 2, - "page": 8, - "word": "torture", - "image": "files/09_1379.jpg", - "audio": "files/09_1379.mp3", - "audioMeaning": "files/09_1379_meaning.mp3", - "audioExample": "files/09_1379_example.mp3", - "textMeaning": "Torture is action that causes physical or mental pain.", - "textExample": "Greg thought that writing the essay was torture.", - "transcription": "[tɔ́ːrʧər]", - "__v": 0, - "textExampleTranslate": "Грег думал, что написание эссе было пыткой", - "textMeaningTranslate": "Пытка - это действие, которое вызывает физическую или психическую боль", - "wordTranslate": "пытать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa03" - }, - "group": 2, - "page": 8, - "word": "wrestle", - "image": "files/09_1380.jpg", - "audio": "files/09_1380.mp3", - "audioMeaning": "files/09_1380_meaning.mp3", - "audioExample": "files/09_1380_example.mp3", - "textMeaning": "To wrestle is to try to push another competitor to the floor.", - "textExample": "My dad loved to wrestle when he was in high school.", - "transcription": "[résl]", - "__v": 0, - "textExampleTranslate": "Мой папа любил бороться, когда учился в средней школе", - "textMeaningTranslate": "Бороться - значит пытаться толкнуть другого участника на пол", - "wordTranslate": "бороться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa04" - }, - "group": 2, - "page": 9, - "word": "absence", - "image": "files/10_1381.jpg", - "audio": "files/10_1381.mp3", - "audioMeaning": "files/10_1381_meaning.mp3", - "audioExample": "files/10_1381_example.mp3", - "textMeaning": "Absence is the state of something being away.", - "textExample": "There is an absence of sand in the hourglass.", - "transcription": "[ǽbsəns]", - "__v": 0, - "textExampleTranslate": "В песочных часах нет песка", - "textMeaningTranslate": "Отсутствие - это состояние чего-то находящегося вдали", - "wordTranslate": "отсутствие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa05" - }, - "group": 2, - "page": 9, - "word": "aloud", - "image": "files/10_1382.jpg", - "audio": "files/10_1382.mp3", - "audioMeaning": "files/10_1382_meaning.mp3", - "audioExample": "files/10_1382_example.mp3", - "textMeaning": "An action done aloud is done so that people can hear it.", - "textExample": "My father often reads stories aloud to me and my sister.", - "transcription": "[əláud]", - "__v": 0, - "textExampleTranslate": "Мой отец часто читает вслух истории мне и моей сестре", - "textMeaningTranslate": "Действие, совершаемое вслух, делается для того, чтобы люди могли его услышать", - "wordTranslate": "вслух" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa07" - }, - "group": 2, - "page": 9, - "word": "bald", - "image": "files/10_1383.jpg", - "audio": "files/10_1383.mp3", - "audioMeaning": "files/10_1383_meaning.mp3", - "audioExample": "files/10_1383_example.mp3", - "textMeaning": "A bald person or animal has no hair.", - "textExample": "My oldest brother is bald.", - "transcription": "[bɔːld]", - "__v": 0, - "textExampleTranslate": "Мой старший брат лысый", - "textMeaningTranslate": "У лысого человека или животного нет шерсти", - "wordTranslate": "лысый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa06" - }, - "group": 2, - "page": 9, - "word": "imitate", - "image": "files/10_1387.jpg", - "audio": "files/10_1387.mp3", - "audioMeaning": "files/10_1387_meaning.mp3", - "audioExample": "files/10_1387_example.mp3", - "textMeaning": "To imitate someone or something is to act in the exact same way.", - "textExample": "He imitated his favorite superhero by putting on a costume.", - "transcription": "[ímətèit]", - "__v": 0, - "textExampleTranslate": "Он подражал своему любимому супергерою, надев костюм", - "textMeaningTranslate": "Подражать кому-то или чему-то - значит действовать точно так же", - "wordTranslate": "подражать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa08" - }, - "group": 2, - "page": 9, - "word": "creep", - "image": "files/10_1385.jpg", - "audio": "files/10_1385.mp3", - "audioMeaning": "files/10_1385_meaning.mp3", - "audioExample": "files/10_1385_example.mp3", - "textMeaning": "To creep is to move quietly and slowly.", - "textExample": "The cat slowly crept down the tree.", - "transcription": "[kriːp]", - "__v": 0, - "textExampleTranslate": "Кот медленно сполз по дереву", - "textMeaningTranslate": "Ползать - значит двигаться тихо и медленно", - "wordTranslate": "ползать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa09" - }, - "group": 2, - "page": 9, - "word": "divorce", - "image": "files/10_1386.jpg", - "audio": "files/10_1386.mp3", - "audioMeaning": "files/10_1386_meaning.mp3", - "audioExample": "files/10_1386_example.mp3", - "textMeaning": "Divorce is the process of ending a marriage.", - "textExample": "Divorce rates have increased in the past twenty years.", - "transcription": "[divɔ́ːrs]", - "__v": 0, - "textExampleTranslate": "Число разводов возросло за последние двадцать лет", - "textMeaningTranslate": "Развод - это процесс прекращения брака", - "wordTranslate": "расторжение брака" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa0a" - }, - "group": 2, - "page": 9, - "word": "blanket", - "image": "files/10_1384.jpg", - "audio": "files/10_1384.mp3", - "audioMeaning": "files/10_1384_meaning.mp3", - "audioExample": "files/10_1384_example.mp3", - "textMeaning": "A blanket is a piece of cloth that people use to keep warm or to sit upon.", - "textExample": "I laid a blanket on the ground so that we could have a picnic.", - "transcription": "[blǽŋkit]", - "__v": 0, - "textExampleTranslate": "Я положил одеяло на землю, чтобы мы могли устроить пикник", - "textMeaningTranslate": "Одеяло - это кусок ткани, который люди используют, чтобы согреться или сесть на него", - "wordTranslate": "одеяло" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa0b" - }, - "group": 2, - "page": 9, - "word": "infant", - "image": "files/10_1388.jpg", - "audio": "files/10_1388.mp3", - "audioMeaning": "files/10_1388_meaning.mp3", - "audioExample": "files/10_1388_example.mp3", - "textMeaning": "An infant is a baby.", - "textExample": "The infant cried all night.", - "transcription": "[ínfənt]", - "__v": 0, - "textExampleTranslate": "Младенец плакал всю ночь", - "textMeaningTranslate": "Младенец есть ребенок", - "wordTranslate": "ребенок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa0c" - }, - "group": 2, - "page": 9, - "word": "nap", - "image": "files/10_1390.jpg", - "audio": "files/10_1390.mp3", - "audioMeaning": "files/10_1390_meaning.mp3", - "audioExample": "files/10_1390_example.mp3", - "textMeaning": "A nap is a short sleep, usually during the day.", - "textExample": "I took a short nap because I had stayed up late last night.", - "transcription": "[næp]", - "__v": 0, - "textExampleTranslate": "Я немного вздремнул, потому что я не спал прошлой ночью", - "textMeaningTranslate": "Сон - это короткий сон, обычно в течение дня", - "wordTranslate": "ворс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa0d" - }, - "group": 2, - "page": 9, - "word": "nowhere", - "image": "files/10_1391.jpg", - "audio": "files/10_1391.mp3", - "audioMeaning": "files/10_1391_meaning.mp3", - "audioExample": "files/10_1391_example.mp3", - "textMeaning": "Nowhere means no place or not existing.", - "textExample": "Unfortunately, water was nowhere to be found.", - "transcription": "[nóuhwεər]", - "__v": 0, - "textExampleTranslate": "К сожалению, воды нигде не было", - "textMeaningTranslate": "Нигде не означает ни места, ни несуществующего", - "wordTranslate": "нигде" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa0e" - }, - "group": 2, - "page": 9, - "word": "kidnap", - "image": "files/10_1389.jpg", - "audio": "files/10_1389.mp3", - "audioMeaning": "files/10_1389_meaning.mp3", - "audioExample": "files/10_1389_example.mp3", - "textMeaning": "To kidnap someone is to take that person illegally.", - "textExample": "She was terrified to find out her son had been kidnapped.", - "transcription": "[kídnæ̀p]", - "__v": 0, - "textExampleTranslate": "Она была в ужасе, узнав, что ее сына похитили", - "textMeaningTranslate": "Чтобы похитить кого-то, нужно взять этого человека незаконно", - "wordTranslate": "похитить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa0f" - }, - "group": 2, - "page": 9, - "word": "pat", - "image": "files/10_1392.jpg", - "audio": "files/10_1392.mp3", - "audioMeaning": "files/10_1392_meaning.mp3", - "audioExample": "files/10_1392_example.mp3", - "textMeaning": "To pat something is to hit it softly with your hand.", - "textExample": "I patted some lotion onto my face.", - "transcription": "[pæt]", - "__v": 0, - "textExampleTranslate": "Я похлопал немного лосьона по лицу", - "textMeaningTranslate": "Поглаживать что-то - значит мягко ударить по нему рукой", - "wordTranslate": "погладить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa10" - }, - "group": 2, - "page": 9, - "word": "relief", - "image": "files/10_1393.jpg", - "audio": "files/10_1393.mp3", - "audioMeaning": "files/10_1393_meaning.mp3", - "audioExample": "files/10_1393_example.mp3", - "textMeaning": "Relief is a good feeling after something bad or challenging ends.", - "textExample": "I felt a sense of relief when I heard the good news.", - "transcription": "[rilíːf]", - "__v": 0, - "textExampleTranslate": "Я почувствовал облегчение, когда услышал хорошие новости", - "textMeaningTranslate": "Облегчение - это хорошее чувство после чего-то плохого или сложного", - "wordTranslate": "облегчение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa12" - }, - "group": 2, - "page": 9, - "word": "urgent", - "image": "files/10_1397.jpg", - "audio": "files/10_1397.mp3", - "audioMeaning": "files/10_1397_meaning.mp3", - "audioExample": "files/10_1397_example.mp3", - "textMeaning": "An urgent thing is important and needs to be done now.", - "textExample": "He had to leave at that moment; it was urgent.", - "transcription": "[ə́ːrdʒənt]", - "__v": 0, - "textExampleTranslate": "Он должен был уйти в тот момент; это было срочно", - "textMeaningTranslate": "Срочное дело важно и должно быть сделано сейчас", - "wordTranslate": "срочно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa11" - }, - "group": 2, - "page": 9, - "word": "reproduce", - "image": "files/10_1394.jpg", - "audio": "files/10_1394.mp3", - "audioMeaning": "files/10_1394_meaning.mp3", - "audioExample": "files/10_1394_example.mp3", - "textMeaning": "To reproduce is to make something exactly how someone else did it.", - "textExample": "The children tried to reproduce their house using toy blocks.", - "transcription": "[rìːprədjúːs]", - "__v": 0, - "textExampleTranslate": "Дети пытались воспроизвести свой дом, используя игрушечные блоки", - "textMeaningTranslate": "Воспроизвести - значит сделать что-то в точности так, как это сделал кто-то другой", - "wordTranslate": "воспроизвести" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa13" - }, - "group": 2, - "page": 9, - "word": "rhyme", - "image": "files/10_1395.jpg", - "audio": "files/10_1395.mp3", - "audioMeaning": "files/10_1395_meaning.mp3", - "audioExample": "files/10_1395_example.mp3", - "textMeaning": "A rhyme is writing or speech that has words with the same ending sounds.", - "textExample": "“Humpty Dumpty” is an old rhyme that children learn in school.", - "transcription": "[raim]", - "__v": 0, - "textExampleTranslate": "'Шалтай-Болтай' - старая рифма, которую дети учат в школе ", - "textMeaningTranslate": "Рифма - это письмо или речь, в которой есть слова с одинаковыми окончательными звуками", - "wordTranslate": "рифмуются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa14" - }, - "group": 2, - "page": 9, - "word": "suck", - "image": "files/10_1396.jpg", - "audio": "files/10_1396.mp3", - "audioMeaning": "files/10_1396_meaning.mp3", - "audioExample": "files/10_1396_example.mp3", - "textMeaning": "To suck is to put something in your mouth and try to get something out of it.", - "textExample": "The baby sucked milk from her bottle.", - "transcription": "[sʌk]", - "__v": 0, - "textExampleTranslate": "Ребенок сосал молоко из бутылочки", - "textMeaningTranslate": "Сосать - значит класть что-то в рот и пытаться что-то из этого извлечь", - "wordTranslate": "сосать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa15" - }, - "group": 2, - "page": 9, - "word": "vanish", - "image": "files/10_1398.jpg", - "audio": "files/10_1398.mp3", - "audioMeaning": "files/10_1398_meaning.mp3", - "audioExample": "files/10_1398_example.mp3", - "textMeaning": "To vanish is to go away suddenly.", - "textExample": "All the passengers vanished from the train station.", - "transcription": "[vǽniʃ]", - "__v": 0, - "textExampleTranslate": "Все пассажиры исчезли с вокзала", - "textMeaningTranslate": "Исчезнуть - значит уйти внезапно", - "wordTranslate": "исчезают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa17" - }, - "group": 2, - "page": 10, - "word": "architecture", - "image": "files/11_1401.jpg", - "audio": "files/11_1401.mp3", - "audioMeaning": "files/11_1401_meaning.mp3", - "audioExample": "files/11_1401_example.mp3", - "textMeaning": "Architecture is the design and form of a building.", - "textExample": "The Sydney Opera House is a good example of modern architecture.", - "transcription": "[άːrkɪtèkʧər]", - "__v": 0, - "textExampleTranslate": "Сиднейский оперный театр - хороший пример современной архитектуры", - "textMeaningTranslate": "Архитектура - это дизайн и форма здания", - "wordTranslate": "архитектура" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa16" - }, - "group": 2, - "page": 9, - "word": "wagon", - "image": "files/10_1399.jpg", - "audio": "files/10_1399.mp3", - "audioMeaning": "files/10_1399_meaning.mp3", - "audioExample": "files/10_1399_example.mp3", - "textMeaning": "A wagon is a cart used to carry heavy things.", - "textExample": "He used his wagon to carry some of his gifts.", - "transcription": "[wǽgən]", - "__v": 0, - "textExampleTranslate": "Он использовал свой фургон, чтобы нести некоторые из своих подарков", - "textMeaningTranslate": "Вагон - это тележка, используемая для перевозки тяжелых вещей", - "wordTranslate": "универсал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa18" - }, - "group": 2, - "page": 9, - "word": "wrinkle", - "image": "files/10_1400.jpg", - "audio": "files/10_1400.mp3", - "audioMeaning": "files/10_1400_meaning.mp3", - "audioExample": "files/10_1400_example.mp3", - "textMeaning": "A wrinkle is a line on a person’s face that appears as they get old.", - "textExample": "My grandfather has some wrinkles on his face.", - "transcription": "[ríŋkəl]", - "__v": 0, - "textExampleTranslate": "У моего дедушки морщины на лице", - "textMeaningTranslate": "Морщина - это линия на лице человека, которая появляется, когда он стареет", - "wordTranslate": "морщины" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa1d" - }, - "group": 2, - "page": 10, - "word": "cousin", - "image": "files/11_1406.jpg", - "audio": "files/11_1406.mp3", - "audioMeaning": "files/11_1406_meaning.mp3", - "audioExample": "files/11_1406_example.mp3", - "textMeaning": "A cousin is the child of one’s aunt and uncle.", - "textExample": "My cousin looks just like me.", - "transcription": "[kΛzn]", - "__v": 0, - "textExampleTranslate": "Мой двоюродный брат выглядит так же, как я", - "textMeaningTranslate": "Двоюродный брат - это дядя, тетя и дядя", - "wordTranslate": "двоюродная сестра" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa1c" - }, - "group": 2, - "page": 10, - "word": "carpet", - "image": "files/11_1405.jpg", - "audio": "files/11_1405.mp3", - "audioMeaning": "files/11_1405_meaning.mp3", - "audioExample": "files/11_1405_example.mp3", - "textMeaning": "A carpet is a thick, heavy, woven fabric used to cover the floor.", - "textExample": "His white living room carpet was soft.", - "transcription": "[kάːrpit]", - "__v": 0, - "textExampleTranslate": "Его белый ковер в гостиной был мягким", - "textMeaningTranslate": "Ковер - это плотная, тяжелая тканая ткань, используемая для покрытия пола", - "wordTranslate": "ковровая дорожка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa1b" - }, - "group": 2, - "page": 10, - "word": "canoe", - "image": "files/11_1404.jpg", - "audio": "files/11_1404.mp3", - "audioMeaning": "files/11_1404_meaning.mp3", - "audioExample": "files/11_1404_example.mp3", - "textMeaning": "A canoe is a long, light boat with pointed ends.", - "textExample": "He paddled his canoe to the edge of the lake.", - "transcription": "[kənúː]", - "__v": 0, - "textExampleTranslate": "Он греб на своем каноэ к берегу озера", - "textMeaningTranslate": "Каноэ - это длинная легкая лодка с заостренными концами", - "wordTranslate": "каноэ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa1a" - }, - "group": 2, - "page": 10, - "word": "bloom", - "image": "files/11_1403.jpg", - "audio": "files/11_1403.mp3", - "audioMeaning": "files/11_1403_meaning.mp3", - "audioExample": "files/11_1403_example.mp3", - "textMeaning": "To bloom is to produce an open flower.", - "textExample": "The white daisies were about to bloom.", - "transcription": "[bluːm]", - "__v": 0, - "textExampleTranslate": "Белые ромашки должны были расцвести", - "textMeaningTranslate": "Расцветать - значит производить открытый цветок", - "wordTranslate": "цветение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa19" - }, - "group": 2, - "page": 10, - "word": "basket", - "image": "files/11_1402.jpg", - "audio": "files/11_1402.mp3", - "audioMeaning": "files/11_1402_meaning.mp3", - "audioExample": "files/11_1402_example.mp3", - "textMeaning": "A basket is a container made of woven materials that is used to carry things.", - "textExample": "He put the vegetables in a basket.", - "transcription": "[bǽskit]", - "__v": 0, - "textExampleTranslate": "Он положил овощи в корзину", - "textMeaningTranslate": "Корзина - это контейнер из тканых материалов, который используется для перевозки вещей", - "wordTranslate": "корзина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa1e" - }, - "group": 2, - "page": 10, - "word": "desk", - "image": "files/11_1407.jpg", - "audio": "files/11_1407.mp3", - "audioMeaning": "files/11_1407_meaning.mp3", - "audioExample": "files/11_1407_example.mp3", - "textMeaning": "A desk is a piece of furniture that people sit at to do work.", - "textExample": "She put the books on her desk.", - "transcription": "[desk]", - "__v": 0, - "textExampleTranslate": "Она положила книги на стол", - "textMeaningTranslate": "Письменный стол - это предмет мебели, за которым люди сидят, чтобы делать работу", - "wordTranslate": "стол письменный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa20" - }, - "group": 2, - "page": 10, - "word": "guest", - "image": "files/11_1409.jpg", - "audio": "files/11_1409.mp3", - "audioMeaning": "files/11_1409_meaning.mp3", - "audioExample": "files/11_1409_example.mp3", - "textMeaning": "A guest is someone who is invited to an event, occasion, or location.", - "textExample": "Alice invited a special guest for dinner.", - "transcription": "[ɡest]", - "__v": 0, - "textExampleTranslate": "Алиса пригласила специального гостя на ужин", - "textMeaningTranslate": "Гость - это тот, кого приглашают на событие, событие или место", - "wordTranslate": "гость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa1f" - }, - "group": 2, - "page": 10, - "word": "gallery", - "image": "files/11_1408.jpg", - "audio": "files/11_1408.mp3", - "audioMeaning": "files/11_1408_meaning.mp3", - "audioExample": "files/11_1408_example.mp3", - "textMeaning": "A gallery is a large space where people can see works of art.", - "textExample": "The art gallery displayed beautiful paintings.", - "transcription": "[gǽləri]", - "__v": 0, - "textExampleTranslate": "В картинной галерее выставлены прекрасные картины", - "textMeaningTranslate": "Галерея - это большое пространство, где люди могут видеть произведения искусства", - "wordTranslate": "галерея" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa21" - }, - "group": 2, - "page": 10, - "word": "host", - "image": "files/11_1410.jpg", - "audio": "files/11_1410.mp3", - "audioMeaning": "files/11_1410_meaning.mp3", - "audioExample": "files/11_1410_example.mp3", - "textMeaning": "A host is someone who invites a guest someplace.", - "textExample": "He was a gracious host.", - "transcription": "[houst]", - "__v": 0, - "textExampleTranslate": "Он был добрым хозяином", - "textMeaningTranslate": "Хозяин - это тот, кто приглашает гостя куда-нибудь", - "wordTranslate": "хозяин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa22" - }, - "group": 2, - "page": 10, - "word": "July", - "image": "files/11_1411.jpg", - "audio": "files/11_1411.mp3", - "audioMeaning": "files/11_1411_meaning.mp3", - "audioExample": "files/11_1411_example.mp3", - "textMeaning": "The seventh month of the year is July.", - "textExample": "Her birthday is in July.", - "transcription": "[dʒuːlái]", - "__v": 0, - "textExampleTranslate": "Ее день рождения в июле", - "textMeaningTranslate": "Седьмой месяц года июль", - "wordTranslate": "июль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa23" - }, - "group": 2, - "page": 10, - "word": "modern", - "image": "files/11_1412.jpg", - "audio": "files/11_1412.mp3", - "audioMeaning": "files/11_1412_meaning.mp3", - "audioExample": "files/11_1412_example.mp3", - "textMeaning": "A modern thing belongs to the current time.", - "textExample": "The kitchen had a modern look.", - "transcription": "[mάdərn]", - "__v": 0, - "textExampleTranslate": "Кухня выглядела современно", - "textMeaningTranslate": "Современная вещь принадлежит современному времени", - "wordTranslate": "современный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa24" - }, - "group": 2, - "page": 10, - "word": "museum", - "image": "files/11_1413.jpg", - "audio": "files/11_1413.mp3", - "audioMeaning": "files/11_1413_meaning.mp3", - "audioExample": "files/11_1413_example.mp3", - "textMeaning": "A museum is a building that displays cultural, social, and scientific objects.", - "textExample": "The Louvre is a famous museum in France.", - "transcription": "[mjuːzíːəm]", - "__v": 0, - "textExampleTranslate": "Лувр - известный музей во Франции", - "textMeaningTranslate": "Музей - это здание, в котором представлены культурные, социальные и научные объекты", - "wordTranslate": "музей" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa27" - }, - "group": 2, - "page": 10, - "word": "refrigerator", - "image": "files/11_1416.jpg", - "audio": "files/11_1416.mp3", - "audioMeaning": "files/11_1416_meaning.mp3", - "audioExample": "files/11_1416_example.mp3", - "textMeaning": "A refrigerator is a large electrical machine used to keep food cold.", - "textExample": "He kept milk, eggs, and butter in the refrigerator.", - "transcription": "[rifrídʒərèitər]", - "__v": 0, - "textExampleTranslate": "Он хранил молоко, яйца и масло в холодильнике", - "textMeaningTranslate": "Холодильник - это большая электрическая машина, используемая для охлаждения продуктов", - "wordTranslate": "холодильник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa26" - }, - "group": 2, - "page": 10, - "word": "plane", - "image": "files/11_1415.jpg", - "audio": "files/11_1415.mp3", - "audioMeaning": "files/11_1415_meaning.mp3", - "audioExample": "files/11_1415_example.mp3", - "textMeaning": "A plane is a vehicle that has an engine and wings and flies in the air.", - "textExample": "They took a plane across the ocean to India.", - "transcription": "[plein]", - "__v": 0, - "textExampleTranslate": "Они взяли самолет через океан в Индию", - "textMeaningTranslate": "Самолет - это транспортное средство с двигателем, крыльями и летающими в воздухе", - "wordTranslate": "самолет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa25" - }, - "group": 2, - "page": 10, - "word": "pink", - "image": "files/11_1414.jpg", - "audio": "files/11_1414.mp3", - "audioMeaning": "files/11_1414_meaning.mp3", - "audioExample": "files/11_1414_example.mp3", - "textMeaning": "Pink is a pale shade of red.", - "textExample": "She chose a pink lipstick.", - "transcription": "[piŋk]", - "__v": 0, - "textExampleTranslate": "Она выбрала розовую помаду", - "textMeaningTranslate": "Розовый - это бледно-красный оттенок", - "wordTranslate": "розовый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa28" - }, - "group": 2, - "page": 10, - "word": "temperature", - "image": "files/11_1417.jpg", - "audio": "files/11_1417.mp3", - "audioMeaning": "files/11_1417_meaning.mp3", - "audioExample": "files/11_1417_example.mp3", - "textMeaning": "A temperature is a measure of how hot or cold something is.", - "textExample": "In the winter, the temperature can drop below 0 degrees.", - "transcription": "[témpərəʧər]", - "__v": 0, - "textExampleTranslate": "Зимой температура может опускаться ниже 0 градусов", - "textMeaningTranslate": "Температура - это показатель того, насколько горячо или холодно что-то", - "wordTranslate": "температура" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa29" - }, - "group": 2, - "page": 10, - "word": "theater", - "image": "files/11_1418.jpg", - "audio": "files/11_1418.mp3", - "audioMeaning": "files/11_1418_meaning.mp3", - "audioExample": "files/11_1418_example.mp3", - "textMeaning": "A theater is a place where people can watch movies or live shows.", - "textExample": "He took her to see a comedy show at the theater.", - "transcription": "[θíːətər]", - "__v": 0, - "textExampleTranslate": "Он взял ее посмотреть комедийное шоу в театре", - "textMeaningTranslate": "Театр - это место, где люди могут смотреть фильмы или живые выступления", - "wordTranslate": "театр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa2a" - }, - "group": 2, - "page": 10, - "word": "upper", - "image": "files/11_1419.jpg", - "audio": "files/11_1419.mp3", - "audioMeaning": "files/11_1419_meaning.mp3", - "audioExample": "files/11_1419_example.mp3", - "textMeaning": "An upper position is a higher position.", - "textExample": "He took the elevator to the upper floor.", - "transcription": "[Λpər]", - "__v": 0, - "textExampleTranslate": "Он поднялся на лифте на верхний этаж", - "textMeaningTranslate": "Верхняя позиция - более высокая позиция", - "wordTranslate": "верхний" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa2c" - }, - "group": 2, - "page": 11, - "word": "anticipate", - "image": "files/12_1421.jpg", - "audio": "files/12_1421.mp3", - "audioMeaning": "files/12_1421_meaning.mp3", - "audioExample": "files/12_1421_example.mp3", - "textMeaning": "To anticipate something is to think that it will happen.", - "textExample": "Carrie anticipated the arrival of her baby.", - "transcription": "[æntísəpèit]", - "__v": 0, - "textExampleTranslate": "Кэрри предвосхитила прибытие своего ребенка", - "textMeaningTranslate": "Предвидеть что-то значит думать, что это произойдет", - "wordTranslate": "предвидеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa2b" - }, - "group": 2, - "page": 10, - "word": "welcome", - "image": "files/11_1420.jpg", - "audio": "files/11_1420.mp3", - "audioMeaning": "files/11_1420_meaning.mp3", - "audioExample": "files/11_1420_example.mp3", - "textMeaning": "To welcome is to greet someone or something with pleasure.", - "textExample": "She greeted her friends with a warm welcome.", - "transcription": "[wélkəm]", - "__v": 0, - "textExampleTranslate": "Она встретила своих друзей с теплым приемом", - "textMeaningTranslate": "Приветствовать - значит приветствовать кого-то или что-то с удовольствием", - "wordTranslate": "добро пожаловать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa2d" - }, - "group": 2, - "page": 11, - "word": "barrel", - "image": "files/12_1422.jpg", - "audio": "files/12_1422.mp3", - "audioMeaning": "files/12_1422_meaning.mp3", - "audioExample": "files/12_1422_example.mp3", - "textMeaning": "A barrel is a round thing that you can keep liquids in.", - "textExample": "There was an empty barrel outside the house.", - "transcription": "[bǽrəl]", - "__v": 0, - "textExampleTranslate": "У дома была пустая бочка", - "textMeaningTranslate": "Бочка - это круглая вещь, в которой можно хранить жидкости", - "wordTranslate": "бочка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa2e" - }, - "group": 2, - "page": 11, - "word": "beam", - "image": "files/12_1423.jpg", - "audio": "files/12_1423.mp3", - "audioMeaning": "files/12_1423_meaning.mp3", - "audioExample": "files/12_1423_example.mp3", - "textMeaning": "A beam is a heavy bar.", - "textExample": "Modern skyscrapers are made with many beams.", - "transcription": "[biːm]", - "__v": 0, - "textExampleTranslate": "Современные небоскребы сделаны со многими лучами", - "textMeaningTranslate": "Луч тяжелая штанга", - "wordTranslate": "луч" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa2f" - }, - "group": 2, - "page": 11, - "word": "casual", - "image": "files/12_1424.jpg", - "audio": "files/12_1424.mp3", - "audioMeaning": "files/12_1424_meaning.mp3", - "audioExample": "files/12_1424_example.mp3", - "textMeaning": "A casual thing is relaxed or simple.", - "textExample": "You can wear casual clothes, like jeans, to the party.", - "transcription": "[kǽʒuəl]", - "__v": 0, - "textExampleTranslate": "Вы можете носить повседневную одежду, как джинсы, на вечеринку", - "textMeaningTranslate": "Случайная вещь расслабленная или простая", - "wordTranslate": "повседневная" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa31" - }, - "group": 2, - "page": 11, - "word": "contrary", - "image": "files/12_1426.jpg", - "audio": "files/12_1426.mp3", - "audioMeaning": "files/12_1426_meaning.mp3", - "audioExample": "files/12_1426_example.mp3", - "textMeaning": "A contrary thing is the opposite to another thing.", - "textExample": "It isn’t warm outside at all. On the contrary, it is quite cold.", - "transcription": "[kɑ́ntreri]", - "__v": 0, - "textExampleTranslate": "На улице совсем не тепло. Наоборот, довольно холодно", - "textMeaningTranslate": "Противоположное есть противоположное другому", - "wordTranslate": "вопреки" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa30" - }, - "group": 2, - "page": 11, - "word": "caution", - "image": "files/12_1425.jpg", - "audio": "files/12_1425.mp3", - "audioMeaning": "files/12_1425_meaning.mp3", - "audioExample": "files/12_1425_example.mp3", - "textMeaning": "Caution is care and attention in order to avoid danger.", - "textExample": "Please use the power saw with caution. It is very dangerous.", - "transcription": "[kɔ́ːʃən]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, используйте электропилу с осторожностью. Это очень опасно", - "textMeaningTranslate": "Осторожность - это забота и внимание во избежание опасности", - "wordTranslate": "предостеречь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa32" - }, - "group": 2, - "page": 11, - "word": "deliberate", - "image": "files/12_1427.jpg", - "audio": "files/12_1427.mp3", - "audioMeaning": "files/12_1427_meaning.mp3", - "audioExample": "files/12_1427_example.mp3", - "textMeaning": "A deliberate action is one done on purpose, not by accident.", - "textExample": "Bernie made a deliberate attempt to injure Andy.", - "transcription": "[dilíbərit]", - "__v": 0, - "textExampleTranslate": "Берни сделал преднамеренную попытку ранить Энди", - "textMeaningTranslate": "Преднамеренное действие совершается намеренно, а не случайно", - "wordTranslate": "раздумывать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa33" - }, - "group": 2, - "page": 11, - "word": "dissolve", - "image": "files/12_1428.jpg", - "audio": "files/12_1428.mp3", - "audioMeaning": "files/12_1428_meaning.mp3", - "audioExample": "files/12_1428_example.mp3", - "textMeaning": "To dissolve something is to mix it into a liquid until it disappears.", - "textExample": "I dissolved the pill in a glass of water.", - "transcription": "[dizɑ́lv]", - "__v": 0, - "textExampleTranslate": "Я растворил таблетку в стакане воды", - "textMeaningTranslate": "Растворить что-либо - значит смешать это в жидкость, пока это не исчезнет", - "wordTranslate": "растворяются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa34" - }, - "group": 2, - "page": 11, - "word": "explode", - "image": "files/12_1429.jpg", - "audio": "files/12_1429.mp3", - "audioMeaning": "files/12_1429_meaning.mp3", - "audioExample": "files/12_1429_example.mp3", - "textMeaning": "To explode is to suddenly move apart in many smaller pieces.", - "textExample": "The old TV exploded when I plugged it in.", - "transcription": "[iksplóud]", - "__v": 0, - "textExampleTranslate": "Старый телевизор взорвался, когда я подключил его", - "textMeaningTranslate": "Взорваться - это внезапно разойтись на множество мелких кусочков", - "wordTranslate": "взрываются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa35" - }, - "group": 2, - "page": 11, - "word": "fasten", - "image": "files/12_1430.jpg", - "audio": "files/12_1430.mp3", - "audioMeaning": "files/12_1430_meaning.mp3", - "audioExample": "files/12_1430_example.mp3", - "textMeaning": "To fasten something is to close it or attach it to something.", - "textExample": "Elizabeth fastened her seat belt.", - "transcription": "[fǽsn]", - "__v": 0, - "textExampleTranslate": "Элизабет пристегнула ремень безопасности", - "textMeaningTranslate": "Закрепить что-то - значит закрыть или прикрепить к чему-либо", - "wordTranslate": "пристегнуть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa36" - }, - "group": 2, - "page": 11, - "word": "germ", - "image": "files/12_1431.jpg", - "audio": "files/12_1431.mp3", - "audioMeaning": "files/12_1431_meaning.mp3", - "audioExample": "files/12_1431_example.mp3", - "textMeaning": "A germ is a very small living thing that can make people sick.", - "textExample": "Germs are on everything that you touch.", - "transcription": "[ʤəːrm]", - "__v": 0, - "textExampleTranslate": "Микробы на всем, что вы касаетесь", - "textMeaningTranslate": "Микроб - это очень маленькое живое существо, которое может сделать людей больными", - "wordTranslate": "росток" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa37" - }, - "group": 2, - "page": 11, - "word": "kit", - "image": "files/12_1432.jpg", - "audio": "files/12_1432.mp3", - "audioMeaning": "files/12_1432_meaning.mp3", - "audioExample": "files/12_1432_example.mp3", - "textMeaning": "A kit is a set of all the things needed to do something.", - "textExample": "Is there a first aid kit in your office?", - "transcription": "[kit]", - "__v": 0, - "textExampleTranslate": "Есть ли аптечка в вашем офисе?", - "textMeaningTranslate": "Набор - это набор всех вещей, необходимых для чего-то", - "wordTranslate": "комплект" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa38" - }, - "group": 2, - "page": 11, - "word": "puff", - "image": "files/12_1433.jpg", - "audio": "files/12_1433.mp3", - "audioMeaning": "files/12_1433_meaning.mp3", - "audioExample": "files/12_1433_example.mp3", - "textMeaning": "A puff is a little bit of smoke or steam.", - "textExample": "A puff of smoke came from the burnt match.", - "transcription": "[pʌf]", - "__v": 0, - "textExampleTranslate": "Сгоревшая спичка вышла из дыма", - "textMeaningTranslate": "Слойка - это немного дыма или пара", - "wordTranslate": "пшик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa39" - }, - "group": 2, - "page": 11, - "word": "rag", - "image": "files/12_1434.jpg", - "audio": "files/12_1434.mp3", - "audioMeaning": "files/12_1434_meaning.mp3", - "audioExample": "files/12_1434_example.mp3", - "textMeaning": "A rag is a small towel.", - "textExample": "Please use a rag to clean the dust off the table.", - "transcription": "[ræg]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, используйте тряпку, чтобы убрать пыль со стола", - "textMeaningTranslate": "Тряпка - это маленькое полотенце", - "wordTranslate": "тряпка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa3a" - }, - "group": 2, - "page": 11, - "word": "scatter", - "image": "files/12_1435.jpg", - "audio": "files/12_1435.mp3", - "audioMeaning": "files/12_1435_meaning.mp3", - "audioExample": "files/12_1435_example.mp3", - "textMeaning": "To scatter something is to make it go in many places.", - "textExample": "I accidentally scattered all of my pills.", - "transcription": "[skǽtəːr]", - "__v": 0, - "textExampleTranslate": "Я случайно разбросал все свои таблетки", - "textMeaningTranslate": "Рассеять что-то - значит заставить это идти во многих местах", - "wordTranslate": "разброс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa3b" - }, - "group": 2, - "page": 11, - "word": "scent", - "image": "files/12_1436.jpg", - "audio": "files/12_1436.mp3", - "audioMeaning": "files/12_1436_meaning.mp3", - "audioExample": "files/12_1436_example.mp3", - "textMeaning": "A scent is a smell.", - "textExample": "Julie enjoyed the scent of the flowers.", - "transcription": "[sent]", - "__v": 0, - "textExampleTranslate": "Джули наслаждалась ароматом цветов", - "textMeaningTranslate": "Аромат - это запах", - "wordTranslate": "запах" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa3c" - }, - "group": 2, - "page": 11, - "word": "steel", - "image": "files/12_1437.jpg", - "audio": "files/12_1437.mp3", - "audioMeaning": "files/12_1437_meaning.mp3", - "audioExample": "files/12_1437_example.mp3", - "textMeaning": "Steel is a strong gray metal.", - "textExample": "The new apartment building was made with steel.", - "transcription": "[stiːl]", - "__v": 0, - "textExampleTranslate": "Новый жилой дом сделан из стали", - "textMeaningTranslate": "Сталь - сильный серый металл", - "wordTranslate": "стали" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa3d" - }, - "group": 2, - "page": 11, - "word": "swift", - "image": "files/12_1438.jpg", - "audio": "files/12_1438.mp3", - "audioMeaning": "files/12_1438_meaning.mp3", - "audioExample": "files/12_1438_example.mp3", - "textMeaning": "A swift person or animal is fast.", - "textExample": "The swift horse easily jumped over the hurdle.", - "transcription": "[swift]", - "__v": 0, - "textExampleTranslate": "Стремительный конь легко перепрыгнул через препятствие", - "textMeaningTranslate": "Быстрый человек или животное быстро", - "wordTranslate": "быстрые" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa3e" - }, - "group": 2, - "page": 11, - "word": "toss", - "image": "files/12_1439.jpg", - "audio": "files/12_1439.mp3", - "audioMeaning": "files/12_1439_meaning.mp3", - "audioExample": "files/12_1439_example.mp3", - "textMeaning": "To toss something is to throw it softly.", - "textExample": "He tossed a coin into the air.", - "transcription": "[tɔːs]", - "__v": 0, - "textExampleTranslate": "Он бросил монетку в воздух", - "textMeaningTranslate": "Бросить что-то значит бросить это мягко", - "wordTranslate": "бросать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa3f" - }, - "group": 2, - "page": 11, - "word": "triumph", - "image": "files/12_1440.jpg", - "audio": "files/12_1440.mp3", - "audioMeaning": "files/12_1440_meaning.mp3", - "audioExample": "files/12_1440_example.mp3", - "textMeaning": "Triumph is the act or feeling of winning.", - "textExample": "He raised the award in triumph at the end of his speech.", - "transcription": "[tráiəmf]", - "__v": 0, - "textExampleTranslate": "Он поднял награду с триумфом в конце своей речи", - "textMeaningTranslate": "Триумф - это акт или чувство победы", - "wordTranslate": "триумф" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa40" - }, - "group": 2, - "page": 12, - "word": "aboard", - "image": "files/13_1441.jpg", - "audio": "files/13_1441.mp3", - "audioMeaning": "files/13_1441_meaning.mp3", - "audioExample": "files/13_1441_example.mp3", - "textMeaning": "Someone aboard a ship or plane is in or on it.", - "textExample": "They climbed aboard the kayak and paddled through the river.", - "transcription": "[əbɔ́ːrd]", - "__v": 0, - "textExampleTranslate": "Они поднялись на борт каяка и плыли через реку", - "textMeaningTranslate": "Кто-то на борту корабля или самолета находится внутри или на нем", - "wordTranslate": "на борту" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa41" - }, - "group": 2, - "page": 12, - "word": "bitter", - "image": "files/13_1442.jpg", - "audio": "files/13_1442.mp3", - "audioMeaning": "files/13_1442_meaning.mp3", - "audioExample": "files/13_1442_example.mp3", - "textMeaning": "A bitter person feels upset or angry about something.", - "textExample": "He was extremely bitter when his computer crashed.", - "transcription": "[bítər]", - "__v": 0, - "textExampleTranslate": "Он был очень горьким, когда его компьютер сломался", - "textMeaningTranslate": "Горький человек расстраивается или злится из-за чего-то", - "wordTranslate": "горький" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa42" - }, - "group": 2, - "page": 12, - "word": "bullet", - "image": "files/13_1443.jpg", - "audio": "files/13_1443.mp3", - "audioMeaning": "files/13_1443_meaning.mp3", - "audioExample": "files/13_1443_example.mp3", - "textMeaning": "A bullet is a small metal object that is shot out of a gun.", - "textExample": "Bullets come in different sizes for different guns.", - "transcription": "[búlit]", - "__v": 0, - "textExampleTranslate": "Пули бывают разных размеров для разных видов оружия", - "textMeaningTranslate": "Пуля - это маленький металлический предмет, выпущенный из ружья", - "wordTranslate": "пуля" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa43" - }, - "group": 2, - "page": 12, - "word": "devil", - "image": "files/13_1444.jpg", - "audio": "files/13_1444.mp3", - "audioMeaning": "files/13_1444_meaning.mp3", - "audioExample": "files/13_1444_example.mp3", - "textMeaning": "The devil is a powerful evil spirit in some religions.", - "textExample": "The church promised protection from the devil.", - "transcription": "[dévl]", - "__v": 0, - "textExampleTranslate": "Церковь обещала защиту от дьявола", - "textMeaningTranslate": "Дьявол - сильный злой дух в некоторых религиях", - "wordTranslate": "дьявол" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa44" - }, - "group": 2, - "page": 12, - "word": "drift", - "image": "files/13_1445.jpg", - "audio": "files/13_1445.mp3", - "audioMeaning": "files/13_1445_meaning.mp3", - "audioExample": "files/13_1445_example.mp3", - "textMeaning": "To drift means to be moved slowly by wind or water.", - "textExample": "The large chunk of ice drifted in the water.", - "transcription": "[drift]", - "__v": 0, - "textExampleTranslate": "Большой кусок льда дрейфовал в воде", - "textMeaningTranslate": "Дрейфовать - значит медленно двигаться ветром или водой", - "wordTranslate": "дрейф" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa45" - }, - "group": 2, - "page": 12, - "word": "enforce", - "image": "files/13_1446.jpg", - "audio": "files/13_1446.mp3", - "audioMeaning": "files/13_1446_meaning.mp3", - "audioExample": "files/13_1446_example.mp3", - "textMeaning": "To enforce means to make a person follow a rule.", - "textExample": "Police enforce traffic laws to keep everyone safe.", - "transcription": "[infɔ́ːrs]", - "__v": 0, - "textExampleTranslate": "Полиция обеспечивает соблюдение правил дорожного движения, чтобы обеспечить безопасность всех", - "textMeaningTranslate": "Принудить - значит заставить человека следовать правилу", - "wordTranslate": "соблюдение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa46" - }, - "group": 2, - "page": 12, - "word": "fountain", - "image": "files/13_1447.jpg", - "audio": "files/13_1447.mp3", - "audioMeaning": "files/13_1447_meaning.mp3", - "audioExample": "files/13_1447_example.mp3", - "textMeaning": "A fountain is a source of water made by people.", - "textExample": "There was a beautiful fountain in the middle of the park.", - "transcription": "[fáuntin]", - "__v": 0, - "textExampleTranslate": "Был красивый фонтан посреди парка", - "textMeaningTranslate": "Фонтан - это источник воды, созданный людьми", - "wordTranslate": "фонтан" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa47" - }, - "group": 2, - "page": 12, - "word": "harbor", - "image": "files/13_1448.jpg", - "audio": "files/13_1448.mp3", - "audioMeaning": "files/13_1448_meaning.mp3", - "audioExample": "files/13_1448_example.mp3", - "textMeaning": "A harbor is an area of water along a shore where boats land.", - "textExample": "There were a few small boats in the harbor.", - "transcription": "[hɑ́ːrbər]", - "__v": 0, - "textExampleTranslate": "В гавани было несколько маленьких лодок", - "textMeaningTranslate": "Гавань - это участок воды вдоль берега, где садятся лодки", - "wordTranslate": "гавань" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa48" - }, - "group": 2, - "page": 12, - "word": "inhabit", - "image": "files/13_1449.jpg", - "audio": "files/13_1449.mp3", - "audioMeaning": "files/13_1449_meaning.mp3", - "audioExample": "files/13_1449_example.mp3", - "textMeaning": "To inhabit means to live in a certain place.", - "textExample": "No one inhabits the ancient city.", - "transcription": "[inhǽbit]", - "__v": 0, - "textExampleTranslate": "Никто не населяет древний город", - "textMeaningTranslate": "Жить - значит жить в определенном месте", - "wordTranslate": "населяют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa49" - }, - "group": 2, - "page": 12, - "word": "march", - "image": "files/13_1450.jpg", - "audio": "files/13_1450.mp3", - "audioMeaning": "files/13_1450_meaning.mp3", - "audioExample": "files/13_1450_example.mp3", - "textMeaning": "To march means to walk at a steady pace together with others.", - "textExample": "The soldiers marched in straight rows.", - "transcription": "[mɑːrtʃ]", - "__v": 0, - "textExampleTranslate": "Солдаты шли прямыми рядами", - "textMeaningTranslate": "Маршировать - значит идти вместе с другими в устойчивом темпе", - "wordTranslate": "марш" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa4a" - }, - "group": 2, - "page": 12, - "word": "millionaire", - "image": "files/13_1451.jpg", - "audio": "files/13_1451.mp3", - "audioMeaning": "files/13_1451_meaning.mp3", - "audioExample": "files/13_1451_example.mp3", - "textMeaning": "A millionaire is a person who has at least a million dollars.", - "textExample": "He became a millionaire because he was smart with his money.", - "transcription": "[mìljənɛ́ər]", - "__v": 0, - "textExampleTranslate": "Он стал миллионером, потому что он был умным со своими деньгами", - "textMeaningTranslate": "Миллионер - это человек, у которого есть хотя бы миллион долларов", - "wordTranslate": "миллионер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa4b" - }, - "group": 2, - "page": 12, - "word": "port", - "image": "files/13_1452.jpg", - "audio": "files/13_1452.mp3", - "audioMeaning": "files/13_1452_meaning.mp3", - "audioExample": "files/13_1452_example.mp3", - "textMeaning": "A port is a place where ships stop to load and unload things.", - "textExample": "The ship was being loaded with materials at the port.", - "transcription": "[pɔːrt]", - "__v": 0, - "textExampleTranslate": "Корабль загружался материалами в порту", - "textMeaningTranslate": "Порт - это место, где корабли останавливаются, чтобы загружать и разгружать вещи", - "wordTranslate": "порт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa4c" - }, - "group": 2, - "page": 12, - "word": "sheriff", - "image": "files/13_1453.jpg", - "audio": "files/13_1453.mp3", - "audioMeaning": "files/13_1453_meaning.mp3", - "audioExample": "files/13_1453_example.mp3", - "textMeaning": "A sheriff is a police officer who is in charge of a large area.", - "textExample": "It was the sheriff’s job to make the city safe.", - "transcription": "[ʃérif]", - "__v": 0, - "textExampleTranslate": "Это была работа шерифа, чтобы сделать город безопасным", - "textMeaningTranslate": "Шериф - это полицейский, который отвечает за большую территорию", - "wordTranslate": "шериф" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa4d" - }, - "group": 2, - "page": 12, - "word": "startle", - "image": "files/13_1454.jpg", - "audio": "files/13_1454.mp3", - "audioMeaning": "files/13_1454_meaning.mp3", - "audioExample": "files/13_1454_example.mp3", - "textMeaning": "To startle means to scare someone suddenly.", - "textExample": "The loud crash startled the sleeping woman.", - "transcription": "[stɑ́ːrtl]", - "__v": 0, - "textExampleTranslate": "Громкий грохот поразил спящую женщину", - "textMeaningTranslate": "Испугать - значит внезапно напугать кого-то", - "wordTranslate": "испуг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa4e" - }, - "group": 2, - "page": 12, - "word": "sweat", - "image": "files/13_1455.jpg", - "audio": "files/13_1455.mp3", - "audioMeaning": "files/13_1455_meaning.mp3", - "audioExample": "files/13_1455_example.mp3", - "textMeaning": "To sweat means to lose liquid from the body through the skin.", - "textExample": "Whenever I go to the gym, I sweat quite a bit.", - "transcription": "[swet]", - "__v": 0, - "textExampleTranslate": "Всякий раз, когда я иду в спортзал, я немного потею", - "textMeaningTranslate": "Потеть значит терять жидкость из организма через кожу", - "wordTranslate": "потеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa4f" - }, - "group": 2, - "page": 12, - "word": "trigger", - "image": "files/13_1456.jpg", - "audio": "files/13_1456.mp3", - "audioMeaning": "files/13_1456_meaning.mp3", - "audioExample": "files/13_1456_example.mp3", - "textMeaning": "A trigger is the part of a gun that a person pulls to make it fire.", - "textExample": "The man had his finger on the trigger of the gun.", - "transcription": "[trígəːr]", - "__v": 0, - "textExampleTranslate": "Человек держал палец на курке пистолета", - "textMeaningTranslate": "Спусковой крючок - это часть пистолета, которую человек тянет, чтобы запустить его", - "wordTranslate": "вызывать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa50" - }, - "group": 2, - "page": 12, - "word": "unify", - "image": "files/13_1457.jpg", - "audio": "files/13_1457.mp3", - "audioMeaning": "files/13_1457_meaning.mp3", - "audioExample": "files/13_1457_example.mp3", - "textMeaning": "To unify means to bring people or things together.", - "textExample": "With their good deeds, the children tried to unify the world.", - "transcription": "[júːnəfài]", - "__v": 0, - "textExampleTranslate": "Своими добрыми делами дети пытались объединить мир", - "textMeaningTranslate": "Объединять - значит объединять людей или вещи", - "wordTranslate": "унифицировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa51" - }, - "group": 2, - "page": 12, - "word": "vessel", - "image": "files/13_1458.jpg", - "audio": "files/13_1458.mp3", - "audioMeaning": "files/13_1458_meaning.mp3", - "audioExample": "files/13_1458_example.mp3", - "textMeaning": "A vessel is a large ship or boat.", - "textExample": "We toured the area aboard a luxury vessel.", - "transcription": "[vésəl]", - "__v": 0, - "textExampleTranslate": "Мы совершили поездку по области на борту роскошного судна", - "textMeaningTranslate": "Судно - это большой корабль или лодка", - "wordTranslate": "судно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa52" - }, - "group": 2, - "page": 12, - "word": "voyage", - "image": "files/13_1459.jpg", - "audio": "files/13_1459.mp3", - "audioMeaning": "files/13_1459_meaning.mp3", - "audioExample": "files/13_1459_example.mp3", - "textMeaning": "A voyage is a long journey made on a boat or an aircraft.", - "textExample": "The astronauts took off on a long voyage to the moon.", - "transcription": "[vɔ́idʒ]", - "__v": 0, - "textExampleTranslate": "Астронавты отправились в долгое путешествие на Луну", - "textMeaningTranslate": "Путешествие - это долгое путешествие на лодке или самолете", - "wordTranslate": "плавание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa53" - }, - "group": 2, - "page": 12, - "word": "worship", - "image": "files/13_1460.jpg", - "audio": "files/13_1460.mp3", - "audioMeaning": "files/13_1460_meaning.mp3", - "audioExample": "files/13_1460_example.mp3", - "textMeaning": "To worship means to like and honor a person, thing, or religious figure.", - "textExample": "Many people around the world worship in a church.", - "transcription": "[wə́ːrʃip]", - "__v": 0, - "textExampleTranslate": "Многие люди по всему миру поклоняются в церкви", - "textMeaningTranslate": "Поклоняться означает любить и почитать человека, вещь или религиозного деятеля", - "wordTranslate": "поклонение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa54" - }, - "group": 2, - "page": 13, - "word": "apprentice", - "image": "files/14_1461.jpg", - "audio": "files/14_1461.mp3", - "audioMeaning": "files/14_1461_meaning.mp3", - "audioExample": "files/14_1461_example.mp3", - "textMeaning": "An apprentice is a person who learns how to do a job from a skilled person.", - "textExample": "Mark is an apprentice chef at the restaurant.", - "transcription": "[əpréntis]", - "__v": 0, - "textExampleTranslate": "Марк - ученик шеф-повара в ресторане", - "textMeaningTranslate": "Ученик - это человек, который учится делать работу у квалифицированного специалиста", - "wordTranslate": "ученик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa55" - }, - "group": 2, - "page": 13, - "word": "assure", - "image": "files/14_1462.jpg", - "audio": "files/14_1462.mp3", - "audioMeaning": "files/14_1462_meaning.mp3", - "audioExample": "files/14_1462_example.mp3", - "textMeaning": "To assure people is to tell them something is true to make them less worried.", - "textExample": "He assured the boss that the building would be done on time.", - "transcription": "[əʃúər]", - "__v": 0, - "textExampleTranslate": "Он заверил начальника, что здание будет сделано вовремя", - "textMeaningTranslate": "Уверять людей - значит говорить им, что что-то верно, чтобы сделать их менее обеспокоенными", - "wordTranslate": "обеспечить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa56" - }, - "group": 2, - "page": 13, - "word": "bandage", - "image": "files/14_1463.jpg", - "audio": "files/14_1463.mp3", - "audioMeaning": "files/14_1463_meaning.mp3", - "audioExample": "files/14_1463_example.mp3", - "textMeaning": "A bandage is a piece of cloth used to stop bleeding.", - "textExample": "If you cut yourself, please get a bandage from the first-aid kit.", - "transcription": "[bǽndidʒ]", - "__v": 0, - "textExampleTranslate": "Если вы порезались, пожалуйста, возьмите повязку из аптечки", - "textMeaningTranslate": "Бинт - это кусок ткани, используемый для остановки кровотечения", - "wordTranslate": "повязка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa57" - }, - "group": 2, - "page": 13, - "word": "bleed", - "image": "files/14_1464.jpg", - "audio": "files/14_1464.mp3", - "audioMeaning": "files/14_1464_meaning.mp3", - "audioExample": "files/14_1464_example.mp3", - "textMeaning": "To bleed is to lose blood.", - "textExample": "If you are not careful, you will cut your finger and bleed.", - "transcription": "[bliːd]", - "__v": 0, - "textExampleTranslate": "Если вы не будете осторожны, вы порежете палец и истечете кровью", - "textMeaningTranslate": "Кровоточить - значит терять кровь", - "wordTranslate": "кровь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa58" - }, - "group": 2, - "page": 13, - "word": "bond", - "image": "files/14_1465.jpg", - "audio": "files/14_1465.mp3", - "audioMeaning": "files/14_1465_meaning.mp3", - "audioExample": "files/14_1465_example.mp3", - "textMeaning": "To bond with someone is to become friends with that person.", - "textExample": "The women bonded after several hours of conversation.", - "transcription": "[bɔnd]", - "__v": 0, - "textExampleTranslate": "Женщины сблизились после нескольких часов разговора", - "textMeaningTranslate": "Общаться с кем-то - значит подружиться с этим человеком", - "wordTranslate": "связь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa59" - }, - "group": 2, - "page": 13, - "word": "chef", - "image": "files/14_1466.jpg", - "audio": "files/14_1466.mp3", - "audioMeaning": "files/14_1466_meaning.mp3", - "audioExample": "files/14_1466_example.mp3", - "textMeaning": "A chef is a person who cooks in a restaurant.", - "textExample": "Tom is a chef at the restaurant near my house.", - "transcription": "[ʃef]", - "__v": 0, - "textExampleTranslate": "Том - повар в ресторане около моего дома", - "textMeaningTranslate": "Шеф-повар - это человек, который готовит в ресторане", - "wordTranslate": "повар" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa5a" - }, - "group": 2, - "page": 13, - "word": "crown", - "image": "files/14_1467.jpg", - "audio": "files/14_1467.mp3", - "audioMeaning": "files/14_1467_meaning.mp3", - "audioExample": "files/14_1467_example.mp3", - "textMeaning": "A crown is the hat worn by a king or queen.", - "textExample": "The crown is made of gold.", - "transcription": "[kraun]", - "__v": 0, - "textExampleTranslate": "Корона сделана из золота", - "textMeaningTranslate": "Корона - это шляпа, которую носит король или королева", - "wordTranslate": "корона" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa5b" - }, - "group": 2, - "page": 13, - "word": "departure", - "image": "files/14_1468.jpg", - "audio": "files/14_1468.mp3", - "audioMeaning": "files/14_1468_meaning.mp3", - "audioExample": "files/14_1468_example.mp3", - "textMeaning": "A departure is the act of leaving a place.", - "textExample": "They were excited about their departure to go to go back home.", - "transcription": "[dipɑ́ːrtʃər]", - "__v": 0, - "textExampleTranslate": "Они были в восторге от своего отъезда, чтобы вернуться домой", - "textMeaningTranslate": "Отъезд - это акт отъезда из места", - "wordTranslate": "вылет из" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa5c" - }, - "group": 2, - "page": 13, - "word": "diligent", - "image": "files/14_1469.jpg", - "audio": "files/14_1469.mp3", - "audioMeaning": "files/14_1469_meaning.mp3", - "audioExample": "files/14_1469_example.mp3", - "textMeaning": "A diligent person works hard and is careful.", - "textExample": "Craig has always been a very diligent person at work.", - "transcription": "[dílədʒənt]", - "__v": 0, - "textExampleTranslate": "Крейг всегда был очень прилежным человеком на работе", - "textMeaningTranslate": "Прилежный человек работает усердно и осторожно", - "wordTranslate": "прилежный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa5d" - }, - "group": 2, - "page": 13, - "word": "emperor", - "image": "files/14_1470.jpg", - "audio": "files/14_1470.mp3", - "audioMeaning": "files/14_1470_meaning.mp3", - "audioExample": "files/14_1470_example.mp3", - "textMeaning": "An emperor is the leader of a group of countries.", - "textExample": "The emperor Julius Caesar was in control of ancient Rome.", - "transcription": "[émpərər]", - "__v": 0, - "textExampleTranslate": "Император Юлий Цезарь контролировал Древний Рим", - "textMeaningTranslate": "Император является лидером группы стран", - "wordTranslate": "император" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa5e" - }, - "group": 2, - "page": 13, - "word": "fiber", - "image": "files/14_1471.jpg", - "audio": "files/14_1471.mp3", - "audioMeaning": "files/14_1471_meaning.mp3", - "audioExample": "files/14_1471_example.mp3", - "textMeaning": "A fiber is a thread of a substance used to make clothes or rope.", - "textExample": "The mat was made from tiny fibers.", - "transcription": "[fáibər]", - "__v": 0, - "textExampleTranslate": "Коврик был сделан из крошечных волокон", - "textMeaningTranslate": "Волокно - это нить вещества, из которого делают одежду или веревку", - "wordTranslate": "волокно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa5f" - }, - "group": 2, - "page": 13, - "word": "horrible", - "image": "files/14_1472.jpg", - "audio": "files/14_1472.mp3", - "audioMeaning": "files/14_1472_meaning.mp3", - "audioExample": "files/14_1472_example.mp3", - "textMeaning": "A horrible thing is very bad.", - "textExample": "The assignment was horrible. I hated it.", - "transcription": "[hɔ́ːrəbəl]", - "__v": 0, - "textExampleTranslate": "Назначение было ужасно. Я ненавидел это", - "textMeaningTranslate": "Ужасная вещь очень плохая", - "wordTranslate": "какой ужас" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa60" - }, - "group": 2, - "page": 13, - "word": "impolite", - "image": "files/14_1473.jpg", - "audio": "files/14_1473.mp3", - "audioMeaning": "files/14_1473_meaning.mp3", - "audioExample": "files/14_1473_example.mp3", - "textMeaning": "An impolite person is rude, or not polite.", - "textExample": "Roger is impolite to everyone he meets.", - "transcription": "[ìmpəláit]", - "__v": 0, - "textExampleTranslate": "Роджер невежлив со всеми, кого встречает", - "textMeaningTranslate": "Невежливый человек груб или невежлив", - "wordTranslate": "невежливо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa62" - }, - "group": 2, - "page": 13, - "word": "luxury", - "image": "files/14_1475.jpg", - "audio": "files/14_1475.mp3", - "audioMeaning": "files/14_1475_meaning.mp3", - "audioExample": "files/14_1475_example.mp3", - "textMeaning": "A luxury is an expensive thing that is nice but not needed.", - "textExample": "Our honeymoon resort was a luxury we really enjoyed.", - "transcription": "[lʌ́kʃəri]", - "__v": 0, - "textExampleTranslate": "Наш медовый месяц был роскошью, которой мы действительно наслаждались", - "textMeaningTranslate": "Роскошь - это дорогая вещь, которая хороша, но не нужна", - "wordTranslate": "роскошь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa61" - }, - "group": 2, - "page": 13, - "word": "kneel", - "image": "files/14_1474.jpg", - "audio": "files/14_1474.mp3", - "audioMeaning": "files/14_1474_meaning.mp3", - "audioExample": "files/14_1474_example.mp3", - "textMeaning": "To kneel is to put one or both knees on the ground.", - "textExample": "Daryl kneeled down on one knee and asked Nina to marry him.", - "transcription": "[niːl]", - "__v": 0, - "textExampleTranslate": "Дэрил опустился на одно колено и попросил Нину выйти за него замуж", - "textMeaningTranslate": "Стоять на коленях - значит поставить одно или оба колена на землю", - "wordTranslate": "становиться на колени" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa63" - }, - "group": 2, - "page": 13, - "word": "massive", - "image": "files/14_1476.jpg", - "audio": "files/14_1476.mp3", - "audioMeaning": "files/14_1476_meaning.mp3", - "audioExample": "files/14_1476_example.mp3", - "textMeaning": "A massive thing is very big.", - "textExample": "The wheels on his truck were massive.", - "transcription": "[mǽsiv]", - "__v": 0, - "textExampleTranslate": "Колеса на его грузовике были массивными", - "textMeaningTranslate": "Массивная вещь очень большая", - "wordTranslate": "массивный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa64" - }, - "group": 2, - "page": 13, - "word": "panic", - "image": "files/14_1477.jpg", - "audio": "files/14_1477.mp3", - "audioMeaning": "files/14_1477_meaning.mp3", - "audioExample": "files/14_1477_example.mp3", - "textMeaning": "To panic is to feel so nervous or afraid that one cannot think clearly.", - "textExample": "Everyone panicked when the house caught on fire.", - "transcription": "[pǽnik]", - "__v": 0, - "textExampleTranslate": "Все запаниковали, когда дом загорелся", - "textMeaningTranslate": "Паниковать - значит нервничать или бояться, что никто не может ясно мыслить", - "wordTranslate": "паника" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa65" - }, - "group": 2, - "page": 13, - "word": "priority", - "image": "files/14_1478.jpg", - "audio": "files/14_1478.mp3", - "audioMeaning": "files/14_1478_meaning.mp3", - "audioExample": "files/14_1478_example.mp3", - "textMeaning": "A priority is something that is more important than other things.", - "textExample": "My priority is to get good grades in school.", - "transcription": "[praiɔ́ːrəti]", - "__v": 0, - "textExampleTranslate": "Мой приоритет - получать хорошие оценки в школе", - "textMeaningTranslate": "Приоритет - это то, что важнее других вещей", - "wordTranslate": "приоритет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa66" - }, - "group": 2, - "page": 13, - "word": "robe", - "image": "files/14_1479.jpg", - "audio": "files/14_1479.mp3", - "audioMeaning": "files/14_1479_meaning.mp3", - "audioExample": "files/14_1479_example.mp3", - "textMeaning": "A robe is a long, loose piece of clothing.", - "textExample": "The monks at the temple all wear robes.", - "transcription": "[roub]", - "__v": 0, - "textExampleTranslate": "Монахи в храме все носят одежды", - "textMeaningTranslate": "Халат - это длинный, свободный предмет одежды", - "wordTranslate": "халат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa67" - }, - "group": 2, - "page": 13, - "word": "scold", - "image": "files/14_1480.jpg", - "audio": "files/14_1480.mp3", - "audioMeaning": "files/14_1480_meaning.mp3", - "audioExample": "files/14_1480_example.mp3", - "textMeaning": "To scold means to criticize someone angrily for doing something wrong.", - "textExample": "Jesse was scolded by the teacher for not paying attention.", - "transcription": "[skould]", - "__v": 0, - "textExampleTranslate": "Джесси был отчитан учителем за то, что он не обратил внимания", - "textMeaningTranslate": "Бранить - значит гневно критиковать кого-то за то, что он сделал что-то не то", - "wordTranslate": "ругать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa68" - }, - "group": 2, - "page": 14, - "word": "affair", - "image": "files/15_1481.jpg", - "audio": "files/15_1481.mp3", - "audioMeaning": "files/15_1481_meaning.mp3", - "audioExample": "files/15_1481_example.mp3", - "textMeaning": "An affair is an event or a thing that happened.", - "textExample": "My wife and I attended a formal affair over the weekend.", - "transcription": "[əfɛ́ər]", - "__v": 0, - "textExampleTranslate": "Мы с женой посетили официальное мероприятие на выходных", - "textMeaningTranslate": "Дело - это событие или вещь, которая произошла", - "wordTranslate": "дело" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa69" - }, - "group": 2, - "page": 14, - "word": "assembly", - "image": "files/15_1482.jpg", - "audio": "files/15_1482.mp3", - "audioMeaning": "files/15_1482_meaning.mp3", - "audioExample": "files/15_1482_example.mp3", - "textMeaning": "An assembly is a group gathered together for the same reason.", - "textExample": "The students had an assembly to talk about their interests.", - "transcription": "[əsémbli]", - "__v": 0, - "textExampleTranslate": "У студентов было собрание, чтобы поговорить об их интересах", - "textMeaningTranslate": "Собрание - это группа, собранная по одной и той же причине", - "wordTranslate": "сборка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa6a" - }, - "group": 2, - "page": 14, - "word": "bless", - "image": "files/15_1483.jpg", - "audio": "files/15_1483.mp3", - "audioMeaning": "files/15_1483_meaning.mp3", - "audioExample": "files/15_1483_example.mp3", - "textMeaning": "To bless is to ask God for protection or help.", - "textExample": "The angel blessed the newborn baby to keep it safe.", - "transcription": "[bles]", - "__v": 0, - "textExampleTranslate": "Ангел благословил новорожденного, чтобы он был в безопасности", - "textMeaningTranslate": "Благословить - значит просить Бога о защите или помощи", - "wordTranslate": "благословить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa6b" - }, - "group": 2, - "page": 14, - "word": "diameter", - "image": "files/15_1486.jpg", - "audio": "files/15_1486.mp3", - "audioMeaning": "files/15_1486_meaning.mp3", - "audioExample": "files/15_1486_example.mp3", - "textMeaning": "The diameter of a round thing is the length across its center.", - "textExample": "The diameter of the tree was about 60 centimeters.", - "transcription": "[daiǽmitər]", - "__v": 0, - "textExampleTranslate": "Диаметр дерева составлял около 60 сантиметров ", - "textMeaningTranslate": "Диаметр круглой вещи есть длина поперек ее центра", - "wordTranslate": "диаметр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa6c" - }, - "group": 2, - "page": 14, - "word": "cereal", - "image": "files/15_1484.jpg", - "audio": "files/15_1484.mp3", - "audioMeaning": "files/15_1484_meaning.mp3", - "audioExample": "files/15_1484_example.mp3", - "textMeaning": "Cereal is a breakfast food made from grains that is eaten with milk.", - "textExample": "Cereal is a fast and common breakfast food enjoyed in the US.", - "transcription": "[síəriəl]", - "__v": 0, - "textExampleTranslate": "Хлопья - это быстрая и распространенная еда на завтрак, которой пользуются в США", - "textMeaningTranslate": "Зерновые - это завтрак, приготовленный из зерен, который едят с молоком", - "wordTranslate": "крупа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa6d" - }, - "group": 2, - "page": 14, - "word": "exploit", - "image": "files/15_1487.jpg", - "audio": "files/15_1487.mp3", - "audioMeaning": "files/15_1487_meaning.mp3", - "audioExample": "files/15_1487_example.mp3", - "textMeaning": "To exploit something is to use it for greedy reasons rather than good reasons.", - "textExample": "The company exploits their workers and makes them work 12 hours a day.", - "transcription": "[iksplɔ́it]", - "__v": 0, - "textExampleTranslate": "Компания эксплуатирует своих работников и заставляет их работать по 12 часов в день", - "textMeaningTranslate": "Использовать что-то - значит использовать это по жадным причинам, а не по уважительным причинам", - "wordTranslate": "использовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa6e" - }, - "group": 2, - "page": 14, - "word": "cheerful", - "image": "files/15_1485.jpg", - "audio": "files/15_1485.mp3", - "audioMeaning": "files/15_1485_meaning.mp3", - "audioExample": "files/15_1485_example.mp3", - "textMeaning": "A cheerful person is happy and pleasant.", - "textExample": "The children were cheerful because they didn’t have to go to school.", - "transcription": "[tʃíərfəl]", - "__v": 0, - "textExampleTranslate": "Дети были веселы, потому что им не нужно было ходить в школу", - "textMeaningTranslate": "Веселый человек счастлив и приятен", - "wordTranslate": "веселая" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa6f" - }, - "group": 2, - "page": 14, - "word": "famine", - "image": "files/15_1488.jpg", - "audio": "files/15_1488.mp3", - "audioMeaning": "files/15_1488_meaning.mp3", - "audioExample": "files/15_1488_example.mp3", - "textMeaning": "A famine is a long time with little or no food.", - "textExample": "The farmers couldn’t grow any food in the dry soil, so there was a famine.", - "transcription": "[fǽmin]", - "__v": 0, - "textExampleTranslate": "Фермеры не могли выращивать пищу в сухой почве, поэтому был голод", - "textMeaningTranslate": "Голод - это долгое время, когда почти нет еды", - "wordTranslate": "голод" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa70" - }, - "group": 2, - "page": 14, - "word": "harvest", - "image": "files/15_1489.jpg", - "audio": "files/15_1489.mp3", - "audioMeaning": "files/15_1489_meaning.mp3", - "audioExample": "files/15_1489_example.mp3", - "textMeaning": "A harvest is the act of collecting food from farming.", - "textExample": "They had a lot of wheat from the last harvest.", - "transcription": "[hɑ́ːrvist]", - "__v": 0, - "textExampleTranslate": "У них было много пшеницы с последнего урожая", - "textMeaningTranslate": "Урожай - это акт сбора продовольствия на ферме", - "wordTranslate": "уборка урожая" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa72" - }, - "group": 2, - "page": 14, - "word": "pardon", - "image": "files/15_1492.jpg", - "audio": "files/15_1492.mp3", - "audioMeaning": "files/15_1492_meaning.mp3", - "audioExample": "files/15_1492_example.mp3", - "textMeaning": "To pardon is to not be angry at someone for asking a question or for making a mistake.", - "textExample": "Pardon me teacher, but could you repeat what you just said?", - "transcription": "[pɑ́ːrdn]", - "__v": 0, - "textExampleTranslate": "Простите меня учитель, но не могли бы вы повторить то, что вы только что сказали?", - "textMeaningTranslate": "Прощение означает не сердиться на кого-то за то, что он задал вопрос или сделал ошибку", - "wordTranslate": "помилование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa71" - }, - "group": 2, - "page": 14, - "word": "nut", - "image": "files/15_1491.jpg", - "audio": "files/15_1491.mp3", - "audioMeaning": "files/15_1491_meaning.mp3", - "audioExample": "files/15_1491_example.mp3", - "textMeaning": "A nut is a hard seed or fruit that comes from some trees and bushes.", - "textExample": "To eat a nut, you must first crack its shell.", - "transcription": "[nʌt]", - "__v": 0, - "textExampleTranslate": "Чтобы съесть орех, нужно сначала взломать его скорлупу", - "textMeaningTranslate": "Орех - это твердое семя или плод, который растет на некоторых деревьях и кустарниках", - "wordTranslate": "орех" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa73" - }, - "group": 2, - "page": 14, - "word": "merry", - "image": "files/15_1490.jpg", - "audio": "files/15_1490.mp3", - "audioMeaning": "files/15_1490_meaning.mp3", - "audioExample": "files/15_1490_example.mp3", - "textMeaning": "A merry person is happy and pleasant.", - "textExample": "They felt merry because the weather was great.", - "transcription": "[méri]", - "__v": 0, - "textExampleTranslate": "Им было весело, потому что погода была отличной", - "textMeaningTranslate": "Веселый человек счастлив и приятен", - "wordTranslate": "весёлая" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa74" - }, - "group": 2, - "page": 14, - "word": "pharaoh", - "image": "files/15_1493.jpg", - "audio": "files/15_1493.mp3", - "audioMeaning": "files/15_1493_meaning.mp3", - "audioExample": "files/15_1493_example.mp3", - "textMeaning": "A pharaoh was a king in ancient Egypt.", - "textExample": "The pharaohs ruled Egypt for thousands of years.", - "transcription": "[fέərou]", - "__v": 0, - "textExampleTranslate": "Фараоны правили Египтом тысячи лет", - "textMeaningTranslate": "Фараон был царем в древнем Египте", - "wordTranslate": "фараон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa75" - }, - "group": 2, - "page": 14, - "word": "ripe", - "image": "files/15_1494.jpg", - "audio": "files/15_1494.mp3", - "audioMeaning": "files/15_1494_meaning.mp3", - "audioExample": "files/15_1494_example.mp3", - "textMeaning": "A ripe fruit or vegetable is ready to be eaten.", - "textExample": "The cherries were nice and ripe.", - "transcription": "[raip]", - "__v": 0, - "textExampleTranslate": "Вишни были хорошими и спелыми", - "textMeaningTranslate": "Спелый фрукт или овощ готов к употреблению", - "wordTranslate": "созрел" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa76" - }, - "group": 2, - "page": 14, - "word": "scheme", - "image": "files/15_1497.jpg", - "audio": "files/15_1497.mp3", - "audioMeaning": "files/15_1497_meaning.mp3", - "audioExample": "files/15_1497_example.mp3", - "textMeaning": "A scheme is a plan or design.", - "textExample": "Jason and Mark came up with a scheme to solve the problem.", - "transcription": "[skiːm]", - "__v": 0, - "textExampleTranslate": "Джейсон и Марк придумали схему для решения проблемы", - "textMeaningTranslate": "Схема - это план или дизайн", - "wordTranslate": "схема" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa78" - }, - "group": 2, - "page": 14, - "word": "roast", - "image": "files/15_1495.jpg", - "audio": "files/15_1495.mp3", - "audioMeaning": "files/15_1495_meaning.mp3", - "audioExample": "files/15_1495_example.mp3", - "textMeaning": "To roast something is to cook it in an oven or over a fire.", - "textExample": "Mom roasted a turkey for the holiday dinner.", - "transcription": "[roust]", - "__v": 0, - "textExampleTranslate": "Мама жарила индейку на праздничный ужин", - "textMeaningTranslate": "Жарить что-то значит готовить в духовке или на огне", - "wordTranslate": "жареный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa77" - }, - "group": 2, - "page": 14, - "word": "routine", - "image": "files/15_1496.jpg", - "audio": "files/15_1496.mp3", - "audioMeaning": "files/15_1496_meaning.mp3", - "audioExample": "files/15_1496_example.mp3", - "textMeaning": "A routine is a way of doing things that is the same every time.", - "textExample": "My father’s daily routine includes shaving right before breakfast.", - "transcription": "[ruːtíːn]", - "__v": 0, - "textExampleTranslate": "Повседневная жизнь моего отца включает бритье прямо перед завтраком", - "textMeaningTranslate": "Рутина - это способ делать вещи, которые всегда одинаковы", - "wordTranslate": "рутина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa79" - }, - "group": 2, - "page": 14, - "word": "slim", - "image": "files/15_1498.jpg", - "audio": "files/15_1498.mp3", - "audioMeaning": "files/15_1498_meaning.mp3", - "audioExample": "files/15_1498_example.mp3", - "textMeaning": "A slim person or thing is thin, not thick.", - "textExample": "Look at my new cell phone. It’s very slim.", - "transcription": "[slim]", - "__v": 0, - "textExampleTranslate": "Посмотрите на мой новый сотовый телефон. Он очень тонкий", - "textMeaningTranslate": "Тонкий человек или вещь тонкая, а не толстая", - "wordTranslate": "стройное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa7b" - }, - "group": 2, - "page": 15, - "word": "aptitude", - "image": "files/16_1502.jpg", - "audio": "files/16_1502.mp3", - "audioMeaning": "files/16_1502_meaning.mp3", - "audioExample": "files/16_1502_example.mp3", - "textMeaning": "Aptitude is a natural ability or skill.", - "textExample": "He has a natural aptitude for water skiing.", - "transcription": "[ǽptitùːd]", - "__v": 0, - "textExampleTranslate": "У него природная склонность к катанию на водных лыжах", - "textMeaningTranslate": "Способность - это естественная способность или умение", - "wordTranslate": "способность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa7a" - }, - "group": 2, - "page": 14, - "word": "stove", - "image": "files/15_1499.jpg", - "audio": "files/15_1499.mp3", - "audioMeaning": "files/15_1499_meaning.mp3", - "audioExample": "files/15_1499_example.mp3", - "textMeaning": "A stove is a device used to cook food.", - "textExample": "Our new stove helps us to cook food much faster than before.", - "transcription": "[stouv]", - "__v": 0, - "textExampleTranslate": "Наша новая плита помогает нам готовить еду намного быстрее, чем раньше", - "textMeaningTranslate": "Печка - это устройство, используемое для приготовления пищи", - "wordTranslate": "плита" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa7e" - }, - "group": 2, - "page": 15, - "word": "compliment", - "image": "files/16_1503.jpg", - "audio": "files/16_1503.mp3", - "audioMeaning": "files/16_1503_meaning.mp3", - "audioExample": "files/16_1503_example.mp3", - "textMeaning": "To compliment is to say a nice thing about someone or something.", - "textExample": "Her co-worker complimented her for doing a good job.", - "transcription": "[kɑ́mpləmənt]", - "__v": 0, - "textExampleTranslate": "Ее коллега похвалила ее за хорошую работу", - "textMeaningTranslate": "Комплимент означает сказать что-то хорошее о ком-то или о чем-то", - "wordTranslate": "комплимент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa7d" - }, - "group": 2, - "page": 14, - "word": "theft", - "image": "files/15_1500.jpg", - "audio": "files/15_1500.mp3", - "audioMeaning": "files/15_1500_meaning.mp3", - "audioExample": "files/15_1500_example.mp3", - "textMeaning": "A theft is a criminal act that involves someone stealing something.", - "textExample": "The theft of his TV took place when he was at work.", - "transcription": "[θeft]", - "__v": 0, - "textExampleTranslate": "Кража его телевизора произошла, когда он был на работе", - "textMeaningTranslate": "Кража - это преступное деяние, в котором кто-то что-то крадет", - "wordTranslate": "кража" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa7c" - }, - "group": 2, - "page": 15, - "word": "adolescent", - "image": "files/16_1501.jpg", - "audio": "files/16_1501.mp3", - "audioMeaning": "files/16_1501_meaning.mp3", - "audioExample": "files/16_1501_example.mp3", - "textMeaning": "An adolescent is a young person or a teenager.", - "textExample": "The adolescent was excited about getting a skateboard for his birthday.", - "transcription": "[ӕdəlésnt]", - "__v": 0, - "textExampleTranslate": "Подросток был рад получить скейтборд на день рождения", - "textMeaningTranslate": "Подросток - это молодой человек или подросток", - "wordTranslate": "подросток" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa7f" - }, - "group": 2, - "page": 15, - "word": "hinder", - "image": "files/16_1504.jpg", - "audio": "files/16_1504.mp3", - "audioMeaning": "files/16_1504_meaning.mp3", - "audioExample": "files/16_1504_example.mp3", - "textMeaning": "To hinder is to stop someone or something from doing something.", - "textExample": "All the traffic hindered me from getting to work on time.", - "transcription": "[híndər]", - "__v": 0, - "textExampleTranslate": "Весь трафик мешал мне приходить на работу вовремя", - "textMeaningTranslate": "Помешать - значит помешать кому-то или чему-то сделать что-то", - "wordTranslate": "препятствуют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa80" - }, - "group": 2, - "page": 15, - "word": "journalism", - "image": "files/16_1505.jpg", - "audio": "files/16_1505.mp3", - "audioMeaning": "files/16_1505_meaning.mp3", - "audioExample": "files/16_1505_example.mp3", - "textMeaning": "Journalism is the work of collecting the news to put in newspapers or on TV.", - "textExample": "Before becoming a teacher, she worked in journalism.", - "transcription": "[dʒə́ːrnəlìzəm]", - "__v": 0, - "textExampleTranslate": "Прежде чем стать учителем, она работала в журналистике", - "textMeaningTranslate": "Журналистика - это работа по сбору новостей для размещения в газетах или на телевидении", - "wordTranslate": "журналистика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa81" - }, - "group": 2, - "page": 15, - "word": "justice", - "image": "files/16_1507.jpg", - "audio": "files/16_1507.mp3", - "audioMeaning": "files/16_1507_meaning.mp3", - "audioExample": "files/16_1507_example.mp3", - "textMeaning": "Justice is fairness in the way that people are treated.", - "textExample": "People turn to the court system when they are seeking justice.", - "transcription": "[dʒʌ́stis]", - "__v": 0, - "textExampleTranslate": "Люди обращаются к судебной системе, когда ищут справедливости", - "textMeaningTranslate": "Справедливость - это справедливость в отношении людей", - "wordTranslate": "справедливость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa83" - }, - "group": 2, - "page": 15, - "word": "liberty", - "image": "files/16_1508.jpg", - "audio": "files/16_1508.mp3", - "audioMeaning": "files/16_1508_meaning.mp3", - "audioExample": "files/16_1508_example.mp3", - "textMeaning": "Liberty is freedom to do what one wants.", - "textExample": "To many people, the Statue of Liberty is a symbol of freedom.", - "transcription": "[líbəːrti]", - "__v": 0, - "textExampleTranslate": "Для многих Статуя Свободы является символом свободы", - "textMeaningTranslate": "Свобода - это свобода делать то, что хочешь", - "wordTranslate": "свобода" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa82" - }, - "group": 2, - "page": 15, - "word": "jury", - "image": "files/16_1506.jpg", - "audio": "files/16_1506.mp3", - "audioMeaning": "files/16_1506_meaning.mp3", - "audioExample": "files/16_1506_example.mp3", - "textMeaning": "A jury is a group of people that listen to a trial and say if someone is guilty.", - "textExample": "The jury listened closely to the attorney before they made their decision.", - "transcription": "[dʒúəri]", - "__v": 0, - "textExampleTranslate": "Жюри внимательно выслушало адвоката, прежде чем они приняли решение", - "textMeaningTranslate": "Жюри - это группа людей, которые слушают суд и говорят, если кто-то виновен", - "wordTranslate": "жюри" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa84" - }, - "group": 2, - "page": 15, - "word": "literary", - "image": "files/16_1509.jpg", - "audio": "files/16_1509.mp3", - "audioMeaning": "files/16_1509_meaning.mp3", - "audioExample": "files/16_1509_example.mp3", - "textMeaning": "A literary person or thing is involved with literature in some way.", - "textExample": "He worked hard to create a successful literary career.", - "transcription": "[lítərèri]", - "__v": 0, - "textExampleTranslate": "Он много работал, чтобы создать успешную литературную карьеру", - "textMeaningTranslate": "Литературный человек или вещь каким-то образом связаны с литературой", - "wordTranslate": "литературный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa85" - }, - "group": 2, - "page": 15, - "word": "pharmacy", - "image": "files/16_1510.jpg", - "audio": "files/16_1510.mp3", - "audioMeaning": "files/16_1510_meaning.mp3", - "audioExample": "files/16_1510_example.mp3", - "textMeaning": "A pharmacy is a place where medicine is sold.", - "textExample": "My mother sells medicine to people at the pharmacy.", - "transcription": "[fɑ́ːrməsi]", - "__v": 0, - "textExampleTranslate": "Моя мама продает лекарства людям в аптеке", - "textMeaningTranslate": "Аптека - это место, где продаются лекарства", - "wordTranslate": "аптека" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa87" - }, - "group": 2, - "page": 15, - "word": "privacy", - "image": "files/16_1513.jpg", - "audio": "files/16_1513.mp3", - "audioMeaning": "files/16_1513_meaning.mp3", - "audioExample": "files/16_1513_example.mp3", - "textMeaning": "Privacy is the state of being happily away from other people.", - "textExample": "Please hang the sign on the door so we can have some privacy.", - "transcription": "[práivəsi]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, повесьте табличку на дверь, чтобы мы могли немного уединиться", - "textMeaningTranslate": "Конфиденциальность - это состояние счастья вдали от других людей", - "wordTranslate": "конфиденциальность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa86" - }, - "group": 2, - "page": 15, - "word": "pill", - "image": "files/16_1511.jpg", - "audio": "files/16_1511.mp3", - "audioMeaning": "files/16_1511_meaning.mp3", - "audioExample": "files/16_1511_example.mp3", - "textMeaning": "A pill is a small object that has medicine inside.", - "textExample": "She took a pill for her headache.", - "transcription": "[pil]", - "__v": 0, - "textExampleTranslate": "Она приняла таблетку от головной боли", - "textMeaningTranslate": "Таблетка - это маленький предмет, внутри которого есть лекарство", - "wordTranslate": "таблетка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa88" - }, - "group": 2, - "page": 15, - "word": "presume", - "image": "files/16_1512.jpg", - "audio": "files/16_1512.mp3", - "audioMeaning": "files/16_1512_meaning.mp3", - "audioExample": "files/16_1512_example.mp3", - "textMeaning": "To presume is to believe something is true without being certain.", - "textExample": "Since the girl raised her hand, the teacher presumed she knew the answer.", - "transcription": "[prizúːm]", - "__v": 0, - "textExampleTranslate": "Поскольку девушка подняла руку, учитель предположил, что она знает ответ", - "textMeaningTranslate": "Предполагать, значит верить, что что-то верно, не будучи уверенным", - "wordTranslate": "предположить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa89" - }, - "group": 2, - "page": 15, - "word": "punishment", - "image": "files/16_1514.jpg", - "audio": "files/16_1514.mp3", - "audioMeaning": "files/16_1514_meaning.mp3", - "audioExample": "files/16_1514_example.mp3", - "textMeaning": "A punishment is something that one must endure for any wrongdoing.", - "textExample": "He was given a punishment for being rude to the teacher.", - "transcription": "[pʌ́niʃmənt]", - "__v": 0, - "textExampleTranslate": "Его наказали за грубость перед учителем", - "textMeaningTranslate": "Наказание - это то, что нужно терпеть за любое проступок", - "wordTranslate": "наказание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa8b" - }, - "group": 2, - "page": 15, - "word": "slice", - "image": "files/16_1516.jpg", - "audio": "files/16_1516.mp3", - "audioMeaning": "files/16_1516_meaning.mp3", - "audioExample": "files/16_1516_example.mp3", - "textMeaning": "A slice is a piece from something larger, such as a cake.", - "textExample": "The girl enjoyed a slice of cake at her birthday party.", - "transcription": "[slais]", - "__v": 0, - "textExampleTranslate": "Девочке понравился кусочек торта на ее дне рождения", - "textMeaningTranslate": "Ломтик - это кусок чего-то большего, например, пирожного", - "wordTranslate": "кусочек" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa8a" - }, - "group": 2, - "page": 15, - "word": "sensible", - "image": "files/16_1515.jpg", - "audio": "files/16_1515.mp3", - "audioMeaning": "files/16_1515_meaning.mp3", - "audioExample": "files/16_1515_example.mp3", - "textMeaning": "A sensible person or thing is good and smart.", - "textExample": "It was sensible for her to save some money each month.", - "transcription": "[sénsəbəl]", - "__v": 0, - "textExampleTranslate": "Ей было разумно экономить деньги каждый месяц", - "textMeaningTranslate": "Разумный человек или вещь хорошая и умная", - "wordTranslate": "разумный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa8c" - }, - "group": 2, - "page": 15, - "word": "sorrow", - "image": "files/16_1517.jpg", - "audio": "files/16_1517.mp3", - "audioMeaning": "files/16_1517_meaning.mp3", - "audioExample": "files/16_1517_example.mp3", - "textMeaning": "Sorrow is a very sad feeling.", - "textExample": "The girl felt sorrow after her best friend moved away.", - "transcription": "[sɑ́rou]", - "__v": 0, - "textExampleTranslate": "Девушка скорбела после того, как ее лучшая подруга ушла", - "textMeaningTranslate": "Печаль - это очень грустное чувство", - "wordTranslate": "печаль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa8d" - }, - "group": 2, - "page": 15, - "word": "straw", - "image": "files/16_1518.jpg", - "audio": "files/16_1518.mp3", - "audioMeaning": "files/16_1518_meaning.mp3", - "audioExample": "files/16_1518_example.mp3", - "textMeaning": "A straw is a thin tube that is used to suck liquid into the mouth.", - "textExample": "I drank the orange juice through a straw.", - "transcription": "[strɔː]", - "__v": 0, - "textExampleTranslate": "Я пил апельсиновый сок через соломинку", - "textMeaningTranslate": "Солома - это тонкая трубка, которая используется для всасывания жидкости в рот", - "wordTranslate": "солома" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa8e" - }, - "group": 2, - "page": 15, - "word": "swell", - "image": "files/16_1519.jpg", - "audio": "files/16_1519.mp3", - "audioMeaning": "files/16_1519_meaning.mp3", - "audioExample": "files/16_1519_example.mp3", - "textMeaning": "To swell is to become larger and rounder.", - "textExample": "My sister’s stomach began to swell after she got pregnant.", - "transcription": "[swel]", - "__v": 0, - "textExampleTranslate": "Живот моей сестры начал опухать после того, как она забеременела", - "textMeaningTranslate": "Раздуваться - значит становиться больше и круглее", - "wordTranslate": "зыбь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa8f" - }, - "group": 2, - "page": 15, - "word": "tidy", - "image": "files/16_1520.jpg", - "audio": "files/16_1520.mp3", - "audioMeaning": "files/16_1520_meaning.mp3", - "audioExample": "files/16_1520_example.mp3", - "textMeaning": "A tidy place or person is clean and in order.", - "textExample": "Leon has always been a very tidy boy.", - "transcription": "[táidi]", - "__v": 0, - "textExampleTranslate": "Леон всегда был очень аккуратным мальчиком", - "textMeaningTranslate": "Чистое место или человек в порядке и чистоте", - "wordTranslate": "аккуратный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa90" - }, - "group": 2, - "page": 16, - "word": "affection", - "image": "files/17_1521.jpg", - "audio": "files/17_1521.mp3", - "audioMeaning": "files/17_1521_meaning.mp3", - "audioExample": "files/17_1521_example.mp3", - "textMeaning": "Affection is a feeling of liking someone or something.", - "textExample": "Amanda has a lot of affection for her little sister, Sarah.", - "transcription": "[əfékʃən]", - "__v": 0, - "textExampleTranslate": "Аманда очень любит свою младшую сестру Сару", - "textMeaningTranslate": "Любовь - это чувство симпатии к кому-то или чему-то", - "wordTranslate": "привязанность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa91" - }, - "group": 2, - "page": 16, - "word": "agency", - "image": "files/17_1522.jpg", - "audio": "files/17_1522.mp3", - "audioMeaning": "files/17_1522_meaning.mp3", - "audioExample": "files/17_1522_example.mp3", - "textMeaning": "An agency is a business or service set up to act for others.", - "textExample": "I went to a travel agency to help me arrange a flight home.", - "transcription": "[éidʒənsi]", - "__v": 0, - "textExampleTranslate": "Я пошел в туристическое агентство, чтобы помочь мне организовать перелет домой", - "textMeaningTranslate": "Агентство - это бизнес или услуга, созданная для того, чтобы действовать для других", - "wordTranslate": "агентство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa92" - }, - "group": 2, - "page": 16, - "word": "ash", - "image": "files/17_1523.jpg", - "audio": "files/17_1523.mp3", - "audioMeaning": "files/17_1523_meaning.mp3", - "audioExample": "files/17_1523_example.mp3", - "textMeaning": "Ash is the grey or black powder created when something is burned.", - "textExample": "The end of his cigar was full of ashes.", - "transcription": "[æʃ]", - "__v": 0, - "textExampleTranslate": "Конец его сигары был полон пепла", - "textMeaningTranslate": "Пепел - это серый или черный порошок, созданный, когда что-то сжигается", - "wordTranslate": "пепел" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa93" - }, - "group": 2, - "page": 16, - "word": "confine", - "image": "files/17_1524.jpg", - "audio": "files/17_1524.mp3", - "audioMeaning": "files/17_1524_meaning.mp3", - "audioExample": "files/17_1524_example.mp3", - "textMeaning": "To confine something is to keep it in one place.", - "textExample": "The elephant is confined to a cage in the zoo.", - "transcription": "[kənfáin]", - "__v": 0, - "textExampleTranslate": "Слон ограничен клеткой в зоопарке", - "textMeaningTranslate": "Ограничить что-то - значит держать это в одном месте", - "wordTranslate": "ограничивать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa94" - }, - "group": 2, - "page": 16, - "word": "dismiss", - "image": "files/17_1525.jpg", - "audio": "files/17_1525.mp3", - "audioMeaning": "files/17_1525_meaning.mp3", - "audioExample": "files/17_1525_example.mp3", - "textMeaning": "To dismiss something is to say it is not important.", - "textExample": "He quickly dismissed my idea about the new project.", - "transcription": "[dismís]", - "__v": 0, - "textExampleTranslate": "Он быстро отклонил мою идею о новом проекте", - "textMeaningTranslate": "Отклонить что-то значит сказать, что это не важно", - "wordTranslate": "уволить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa95" - }, - "group": 2, - "page": 16, - "word": "erupt", - "image": "files/17_1526.jpg", - "audio": "files/17_1526.mp3", - "audioMeaning": "files/17_1526_meaning.mp3", - "audioExample": "files/17_1526_example.mp3", - "textMeaning": "To erupt is to explode or blow apart, especially a volcano.", - "textExample": "The volcano erupted for the first time in ten years.", - "transcription": "[irʌ́pt]", - "__v": 0, - "textExampleTranslate": "Вулкан извергся впервые за десять лет", - "textMeaningTranslate": "Извергаться - значит взрываться или взрываться, особенно вулкан", - "wordTranslate": "вспыхнуть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa96" - }, - "group": 2, - "page": 16, - "word": "fate", - "image": "files/17_1527.jpg", - "audio": "files/17_1527.mp3", - "audioMeaning": "files/17_1527_meaning.mp3", - "audioExample": "files/17_1527_example.mp3", - "textMeaning": "Fate is a power that causes things to happen.", - "textExample": "Some people believe that the lines on a person’s hand can tell his or her fate.", - "transcription": "[feit]", - "__v": 0, - "textExampleTranslate": "Некоторые люди считают, что линии на руке человека могут сказать его или ее судьбу", - "textMeaningTranslate": "Судьба - это сила, которая заставляет вещи происходить", - "wordTranslate": "судьба" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa97" - }, - "group": 2, - "page": 16, - "word": "lava", - "image": "files/17_1528.jpg", - "audio": "files/17_1528.mp3", - "audioMeaning": "files/17_1528_meaning.mp3", - "audioExample": "files/17_1528_example.mp3", - "textMeaning": "Lava is the hot substance made of melted rock that comes out of volcanoes.", - "textExample": "The red-hot lava poured from the volcano.", - "transcription": "[lɑ́ːvə]", - "__v": 0, - "textExampleTranslate": "Раскаленная лава из вулкана", - "textMeaningTranslate": "Лава - это горячее вещество из расплавленной породы, которое исходит из вулканов", - "wordTranslate": "лава" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa98" - }, - "group": 2, - "page": 16, - "word": "miserable", - "image": "files/17_1529.jpg", - "audio": "files/17_1529.mp3", - "audioMeaning": "files/17_1529_meaning.mp3", - "audioExample": "files/17_1529_example.mp3", - "textMeaning": "A miserable person is very unhappy.", - "textExample": "He was miserable after his dog died.", - "transcription": "[mízərəbəl]", - "__v": 0, - "textExampleTranslate": "Он был несчастен после того, как его собака умерла", - "textMeaningTranslate": "Бедный человек очень несчастен", - "wordTranslate": "несчастный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa99" - }, - "group": 2, - "page": 16, - "word": "navigate", - "image": "files/17_1530.jpg", - "audio": "files/17_1530.mp3", - "audioMeaning": "files/17_1530_meaning.mp3", - "audioExample": "files/17_1530_example.mp3", - "textMeaning": "To navigate something is to control the way it moves or goes.", - "textExample": "She navigated the ship across the ocean.", - "transcription": "[nǽvəgèit]", - "__v": 0, - "textExampleTranslate": "Она прошла корабль через океан", - "textMeaningTranslate": "Навигация по чему-либо означает контроль за тем, как оно движется или идет", - "wordTranslate": "навигация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa9a" - }, - "group": 2, - "page": 16, - "word": "originate", - "image": "files/17_1531.jpg", - "audio": "files/17_1531.mp3", - "audioMeaning": "files/17_1531_meaning.mp3", - "audioExample": "files/17_1531_example.mp3", - "textMeaning": "To originate somewhere is to start there.", - "textExample": "The idea of democracy originated in Ancient Greece.", - "transcription": "[ərídʒənèit]", - "__v": 0, - "textExampleTranslate": "Идея демократии возникла в Древней Греции", - "textMeaningTranslate": "Начать где-то значит начать там", - "wordTranslate": "происходят" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa9b" - }, - "group": 2, - "page": 16, - "word": "remainder", - "image": "files/17_1532.jpg", - "audio": "files/17_1532.mp3", - "audioMeaning": "files/17_1532_meaning.mp3", - "audioExample": "files/17_1532_example.mp3", - "textMeaning": "The remainder of something is what is left.", - "textExample": "He took a bite of the apple and then gave me the remainder of it.", - "transcription": "[riméindəːr]", - "__v": 0, - "textExampleTranslate": "Он откусил яблоко, а затем дал мне остаток от него", - "textMeaningTranslate": "Остаток чего-то - это то, что осталось", - "wordTranslate": "остаток" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa9c" - }, - "group": 2, - "page": 16, - "word": "retrieve", - "image": "files/17_1533.jpg", - "audio": "files/17_1533.mp3", - "audioMeaning": "files/17_1533_meaning.mp3", - "audioExample": "files/17_1533_example.mp3", - "textMeaning": "To retrieve something is to find it and get it back.", - "textExample": "She retrieved her mail from the mailbox.", - "transcription": "[ritríːv]", - "__v": 0, - "textExampleTranslate": "Она получила свою почту из почтового ящика", - "textMeaningTranslate": "Извлечь что-то значит найти и вернуть обратно", - "wordTranslate": "получить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa9d" - }, - "group": 2, - "page": 16, - "word": "shallow", - "image": "files/17_1534.jpg", - "audio": "files/17_1534.mp3", - "audioMeaning": "files/17_1534_meaning.mp3", - "audioExample": "files/17_1534_example.mp3", - "textMeaning": "A shallow thing is not deep.", - "textExample": "The kids were playing in the shallow water.", - "transcription": "[ʃǽlou]", - "__v": 0, - "textExampleTranslate": "Дети играли на мелководье", - "textMeaningTranslate": "Мелкая вещь не глубокая", - "wordTranslate": "мелкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa9e" - }, - "group": 2, - "page": 16, - "word": "slope", - "image": "files/17_1535.jpg", - "audio": "files/17_1535.mp3", - "audioMeaning": "files/17_1535_meaning.mp3", - "audioExample": "files/17_1535_example.mp3", - "textMeaning": "A slope is ground that is not flat.", - "textExample": "The slope to the top of the mountain was very steep.", - "transcription": "[sloup]", - "__v": 0, - "textExampleTranslate": "Склон к вершине горы был очень крутым", - "textMeaningTranslate": "Склон - это земля, которая не является плоской", - "wordTranslate": "крутизна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afa9f" - }, - "group": 2, - "page": 16, - "word": "span", - "image": "files/17_1536.jpg", - "audio": "files/17_1536.mp3", - "audioMeaning": "files/17_1536_meaning.mp3", - "audioExample": "files/17_1536_example.mp3", - "textMeaning": "To span is to spread across an amount of time or space.", - "textExample": "His work at the bakery has spanned twenty years.", - "transcription": "[spæn]", - "__v": 0, - "textExampleTranslate": "Его работа в пекарне длилась двадцать лет", - "textMeaningTranslate": "Распространение - это распространение во времени или пространстве", - "wordTranslate": "диапазон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaa0" - }, - "group": 2, - "page": 16, - "word": "superstition", - "image": "files/17_1537.jpg", - "audio": "files/17_1537.mp3", - "audioMeaning": "files/17_1537_meaning.mp3", - "audioExample": "files/17_1537_example.mp3", - "textMeaning": "A superstition is something magical that people believe is real.", - "textExample": "It is a superstition that Friday the 13th is an unlucky day.", - "transcription": "[sùːpərstíʃən]", - "__v": 0, - "textExampleTranslate": "Это суеверие, что пятница 13-е - несчастливый день", - "textMeaningTranslate": "Суеверие - это нечто волшебное, что люди считают реальным", - "wordTranslate": "суеверие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaa1" - }, - "group": 2, - "page": 16, - "word": "sympathy", - "image": "files/17_1538.jpg", - "audio": "files/17_1538.mp3", - "audioMeaning": "files/17_1538_meaning.mp3", - "audioExample": "files/17_1538_example.mp3", - "textMeaning": "Sympathy is a feeling of sadness for another person who feels bad.", - "textExample": "I felt sympathy for my sister, so I got her a balloon to cheer her up.", - "transcription": "[símpəθi]", - "__v": 0, - "textExampleTranslate": "Я чувствовал сочувствие к моей сестре, поэтому я дал ей воздушный шар, чтобы подбодрить ее", - "textMeaningTranslate": "Сочувствие - это чувство грусти к другому человеку, который плохо себя чувствует", - "wordTranslate": "симпатия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaa2" - }, - "group": 2, - "page": 16, - "word": "vibrate", - "image": "files/17_1539.jpg", - "audio": "files/17_1539.mp3", - "audioMeaning": "files/17_1539_meaning.mp3", - "audioExample": "files/17_1539_example.mp3", - "textMeaning": "To vibrate is to shake very hard.", - "textExample": "The machine made his whole body vibrate as he broke up the ground.", - "transcription": "[váibreit]", - "__v": 0, - "textExampleTranslate": "Машина заставляла вибрировать все его тело, когда он ломал землю", - "textMeaningTranslate": "Вибрировать - это очень сильно трясти", - "wordTranslate": "вибрировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaa3" - }, - "group": 2, - "page": 16, - "word": "wander", - "image": "files/17_1540.jpg", - "audio": "files/17_1540.mp3", - "audioMeaning": "files/17_1540_meaning.mp3", - "audioExample": "files/17_1540_example.mp3", - "textMeaning": "To wander is to walk without going to a certain place.", - "textExample": "The boys like to wander in the woods and look at birds.", - "transcription": "[wɑ́ndəːr]", - "__v": 0, - "textExampleTranslate": "Мальчики любят бродить по лесу и смотреть на птиц", - "textMeaningTranslate": "Бродить - значит ходить, не идя в определенное место", - "wordTranslate": "блуждать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaa4" - }, - "group": 2, - "page": 17, - "word": "armor", - "image": "files/18_1541.jpg", - "audio": "files/18_1541.mp3", - "audioMeaning": "files/18_1541_meaning.mp3", - "audioExample": "files/18_1541_example.mp3", - "textMeaning": "Armor is metal worn by soldiers to protect the body.", - "textExample": "The soldier wore armor to protect his body.", - "transcription": "[ɑ́ːrmər]", - "__v": 0, - "textExampleTranslate": "Солдат носил доспехи, чтобы защитить свое тело", - "textMeaningTranslate": "Броня - это металл, который носят солдаты, чтобы защитить тело", - "wordTranslate": "броня" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaa5" - }, - "group": 2, - "page": 17, - "word": "blaze", - "image": "files/18_1542.jpg", - "audio": "files/18_1542.mp3", - "audioMeaning": "files/18_1542_meaning.mp3", - "audioExample": "files/18_1542_example.mp3", - "textMeaning": "To blaze means to burn brightly or powerfully.", - "textExample": "The small fire soon blazed into a large, dangerous one.", - "transcription": "[bleiz]", - "__v": 0, - "textExampleTranslate": "Небольшой пожар вскоре превратился в большой, опасный", - "textMeaningTranslate": "Зажигать - значит гореть ярко или сильно", - "wordTranslate": "сверкать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaa7" - }, - "group": 2, - "page": 17, - "word": "cliff", - "image": "files/18_1544.jpg", - "audio": "files/18_1544.mp3", - "audioMeaning": "files/18_1544_meaning.mp3", - "audioExample": "files/18_1544_example.mp3", - "textMeaning": "A cliff is a high and often flat wall of rock.", - "textExample": "The wolf stood at the cliff and howled.", - "transcription": "[klif]", - "__v": 0, - "textExampleTranslate": "Волк стоял у скалы и выл", - "textMeaningTranslate": "Скала - это высокая и часто плоская каменная стена", - "wordTranslate": "скала" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaa6" - }, - "group": 2, - "page": 17, - "word": "boom", - "image": "files/18_1543.jpg", - "audio": "files/18_1543.mp3", - "audioMeaning": "files/18_1543_meaning.mp3", - "audioExample": "files/18_1543_example.mp3", - "textMeaning": "To boom means to make a loud, deep sound.", - "textExample": "The firecrackers made a loud boom when they exploded.", - "transcription": "[buːm]", - "__v": 0, - "textExampleTranslate": "Фейерверки громко взорвались, когда взорвались", - "textMeaningTranslate": "Бум значит издавать громкий, глубокий звук", - "wordTranslate": "бум" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaa8" - }, - "group": 2, - "page": 17, - "word": "flame", - "image": "files/18_1545.jpg", - "audio": "files/18_1545.mp3", - "audioMeaning": "files/18_1545_meaning.mp3", - "audioExample": "files/18_1545_example.mp3", - "textMeaning": "A flame is part of a fire.", - "textExample": "The torch was filled with yellow and orange flames.", - "transcription": "[fleim]", - "__v": 0, - "textExampleTranslate": "Факел был наполнен желтым и оранжевым пламенем", - "textMeaningTranslate": "Пламя - это часть огня", - "wordTranslate": "пламя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaa9" - }, - "group": 2, - "page": 17, - "word": "independence", - "image": "files/18_1546.jpg", - "audio": "files/18_1546.mp3", - "audioMeaning": "files/18_1546_meaning.mp3", - "audioExample": "files/18_1546_example.mp3", - "textMeaning": "Independence is the state of being free from the control of others.", - "textExample": "After leaving home, Sophia had a great feeling of independence.", - "transcription": "[ìndipéndəns]", - "__v": 0, - "textExampleTranslate": "Покинув дом, София почувствовала прекрасное чувство независимости", - "textMeaningTranslate": "Независимость - это состояние свободы от контроля над другими", - "wordTranslate": "независимость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaaa" - }, - "group": 2, - "page": 17, - "word": "invasion", - "image": "files/18_1547.jpg", - "audio": "files/18_1547.mp3", - "audioMeaning": "files/18_1547_meaning.mp3", - "audioExample": "files/18_1547_example.mp3", - "textMeaning": "An invasion is an attack by a group from another country.", - "textExample": "In Korea, walls were built around cities to protect them from invasions.", - "transcription": "[invéiʒən]", - "__v": 0, - "textExampleTranslate": "В Корее стены были построены вокруг городов, чтобы защитить их от вторжений", - "textMeaningTranslate": "Вторжение - это нападение группы из другой страны", - "wordTranslate": "вторжение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaab" - }, - "group": 2, - "page": 17, - "word": "knight", - "image": "files/18_1548.jpg", - "audio": "files/18_1548.mp3", - "audioMeaning": "files/18_1548_meaning.mp3", - "audioExample": "files/18_1548_example.mp3", - "textMeaning": "A knight is a soldier of high rank and skill who usually serves a king.", - "textExample": "He was the best soldier, so the king made him a knight.", - "transcription": "[nait]", - "__v": 0, - "textExampleTranslate": "Он был лучшим солдатом, поэтому король сделал его рыцарем", - "textMeaningTranslate": "Рыцарь - это солдат высокого ранга и умения, который обычно служит королю", - "wordTranslate": "рыцарь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaac" - }, - "group": 2, - "page": 17, - "word": "lightning", - "image": "files/18_1549.jpg", - "audio": "files/18_1549.mp3", - "audioMeaning": "files/18_1549_meaning.mp3", - "audioExample": "files/18_1549_example.mp3", - "textMeaning": "Lightning is the bright light seen during a storm.", - "textExample": "The lightning flashed above the water.", - "transcription": "[láitniŋ]", - "__v": 0, - "textExampleTranslate": "Молния вспыхнула над водой", - "textMeaningTranslate": "Молния - это яркий свет, видимый во время шторма", - "wordTranslate": "молния" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaad" - }, - "group": 2, - "page": 17, - "word": "rebel", - "image": "files/18_1550.jpg", - "audio": "files/18_1550.mp3", - "audioMeaning": "files/18_1550_meaning.mp3", - "audioExample": "files/18_1550_example.mp3", - "textMeaning": "A rebel is a person who fights the government in order to change it.", - "textExample": "The rebel was angry about the government’s unfair policies.", - "transcription": "[rébəl]", - "__v": 0, - "textExampleTranslate": "Мятежник был зол на нечестную политику правительства", - "textMeaningTranslate": "Бунтарь - это человек, который борется с правительством, чтобы изменить его", - "wordTranslate": "бунтарь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaae" - }, - "group": 2, - "page": 17, - "word": "retreat", - "image": "files/18_1551.jpg", - "audio": "files/18_1551.mp3", - "audioMeaning": "files/18_1551_meaning.mp3", - "audioExample": "files/18_1551_example.mp3", - "textMeaning": "To retreat means to run away because of losing a fight.", - "textExample": "The army retreated because they were losing the battle.", - "transcription": "[ritríːt]", - "__v": 0, - "textExampleTranslate": "Армия отступила, потому что они проигрывали битву", - "textMeaningTranslate": "Отступить - значит убежать из-за поражения в битве", - "wordTranslate": "отступление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaaf" - }, - "group": 2, - "page": 17, - "word": "revolution", - "image": "files/18_1552.jpg", - "audio": "files/18_1552.mp3", - "audioMeaning": "files/18_1552_meaning.mp3", - "audioExample": "files/18_1552_example.mp3", - "textMeaning": "A revolution is a change to the political system by a group of people.", - "textExample": "The revolution in Russia led to the creation of the Soviet Union.", - "transcription": "[rèvəlúːʃən]", - "__v": 0, - "textExampleTranslate": "Революция в России привела к созданию Советского Союза", - "textMeaningTranslate": "Революция - это изменение политической системы группой людей", - "wordTranslate": "революция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afab0" - }, - "group": 2, - "page": 17, - "word": "spear", - "image": "files/18_1553.jpg", - "audio": "files/18_1553.mp3", - "audioMeaning": "files/18_1553_meaning.mp3", - "audioExample": "files/18_1553_example.mp3", - "textMeaning": "A spear is a long stick with a blade on one end that is used as a weapon.", - "textExample": "The soldier was holding a spear in his hand.", - "transcription": "[spiəːr]", - "__v": 0, - "textExampleTranslate": "Солдат держал в руке копье", - "textMeaningTranslate": "Копье - это длинная палка с лезвием на одном конце, которое используется как оружие", - "wordTranslate": "копье" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afab1" - }, - "group": 2, - "page": 17, - "word": "steep", - "image": "files/18_1554.jpg", - "audio": "files/18_1554.mp3", - "audioMeaning": "files/18_1554_meaning.mp3", - "audioExample": "files/18_1554_example.mp3", - "textMeaning": "A steep surface or place has a slope or angle that rises or falls sharply.", - "textExample": "He rode his bike up the steep hill to reach the top.", - "transcription": "[stiːp]", - "__v": 0, - "textExampleTranslate": "Он поехал на своем велосипеде вверх по крутому склону, чтобы достичь вершины", - "textMeaningTranslate": "Крутая поверхность или место имеет наклон или угол, который резко поднимается или опускается", - "wordTranslate": "крутой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afab2" - }, - "group": 2, - "page": 17, - "word": "summit", - "image": "files/18_1555.jpg", - "audio": "files/18_1555.mp3", - "audioMeaning": "files/18_1555_meaning.mp3", - "audioExample": "files/18_1555_example.mp3", - "textMeaning": "A summit is the highest part of a hill or mountain.", - "textExample": "Snow covered the summit of the mountain even during the summer.", - "transcription": "[sʌ́mit]", - "__v": 0, - "textExampleTranslate": "Снег покрыл вершину горы даже летом", - "textMeaningTranslate": "Вершина - это самая высокая часть холма или горы", - "wordTranslate": "саммит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afab3" - }, - "group": 2, - "page": 17, - "word": "thunder", - "image": "files/18_1556.jpg", - "audio": "files/18_1556.mp3", - "audioMeaning": "files/18_1556_meaning.mp3", - "audioExample": "files/18_1556_example.mp3", - "textMeaning": "Thunder is the loud noise heard during a storm.", - "textExample": "The sound of the thunder startled me.", - "transcription": "[θΛndər]", - "__v": 0, - "textExampleTranslate": "Звук грома поразил меня", - "textMeaningTranslate": "Гром - это громкий шум, слышимый во время шторма", - "wordTranslate": "гром" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afab4" - }, - "group": 2, - "page": 17, - "word": "troops", - "image": "files/18_1557.jpg", - "audio": "files/18_1557.mp3", - "audioMeaning": "files/18_1557_meaning.mp3", - "audioExample": "files/18_1557_example.mp3", - "textMeaning": "Troops are soldiers that fight in groups in a battle.", - "textExample": "The troops were all prepared to go into battle.", - "transcription": "[truːps]", - "__v": 0, - "textExampleTranslate": "Все войска были готовы идти в бой", - "textMeaningTranslate": "Войска - это солдаты, которые сражаются группами в бою", - "wordTranslate": "войско" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afab5" - }, - "group": 2, - "page": 17, - "word": "warrior", - "image": "files/18_1558.jpg", - "audio": "files/18_1558.mp3", - "audioMeaning": "files/18_1558_meaning.mp3", - "audioExample": "files/18_1558_example.mp3", - "textMeaning": "A warrior is a brave soldier or fighter.", - "textExample": "The samurai were some of the most skilled warriors in the ancient world.", - "transcription": "[wɔ́ːriər]", - "__v": 0, - "textExampleTranslate": "Самураи были одними из самых опытных воинов в древнем мире", - "textMeaningTranslate": "Воин - это храбрый солдат или боец", - "wordTranslate": "воин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afab6" - }, - "group": 2, - "page": 17, - "word": "withdraw", - "image": "files/18_1559.jpg", - "audio": "files/18_1559.mp3", - "audioMeaning": "files/18_1559_meaning.mp3", - "audioExample": "files/18_1559_example.mp3", - "textMeaning": "To withdraw means to leave a place, usually during war.", - "textExample": "After losing the battle, the enemy withdrew back to its own country.", - "transcription": "[wiðdrɔ́ː]", - "__v": 0, - "textExampleTranslate": "После поражения в битве противник отступил в свою страну", - "textMeaningTranslate": "Уйти - значит покинуть место, обычно во время войны", - "wordTranslate": "изымать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afab7" - }, - "group": 2, - "page": 17, - "word": "yield", - "image": "files/18_1560.jpg", - "audio": "files/18_1560.mp3", - "audioMeaning": "files/18_1560_meaning.mp3", - "audioExample": "files/18_1560_example.mp3", - "textMeaning": "To yield something means to give up control of it or to give it away.", - "textExample": "He had to yield his turn because he was in checkmate.", - "transcription": "[jiːld]", - "__v": 0, - "textExampleTranslate": "Он должен был уступить свою очередь, потому что он был в мате", - "textMeaningTranslate": "Дать что-то значит отказаться от контроля или отдать это", - "wordTranslate": "уступать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afab8" - }, - "group": 2, - "page": 18, - "word": "bench", - "image": "files/19_1561.jpg", - "audio": "files/19_1561.mp3", - "audioMeaning": "files/19_1561_meaning.mp3", - "audioExample": "files/19_1561_example.mp3", - "textMeaning": "A bench is a long seat for two or more people.", - "textExample": "Most parks have benches for people to relax upon.", - "transcription": "[bentʃ]", - "__v": 0, - "textExampleTranslate": "В большинстве парков есть скамейки, на которых можно отдохнуть", - "textMeaningTranslate": "Скамья - это длинное место для двух или более людей", - "wordTranslate": "скамейка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afab9" - }, - "group": 2, - "page": 18, - "word": "daisy", - "image": "files/19_1562.jpg", - "audio": "files/19_1562.mp3", - "audioMeaning": "files/19_1562_meaning.mp3", - "audioExample": "files/19_1562_example.mp3", - "textMeaning": "A daisy is a small flower with white petals and a yellow center.", - "textExample": "There were a few daisies growing in the field.", - "transcription": "[déizi]", - "__v": 0, - "textExampleTranslate": "Там было несколько ромашек, растущих в поле", - "textMeaningTranslate": "Ромашка - это маленький цветок с белыми лепестками и желтой серединкой", - "wordTranslate": "ромашка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaba" - }, - "group": 2, - "page": 18, - "word": "dispute", - "image": "files/19_1563.jpg", - "audio": "files/19_1563.mp3", - "audioMeaning": "files/19_1563_meaning.mp3", - "audioExample": "files/19_1563_example.mp3", - "textMeaning": "A dispute is an argument or disagreement that people have.", - "textExample": "Karen and Brian often have disputes about silly things.", - "transcription": "[dispjúːt]", - "__v": 0, - "textExampleTranslate": "Карен и Брайан часто спорят о глупостях", - "textMeaningTranslate": "Спор - это аргумент или несогласие, которое есть у людей", - "wordTranslate": "спор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afabb" - }, - "group": 2, - "page": 18, - "word": "empty", - "image": "files/19_1564.jpg", - "audio": "files/19_1564.mp3", - "audioMeaning": "files/19_1564_meaning.mp3", - "audioExample": "files/19_1564_example.mp3", - "textMeaning": "An empty container is one that has no things in it.", - "textExample": "The teacher showed the students an empty bottle.", - "transcription": "[émpti]", - "__v": 0, - "textExampleTranslate": "Учитель показал ученикам пустую бутылку", - "textMeaningTranslate": "Пустой контейнер - это тот, в котором ничего нет", - "wordTranslate": "пустой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afabc" - }, - "group": 2, - "page": 18, - "word": "horror", - "image": "files/19_1565.jpg", - "audio": "files/19_1565.mp3", - "audioMeaning": "files/19_1565_meaning.mp3", - "audioExample": "files/19_1565_example.mp3", - "textMeaning": "Horror is a feeling of being very afraid or shocked.", - "textExample": "The audience screamed in horror when the ghost appeared in the movie.", - "transcription": "[hɔ́ːrər]", - "__v": 0, - "textExampleTranslate": "Зрители закричали от ужаса, когда в фильме появился призрак", - "textMeaningTranslate": "Ужас - это чувство страха или шока", - "wordTranslate": "ужастик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afabd" - }, - "group": 2, - "page": 18, - "word": "incident", - "image": "files/19_1566.jpg", - "audio": "files/19_1566.mp3", - "audioMeaning": "files/19_1566_meaning.mp3", - "audioExample": "files/19_1566_example.mp3", - "textMeaning": "An incident is an event that is usually not pleasant.", - "textExample": "Mr. Wilson had an incident; he became sick and had to leave.", - "transcription": "[ínsədənt]", - "__v": 0, - "textExampleTranslate": "У мистера Уилсона был инцидент; он заболел и должен был уйти", - "textMeaningTranslate": "Инцидент - это событие, которое обычно неприятно", - "wordTranslate": "инцидент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afabe" - }, - "group": 2, - "page": 18, - "word": "mist", - "image": "files/19_1567.jpg", - "audio": "files/19_1567.mp3", - "audioMeaning": "files/19_1567_meaning.mp3", - "audioExample": "files/19_1567_example.mp3", - "textMeaning": "Mist is water that can be seen in the air or on a surface.", - "textExample": "The forest was covered with mist.", - "transcription": "[mist]", - "__v": 0, - "textExampleTranslate": "Лес был покрыт туманом", - "textMeaningTranslate": "Туман - это вода, которую можно увидеть в воздухе или на поверхности", - "wordTranslate": "туман" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afabf" - }, - "group": 2, - "page": 18, - "word": "object", - "image": "files/19_1568.jpg", - "audio": "files/19_1568.mp3", - "audioMeaning": "files/19_1568_meaning.mp3", - "audioExample": "files/19_1568_example.mp3", - "textMeaning": "An object is a non-living thing that you can see or touch.", - "textExample": "The shopping cart was filled with objects.", - "transcription": "[ɑ́bdʒikt]", - "__v": 0, - "textExampleTranslate": "Корзина была заполнена предметами", - "textMeaningTranslate": "Объект - это неживая вещь, которую вы можете увидеть или потрогать", - "wordTranslate": "объект" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afac0" - }, - "group": 2, - "page": 18, - "word": "orphan", - "image": "files/19_1569.jpg", - "audio": "files/19_1569.mp3", - "audioMeaning": "files/19_1569_meaning.mp3", - "audioExample": "files/19_1569_example.mp3", - "textMeaning": "An orphan is a child who does not have parents.", - "textExample": "The orphan frequently cried during the night.", - "transcription": "[ɔ́ːrfən]", - "__v": 0, - "textExampleTranslate": "Сирота часто плакала ночью", - "textMeaningTranslate": "Сирота - это ребенок, у которого нет родителей", - "wordTranslate": "сирота" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afac1" - }, - "group": 2, - "page": 18, - "word": "pregnant", - "image": "files/19_1571.jpg", - "audio": "files/19_1571.mp3", - "audioMeaning": "files/19_1571_meaning.mp3", - "audioExample": "files/19_1571_example.mp3", - "textMeaning": "A pregnant woman or animal is going to have a baby.", - "textExample": "The pregnant woman was shopping for baby clothes.", - "transcription": "[prégnənt]", - "__v": 0, - "textExampleTranslate": "Беременная женщина покупала детскую одежду", - "textMeaningTranslate": "У беременной женщины или животного будет ребенок", - "wordTranslate": "беременный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afac2" - }, - "group": 2, - "page": 18, - "word": "plot", - "image": "files/19_1570.jpg", - "audio": "files/19_1570.mp3", - "audioMeaning": "files/19_1570_meaning.mp3", - "audioExample": "files/19_1570_example.mp3", - "textMeaning": "To plot is to make a secret plan to do something that is wrong or mean.", - "textExample": "The group was plotting to ruin the company’s financial reports.", - "transcription": "[plɔt]", - "__v": 0, - "textExampleTranslate": "Группа планировала испортить финансовые отчеты компании", - "textMeaningTranslate": "Сюжет - это составить секретный план, чтобы сделать что-то неправильное или плохое", - "wordTranslate": "сюжет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afac3" - }, - "group": 2, - "page": 18, - "word": "rage", - "image": "files/19_1572.jpg", - "audio": "files/19_1572.mp3", - "audioMeaning": "files/19_1572_meaning.mp3", - "audioExample": "files/19_1572_example.mp3", - "textMeaning": "Rage is a very angry feeling.", - "textExample": "The chef was filled with rage when his helpers ruined the meal.", - "transcription": "[reidʒ]", - "__v": 0, - "textExampleTranslate": "Шеф-повар был полон ярости, когда его помощники испортили еду", - "textMeaningTranslate": "Ярость - это очень злое чувство", - "wordTranslate": "ярость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afac4" - }, - "group": 2, - "page": 18, - "word": "revenge", - "image": "files/19_1573.jpg", - "audio": "files/19_1573.mp3", - "audioMeaning": "files/19_1573_meaning.mp3", - "audioExample": "files/19_1573_example.mp3", - "textMeaning": "Revenge is the act of hurting someone who has hurt you.", - "textExample": "He broke his sister’s doll as revenge after she lost his favorite book.", - "transcription": "[rivéndʒ]", - "__v": 0, - "textExampleTranslate": "Он сломал куклу своей сестры в качестве мести после того, как она потеряла свою любимую книгу", - "textMeaningTranslate": "Месть - это акт причинения вреда тому, кто причинил тебе боль", - "wordTranslate": "месть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afac5" - }, - "group": 2, - "page": 18, - "word": "shame", - "image": "files/19_1574.jpg", - "audio": "files/19_1574.mp3", - "audioMeaning": "files/19_1574_meaning.mp3", - "audioExample": "files/19_1574_example.mp3", - "textMeaning": "Shame is a bad feeling about things one has done wrong.", - "textExample": "The boy felt shame about misplacing his clothes.", - "transcription": "[ʃeim]", - "__v": 0, - "textExampleTranslate": "Мальчику было стыдно за то, что он не положил свою одежду", - "textMeaningTranslate": "Стыд - плохое предчувствие того, что ты сделал неправильно", - "wordTranslate": "позор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afac6" - }, - "group": 2, - "page": 18, - "word": "sigh", - "image": "files/19_1575.jpg", - "audio": "files/19_1575.mp3", - "audioMeaning": "files/19_1575_meaning.mp3", - "audioExample": "files/19_1575_example.mp3", - "textMeaning": "To sigh is to breathe out loudly to show tiredness, boredom, or sadness.", - "textExample": "Molly sighed when she looked at all the information she had to research.", - "transcription": "[sai]", - "__v": 0, - "textExampleTranslate": "Молли вздохнула, когда посмотрела на всю информацию, которую ей пришлось исследовать", - "textMeaningTranslate": "Вздохнуть - это выдохнуть громко, чтобы показать усталость, скуку или грусть", - "wordTranslate": "вздох" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afac7" - }, - "group": 2, - "page": 18, - "word": "sneak", - "image": "files/19_1576.jpg", - "audio": "files/19_1576.mp3", - "audioMeaning": "files/19_1576_meaning.mp3", - "audioExample": "files/19_1576_example.mp3", - "textMeaning": "To sneak is to move quietly in order not to be seen or heard.", - "textExample": "The thief snuck out of the house without anyone noticing him.", - "transcription": "[sniːk]", - "__v": 0, - "textExampleTranslate": "Вор выскользнул из дома, и никто его не заметил", - "textMeaningTranslate": "Подкрасться - значит двигаться тихо, чтобы не быть увиденным или услышанным", - "wordTranslate": "красться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afac8" - }, - "group": 2, - "page": 18, - "word": "spare", - "image": "files/19_1577.jpg", - "audio": "files/19_1577.mp3", - "audioMeaning": "files/19_1577_meaning.mp3", - "audioExample": "files/19_1577_example.mp3", - "textMeaning": "To spare something is to give it away because it is not needed.", - "textExample": "I wanted to help him but I couldn’t spare a tire.", - "transcription": "[spεər]", - "__v": 0, - "textExampleTranslate": "Я хотел помочь ему, но я не мог жалеть шины", - "textMeaningTranslate": "Избавить что-то - значит отдать это, потому что это не нужно", - "wordTranslate": "запасной" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afac9" - }, - "group": 2, - "page": 18, - "word": "stem", - "image": "files/19_1578.jpg", - "audio": "files/19_1578.mp3", - "audioMeaning": "files/19_1578_meaning.mp3", - "audioExample": "files/19_1578_example.mp3", - "textMeaning": "The stem of a plant is the stick that grows leaves or flowers.", - "textExample": "The rose had a long thin stem.", - "transcription": "[stem]", - "__v": 0, - "textExampleTranslate": "Роза имела длинный тонкий стебель", - "textMeaningTranslate": "Стебель растения - это палка, которая выращивает листья или цветы", - "wordTranslate": "стебель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaca" - }, - "group": 2, - "page": 18, - "word": "supper", - "image": "files/19_1579.jpg", - "audio": "files/19_1579.mp3", - "audioMeaning": "files/19_1579_meaning.mp3", - "audioExample": "files/19_1579_example.mp3", - "textMeaning": "Supper is a meal that is eaten in the evening.", - "textExample": "We usually have supper around 6 o’clock at my house.", - "transcription": "[sʌ́pər]", - "__v": 0, - "textExampleTranslate": "У нас обычно ужин около 6 часов в моем доме", - "textMeaningTranslate": "Ужин - это еда, которую едят вечером", - "wordTranslate": "ужин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afacb" - }, - "group": 2, - "page": 18, - "word": "tender", - "image": "files/19_1580.jpg", - "audio": "files/19_1580.mp3", - "audioMeaning": "files/19_1580_meaning.mp3", - "audioExample": "files/19_1580_example.mp3", - "textMeaning": "A tender food is soft and easy to chew.", - "textExample": "The meat was so tender they didn’t need knives to cut it.", - "transcription": "[téndər]", - "__v": 0, - "textExampleTranslate": "Мясо было настолько нежным, что для его резки не требовались ножи", - "textMeaningTranslate": "Нежная еда мягкая и легко жуется", - "wordTranslate": "тендер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afacd" - }, - "group": 2, - "page": 19, - "word": "cub", - "image": "files/20_1582.jpg", - "audio": "files/20_1582.mp3", - "audioMeaning": "files/20_1582_meaning.mp3", - "audioExample": "files/20_1582_example.mp3", - "textMeaning": "A cub is a baby animal, such as a bear or lion.", - "textExample": "The lion cub was crying for its mother.", - "transcription": "[kʌb]", - "__v": 0, - "textExampleTranslate": "Львенок плачет по матери", - "textMeaningTranslate": "Детёныш - это детёныш, такой как медведь или лев", - "wordTranslate": "детеныш" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afacc" - }, - "group": 2, - "page": 19, - "word": "beneath", - "image": "files/20_1581.jpg", - "audio": "files/20_1581.mp3", - "audioMeaning": "files/20_1581_meaning.mp3", - "audioExample": "files/20_1581_example.mp3", - "textMeaning": "Beneath means under or lower than.", - "textExample": "The largest part of an iceberg lies beneath the waterline.", - "transcription": "[biníːθ]", - "__v": 0, - "textExampleTranslate": "Большая часть айсберга лежит под ватерлинией", - "textMeaningTranslate": "Ниже или ниже или ниже", - "wordTranslate": "под" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afad0" - }, - "group": 2, - "page": 19, - "word": "evident", - "image": "files/20_1586.jpg", - "audio": "files/20_1586.mp3", - "audioMeaning": "files/20_1586_meaning.mp3", - "audioExample": "files/20_1586_example.mp3", - "textMeaning": "Evident means easy to see or understand.", - "textExample": "It was evident from the look on his face that he was unhappy.", - "transcription": "[évidənt]", - "__v": 0, - "textExampleTranslate": "По выражению его лица было видно, что он был несчастлив", - "textMeaningTranslate": "Очевидный означает легко увидеть или понять", - "wordTranslate": "очевидно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afacf" - }, - "group": 2, - "page": 19, - "word": "hail", - "image": "files/20_1587.jpg", - "audio": "files/20_1587.mp3", - "audioMeaning": "files/20_1587_meaning.mp3", - "audioExample": "files/20_1587_example.mp3", - "textMeaning": "Hail is ice that falls from the sky when rain freezes.", - "textExample": "The hail from the storm was the size of golf balls.", - "transcription": "[heil]", - "__v": 0, - "textExampleTranslate": "Град от бури был размером с мячик для гольфа", - "textMeaningTranslate": "Град - это лед, падающий с неба, когда дождь замерзает", - "wordTranslate": "град" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aface" - }, - "group": 2, - "page": 19, - "word": "dawn", - "image": "files/20_1583.jpg", - "audio": "files/20_1583.mp3", - "audioMeaning": "files/20_1583_meaning.mp3", - "audioExample": "files/20_1583_example.mp3", - "textMeaning": "Dawn is the time of day when the sun rises.", - "textExample": "At dawn, the sun gently rose over the farm.", - "transcription": "[dɔːn]", - "__v": 0, - "textExampleTranslate": "На рассвете солнце нежно взошло над фермой", - "textMeaningTranslate": "Рассвет - это время дня, когда восходит солнце", - "wordTranslate": "рассвет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afad1" - }, - "group": 2, - "page": 19, - "word": "howl", - "image": "files/20_1588.jpg", - "audio": "files/20_1588.mp3", - "audioMeaning": "files/20_1588_meaning.mp3", - "audioExample": "files/20_1588_example.mp3", - "textMeaning": "To howl means to make a long, loud sound like a wolf or a dog.", - "textExample": "The wolf howled at the moon.", - "transcription": "[haul]", - "__v": 0, - "textExampleTranslate": "Волк воет на луну", - "textMeaningTranslate": "Выть значит издавать длинный, громкий звук, как волк или собака", - "wordTranslate": "вой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afad2" - }, - "group": 2, - "page": 19, - "word": "dissatisfied", - "image": "files/20_1584.jpg", - "audio": "files/20_1584.mp3", - "audioMeaning": "files/20_1584_meaning.mp3", - "audioExample": "files/20_1584_example.mp3", - "textMeaning": "Dissatisfied means not happy with something.", - "textExample": "I was dissatisfied with their decision to work on Sunday.", - "transcription": "[dissǽtisfàid]", - "__v": 0, - "textExampleTranslate": "Я был недоволен их решением работать в воскресенье", - "textMeaningTranslate": "Недоволен значит не доволен чем-то", - "wordTranslate": "недовольных" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afad3" - }, - "group": 2, - "page": 19, - "word": "ease", - "image": "files/20_1585.jpg", - "audio": "files/20_1585.mp3", - "audioMeaning": "files/20_1585_meaning.mp3", - "audioExample": "files/20_1585_example.mp3", - "textMeaning": "Ease is a condition without difficulty or hard work.", - "textExample": "The monkey climbed the tree with ease.", - "transcription": "[iːz]", - "__v": 0, - "textExampleTranslate": "Обезьяна с легкостью залезла на дерево", - "textMeaningTranslate": "Легкость - это состояние без затруднений или тяжелой работы", - "wordTranslate": "легкость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afad4" - }, - "group": 2, - "page": 19, - "word": "leap", - "image": "files/20_1589.jpg", - "audio": "files/20_1589.mp3", - "audioMeaning": "files/20_1589_meaning.mp3", - "audioExample": "files/20_1589_example.mp3", - "textMeaning": "To leap means to jump a long distance.", - "textExample": "He had to leap over the gap to reach the other side of the hill.", - "transcription": "[liːp]", - "__v": 0, - "textExampleTranslate": "Ему пришлось перепрыгнуть через пропасть, чтобы достичь другой стороны холма", - "textMeaningTranslate": "Прыгнуть - значит прыгнуть на большое расстояние", - "wordTranslate": "прыжок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afad5" - }, - "group": 2, - "page": 19, - "word": "magnificent", - "image": "files/20_1590.jpg", - "audio": "files/20_1590.mp3", - "audioMeaning": "files/20_1590_meaning.mp3", - "audioExample": "files/20_1590_example.mp3", - "textMeaning": "Magnificent means beautiful and grand.", - "textExample": "The man gave his wife a pair of magnificent diamond earrings.", - "transcription": "[mægnífəsənt]", - "__v": 0, - "textExampleTranslate": "Мужчина подарил своей жене великолепные бриллиантовые серьги", - "textMeaningTranslate": "Великолепный означает красивый и великий", - "wordTranslate": "великолепный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afad6" - }, - "group": 2, - "page": 19, - "word": "pile", - "image": "files/20_1593.jpg", - "audio": "files/20_1593.mp3", - "audioMeaning": "files/20_1593_meaning.mp3", - "audioExample": "files/20_1593_example.mp3", - "textMeaning": "A pile is a large group of things on top of one another.", - "textExample": "The pile of cups was beginning to lean.", - "transcription": "[pail]", - "__v": 0, - "textExampleTranslate": "Куча чашек начинала наклоняться", - "textMeaningTranslate": "Куча - это большая группа вещей друг на друге", - "wordTranslate": "куча" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afad7" - }, - "group": 2, - "page": 19, - "word": "outcome", - "image": "files/20_1592.jpg", - "audio": "files/20_1592.mp3", - "audioMeaning": "files/20_1592_meaning.mp3", - "audioExample": "files/20_1592_example.mp3", - "textMeaning": "An outcome is the end result of an action or event.", - "textExample": "The outcome of his latest business plan was a complete failure.", - "transcription": "[áutkʌ̀m]", - "__v": 0, - "textExampleTranslate": "Результатом его последнего бизнес-плана стал полный провал", - "textMeaningTranslate": "Результатом является конечный результат действия или события", - "wordTranslate": "результат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afad8" - }, - "group": 2, - "page": 19, - "word": "necessity", - "image": "files/20_1591.jpg", - "audio": "files/20_1591.mp3", - "audioMeaning": "files/20_1591_meaning.mp3", - "audioExample": "files/20_1591_example.mp3", - "textMeaning": "A necessity is something that is needed.", - "textExample": "Fresh water is a necessity for life.", - "transcription": "[nəsésəti]", - "__v": 0, - "textExampleTranslate": "Пресная вода необходима для жизни", - "textMeaningTranslate": "Необходимость - это то, что нужно", - "wordTranslate": "необходимость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afad9" - }, - "group": 2, - "page": 19, - "word": "profound", - "image": "files/20_1594.jpg", - "audio": "files/20_1594.mp3", - "audioMeaning": "files/20_1594_meaning.mp3", - "audioExample": "files/20_1594_example.mp3", - "textMeaning": "Profound means deep or very intelligent.", - "textExample": "For a young man, Jeremy has some profound thoughts.", - "transcription": "[prəfáund]", - "__v": 0, - "textExampleTranslate": "У молодого человека у Джереми есть глубокие мысли", - "textMeaningTranslate": "Глубокий означает глубокий или очень умный", - "wordTranslate": "глубокий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afada" - }, - "group": 2, - "page": 19, - "word": "squeeze", - "image": "files/20_1596.jpg", - "audio": "files/20_1596.mp3", - "audioMeaning": "files/20_1596_meaning.mp3", - "audioExample": "files/20_1596_example.mp3", - "textMeaning": "To squeeze something means to press it together and hold it tightly.", - "textExample": "When Clara saw her cat, she squeezed it to her face.", - "transcription": "[skwiːz]", - "__v": 0, - "textExampleTranslate": "Когда Клара увидела своего кота, она прижала его к лицу", - "textMeaningTranslate": "Сжать что-то значит сжать и крепко сжать", - "wordTranslate": "выжимать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afadb" - }, - "group": 2, - "page": 19, - "word": "seize", - "image": "files/20_1595.jpg", - "audio": "files/20_1595.mp3", - "audioMeaning": "files/20_1595_meaning.mp3", - "audioExample": "files/20_1595_example.mp3", - "textMeaning": "To seize something means to grab it quickly or strongly.", - "textExample": "The man seized as much money as he could before anyone could see him.", - "transcription": "[siːz]", - "__v": 0, - "textExampleTranslate": "Человек схватил столько денег, сколько мог, прежде чем его увидели", - "textMeaningTranslate": "Захватить что-то - значит схватить это быстро или сильно", - "wordTranslate": "воспользоваться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afadc" - }, - "group": 2, - "page": 19, - "word": "supreme", - "image": "files/20_1597.jpg", - "audio": "files/20_1597.mp3", - "audioMeaning": "files/20_1597_meaning.mp3", - "audioExample": "files/20_1597_example.mp3", - "textMeaning": "Supreme means of the highest level or best quality.", - "textExample": "The supreme officer was in charge of keeping the citizens calm.", - "transcription": "[supríːm]", - "__v": 0, - "textExampleTranslate": "Верховный офицер отвечал за спокойствие граждан", - "textMeaningTranslate": "Высшие средства наивысшего уровня или лучшего качества", - "wordTranslate": "высший" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afadd" - }, - "group": 2, - "page": 19, - "word": "terrific", - "image": "files/20_1598.jpg", - "audio": "files/20_1598.mp3", - "audioMeaning": "files/20_1598_meaning.mp3", - "audioExample": "files/20_1598_example.mp3", - "textMeaning": "Something terrific is very good.", - "textExample": "My youngest daughter is a terrific painter.", - "transcription": "[tərífik]", - "__v": 0, - "textExampleTranslate": "Моя младшая дочь - потрясающий художник", - "textMeaningTranslate": "Что-то потрясающее очень хорошо", - "wordTranslate": "потрясающий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afae1" - }, - "group": 2, - "page": 20, - "word": "breast", - "image": "files/21_1602.jpg", - "audio": "files/21_1602.mp3", - "audioMeaning": "files/21_1602_meaning.mp3", - "audioExample": "files/21_1602_example.mp3", - "textMeaning": "A breast is one of the two soft parts on a woman’s chest.", - "textExample": "She was diagnosed with breast cancer.", - "transcription": "[brest]", - "__v": 0, - "textExampleTranslate": "У нее был диагностирован рак молочной железы", - "textMeaningTranslate": "Грудь - это одна из двух мягких частей на груди женщины", - "wordTranslate": "грудь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afae0" - }, - "group": 2, - "page": 20, - "word": "attack", - "image": "files/21_1601.jpg", - "audio": "files/21_1601.mp3", - "audioMeaning": "files/21_1601_meaning.mp3", - "audioExample": "files/21_1601_example.mp3", - "textMeaning": "To attack something is to hurt or damage it.", - "textExample": "She watched the lizard attack its prey.", - "transcription": "[ətǽk]", - "__v": 0, - "textExampleTranslate": "Она смотрела, как ящерица нападает на свою жертву", - "textMeaningTranslate": "Атаковать что-то - значит ранить или повредить", - "wordTranslate": "атака" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afae2" - }, - "group": 2, - "page": 20, - "word": "cancer", - "image": "files/21_1603.jpg", - "audio": "files/21_1603.mp3", - "audioMeaning": "files/21_1603_meaning.mp3", - "audioExample": "files/21_1603_example.mp3", - "textMeaning": "Cancer is a serious disease that causes cells to grow abnormally.", - "textExample": "He was a leading scientist in finding a cure for cancer.", - "transcription": "[kǽnsər]", - "__v": 0, - "textExampleTranslate": "Он был ведущим ученым в поиске лекарства от рака", - "textMeaningTranslate": "Рак - это серьезное заболевание, которое приводит к ненормальному росту клеток", - "wordTranslate": "рак" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afadf" - }, - "group": 2, - "page": 19, - "word": "vital", - "image": "files/20_1600.jpg", - "audio": "files/20_1600.mp3", - "audioMeaning": "files/20_1600_meaning.mp3", - "audioExample": "files/20_1600_example.mp3", - "textMeaning": "Something vital is necessary for life.", - "textExample": "The heart is a vital organ.", - "transcription": "[váitl]", - "__v": 0, - "textExampleTranslate": "Сердце - это жизненно важный орган", - "textMeaningTranslate": "Что-то жизненное необходимо для жизни", - "wordTranslate": "жизненно важно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afade" - }, - "group": 2, - "page": 19, - "word": "trait", - "image": "files/20_1599.jpg", - "audio": "files/20_1599.mp3", - "audioMeaning": "files/20_1599_meaning.mp3", - "audioExample": "files/20_1599_example.mp3", - "textMeaning": "A trait is part of someone’s personality.", - "textExample": "One trait of Salvador’s personality is his cheerfulness.", - "transcription": "[treit]", - "__v": 0, - "textExampleTranslate": "Одна черта личности Сальвадора - его жизнерадостность", - "textMeaningTranslate": "Черта является частью чьей-то личности", - "wordTranslate": "черта" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afae4" - }, - "group": 2, - "page": 20, - "word": "cell", - "image": "files/21_1605.jpg", - "audio": "files/21_1605.mp3", - "audioMeaning": "files/21_1605_meaning.mp3", - "audioExample": "files/21_1605_example.mp3", - "textMeaning": "A cell is the smallest part of a living thing that can live by itself.", - "textExample": "A red blood cell carries oxygen.", - "transcription": "[sel]", - "__v": 0, - "textExampleTranslate": "Эритроцит несет кислород", - "textMeaningTranslate": "Клетка - это самая маленькая часть живого существа, которая может жить сама по себе", - "wordTranslate": "клетка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afae3" - }, - "group": 2, - "page": 20, - "word": "cancerous", - "image": "files/21_1604.jpg", - "audio": "files/21_1604.mp3", - "audioMeaning": "files/21_1604_meaning.mp3", - "audioExample": "files/21_1604_example.mp3", - "textMeaning": "Cancerous cells are the result of cancer.", - "textExample": "The exam found cancerous cells in the patient’s blood.", - "transcription": "[kǽnsərəs]", - "__v": 0, - "textExampleTranslate": "При обследовании обнаружены раковые клетки в крови пациента", - "textMeaningTranslate": "Раковые клетки являются результатом рака", - "wordTranslate": "злокачественный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afae7" - }, - "group": 2, - "page": 20, - "word": "cure", - "image": "files/21_1608.jpg", - "audio": "files/21_1608.mp3", - "audioMeaning": "files/21_1608_meaning.mp3", - "audioExample": "files/21_1608_example.mp3", - "textMeaning": "A cure is a medical treatment to make a sickness go away.", - "textExample": "Scientists are still working on finding a cure for diabetes.", - "transcription": "[kjʊr]", - "__v": 0, - "textExampleTranslate": "Ученые все еще работают над поиском лекарства от диабета", - "textMeaningTranslate": "Лечение - это медицинское лечение, чтобы избавиться от болезни", - "wordTranslate": "лечение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afae6" - }, - "group": 2, - "page": 20, - "word": "code", - "image": "files/21_1607.jpg", - "audio": "files/21_1607.mp3", - "audioMeaning": "files/21_1607_meaning.mp3", - "audioExample": "files/21_1607_example.mp3", - "textMeaning": "A code is a set of symbols used to hide or read a message.", - "textExample": "She used the code to solve the puzzle.", - "transcription": "[koud]", - "__v": 0, - "textExampleTranslate": "Она использовала код для решения головоломки", - "textMeaningTranslate": "Код - это набор символов, используемых для сокрытия или чтения сообщения", - "wordTranslate": "код" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afae5" - }, - "group": 2, - "page": 20, - "word": "cigarette", - "image": "files/21_1606.jpg", - "audio": "files/21_1606.mp3", - "audioMeaning": "files/21_1606_meaning.mp3", - "audioExample": "files/21_1606_example.mp3", - "textMeaning": "A cigarette is a thinly wrapped paper tube filled with tobacco that is smoked.", - "textExample": "Cigarette smoking is terrible for your health.", - "transcription": "[sìgərét]", - "__v": 0, - "textExampleTranslate": "Курение сигарет вредно для вашего здоровья", - "textMeaningTranslate": "Сигарета - это тонко обернутая бумажная трубка с курительным табаком", - "wordTranslate": "сигарета" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afae8" - }, - "group": 2, - "page": 20, - "word": "destruction", - "image": "files/21_1609.jpg", - "audio": "files/21_1609.mp3", - "audioMeaning": "files/21_1609_meaning.mp3", - "audioExample": "files/21_1609_example.mp3", - "textMeaning": "To damage something is to cause its destruction.", - "textExample": "The wildfires left the forest in a state of destruction.", - "transcription": "[distrΛkʃən]", - "__v": 0, - "textExampleTranslate": "Лесные пожары покинули лес в состоянии разрушения", - "textMeaningTranslate": "Повредить что-либо - значит повредить его", - "wordTranslate": "разрушение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaea" - }, - "group": 2, - "page": 20, - "word": "extensive", - "image": "files/21_1611.jpg", - "audio": "files/21_1611.mp3", - "audioMeaning": "files/21_1611_meaning.mp3", - "audioExample": "files/21_1611_example.mp3", - "textMeaning": "Extensive means large in size or amount.", - "textExample": "The game drew extensive media coverage.", - "transcription": "[iksténsiv]", - "__v": 0, - "textExampleTranslate": "Игра привлекла широкое освещение в СМИ", - "textMeaningTranslate": "Обширный означает большой размер или количество", - "wordTranslate": "обширный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afae9" - }, - "group": 2, - "page": 20, - "word": "DNA", - "image": "files/21_1610.jpg", - "audio": "files/21_1610.mp3", - "audioMeaning": "files/21_1610_meaning.mp3", - "audioExample": "files/21_1610_example.mp3", - "textMeaning": "DNA is the short form of deoxyribonucleic acid.", - "textExample": "The police sometimes use DNA to solve crime.", - "transcription": "[díːènéi]", - "__v": 0, - "textExampleTranslate": "Полиция иногда использует ДНК для раскрытия преступлений", - "textMeaningTranslate": "ДНК является короткой формой дезоксирибонуклеиновой кислоты", - "wordTranslate": "дНК" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaeb" - }, - "group": 2, - "page": 20, - "word": "female", - "image": "files/21_1612.jpg", - "audio": "files/21_1612.mp3", - "audioMeaning": "files/21_1612_meaning.mp3", - "audioExample": "files/21_1612_example.mp3", - "textMeaning": "Female refers to women or girls.", - "textExample": "She is the only female student in her class with short hair.", - "transcription": "[fíːmeil]", - "__v": 0, - "textExampleTranslate": "Она единственная студентка в своем классе с короткими волосами", - "textMeaningTranslate": "Женщина относится к женщинам или девушкам", - "wordTranslate": "женский пол" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaec" - }, - "group": 2, - "page": 20, - "word": "furthermore", - "image": "files/21_1613.jpg", - "audio": "files/21_1613.mp3", - "audioMeaning": "files/21_1613_meaning.mp3", - "audioExample": "files/21_1613_example.mp3", - "textMeaning": "Furthermore means more information will be added.", - "textExample": "She’s clever, and furthermore, she is not afraid of work.", - "transcription": "[fə́ːrðərmɔ̀ːr]", - "__v": 0, - "textExampleTranslate": "Она умная, а кроме того, она не боится работы", - "textMeaningTranslate": "Кроме того, означает, что будет добавлено больше информации", - "wordTranslate": "более того" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaed" - }, - "group": 2, - "page": 20, - "word": "gene", - "image": "files/21_1614.jpg", - "audio": "files/21_1614.mp3", - "audioMeaning": "files/21_1614_meaning.mp3", - "audioExample": "files/21_1614_example.mp3", - "textMeaning": "A gene controls what it looks like, how an organism grows, and how it develops.", - "textExample": "Gene therapy is sometimes used to treat an illness.", - "transcription": "[dʒiːn]", - "__v": 0, - "textExampleTranslate": "Генная терапия иногда используется для лечения болезни", - "textMeaningTranslate": "Ген контролирует, как он выглядит, как растет организм и как он развивается", - "wordTranslate": "ген" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaee" - }, - "group": 2, - "page": 20, - "word": "inherit", - "image": "files/21_1615.jpg", - "audio": "files/21_1615.mp3", - "audioMeaning": "files/21_1615_meaning.mp3", - "audioExample": "files/21_1615_example.mp3", - "textMeaning": "To inherit is to receive something that is passed down from a relative.", - "textExample": "All the girls in my family inherit red hair from my great-grandmother.", - "transcription": "[inhérit]", - "__v": 0, - "textExampleTranslate": "Все девочки в моей семье наследуют рыжие волосы от моей прабабушки", - "textMeaningTranslate": "Наследовать - значит получать то, что передается от родственника", - "wordTranslate": "унаследует" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaef" - }, - "group": 2, - "page": 20, - "word": "link", - "image": "files/21_1616.jpg", - "audio": "files/21_1616.mp3", - "audioMeaning": "files/21_1616_meaning.mp3", - "audioExample": "files/21_1616_example.mp3", - "textMeaning": "A link is a connection to something else.", - "textExample": "The two lines in the poem share a common link.", - "transcription": "[liŋk]", - "__v": 0, - "textExampleTranslate": "Две строки в стихотворении имеют общую ссылку", - "textMeaningTranslate": "Ссылка - это связь с чем-то другим", - "wordTranslate": "ссылка на сайт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaf0" - }, - "group": 2, - "page": 20, - "word": "male", - "image": "files/21_1617.jpg", - "audio": "files/21_1617.mp3", - "audioMeaning": "files/21_1617_meaning.mp3", - "audioExample": "files/21_1617_example.mp3", - "textMeaning": "Male refers to men or boys.", - "textExample": "He was the only male in the store.", - "transcription": "[meil]", - "__v": 0, - "textExampleTranslate": "Он был единственным мужчиной в магазине", - "textMeaningTranslate": "Мужчина относится к мужчинам или мальчикам", - "wordTranslate": "мужчина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaf1" - }, - "group": 2, - "page": 20, - "word": "population", - "image": "files/21_1618.jpg", - "audio": "files/21_1618.mp3", - "audioMeaning": "files/21_1618_meaning.mp3", - "audioExample": "files/21_1618_example.mp3", - "textMeaning": "A population is all the people living in an area.", - "textExample": "The population of our city is steadily growing.", - "transcription": "[pὰpjuléiʃən]", - "__v": 0, - "textExampleTranslate": "Население нашего города неуклонно растет", - "textMeaningTranslate": "Население - это все люди, живущие в районе", - "wordTranslate": "население" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaf2" - }, - "group": 2, - "page": 20, - "word": "result", - "image": "files/21_1619.jpg", - "audio": "files/21_1619.mp3", - "audioMeaning": "files/21_1619_meaning.mp3", - "audioExample": "files/21_1619_example.mp3", - "textMeaning": "A result happens because of something else.", - "textExample": "The result of her experiment was surprising.", - "transcription": "[rizΛlt]", - "__v": 0, - "textExampleTranslate": "Результат ее эксперимента был удивительным", - "textMeaningTranslate": "Результат происходит из-за чего-то другого", - "wordTranslate": "результат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaf3" - }, - "group": 2, - "page": 20, - "word": "sugar", - "image": "files/21_1620.jpg", - "audio": "files/21_1620.mp3", - "audioMeaning": "files/21_1620_meaning.mp3", - "audioExample": "files/21_1620_example.mp3", - "textMeaning": "Sugar comes from plants and is used to make food taste sweet.", - "textExample": "She added extra sugar to her tea.", - "transcription": "[ʃúgər]", - "__v": 0, - "textExampleTranslate": "Она добавила дополнительный сахар в свой чай", - "textMeaningTranslate": "Сахар поступает из растений и используется для придания пище сладкого вкуса", - "wordTranslate": "сахар" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaf5" - }, - "group": 2, - "page": 21, - "word": "circus", - "image": "files/22_1622.jpg", - "audio": "files/22_1622.mp3", - "audioMeaning": "files/22_1622_meaning.mp3", - "audioExample": "files/22_1622_example.mp3", - "textMeaning": "A circus is a traveling show with animals and people.", - "textExample": "I like to go to the circus to see the animals do tricks.", - "transcription": "[sə́ːrkəs]", - "__v": 0, - "textExampleTranslate": "Мне нравится ходить в цирк, чтобы увидеть, как животные делают трюки", - "textMeaningTranslate": "Цирк - это передвижное шоу с животными и людьми", - "wordTranslate": "цирк" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaf4" - }, - "group": 2, - "page": 21, - "word": "accommodate", - "image": "files/22_1621.jpg", - "audio": "files/22_1621.mp3", - "audioMeaning": "files/22_1621_meaning.mp3", - "audioExample": "files/22_1621_example.mp3", - "textMeaning": "To accommodate is to have enough room.", - "textExample": "The meeting room can accommodate nine people.", - "transcription": "[əkɑ́mədèit]", - "__v": 0, - "textExampleTranslate": "Конференц-зал может вместить девять человек", - "textMeaningTranslate": "Для размещения достаточно места", - "wordTranslate": "вмещать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaf6" - }, - "group": 2, - "page": 21, - "word": "coincide", - "image": "files/22_1623.jpg", - "audio": "files/22_1623.mp3", - "audioMeaning": "files/22_1623_meaning.mp3", - "audioExample": "files/22_1623_example.mp3", - "textMeaning": "To coincide means to happen at the same time.", - "textExample": "My birthday coincides with Christmas.", - "transcription": "[kòuinsáid]", - "__v": 0, - "textExampleTranslate": "Мой день рождения совпадает с Рождеством", - "textMeaningTranslate": "Совпасть - значит случиться одновременно", - "wordTranslate": "совпадают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaf7" - }, - "group": 2, - "page": 21, - "word": "commission", - "image": "files/22_1624.jpg", - "audio": "files/22_1624.mp3", - "audioMeaning": "files/22_1624_meaning.mp3", - "audioExample": "files/22_1624_example.mp3", - "textMeaning": "To commission someone is to pay that person to do some job.", - "textExample": "The artist was commissioned to create a picture.", - "transcription": "[kəmíʃən]", - "__v": 0, - "textExampleTranslate": "Художнику было поручено создать картину", - "textMeaningTranslate": "Поручить кому-либо - это заплатить этому человеку, чтобы он сделал какую-то работу", - "wordTranslate": "комиссия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaf8" - }, - "group": 2, - "page": 21, - "word": "dose", - "image": "files/22_1625.jpg", - "audio": "files/22_1625.mp3", - "audioMeaning": "files/22_1625_meaning.mp3", - "audioExample": "files/22_1625_example.mp3", - "textMeaning": "A dose is a certain amount of medicine taken at one time.", - "textExample": "My mother gave me a dose of medicine before I went to bed.", - "transcription": "[dous]", - "__v": 0, - "textExampleTranslate": "Моя мама дала мне дозу лекарства, прежде чем я пошла спать", - "textMeaningTranslate": "Доза - это определенное количество лекарства, принимаемого за один раз", - "wordTranslate": "доза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afafa" - }, - "group": 2, - "page": 21, - "word": "extent", - "image": "files/22_1627.jpg", - "audio": "files/22_1627.mp3", - "audioMeaning": "files/22_1627_meaning.mp3", - "audioExample": "files/22_1627_example.mp3", - "textMeaning": "The extent of something is how large, important, or serious it is.", - "textExample": "He ate to such an extent that he became overweight.", - "transcription": "[ikstént]", - "__v": 0, - "textExampleTranslate": "Он ел до такой степени, что стал лишним весом", - "textMeaningTranslate": "Степень чего-либо - насколько она важна, важна или серьезна", - "wordTranslate": "степень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaf9" - }, - "group": 2, - "page": 21, - "word": "dye", - "image": "files/22_1626.jpg", - "audio": "files/22_1626.mp3", - "audioMeaning": "files/22_1626_meaning.mp3", - "audioExample": "files/22_1626_example.mp3", - "textMeaning": "To dye something is to make it a certain color by using a special chemical.", - "textExample": "Valery got her hair dyed at the salon yesterday.", - "transcription": "[dai]", - "__v": 0, - "textExampleTranslate": "Валерия вчера покрасила волосы в салоне", - "textMeaningTranslate": "Покрасить что-то - значит придать ему определенный цвет с помощью специального химического вещества", - "wordTranslate": "краситель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afafb" - }, - "group": 2, - "page": 21, - "word": "gender", - "image": "files/22_1628.jpg", - "audio": "files/22_1628.mp3", - "audioMeaning": "files/22_1628_meaning.mp3", - "audioExample": "files/22_1628_example.mp3", - "textMeaning": "Gender is a category that describes being either a boy or a girl.", - "textExample": "Do you know the gender of her new baby?", - "transcription": "[dʒéndər]", - "__v": 0, - "textExampleTranslate": "Вы знаете пол ее нового ребенка?", - "textMeaningTranslate": "Пол - это категория, которая описывает, как быть мальчиком или девочкой", - "wordTranslate": "пол" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afafc" - }, - "group": 2, - "page": 21, - "word": "headline", - "image": "files/22_1629.jpg", - "audio": "files/22_1629.mp3", - "audioMeaning": "files/22_1629_meaning.mp3", - "audioExample": "files/22_1629_example.mp3", - "textMeaning": "A headline is the title of a newspaper story.", - "textExample": "The headline on the front page was about the economy.", - "transcription": "[hédlàin]", - "__v": 0, - "textExampleTranslate": "Заголовок на первой странице был об экономике", - "textMeaningTranslate": "Заголовок - это заголовок газетной истории", - "wordTranslate": "заголовок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afafd" - }, - "group": 2, - "page": 21, - "word": "informal", - "image": "files/22_1630.jpg", - "audio": "files/22_1630.mp3", - "audioMeaning": "files/22_1630_meaning.mp3", - "audioExample": "files/22_1630_example.mp3", - "textMeaning": "An informal thing is casual and relaxed, not official.", - "textExample": "They had an informal meeting to talk about their experiences.", - "transcription": "[infɔ́ːrməl]", - "__v": 0, - "textExampleTranslate": "У них была неформальная встреча, чтобы рассказать о своем опыте", - "textMeaningTranslate": "Неформальная вещь случайная и непринужденная, а не официальная", - "wordTranslate": "неофициальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afafe" - }, - "group": 2, - "page": 21, - "word": "inquire", - "image": "files/22_1631.jpg", - "audio": "files/22_1631.mp3", - "audioMeaning": "files/22_1631_meaning.mp3", - "audioExample": "files/22_1631_example.mp3", - "textMeaning": "To inquire about something is to ask about it.", - "textExample": "Dad called to inquire about the price of tickets for the show.", - "transcription": "[inkwáiər]", - "__v": 0, - "textExampleTranslate": "Папа позвонил, чтобы узнать цену билетов на шоу", - "textMeaningTranslate": "Спросить о чем-то - значит спросить об этом", - "wordTranslate": "узнать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afaff" - }, - "group": 2, - "page": 21, - "word": "messenger", - "image": "files/22_1632.jpg", - "audio": "files/22_1632.mp3", - "audioMeaning": "files/22_1632_meaning.mp3", - "audioExample": "files/22_1632_example.mp3", - "textMeaning": "A messenger is one who carries information from one place to another.", - "textExample": "The messenger delivered an important document to the office.", - "transcription": "[mésəndʒər]", - "__v": 0, - "textExampleTranslate": "Курьер доставил важный документ в офис", - "textMeaningTranslate": "Посланник - это тот, кто переносит информацию из одного места в другое", - "wordTranslate": "гонец" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb00" - }, - "group": 2, - "page": 21, - "word": "peer", - "image": "files/22_1633.jpg", - "audio": "files/22_1633.mp3", - "audioMeaning": "files/22_1633_meaning.mp3", - "audioExample": "files/22_1633_example.mp3", - "textMeaning": "To peer at something is to watch it carefully.", - "textExample": "She peered at people through the window.", - "transcription": "[piər]", - "__v": 0, - "textExampleTranslate": "Она смотрела на людей через окно", - "textMeaningTranslate": "Вглядываться во что-то - значит внимательно наблюдать за этим", - "wordTranslate": "равный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb01" - }, - "group": 2, - "page": 21, - "word": "portrait", - "image": "files/22_1634.jpg", - "audio": "files/22_1634.mp3", - "audioMeaning": "files/22_1634_meaning.mp3", - "audioExample": "files/22_1634_example.mp3", - "textMeaning": "A portrait is a painting or photograph of someone.", - "textExample": "I saw many religious portraits when I went to the museum.", - "transcription": "[pɔ́ːrtrit]", - "__v": 0, - "textExampleTranslate": "Я видел много религиозных портретов, когда ходил в музей", - "textMeaningTranslate": "Портрет - это картина или фотография кого-то", - "wordTranslate": "портрет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb02" - }, - "group": 2, - "page": 21, - "word": "pose", - "image": "files/22_1635.jpg", - "audio": "files/22_1635.mp3", - "audioMeaning": "files/22_1635_meaning.mp3", - "audioExample": "files/22_1635_example.mp3", - "textMeaning": "To pose is to stay in one place without moving.", - "textExample": "The kids and their dog posed for a picture.", - "transcription": "[pouz]", - "__v": 0, - "textExampleTranslate": "Дети и их собака позировали для картины", - "textMeaningTranslate": "Позировать - значит оставаться в одном месте без движения", - "wordTranslate": "поза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb04" - }, - "group": 2, - "page": 21, - "word": "steer", - "image": "files/22_1637.jpg", - "audio": "files/22_1637.mp3", - "audioMeaning": "files/22_1637_meaning.mp3", - "audioExample": "files/22_1637_example.mp3", - "textMeaning": "To steer something is to control where it goes.", - "textExample": "He steered the go-cart around the track.", - "transcription": "[stiəːr]", - "__v": 0, - "textExampleTranslate": "Он вел повозку по трассе", - "textMeaningTranslate": "Управлять чем-то - значит контролировать, куда оно идет", - "wordTranslate": "бычок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb03" - }, - "group": 2, - "page": 21, - "word": "ranch", - "image": "files/22_1636.jpg", - "audio": "files/22_1636.mp3", - "audioMeaning": "files/22_1636_meaning.mp3", - "audioExample": "files/22_1636_example.mp3", - "textMeaning": "A ranch is a large farm where animals are kept.", - "textExample": "My uncle has many horses on his ranch.", - "transcription": "[ræntʃ]", - "__v": 0, - "textExampleTranslate": "У моего дяди много лошадей на ранчо", - "textMeaningTranslate": "Ранчо - это большая ферма, где содержатся животные", - "wordTranslate": "ранчо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb05" - }, - "group": 2, - "page": 21, - "word": "stripe", - "image": "files/22_1638.jpg", - "audio": "files/22_1638.mp3", - "audioMeaning": "files/22_1638_meaning.mp3", - "audioExample": "files/22_1638_example.mp3", - "textMeaning": "A stripe is a thick line.", - "textExample": "The flag of the United States has red and white stripes.", - "transcription": "[straip]", - "__v": 0, - "textExampleTranslate": "Флаг США имеет красные и белые полосы", - "textMeaningTranslate": "Полоса - это толстая линия", - "wordTranslate": "полоса" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb06" - }, - "group": 2, - "page": 21, - "word": "tame", - "image": "files/22_1639.jpg", - "audio": "files/22_1639.mp3", - "audioMeaning": "files/22_1639_meaning.mp3", - "audioExample": "files/22_1639_example.mp3", - "textMeaning": "A tame animal is not afraid to be near people.", - "textExample": "The tame bird rested in his hand.", - "transcription": "[teim]", - "__v": 0, - "textExampleTranslate": "Ручная птица покоилась в его руке", - "textMeaningTranslate": "Прирученное животное не боится быть рядом с людьми", - "wordTranslate": "приручить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb07" - }, - "group": 2, - "page": 21, - "word": "tempt", - "image": "files/22_1640.jpg", - "audio": "files/22_1640.mp3", - "audioMeaning": "files/22_1640_meaning.mp3", - "audioExample": "files/22_1640_example.mp3", - "textMeaning": "To tempt people is to offer them something they want but shouldn’t have.", - "textExample": "I wasn’t hungry, but she tempted me with a piece of my favorite cake.", - "transcription": "[tempt]", - "__v": 0, - "textExampleTranslate": "Я не был голоден, но она соблазнила меня куском моего любимого торта", - "textMeaningTranslate": "Соблазнять людей - значит предлагать им то, чего они хотят, но не должны", - "wordTranslate": "искушать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb08" - }, - "group": 2, - "page": 22, - "word": "ban", - "image": "files/23_1641.jpg", - "audio": "files/23_1641.mp3", - "audioMeaning": "files/23_1641_meaning.mp3", - "audioExample": "files/23_1641_example.mp3", - "textMeaning": "To ban something is to not let people do it.", - "textExample": "Smoking is banned in this building.", - "transcription": "[bæn]", - "__v": 0, - "textExampleTranslate": "Курение запрещено в этом здании", - "textMeaningTranslate": "Запрещать что-либо - значит не позволять людям делать это", - "wordTranslate": "запретить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb0a" - }, - "group": 2, - "page": 22, - "word": "confess", - "image": "files/23_1643.jpg", - "audio": "files/23_1643.mp3", - "audioMeaning": "files/23_1643_meaning.mp3", - "audioExample": "files/23_1643_example.mp3", - "textMeaning": "To confess is to admit a bad or embarrassing truth.", - "textExample": "The woman confessed that she had stolen the money.", - "transcription": "[kənfés]", - "__v": 0, - "textExampleTranslate": "Женщина призналась, что украла деньги", - "textMeaningTranslate": "Признаться - значит признать дурную или смущающую истину", - "wordTranslate": "признания" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb09" - }, - "group": 2, - "page": 22, - "word": "cautious", - "image": "files/23_1642.jpg", - "audio": "files/23_1642.mp3", - "audioMeaning": "files/23_1642_meaning.mp3", - "audioExample": "files/23_1642_example.mp3", - "textMeaning": "A cautious person is careful to avoid danger.", - "textExample": "Be very cautious as you stack those boxes.", - "transcription": "[kɔ́ːʃəs]", - "__v": 0, - "textExampleTranslate": "Будьте очень осторожны, когда складываете эти коробки", - "textMeaningTranslate": "Осторожный человек старается избежать опасности", - "wordTranslate": "осторожный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb0b" - }, - "group": 2, - "page": 22, - "word": "cottage", - "image": "files/23_1644.jpg", - "audio": "files/23_1644.mp3", - "audioMeaning": "files/23_1644_meaning.mp3", - "audioExample": "files/23_1644_example.mp3", - "textMeaning": "A cottage is a small, old house in the countryside.", - "textExample": "My aunt lives in a pretty cottage in the mountains.", - "transcription": "[kɑ́tidʒ]", - "__v": 0, - "textExampleTranslate": "Моя тетя живет в красивом коттедже в горах", - "textMeaningTranslate": "Коттедж - это небольшой старый дом в сельской местности", - "wordTranslate": "коттедж" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb0c" - }, - "group": 2, - "page": 22, - "word": "daytime", - "image": "files/23_1645.jpg", - "audio": "files/23_1645.mp3", - "audioMeaning": "files/23_1645_meaning.mp3", - "audioExample": "files/23_1645_example.mp3", - "textMeaning": "Daytime is the time of the day when the sky is light.", - "textExample": "The kids are only allowed to play outside in the daytime.", - "transcription": "[déitàim]", - "__v": 0, - "textExampleTranslate": "Детям разрешено играть только на улице днем", - "textMeaningTranslate": "Дневное время - это время дня, когда небо светло", - "wordTranslate": "дневной" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb0d" - }, - "group": 2, - "page": 22, - "word": "desperate", - "image": "files/23_1646.jpg", - "audio": "files/23_1646.mp3", - "audioMeaning": "files/23_1646_meaning.mp3", - "audioExample": "files/23_1646_example.mp3", - "textMeaning": "A desperate person will try anything to do or change something.", - "textExample": "I’m desperate to find a new job.", - "transcription": "[déspərit]", - "__v": 0, - "textExampleTranslate": "Я отчаянно пытаюсь найти новую работу", - "textMeaningTranslate": "Отчаявшийся человек попытается что-нибудь сделать или что-то изменить", - "wordTranslate": "отчаянный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb0e" - }, - "group": 2, - "page": 22, - "word": "exhausting", - "image": "files/23_1647.jpg", - "audio": "files/23_1647.mp3", - "audioMeaning": "files/23_1647_meaning.mp3", - "audioExample": "files/23_1647_example.mp3", - "textMeaning": "An exhausting activity is very tiring.", - "textExample": "After an exhausting journey, we finally arrived.", - "transcription": "[igzɔ́ːstiŋ]", - "__v": 0, - "textExampleTranslate": "После утомительного путешествия мы наконец прибыли", - "textMeaningTranslate": "Изнурительная деятельность очень утомительна", - "wordTranslate": "исчерпать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb0f" - }, - "group": 2, - "page": 22, - "word": "fade", - "image": "files/23_1648.jpg", - "audio": "files/23_1648.mp3", - "audioMeaning": "files/23_1648_meaning.mp3", - "audioExample": "files/23_1648_example.mp3", - "textMeaning": "To fade is to become quieter or less bright.", - "textExample": "The piece of cloth I found was old and faded.", - "transcription": "[feid]", - "__v": 0, - "textExampleTranslate": "Кусок ткани, который я нашел, был старым и выцветшим", - "textMeaningTranslate": "Исчезать - значит становиться тише или менее ярким", - "wordTranslate": "исчезают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb10" - }, - "group": 2, - "page": 22, - "word": "fierce", - "image": "files/23_1649.jpg", - "audio": "files/23_1649.mp3", - "audioMeaning": "files/23_1649_meaning.mp3", - "audioExample": "files/23_1649_example.mp3", - "textMeaning": "A fierce person or animal is angry or violent.", - "textExample": "Wolves are fierce animals. Do not disturb them.", - "transcription": "[fíərs]", - "__v": 0, - "textExampleTranslate": "Волки - жестокие животные. Не беспокой их", - "textMeaningTranslate": "Яростный человек или животное злой или жестокий", - "wordTranslate": "свирепый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb11" - }, - "group": 2, - "page": 22, - "word": "gamble", - "image": "files/23_1650.jpg", - "audio": "files/23_1650.mp3", - "audioMeaning": "files/23_1650_meaning.mp3", - "audioExample": "files/23_1650_example.mp3", - "textMeaning": "To gamble means to play a game that involves winning or losing money.", - "textExample": "Many people like to go to casinos to gamble.", - "transcription": "[gǽmbəl]", - "__v": 0, - "textExampleTranslate": "Многие люди любят ходить в казино, чтобы играть в азартные игры", - "textMeaningTranslate": "Играть в азартные игры означает играть в игру, которая включает в себя выигрыш или проигрыш", - "wordTranslate": "играть в азартные игры" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb12" - }, - "group": 2, - "page": 22, - "word": "lawn", - "image": "files/23_1651.jpg", - "audio": "files/23_1651.mp3", - "audioMeaning": "files/23_1651_meaning.mp3", - "audioExample": "files/23_1651_example.mp3", - "textMeaning": "A lawn is an area covered in grass.", - "textExample": "My dad keeps the lawn in front of our house very neat.", - "transcription": "[lɔːn]", - "__v": 0, - "textExampleTranslate": "Мой папа держит газон перед нашим домом очень аккуратно", - "textMeaningTranslate": "Газон - это территория, покрытая травой", - "wordTranslate": "газон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb13" - }, - "group": 2, - "page": 22, - "word": "mow", - "image": "files/23_1652.jpg", - "audio": "files/23_1652.mp3", - "audioMeaning": "files/23_1652_meaning.mp3", - "audioExample": "files/23_1652_example.mp3", - "textMeaning": "To mow grass is to cut it to make it short.", - "textExample": "I mow our lawn every weekend.", - "transcription": "[mou]", - "__v": 0, - "textExampleTranslate": "Я подстригаю газон каждые выходные", - "textMeaningTranslate": "Косить траву - значит подстригать, чтобы она была короткой", - "wordTranslate": "косить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb14" - }, - "group": 2, - "page": 22, - "word": "outlaw", - "image": "files/23_1653.jpg", - "audio": "files/23_1653.mp3", - "audioMeaning": "files/23_1653_meaning.mp3", - "audioExample": "files/23_1653_example.mp3", - "textMeaning": "An outlaw is a criminal who hides from the police.", - "textExample": "The police passed out posters of the outlaw to all the people.", - "transcription": "[áutlɔ̀ː]", - "__v": 0, - "textExampleTranslate": "Полиция раздала плакаты с преступником всем людям", - "textMeaningTranslate": "Преступник - это преступник, который прячется от полиции", - "wordTranslate": "вне закона" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb15" - }, - "group": 2, - "page": 22, - "word": "prospect", - "image": "files/23_1654.jpg", - "audio": "files/23_1654.mp3", - "audioMeaning": "files/23_1654_meaning.mp3", - "audioExample": "files/23_1654_example.mp3", - "textMeaning": "A prospect is a possibility that something will happen.", - "textExample": "He wakes up every morning with the prospect of having a good day.", - "transcription": "[prɑ́spekt]", - "__v": 0, - "textExampleTranslate": "Он просыпается каждое утро с перспективой хорошего дня", - "textMeaningTranslate": "Перспектива - это вероятность того, что что-то случится", - "wordTranslate": "перспектива" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb16" - }, - "group": 2, - "page": 22, - "word": "purse", - "image": "files/23_1655.jpg", - "audio": "files/23_1655.mp3", - "audioMeaning": "files/23_1655_meaning.mp3", - "audioExample": "files/23_1655_example.mp3", - "textMeaning": "A purse is a bag in which women keep money, makeup, keys, etc.", - "textExample": "My sister likes to buy designer purses.", - "transcription": "[pəːrs]", - "__v": 0, - "textExampleTranslate": "Моя сестра любит покупать дизайнерские кошельки", - "textMeaningTranslate": "Кошелек - это сумка, в которой женщины хранят деньги, косметику, ключи и т. Д", - "wordTranslate": "кошелек" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb17" - }, - "group": 2, - "page": 22, - "word": "rod", - "image": "files/23_1656.jpg", - "audio": "files/23_1656.mp3", - "audioMeaning": "files/23_1656_meaning.mp3", - "audioExample": "files/23_1656_example.mp3", - "textMeaning": "A rod is a thin stick made of wood or metal.", - "textExample": "I bought a new fishing rod to use while on vacation.", - "transcription": "[rɔd]", - "__v": 0, - "textExampleTranslate": "Я купил новую удочку, чтобы использовать ее в отпуске", - "textMeaningTranslate": "Жезл - это тонкая палка из дерева или металла", - "wordTranslate": "стержень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb18" - }, - "group": 2, - "page": 22, - "word": "seldom", - "image": "files/23_1657.jpg", - "audio": "files/23_1657.mp3", - "audioMeaning": "files/23_1657_meaning.mp3", - "audioExample": "files/23_1657_example.mp3", - "textMeaning": "Seldom shows that an action doesn’t happen very often.", - "textExample": "It seldom rains in southern Arizona.", - "transcription": "[séldəm]", - "__v": 0, - "textExampleTranslate": "На юге Аризоны редко идут дожди", - "textMeaningTranslate": "Редко показывает, что действие происходит не очень часто", - "wordTranslate": "редко" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb19" - }, - "group": 2, - "page": 22, - "word": "shave", - "image": "files/23_1658.jpg", - "audio": "files/23_1658.mp3", - "audioMeaning": "files/23_1658_meaning.mp3", - "audioExample": "files/23_1658_example.mp3", - "textMeaning": "To shave means to cut the hairs on one’s face with a sharp tool.", - "textExample": "My father shaves his face every day because he doesn’t want a beard.", - "transcription": "[ʃeiv]", - "__v": 0, - "textExampleTranslate": "Мой отец бреет лицо каждый день, потому что ему не нужна борода", - "textMeaningTranslate": "Бриться - значит подстригать волосы на лице острым инструментом", - "wordTranslate": "брить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb1a" - }, - "group": 2, - "page": 22, - "word": "terrified", - "image": "files/23_1659.jpg", - "audio": "files/23_1659.mp3", - "audioMeaning": "files/23_1659_meaning.mp3", - "audioExample": "files/23_1659_example.mp3", - "textMeaning": "A terrified person or animal is extremely scared.", - "textExample": "When I saw the ghost, I was absolutely terrified!", - "transcription": "[térəfàid]", - "__v": 0, - "textExampleTranslate": "Когда я увидел призрака, я был в ужасе!", - "textMeaningTranslate": "Испуганный человек или животное чрезвычайно напуганы", - "wordTranslate": "ужас" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb1b" - }, - "group": 2, - "page": 22, - "word": "wizard", - "image": "files/23_1660.jpg", - "audio": "files/23_1660.mp3", - "audioMeaning": "files/23_1660_meaning.mp3", - "audioExample": "files/23_1660_example.mp3", - "textMeaning": "A wizard is a man who can do magic.", - "textExample": "The wizard made gold fall from the sky.", - "transcription": "[wízəːrd]", - "__v": 0, - "textExampleTranslate": "Волшебник заставил золото упасть с неба", - "textMeaningTranslate": "Волшебник - это человек, который умеет творить чудеса", - "wordTranslate": "мастер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb1c" - }, - "group": 2, - "page": 23, - "word": "abroad", - "image": "files/24_1661.jpg", - "audio": "files/24_1661.mp3", - "audioMeaning": "files/24_1661_meaning.mp3", - "audioExample": "files/24_1661_example.mp3", - "textMeaning": "An action done abroad is done in a different country.", - "textExample": "My friend is going on a summer trip abroad.", - "transcription": "[əbrɔ́ːd]", - "__v": 0, - "textExampleTranslate": "Мой друг отправляется в летнюю поездку за границу", - "textMeaningTranslate": "Действия, совершенные за границей, совершаются в другой стране", - "wordTranslate": "за рубежом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb1d" - }, - "group": 2, - "page": 23, - "word": "airline", - "image": "files/24_1662.jpg", - "audio": "files/24_1662.mp3", - "audioMeaning": "files/24_1662_meaning.mp3", - "audioExample": "files/24_1662_example.mp3", - "textMeaning": "An airline is a company that takes people to different places by plane.", - "textExample": "The airline has excellent customer service.", - "transcription": "[έərlàin]", - "__v": 0, - "textExampleTranslate": "Авиакомпания имеет отличное обслуживание клиентов", - "textMeaningTranslate": "Авиакомпания - это компания, которая доставляет людей в разные места на самолете", - "wordTranslate": "авиакомпания" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb1e" - }, - "group": 2, - "page": 23, - "word": "audience", - "image": "files/24_1663.jpg", - "audio": "files/24_1663.mp3", - "audioMeaning": "files/24_1663_meaning.mp3", - "audioExample": "files/24_1663_example.mp3", - "textMeaning": "An audience is a group of people who gather to watch someone do something.", - "textExample": "He was excited to be part of the audience.", - "transcription": "[ɔ́ːdiəns]", - "__v": 0, - "textExampleTranslate": "Он был взволнован, чтобы быть частью аудитории", - "textMeaningTranslate": "Аудитория - это группа людей, которые собираются, чтобы посмотреть, как кто-то что-то делает", - "wordTranslate": "зрительская аудитория" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb1f" - }, - "group": 2, - "page": 23, - "word": "bargain", - "image": "files/24_1664.jpg", - "audio": "files/24_1664.mp3", - "audioMeaning": "files/24_1664_meaning.mp3", - "audioExample": "files/24_1664_example.mp3", - "textMeaning": "A bargain is a very good price paid for a product.", - "textExample": "She was looking forward to getting a good bargain at the supermarket.", - "transcription": "[bάːrgən]", - "__v": 0, - "textExampleTranslate": "Она с нетерпением ждала выгодной сделки в супермаркете", - "textMeaningTranslate": "Сделка - это очень хорошая цена за продукт", - "wordTranslate": "сделка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb20" - }, - "group": 2, - "page": 23, - "word": "brief", - "image": "files/24_1665.jpg", - "audio": "files/24_1665.mp3", - "audioMeaning": "files/24_1665_meaning.mp3", - "audioExample": "files/24_1665_example.mp3", - "textMeaning": "A brief action lasts a short time.", - "textExample": "The lawyers took a brief break.", - "transcription": "[briːf]", - "__v": 0, - "textExampleTranslate": "Адвокаты сделали небольшой перерыв", - "textMeaningTranslate": "Короткое действие длится недолго", - "wordTranslate": "краткий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb21" - }, - "group": 2, - "page": 23, - "word": "currency", - "image": "files/24_1666.jpg", - "audio": "files/24_1666.mp3", - "audioMeaning": "files/24_1666_meaning.mp3", - "audioExample": "files/24_1666_example.mp3", - "textMeaning": "The currency of a country is the type of money used in that country.", - "textExample": "The currency in China is different from that in Australia.", - "transcription": "[kə́ːrənsi]", - "__v": 0, - "textExampleTranslate": "Валюта в Китае отличается от валюты в Австралии", - "textMeaningTranslate": "Валюта страны - это тип денег, используемых в этой стране", - "wordTranslate": "валюта" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb22" - }, - "group": 2, - "page": 23, - "word": "data", - "image": "files/24_1667.jpg", - "audio": "files/24_1667.mp3", - "audioMeaning": "files/24_1667_meaning.mp3", - "audioExample": "files/24_1667_example.mp3", - "textMeaning": "Data is a collection of information and facts.", - "textExample": "He saved all the data on his computer.", - "transcription": "[déitə]", - "__v": 0, - "textExampleTranslate": "Он сохранил все данные на своем компьютере", - "textMeaningTranslate": "Данные - это сбор информации и фактов", - "wordTranslate": "данные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb23" - }, - "group": 2, - "page": 23, - "word": "domestic", - "image": "files/24_1668.jpg", - "audio": "files/24_1668.mp3", - "audioMeaning": "files/24_1668_meaning.mp3", - "audioExample": "files/24_1668_example.mp3", - "textMeaning": "Domestic refers to something that happens within a particular country.", - "textExample": "The airline has fifty domestic flights daily.", - "transcription": "[dəméstik]", - "__v": 0, - "textExampleTranslate": "Авиакомпания ежедневно совершает пятьдесят внутренних рейсов", - "textMeaningTranslate": "Внутреннее относится к тому, что происходит в конкретной стране", - "wordTranslate": "внутренний" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb24" - }, - "group": 2, - "page": 23, - "word": "draft", - "image": "files/24_1669.jpg", - "audio": "files/24_1669.mp3", - "audioMeaning": "files/24_1669_meaning.mp3", - "audioExample": "files/24_1669_example.mp3", - "textMeaning": "A draft is a piece of written work that is not in its final form.", - "textExample": "He was writing his first draft.", - "transcription": "[dræft]", - "__v": 0, - "textExampleTranslate": "Он писал свой первый набросок", - "textMeaningTranslate": "Черновик - это часть письменной работы, которая не находится в окончательном виде", - "wordTranslate": "черновой вариант" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb25" - }, - "group": 2, - "page": 23, - "word": "gather", - "image": "files/24_1670.jpg", - "audio": "files/24_1670.mp3", - "audioMeaning": "files/24_1670_meaning.mp3", - "audioExample": "files/24_1670_example.mp3", - "textMeaning": "To gather is to form a group or bring together.", - "textExample": "We will gather the children before the meeting.", - "transcription": "[gǽðər]", - "__v": 0, - "textExampleTranslate": "Мы соберем детей до встречи", - "textMeaningTranslate": "Собраться - значит создать группу или собрать вместе", - "wordTranslate": "собирать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb26" - }, - "group": 2, - "page": 23, - "word": "hobby", - "image": "files/24_1671.jpg", - "audio": "files/24_1671.mp3", - "audioMeaning": "files/24_1671_meaning.mp3", - "audioExample": "files/24_1671_example.mp3", - "textMeaning": "A hobby is a fun and creative activity people do in their free time.", - "textExample": "She liked to paint as a hobby.", - "transcription": "[hάbi]", - "__v": 0, - "textExampleTranslate": "Она любила рисовать как хобби", - "textMeaningTranslate": "Хобби - это увлекательная и творческая деятельность, которую люди делают в свободное время", - "wordTranslate": "хобби" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb27" - }, - "group": 2, - "page": 23, - "word": "income", - "image": "files/24_1672.jpg", - "audio": "files/24_1672.mp3", - "audioMeaning": "files/24_1672_meaning.mp3", - "audioExample": "files/24_1672_example.mp3", - "textMeaning": "An income is the money you earned from work.", - "textExample": "She was saving her income to buy a house.", - "transcription": "[ínkʌm]", - "__v": 0, - "textExampleTranslate": "Она копила деньги на покупку дома", - "textMeaningTranslate": "Доход - это деньги, которые вы заработали на работе", - "wordTranslate": "доход" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb28" - }, - "group": 2, - "page": 23, - "word": "jet", - "image": "files/24_1673.jpg", - "audio": "files/24_1673.mp3", - "audioMeaning": "files/24_1673_meaning.mp3", - "audioExample": "files/24_1673_example.mp3", - "textMeaning": "A jet is a fast plane with a big engine.", - "textExample": "Her company owns a private jet.", - "transcription": "[dʒet]", - "__v": 0, - "textExampleTranslate": "Ее компания владеет частным самолетом", - "textMeaningTranslate": "Самолет - это быстрый самолет с большим двигателем", - "wordTranslate": "струя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb29" - }, - "group": 2, - "page": 23, - "word": "maximum", - "image": "files/24_1674.jpg", - "audio": "files/24_1674.mp3", - "audioMeaning": "files/24_1674_meaning.mp3", - "audioExample": "files/24_1674_example.mp3", - "textMeaning": "Maximum is the highest amount of anything allowed.", - "textExample": "The maximum driving speed here is 80 km/h.", - "transcription": "[mǽksəməm]", - "__v": 0, - "textExampleTranslate": "Максимальная скорость движения здесь составляет 80 км / ч ", - "textMeaningTranslate": "Максимум - это максимальная сумма из всего, что разрешено", - "wordTranslate": "максимум" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb2a" - }, - "group": 2, - "page": 23, - "word": "official", - "image": "files/24_1675.jpg", - "audio": "files/24_1675.mp3", - "audioMeaning": "files/24_1675_meaning.mp3", - "audioExample": "files/24_1675_example.mp3", - "textMeaning": "An official thing is approved by someone in authority.", - "textExample": "Her official degree was being transferred.", - "transcription": "[əfíʃəl]", - "__v": 0, - "textExampleTranslate": "Ее официальная степень переводилась", - "textMeaningTranslate": "Официальная вещь одобрена кем-то во власти", - "wordTranslate": "официальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb2b" - }, - "group": 2, - "page": 23, - "word": "recommend", - "image": "files/24_1676.jpg", - "audio": "files/24_1676.mp3", - "audioMeaning": "files/24_1676_meaning.mp3", - "audioExample": "files/24_1676_example.mp3", - "textMeaning": "To recommend means to give advice based on experience.", - "textExample": "His doctor will recommend the best medicine for her cough.", - "transcription": "[rèkəménd]", - "__v": 0, - "textExampleTranslate": "Его доктор порекомендует лучшее лекарство от ее кашля", - "textMeaningTranslate": "Рекомендовать - значит давать советы на основе опыта", - "wordTranslate": "рекомендую" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb2c" - }, - "group": 2, - "page": 23, - "word": "refer", - "image": "files/24_1677.jpg", - "audio": "files/24_1677.mp3", - "audioMeaning": "files/24_1677_meaning.mp3", - "audioExample": "files/24_1677_example.mp3", - "textMeaning": "To refer to something means to mention or call attention to it.", - "textExample": "Mr. Cid referred to the time to show Bill that he was late for class.", - "transcription": "[rifə́ːr]", - "__v": 0, - "textExampleTranslate": "Мистер Сид сослался на время, чтобы показать Биллу, что он опоздал на урок", - "textMeaningTranslate": "Ссылаться на что-либо - значит упоминать или привлекать к себе внимание", - "wordTranslate": "см" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb2d" - }, - "group": 2, - "page": 23, - "word": "remote", - "image": "files/24_1678.jpg", - "audio": "files/24_1678.mp3", - "audioMeaning": "files/24_1678_meaning.mp3", - "audioExample": "files/24_1678_example.mp3", - "textMeaning": "A remote place is distant or far away.", - "textExample": "He lived in a remote village in the Himalayas.", - "transcription": "[rimóut]", - "__v": 0, - "textExampleTranslate": "Он жил в глухой деревне в Гималаях", - "textMeaningTranslate": "Отдаленное место далеко или далеко", - "wordTranslate": "дистанционный пульт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb2e" - }, - "group": 2, - "page": 23, - "word": "sleepless", - "image": "files/24_1679.jpg", - "audio": "files/24_1679.mp3", - "audioMeaning": "files/24_1679_meaning.mp3", - "audioExample": "files/24_1679_example.mp3", - "textMeaning": "Sleepless describes a time period in which someone does not sleep.", - "textExample": "Jill had a sleepless night because she had so much on her mind.", - "transcription": "[slíːplis]", - "__v": 0, - "textExampleTranslate": "У Джилл была бессонная ночь, потому что она так много думала", - "textMeaningTranslate": "Бессонница описывает период времени, в течение которого кто-то не спит", - "wordTranslate": "бессонные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb2f" - }, - "group": 2, - "page": 23, - "word": "volume", - "image": "files/24_1680.jpg", - "audio": "files/24_1680.mp3", - "audioMeaning": "files/24_1680_meaning.mp3", - "audioExample": "files/24_1680_example.mp3", - "textMeaning": "The volume is the total amount of something.", - "textExample": "The volume of cars in the parking lot was steadily increasing.", - "transcription": "[vάljuːm]", - "__v": 0, - "textExampleTranslate": "Объем автомобилей на стоянке неуклонно растет", - "textMeaningTranslate": "Объем - это общая сумма чего-либо", - "wordTranslate": "объем" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb30" - }, - "group": 2, - "page": 24, - "word": "circulate", - "image": "files/25_1681.jpg", - "audio": "files/25_1681.mp3", - "audioMeaning": "files/25_1681_meaning.mp3", - "audioExample": "files/25_1681_example.mp3", - "textMeaning": "To circulate is to spread something around, especially in a circular way.", - "textExample": "The fan helped to circulate cool air through the room.", - "transcription": "[sə́ːrkjulèit]", - "__v": 0, - "textExampleTranslate": "Вентилятор помог распространить прохладный воздух через комнату", - "textMeaningTranslate": "Распространять - значит распространять что-то вокруг, особенно по кругу", - "wordTranslate": "циркулировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb31" - }, - "group": 2, - "page": 24, - "word": "consequent", - "image": "files/25_1682.jpg", - "audio": "files/25_1682.mp3", - "audioMeaning": "files/25_1682_meaning.mp3", - "audioExample": "files/25_1682_example.mp3", - "textMeaning": "Consequent means happening because of a different situation.", - "textExample": "Her consequent rash came after she touched the poisonous plant.", - "transcription": "[kɑ́nsikwènt]", - "__v": 0, - "textExampleTranslate": "Ее последующая сыпь появилась после того, как она коснулась ядовитого растения", - "textMeaningTranslate": "Последствие означает, что происходит из-за другой ситуации", - "wordTranslate": "последовательный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb32" - }, - "group": 2, - "page": 24, - "word": "derive", - "image": "files/25_1683.jpg", - "audio": "files/25_1683.mp3", - "audioMeaning": "files/25_1683_meaning.mp3", - "audioExample": "files/25_1683_example.mp3", - "textMeaning": "To derive means to come, or originate, from a thing or place.", - "textExample": "Red’s nickname was derived from the color of her hair.", - "transcription": "[diráiv]", - "__v": 0, - "textExampleTranslate": "Прозвище Рэд произошло от цвета ее волос", - "textMeaningTranslate": "Извлечь - значит прийти или порождаться от вещи или места", - "wordTranslate": "вывести" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb33" - }, - "group": 2, - "page": 24, - "word": "drown", - "image": "files/25_1684.jpg", - "audio": "files/25_1684.mp3", - "audioMeaning": "files/25_1684_meaning.mp3", - "audioExample": "files/25_1684_example.mp3", - "textMeaning": "To drown is to die from not being able to breathe underwater.", - "textExample": "He would have drowned if the sailors had not rescued him.", - "transcription": "[draun]", - "__v": 0, - "textExampleTranslate": "Он утонул бы, если бы моряки не спасли его", - "textMeaningTranslate": "Утонуть - значит умереть от неспособности дышать под водой", - "wordTranslate": "утопить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb34" - }, - "group": 2, - "page": 24, - "word": "invade", - "image": "files/25_1689.jpg", - "audio": "files/25_1689.mp3", - "audioMeaning": "files/25_1689_meaning.mp3", - "audioExample": "files/25_1689_example.mp3", - "textMeaning": "To invade is to take over a place by force.", - "textExample": "The enemy forces tried to invade our country from the sky.", - "transcription": "[invéid]", - "__v": 0, - "textExampleTranslate": "Силы противника пытались вторгнуться в нашу страну с неба", - "textMeaningTranslate": "Захватить - значит занять место силой", - "wordTranslate": "вторжению" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb35" - }, - "group": 2, - "page": 24, - "word": "fraction", - "image": "files/25_1686.jpg", - "audio": "files/25_1686.mp3", - "audioMeaning": "files/25_1686_meaning.mp3", - "audioExample": "files/25_1686_example.mp3", - "textMeaning": "A fraction is a small part of something.", - "textExample": "Only a fraction of the cake was gone.", - "transcription": "[frǽkʃən]", - "__v": 0, - "textExampleTranslate": "Только часть пирога пропала", - "textMeaningTranslate": "Фракция - это малая часть чего-то", - "wordTranslate": "доля" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb36" - }, - "group": 2, - "page": 24, - "word": "frost", - "image": "files/25_1687.jpg", - "audio": "files/25_1687.mp3", - "audioMeaning": "files/25_1687_meaning.mp3", - "audioExample": "files/25_1687_example.mp3", - "textMeaning": "Frost is a white layer of ice that forms during very cold weather.", - "textExample": "In the morning, the trees were all covered with frost.", - "transcription": "[frɔːst]", - "__v": 0, - "textExampleTranslate": "Утром деревья были покрыты инеем", - "textMeaningTranslate": "Мороз - это белый слой льда, который образуется в очень холодную погоду", - "wordTranslate": "мороз" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb37" - }, - "group": 2, - "page": 24, - "word": "illusion", - "image": "files/25_1688.jpg", - "audio": "files/25_1688.mp3", - "audioMeaning": "files/25_1688_meaning.mp3", - "audioExample": "files/25_1688_example.mp3", - "textMeaning": "An illusion is something that looks real, but doesn’t actually exist.", - "textExample": "Some pictures create an illusion for the eyes.", - "transcription": "[ilúːʒən]", - "__v": 0, - "textExampleTranslate": "Некоторые картины создают иллюзию для глаз", - "textMeaningTranslate": "Иллюзия - это то, что выглядит реальным, но на самом деле не существует", - "wordTranslate": "иллюзия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb38" - }, - "group": 2, - "page": 24, - "word": "dynasty", - "image": "files/25_1685.jpg", - "audio": "files/25_1685.mp3", - "audioMeaning": "files/25_1685_meaning.mp3", - "audioExample": "files/25_1685_example.mp3", - "textMeaning": "A dynasty is a series of rulers who are all from the same family.", - "textExample": "The ancient Egyptians had a dynasty that lasted for many years.", - "transcription": "[dáinəsti]", - "__v": 0, - "textExampleTranslate": "У древних египтян была династия, которая длилась много лет", - "textMeaningTranslate": "Династия - это серия правителей, принадлежащих к одной семье", - "wordTranslate": "династия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb39" - }, - "group": 2, - "page": 24, - "word": "lieutenant", - "image": "files/25_1690.jpg", - "audio": "files/25_1690.mp3", - "audioMeaning": "files/25_1690_meaning.mp3", - "audioExample": "files/25_1690_example.mp3", - "textMeaning": "A lieutenant is a rank in the military or police, or a person with that rank.", - "textExample": "The lieutenant was a good leader, and his soldiers respected him.", - "transcription": "[luːténənt]", - "__v": 0, - "textExampleTranslate": "Лейтенант был хорошим руководителем, и его солдаты уважали его", - "textMeaningTranslate": "Лейтенант - это звание в армии или полиции, или человек с таким званием", - "wordTranslate": "лейтенант" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb3a" - }, - "group": 2, - "page": 24, - "word": "merit", - "image": "files/25_1692.jpg", - "audio": "files/25_1692.mp3", - "audioMeaning": "files/25_1692_meaning.mp3", - "audioExample": "files/25_1692_example.mp3", - "textMeaning": "A merit is a positive or good quality.", - "textExample": "The actor received an award for his merits in the movie.", - "transcription": "[mérit]", - "__v": 0, - "textExampleTranslate": "Актер получил награду за заслуги в кино", - "textMeaningTranslate": "Заслуга - это положительное или хорошее качество", - "wordTranslate": "заслуга" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb3b" - }, - "group": 2, - "page": 24, - "word": "marine", - "image": "files/25_1691.jpg", - "audio": "files/25_1691.mp3", - "audioMeaning": "files/25_1691_meaning.mp3", - "audioExample": "files/25_1691_example.mp3", - "textMeaning": "Marine describes something related to the sea.", - "textExample": "A healthy ocean is full of marine animals.", - "transcription": "[məríːn]", - "__v": 0, - "textExampleTranslate": "Здоровый океан полон морских животных", - "textMeaningTranslate": "Морпех описывает что-то связанное с морем", - "wordTranslate": "морской" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb3c" - }, - "group": 2, - "page": 24, - "word": "polar", - "image": "files/25_1694.jpg", - "audio": "files/25_1694.mp3", - "audioMeaning": "files/25_1694_meaning.mp3", - "audioExample": "files/25_1694_example.mp3", - "textMeaning": "Polar relates to the cold places on Earth’s north and south ends.", - "textExample": "Only a few people live in the Earth’s northern polar region.", - "transcription": "[póulər]", - "__v": 0, - "textExampleTranslate": "Только несколько человек живут в северной полярной области Земли", - "textMeaningTranslate": "Полярность относится к холодным местам на севере и юге Земли", - "wordTranslate": "полярный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb3d" - }, - "group": 2, - "page": 24, - "word": "navy", - "image": "files/25_1693.jpg", - "audio": "files/25_1693.mp3", - "audioMeaning": "files/25_1693_meaning.mp3", - "audioExample": "files/25_1693_example.mp3", - "textMeaning": "A navy is the part of a country’s military that fights at sea.", - "textExample": "My country is known for our strong navy.", - "transcription": "[néivi]", - "__v": 0, - "textExampleTranslate": "Моя страна известна нашим сильным флотом", - "textMeaningTranslate": "Военно-морской флот - это часть вооруженных сил страны, которая сражается на море", - "wordTranslate": "флот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb3e" - }, - "group": 2, - "page": 24, - "word": "ray", - "image": "files/25_1695.jpg", - "audio": "files/25_1695.mp3", - "audioMeaning": "files/25_1695_meaning.mp3", - "audioExample": "files/25_1695_example.mp3", - "textMeaning": "A ray is a line of light that comes from a bright object.", - "textExample": "The sun’s warm rays covered the beach.", - "transcription": "[rei]", - "__v": 0, - "textExampleTranslate": "Солнечные теплые лучи покрыли пляж", - "textMeaningTranslate": "Луч - это линия света, которая исходит от яркого объекта", - "wordTranslate": "луч" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb3f" - }, - "group": 2, - "page": 24, - "word": "resign", - "image": "files/25_1696.jpg", - "audio": "files/25_1696.mp3", - "audioMeaning": "files/25_1696_meaning.mp3", - "audioExample": "files/25_1696_example.mp3", - "textMeaning": "To resign means to quit a job.", - "textExample": "After I officially resigned from work, I said goodbye to my boss.", - "transcription": "[rizáin]", - "__v": 0, - "textExampleTranslate": "После того, как я официально ушел с работы, я попрощался с моим боссом", - "textMeaningTranslate": "Уйти в отставку - значит бросить работу", - "wordTranslate": "в отставку" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb41" - }, - "group": 2, - "page": 24, - "word": "tremble", - "image": "files/25_1698.jpg", - "audio": "files/25_1698.mp3", - "audioMeaning": "files/25_1698_meaning.mp3", - "audioExample": "files/25_1698_example.mp3", - "textMeaning": "To tremble is to shake as a result of excitement or cold weather.", - "textExample": "Harry was not used to the cold, so he trembled most of the day.", - "transcription": "[trémbəl]", - "__v": 0, - "textExampleTranslate": "Гарри не привык к холоду, поэтому он дрожал большую часть дня", - "textMeaningTranslate": "Трепетать - это дрожать от волнения или холодной погоды", - "wordTranslate": "дрожать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb40" - }, - "group": 2, - "page": 24, - "word": "suicide", - "image": "files/25_1697.jpg", - "audio": "files/25_1697.mp3", - "audioMeaning": "files/25_1697_meaning.mp3", - "audioExample": "files/25_1697_example.mp3", - "textMeaning": "Suicide is the act of killing oneself.", - "textExample": "Some people feel so sad that they think suicide is the only answer.", - "transcription": "[sjúːəsàid]", - "__v": 0, - "textExampleTranslate": "Некоторым людям так грустно, что они думают, что самоубийство - единственный ответ", - "textMeaningTranslate": "Самоубийство - это акт самоубийства", - "wordTranslate": "самоубийство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb46" - }, - "group": 2, - "page": 25, - "word": "blend", - "image": "files/26_1704.jpg", - "audio": "files/26_1704.mp3", - "audioMeaning": "files/26_1704_meaning.mp3", - "audioExample": "files/26_1704_example.mp3", - "textMeaning": "To blend is to mix two or more things together so that they become one thing.", - "textExample": "My wife blended together all of the ingredients to make a delicious stew.", - "transcription": "[blend]", - "__v": 0, - "textExampleTranslate": "Моя жена смешала все ингредиенты, чтобы приготовить вкусное рагу", - "textMeaningTranslate": "Смешать - значит смешать две или более вещи вместе, чтобы они стали одной", - "wordTranslate": "смесь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb43" - }, - "group": 2, - "page": 24, - "word": "via", - "image": "files/25_1700.jpg", - "audio": "files/25_1700.mp3", - "audioMeaning": "files/25_1700_meaning.mp3", - "audioExample": "files/25_1700_example.mp3", - "textMeaning": "Via introduces a route or means of travel.", - "textExample": "We arrived in the city from the airport via the train.", - "transcription": "[váiə]", - "__v": 0, - "textExampleTranslate": "Мы прибыли в город из аэропорта на поезде", - "textMeaningTranslate": "Через вводит маршрут или средство передвижения", - "wordTranslate": "через" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb45" - }, - "group": 2, - "page": 25, - "word": "aside", - "image": "files/26_1702.jpg", - "audio": "files/26_1702.mp3", - "audioMeaning": "files/26_1702_meaning.mp3", - "audioExample": "files/26_1702_example.mp3", - "textMeaning": "An action done aside is done toward the side of something or someplace.", - "textExample": "The man stood aside and opened the door for me.", - "transcription": "[əsáid]", - "__v": 0, - "textExampleTranslate": "Человек стоял в стороне и открыл мне дверь", - "textMeaningTranslate": "Действие, сделанное в стороне, делается в сторону чего-то или где-то", - "wordTranslate": "в стороне" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb44" - }, - "group": 2, - "page": 25, - "word": "alter", - "image": "files/26_1701.jpg", - "audio": "files/26_1701.mp3", - "audioMeaning": "files/26_1701_meaning.mp3", - "audioExample": "files/26_1701_example.mp3", - "textMeaning": "To alter something means to change it.", - "textExample": "I altered the color of my nails to match my hair.", - "transcription": "[ɔ́ːltər]", - "__v": 0, - "textExampleTranslate": "Я изменил цвет моих ногтей, чтобы соответствовать моим волосам", - "textMeaningTranslate": "Изменить что-то означает изменить это", - "wordTranslate": "изменить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb42" - }, - "group": 2, - "page": 24, - "word": "underlying", - "image": "files/25_1699.jpg", - "audio": "files/25_1699.mp3", - "audioMeaning": "files/25_1699_meaning.mp3", - "audioExample": "files/25_1699_example.mp3", - "textMeaning": "An underlying thing is a hidden cause or reason.", - "textExample": "Her underlying fear of flying reduced her traveling options.", - "transcription": "[Λndərlàiiŋ]", - "__v": 0, - "textExampleTranslate": "Ее страх перед полетом уменьшил ее возможности путешествовать", - "textMeaningTranslate": "Основная вещь - это скрытая причина или причина", - "wordTranslate": "лежащие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb48" - }, - "group": 2, - "page": 25, - "word": "collapse", - "image": "files/26_1705.jpg", - "audio": "files/26_1705.mp3", - "audioMeaning": "files/26_1705_meaning.mp3", - "audioExample": "files/26_1705_example.mp3", - "textMeaning": "To collapse is to fall down suddenly.", - "textExample": "The tree collapsed right in front of our house.", - "transcription": "[kəlǽps]", - "__v": 0, - "textExampleTranslate": "Дерево рухнуло прямо перед нашим домом", - "textMeaningTranslate": "Разрушиться - это внезапно упасть", - "wordTranslate": "коллапс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb47" - }, - "group": 2, - "page": 25, - "word": "autumn", - "image": "files/26_1703.jpg", - "audio": "files/26_1703.mp3", - "audioMeaning": "files/26_1703_meaning.mp3", - "audioExample": "files/26_1703_example.mp3", - "textMeaning": "Autumn is the season of the year between summer and winter.", - "textExample": "I love when the leaves fall in autumn because I can play in them.", - "transcription": "[ɔ́ːtəm]", - "__v": 0, - "textExampleTranslate": "Я люблю, когда листья падают осенью, потому что я могу играть в них", - "textMeaningTranslate": "Осень - время года между летом и зимой", - "wordTranslate": "осень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb49" - }, - "group": 2, - "page": 25, - "word": "crush", - "image": "files/26_1706.jpg", - "audio": "files/26_1706.mp3", - "audioMeaning": "files/26_1706_meaning.mp3", - "audioExample": "files/26_1706_example.mp3", - "textMeaning": "To crush something is to press it together so its shape is destroyed.", - "textExample": "Selena’s new car was crushed when the tree fell on top of it.", - "transcription": "[krʌʃ]", - "__v": 0, - "textExampleTranslate": "Новая машина Селены была разбита, когда на нее упало дерево", - "textMeaningTranslate": "Сокрушить что-то - значит сжать это вместе, чтобы его форма была разрушена", - "wordTranslate": "раздавить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb4a" - }, - "group": 2, - "page": 25, - "word": "curve", - "image": "files/26_1707.jpg", - "audio": "files/26_1707.mp3", - "audioMeaning": "files/26_1707_meaning.mp3", - "audioExample": "files/26_1707_example.mp3", - "textMeaning": "To curve is to move in a line that bends and does not go straight.", - "textExample": "The road curves to the left and to the right.", - "transcription": "[kəːrv]", - "__v": 0, - "textExampleTranslate": "Дорога изгибается влево и вправо", - "textMeaningTranslate": "Кривая - это движение по линии, которая изгибается и не идет прямо", - "wordTranslate": "кривой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb4b" - }, - "group": 2, - "page": 25, - "word": "disgusting", - "image": "files/26_1708.jpg", - "audio": "files/26_1708.mp3", - "audioMeaning": "files/26_1708_meaning.mp3", - "audioExample": "files/26_1708_example.mp3", - "textMeaning": "A disgusting thing is very unpleasant.", - "textExample": "After running all day, Greg’s feet had a disgusting odor.", - "transcription": "[disgʌ́stiŋ]", - "__v": 0, - "textExampleTranslate": "После бега весь день у ног Грега был отвратительный запах", - "textMeaningTranslate": "Отвратительная вещь очень неприятная", - "wordTranslate": "отвратительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb4c" - }, - "group": 2, - "page": 25, - "word": "drain", - "image": "files/26_1709.jpg", - "audio": "files/26_1709.mp3", - "audioMeaning": "files/26_1709_meaning.mp3", - "audioExample": "files/26_1709_example.mp3", - "textMeaning": "A drain is a pipe that carries away water from a building, such as in a kitchen", - "textExample": ".The water in the sink goes down the drain as you wash your hands.", - "transcription": "[drein]", - "__v": 0, - "textExampleTranslate": "Вода в раковине уходит в канализацию, когда вы моете руки", - "textMeaningTranslate": "Канализация - это труба, которая уносит воду из здания, такого как на кухне", - "wordTranslate": "стекать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb4d" - }, - "group": 2, - "page": 25, - "word": "embrace", - "image": "files/26_1710.jpg", - "audio": "files/26_1710.mp3", - "audioMeaning": "files/26_1710_meaning.mp3", - "audioExample": "files/26_1710_example.mp3", - "textMeaning": "To embrace is to hug.", - "textExample": "When they saw each other again, the happy couple embraced.", - "transcription": "[imbréis]", - "__v": 0, - "textExampleTranslate": "Когда они снова увидели друг друга, счастливая пара обнялась", - "textMeaningTranslate": "Обнимать - значит обнимать", - "wordTranslate": "принять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb4f" - }, - "group": 2, - "page": 25, - "word": "fireworks", - "image": "files/26_1712.jpg", - "audio": "files/26_1712.mp3", - "audioMeaning": "files/26_1712_meaning.mp3", - "audioExample": "files/26_1712_example.mp3", - "textMeaning": "Fireworks are objects that create colored lights when they are lit.", - "textExample": "The display of fireworks was so beautiful.", - "transcription": "[fɑ́iərwə̀ːrks]", - "__v": 0, - "textExampleTranslate": "Фейерверк был так прекрасен", - "textMeaningTranslate": "Фейерверки - это объекты, которые создают цветные огни, когда они освещены", - "wordTranslate": "фейерверк" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb4e" - }, - "group": 2, - "page": 25, - "word": "envy", - "image": "files/26_1711.jpg", - "audio": "files/26_1711.mp3", - "audioMeaning": "files/26_1711_meaning.mp3", - "audioExample": "files/26_1711_example.mp3", - "textMeaning": "To envy someone is to wish that you had something that other person has.", - "textExample": "Sally envied the happy couple.", - "transcription": "[énvi]", - "__v": 0, - "textExampleTranslate": "Салли позавидовала счастливая пара", - "textMeaningTranslate": "Завидовать кому-то - значит хотеть, чтобы у тебя было то, что есть у другого", - "wordTranslate": "зависть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb50" - }, - "group": 2, - "page": 25, - "word": "flour", - "image": "files/26_1713.jpg", - "audio": "files/26_1713.mp3", - "audioMeaning": "files/26_1713_meaning.mp3", - "audioExample": "files/26_1713_example.mp3", - "textMeaning": "Flour is a powder made from plants that is used to make foods like bread.", - "textExample": "I wanted to bake a pie, but I needed flour.", - "transcription": "[flauər]", - "__v": 0, - "textExampleTranslate": "Я хотел испечь пирог, но мне нужна была мука", - "textMeaningTranslate": "Мука - это порошок из растений, который используется для приготовления таких продуктов, как хлеб", - "wordTranslate": "мука" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb51" - }, - "group": 2, - "page": 25, - "word": "fuse", - "image": "files/26_1714.jpg", - "audio": "files/26_1714.mp3", - "audioMeaning": "files/26_1714_meaning.mp3", - "audioExample": "files/26_1714_example.mp3", - "textMeaning": "A fuse is a string on fireworks that burns to make them explode.", - "textExample": "The boy lit the fuse on the rocket and waited for it to burst in the sky.", - "transcription": "[fjuːz]", - "__v": 0, - "textExampleTranslate": "Мальчик зажег взрыватель на ракете и стал ждать, пока он не взорвется в небе", - "textMeaningTranslate": "Предохранитель - это гирлянда на фейерверке, которая взрывает их", - "wordTranslate": "предохранитель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb53" - }, - "group": 2, - "page": 25, - "word": "jealous", - "image": "files/26_1716.jpg", - "audio": "files/26_1716.mp3", - "audioMeaning": "files/26_1716_meaning.mp3", - "audioExample": "files/26_1716_example.mp3", - "textMeaning": "A jealous person might take something from you.", - "textExample": "Miriam was jealous because Sue was paying too much attention to Jim.", - "transcription": "[dʒéləs]", - "__v": 0, - "textExampleTranslate": "Мириам ревновала, потому что Сью уделяла слишком много внимания Джиму", - "textMeaningTranslate": "Ревнивец может что-то от тебя отнять", - "wordTranslate": "ревновать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb52" - }, - "group": 2, - "page": 25, - "word": "ginger", - "image": "files/26_1715.jpg", - "audio": "files/26_1715.mp3", - "audioMeaning": "files/26_1715_meaning.mp3", - "audioExample": "files/26_1715_example.mp3", - "textMeaning": "Ginger is a root of a plant that is used to make food spicy and sweet.", - "textExample": "Ginger is a common ingredient in many dishes from India.", - "transcription": "[ʤíndʒər]", - "__v": 0, - "textExampleTranslate": "Имбирь является распространенным ингредиентом во многих блюдах из Индии", - "textMeaningTranslate": "Имбирь - это корень растения, которое используется для приготовления пищи, острой и сладкой", - "wordTranslate": "имбирь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb54" - }, - "group": 2, - "page": 25, - "word": "paste", - "image": "files/26_1717.jpg", - "audio": "files/26_1717.mp3", - "audioMeaning": "files/26_1717_meaning.mp3", - "audioExample": "files/26_1717_example.mp3", - "textMeaning": "A paste is a thick and smooth substance.", - "textExample": "My son needed some paste for a school project.", - "transcription": "[peist]", - "__v": 0, - "textExampleTranslate": "Моему сыну нужна паста для школьного проекта", - "textMeaningTranslate": "Паста - это густое и гладкое вещество", - "wordTranslate": "вставить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb55" - }, - "group": 2, - "page": 25, - "word": "receipt", - "image": "files/26_1718.jpg", - "audio": "files/26_1718.mp3", - "audioMeaning": "files/26_1718_meaning.mp3", - "audioExample": "files/26_1718_example.mp3", - "textMeaning": "A receipt is a paper that proves that something was received or bought.", - "textExample": "After looking at my receipt, I realized that I had spent too much money.", - "transcription": "[risíːt]", - "__v": 0, - "textExampleTranslate": "Посмотрев на квитанцию, я понял, что потратил слишком много денег", - "textMeaningTranslate": "Квитанция - это бумага, подтверждающая, что что-то было получено или куплено", - "wordTranslate": "чек" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb56" - }, - "group": 2, - "page": 25, - "word": "wipe", - "image": "files/26_1719.jpg", - "audio": "files/26_1719.mp3", - "audioMeaning": "files/26_1719_meaning.mp3", - "audioExample": "files/26_1719_example.mp3", - "textMeaning": "To wipe something is to slide a piece of cloth over it to clean it.", - "textExample": "She wiped the dust from the windows.", - "transcription": "[waip]", - "__v": 0, - "textExampleTranslate": "Она вытерла пыль с окон", - "textMeaningTranslate": "Чтобы что-то вытереть, нужно надеть кусок ткани, чтобы очистить его", - "wordTranslate": "стереть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb58" - }, - "group": 2, - "page": 26, - "word": "acknowledge", - "image": "files/27_1721.jpg", - "audio": "files/27_1721.mp3", - "audioMeaning": "files/27_1721_meaning.mp3", - "audioExample": "files/27_1721_example.mp3", - "textMeaning": "To acknowledge something is to accept that it is true or that it exists.", - "textExample": "The teacher acknowledged that the young student was hungry.", - "transcription": "[əknɑ́lidʒ]", - "__v": 0, - "textExampleTranslate": "Учитель признал, что молодой студент был голоден", - "textMeaningTranslate": "Признать что-либо - значит признать, что это правда или что оно существует", - "wordTranslate": "признают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb57" - }, - "group": 2, - "page": 25, - "word": "wire", - "image": "files/26_1720.jpg", - "audio": "files/26_1720.mp3", - "audioMeaning": "files/26_1720_meaning.mp3", - "audioExample": "files/26_1720_example.mp3", - "textMeaning": "A wire is a thin string made out of metal.", - "textExample": "The wires were connected to towers that brought electricity to the city.", - "transcription": "[waiəːr]", - "__v": 0, - "textExampleTranslate": "Провода были подключены к башням, которые приносили электричество в город", - "textMeaningTranslate": "Проволока - это тонкая струна из металла", - "wordTranslate": "провод" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb59" - }, - "group": 2, - "page": 26, - "word": "ambassador", - "image": "files/27_1722.jpg", - "audio": "files/27_1722.mp3", - "audioMeaning": "files/27_1722_meaning.mp3", - "audioExample": "files/27_1722_example.mp3", - "textMeaning": "An ambassador is a government worker who works in another country.", - "textExample": "The ambassador from Korea was in charge of the conference.", - "transcription": "[æmbǽsədər]", - "__v": 0, - "textExampleTranslate": "Посол из Кореи руководил конференцией", - "textMeaningTranslate": "Посол - государственный служащий, который работает в другой стране", - "wordTranslate": "посол" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb5a" - }, - "group": 2, - "page": 26, - "word": "blonde", - "image": "files/27_1723.jpg", - "audio": "files/27_1723.mp3", - "audioMeaning": "files/27_1723_meaning.mp3", - "audioExample": "files/27_1723_example.mp3", - "textMeaning": "A blonde is a person with light-colored hair.", - "textExample": "My cousin is a blonde with blue eyes.", - "transcription": "[blɑnd]", - "__v": 0, - "textExampleTranslate": "Мой двоюродный брат - блондинка с голубыми глазами", - "textMeaningTranslate": "Блондинка - это человек со светлыми волосами", - "wordTranslate": "блондинка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb5b" - }, - "group": 2, - "page": 26, - "word": "conquer", - "image": "files/27_1724.jpg", - "audio": "files/27_1724.mp3", - "audioMeaning": "files/27_1724_meaning.mp3", - "audioExample": "files/27_1724_example.mp3", - "textMeaning": "To conquer a place means to attack and take control of it.", - "textExample": "The soldiers were trying to conquer the world.", - "transcription": "[kɑ́ŋkər]", - "__v": 0, - "textExampleTranslate": "Солдаты пытались покорить мир", - "textMeaningTranslate": "Завоевать место - значит атаковать и взять его под контроль", - "wordTranslate": "покорять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb5c" - }, - "group": 2, - "page": 26, - "word": "drag", - "image": "files/27_1725.jpg", - "audio": "files/27_1725.mp3", - "audioMeaning": "files/27_1725_meaning.mp3", - "audioExample": "files/27_1725_example.mp3", - "textMeaning": "To drag something means to pull it across the ground.", - "textExample": "The dog was dragging his owner down the street.", - "transcription": "[dræg]", - "__v": 0, - "textExampleTranslate": "Пес тащил своего хозяина по улице", - "textMeaningTranslate": "Перетаскивать что-то значит тянуть это по земле", - "wordTranslate": "тянуть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb5e" - }, - "group": 2, - "page": 26, - "word": "heritage", - "image": "files/27_1727.jpg", - "audio": "files/27_1727.mp3", - "audioMeaning": "files/27_1727_meaning.mp3", - "audioExample": "files/27_1727_example.mp3", - "textMeaning": "Heritage is the collection of features of a society, such as language and religion.", - "textExample": "Teepees are part of the heritage of the Native Americans of the plains.", - "transcription": "[héritidʒ]", - "__v": 0, - "textExampleTranslate": "Типи являются частью наследия коренных американцев равнин", - "textMeaningTranslate": "Наследие - это совокупность особенностей общества, таких как язык и религия", - "wordTranslate": "наследие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb5d" - }, - "group": 2, - "page": 26, - "word": "exaggerate", - "image": "files/27_1726.jpg", - "audio": "files/27_1726.mp3", - "audioMeaning": "files/27_1726_meaning.mp3", - "audioExample": "files/27_1726_example.mp3", - "textMeaning": "To exaggerate is to say that something is bigger or better than it really is.", - "textExample": "Jimmy wasn’t exaggerating about the seriousness of his injury.", - "transcription": "[igzǽdʒərèit]", - "__v": 0, - "textExampleTranslate": "Джимми не преувеличивал серьезность своей травмы", - "textMeaningTranslate": "Преувеличивать - значит говорить, что что-то больше или лучше, чем есть на самом деле", - "wordTranslate": "преувеличивать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb5f" - }, - "group": 2, - "page": 26, - "word": "insult", - "image": "files/27_1728.jpg", - "audio": "files/27_1728.mp3", - "audioMeaning": "files/27_1728_meaning.mp3", - "audioExample": "files/27_1728_example.mp3", - "textMeaning": "To insult someone is to say things that will hurt the person’s feelings.", - "textExample": "The girls insulted each other all afternoon.", - "transcription": "[ínsʌlt]", - "__v": 0, - "textExampleTranslate": "Девушки оскорбляли друг друга весь день", - "textMeaningTranslate": "Оскорбить кого-либо - значит сказать то, что может повредить его чувствам", - "wordTranslate": "оскорбление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb60" - }, - "group": 2, - "page": 26, - "word": "meanwhile", - "image": "files/27_1729.jpg", - "audio": "files/27_1729.mp3", - "audioMeaning": "files/27_1729_meaning.mp3", - "audioExample": "files/27_1729_example.mp3", - "textMeaning": "An action that happens meanwhile happens at the same time as another action.", - "textExample": "He wants to be a doctor in the future, but meanwhile, he works a regular job.", - "transcription": "[míːnhwàil]", - "__v": 0, - "textExampleTranslate": "Он хочет стать врачом в будущем, но между тем он работает на постоянной основе", - "textMeaningTranslate": "Действие, которое происходит между тем, происходит одновременно с другим действием", - "wordTranslate": "то время" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb61" - }, - "group": 2, - "page": 26, - "word": "necklace", - "image": "files/27_1730.jpg", - "audio": "files/27_1730.mp3", - "audioMeaning": "files/27_1730_meaning.mp3", - "audioExample": "files/27_1730_example.mp3", - "textMeaning": "A necklace is a piece of jewelry that people wear around their necks.", - "textExample": "Joyce received a lovely pearl necklace for her wedding anniversary.", - "transcription": "[néklis]", - "__v": 0, - "textExampleTranslate": "Джойс получила прекрасное жемчужное ожерелье на годовщину свадьбы", - "textMeaningTranslate": "Ожерелье - это украшение, которое люди носят на шее", - "wordTranslate": "ожерелье" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb63" - }, - "group": 2, - "page": 26, - "word": "precious", - "image": "files/27_1732.jpg", - "audio": "files/27_1732.mp3", - "audioMeaning": "files/27_1732_meaning.mp3", - "audioExample": "files/27_1732_example.mp3", - "textMeaning": "A precious thing is valuable and important.", - "textExample": "In a desert, water can be more precious than money.", - "transcription": "[préʃəs]", - "__v": 0, - "textExampleTranslate": "В пустыне вода может быть дороже денег", - "textMeaningTranslate": "Драгоценная вещь ценна и важна", - "wordTranslate": "драгоценный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb62" - }, - "group": 2, - "page": 26, - "word": "noble", - "image": "files/27_1731.jpg", - "audio": "files/27_1731.mp3", - "audioMeaning": "files/27_1731_meaning.mp3", - "audioExample": "files/27_1731_example.mp3", - "textMeaning": "A noble is a rich and powerful person.", - "textExample": "The Queen invited a noble from a nearby country to dinner.", - "transcription": "[nóubəl]", - "__v": 0, - "textExampleTranslate": "Королева пригласила дворянина из соседней страны на ужин", - "textMeaningTranslate": "Благородный - богатый и могущественный человек", - "wordTranslate": "благородный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb64" - }, - "group": 2, - "page": 26, - "word": "prejudice", - "image": "files/27_1733.jpg", - "audio": "files/27_1733.mp3", - "audioMeaning": "files/27_1733_meaning.mp3", - "audioExample": "files/27_1733_example.mp3", - "textMeaning": "A prejudice is an unfair opinion about people based on the group they belong to.", - "textExample": "The company’s rules against gender prejudice must be enforced.", - "transcription": "[prédʒudis]", - "__v": 0, - "textExampleTranslate": "Должны соблюдаться правила компании против гендерных предрассудков", - "textMeaningTranslate": "Предубеждение - это несправедливое мнение о людях, основанное на группе, к которой они принадлежат", - "wordTranslate": "предубеждение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb65" - }, - "group": 2, - "page": 26, - "word": "rumor", - "image": "files/27_1734.jpg", - "audio": "files/27_1734.mp3", - "audioMeaning": "files/27_1734_meaning.mp3", - "audioExample": "files/27_1734_example.mp3", - "textMeaning": "A rumor is a story that may not be true.", - "textExample": "Carla was spreading rumors around the office.", - "transcription": "[rúːməːr]", - "__v": 0, - "textExampleTranslate": "Карла распространяла слухи по офису", - "textMeaningTranslate": "Слух - это история, которая не может быть правдой", - "wordTranslate": "слух" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb66" - }, - "group": 2, - "page": 26, - "word": "sin", - "image": "files/27_1735.jpg", - "audio": "files/27_1735.mp3", - "audioMeaning": "files/27_1735_meaning.mp3", - "audioExample": "files/27_1735_example.mp3", - "textMeaning": "A sin is something that is wrong for religious reasons.", - "textExample": "Taking something that doesn’t belong to you is a sin.", - "transcription": "[sin]", - "__v": 0, - "textExampleTranslate": "Принимать то, что тебе не принадлежит, - грех", - "textMeaningTranslate": "Грех - это то, что неправильно по религиозным соображениям", - "wordTranslate": "грех" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb67" - }, - "group": 2, - "page": 26, - "word": "spectacle", - "image": "files/27_1736.jpg", - "audio": "files/27_1736.mp3", - "audioMeaning": "files/27_1736_meaning.mp3", - "audioExample": "files/27_1736_example.mp3", - "textMeaning": "A spectacle is an amazing sight.", - "textExample": "Niagara Falls is quite a spectacle.", - "transcription": "[spéktəkl]", - "__v": 0, - "textExampleTranslate": "Ниагарский водопад - настоящее зрелище", - "textMeaningTranslate": "Зрелище - это удивительное зрелище", - "wordTranslate": "зрелище" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb68" - }, - "group": 2, - "page": 26, - "word": "stack", - "image": "files/27_1737.jpg", - "audio": "files/27_1737.mp3", - "audioMeaning": "files/27_1737_meaning.mp3", - "audioExample": "files/27_1737_example.mp3", - "textMeaning": "A stack is a pile of different things.", - "textExample": "There was a stack of paperwork on his desk to complete.", - "transcription": "[stæk]", - "__v": 0, - "textExampleTranslate": "На его столе лежала пачка документов", - "textMeaningTranslate": "Стек - это куча разных вещей", - "wordTranslate": "стек" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb69" - }, - "group": 2, - "page": 26, - "word": "suspicious", - "image": "files/27_1738.jpg", - "audio": "files/27_1738.mp3", - "audioMeaning": "files/27_1738_meaning.mp3", - "audioExample": "files/27_1738_example.mp3", - "textMeaning": "A suspicious person does not trust others, or is not trusted by others.", - "textExample": "Dad was suspicious of the caller on the line.", - "transcription": "[səspíʃəs]", - "__v": 0, - "textExampleTranslate": "Папа с подозрением относился к абоненту на линии", - "textMeaningTranslate": "Подозрительный человек не доверяет другим или не доверяет другим", - "wordTranslate": "подозрительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb6a" - }, - "group": 2, - "page": 26, - "word": "tin", - "image": "files/27_1739.jpg", - "audio": "files/27_1739.mp3", - "audioMeaning": "files/27_1739_meaning.mp3", - "audioExample": "files/27_1739_example.mp3", - "textMeaning": "Tin is an inexpensive metal.", - "textExample": "Soup is a food that is often sold in tin cans.", - "transcription": "[tin]", - "__v": 0, - "textExampleTranslate": "Суп - это еда, которую часто продают в жестяных банках", - "textMeaningTranslate": "Жесть - это недорогой металл", - "wordTranslate": "банка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb6b" - }, - "group": 2, - "page": 26, - "word": "vase", - "image": "files/27_1740.jpg", - "audio": "files/27_1740.mp3", - "audioMeaning": "files/27_1740_meaning.mp3", - "audioExample": "files/27_1740_example.mp3", - "textMeaning": "A vase is an attractive container in which people keep flowers.", - "textExample": "The vase was filled with such lovely flowers.", - "transcription": "[veis]", - "__v": 0, - "textExampleTranslate": "Ваза была наполнена такими прекрасными цветами", - "textMeaningTranslate": "Ваза - это привлекательный контейнер, в котором люди держат цветы", - "wordTranslate": "ваза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb6c" - }, - "group": 2, - "page": 27, - "word": "ache", - "image": "files/28_1741.jpg", - "audio": "files/28_1741.mp3", - "audioMeaning": "files/28_1741_meaning.mp3", - "audioExample": "files/28_1741_example.mp3", - "textMeaning": "To ache is to hurt, or cause pain.", - "textExample": "Mindy’s head ached because she bumped it against the wall.", - "transcription": "[eik]", - "__v": 0, - "textExampleTranslate": "Голова Минди болела, потому что она ударилась об стену", - "textMeaningTranslate": "Болеть - значит ранить или причинять боль", - "wordTranslate": "боль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb6d" - }, - "group": 2, - "page": 27, - "word": "arctic", - "image": "files/28_1742.jpg", - "audio": "files/28_1742.mp3", - "audioMeaning": "files/28_1742_meaning.mp3", - "audioExample": "files/28_1742_example.mp3", - "textMeaning": "Arctic shows that something is of or from the cold, far-north part of the Earth.", - "textExample": "It is cold when the arctic winds blow.", - "transcription": "[άːrktik]", - "__v": 0, - "textExampleTranslate": "Холодно, когда дуют арктические ветры", - "textMeaningTranslate": "Арктика показывает, что что-то происходит от холодной северной части Земли или от нее", - "wordTranslate": "арктический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb6e" - }, - "group": 2, - "page": 27, - "word": "canal", - "image": "files/28_1743.jpg", - "audio": "files/28_1743.mp3", - "audioMeaning": "files/28_1743_meaning.mp3", - "audioExample": "files/28_1743_example.mp3", - "textMeaning": "A canal is a path for water to travel through.", - "textExample": "The city of Venice, Italy, has many canals.", - "transcription": "[kənǽl]", - "__v": 0, - "textExampleTranslate": "Город Венеция, Италия, имеет много каналов", - "textMeaningTranslate": "Канал - это путь, по которому проходит вода", - "wordTranslate": "канал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb6f" - }, - "group": 2, - "page": 27, - "word": "chemist", - "image": "files/28_1744.jpg", - "audio": "files/28_1744.mp3", - "audioMeaning": "files/28_1744_meaning.mp3", - "audioExample": "files/28_1744_example.mp3", - "textMeaning": "A chemist is a scientist who works with chemicals.", - "textExample": "My mother is a successful chemist who helps invent new products.", - "transcription": "[kémist]", - "__v": 0, - "textExampleTranslate": "Моя мама - успешный химик, который помогает изобретать новые продукты", - "textMeaningTranslate": "Химик - это ученый, который работает с химикатами", - "wordTranslate": "химик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb70" - }, - "group": 2, - "page": 27, - "word": "chill", - "image": "files/28_1745.jpg", - "audio": "files/28_1745.mp3", - "audioMeaning": "files/28_1745_meaning.mp3", - "audioExample": "files/28_1745_example.mp3", - "textMeaning": "A chill is a feeling of cold.", - "textExample": "The chill from the cold wind made Bill shiver.", - "transcription": "[tʃil]", - "__v": 0, - "textExampleTranslate": "Холод от холодного ветра заставил Билла дрожать", - "textMeaningTranslate": "Холод - это чувство холода", - "wordTranslate": "простуда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb71" - }, - "group": 2, - "page": 27, - "word": "congress", - "image": "files/28_1746.jpg", - "audio": "files/28_1746.mp3", - "audioMeaning": "files/28_1746_meaning.mp3", - "audioExample": "files/28_1746_example.mp3", - "textMeaning": "Congress is a group of leaders in a government.", - "textExample": "Congress makes laws for people to follow.", - "transcription": "[kɔ́ŋgris]", - "__v": 0, - "textExampleTranslate": "Конгресс издает законы, которым люди должны следовать", - "textMeaningTranslate": "Конгресс - это группа лидеров в правительстве", - "wordTranslate": "конгресс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb72" - }, - "group": 2, - "page": 27, - "word": "dairy", - "image": "files/28_1747.jpg", - "audio": "files/28_1747.mp3", - "audioMeaning": "files/28_1747_meaning.mp3", - "audioExample": "files/28_1747_example.mp3", - "textMeaning": "Dairy shows that something is made from milk.", - "textExample": "Things like milk and cheese are dairy foods.", - "transcription": "[dɛə́ri]", - "__v": 0, - "textExampleTranslate": "Такие вещи, как молоко и сыр, являются молочными продуктами", - "textMeaningTranslate": "Молочные продукты показывают, что что-то сделано из молока", - "wordTranslate": "молочный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb73" - }, - "group": 2, - "page": 27, - "word": "descend", - "image": "files/28_1748.jpg", - "audio": "files/28_1748.mp3", - "audioMeaning": "files/28_1748_meaning.mp3", - "audioExample": "files/28_1748_example.mp3", - "textMeaning": "To descend is to go downward.", - "textExample": "I descended the stairs to get out of the building.", - "transcription": "[disénd]", - "__v": 0, - "textExampleTranslate": "Я спустился по лестнице, чтобы выйти из здания", - "textMeaningTranslate": "Спускаться - значит идти вниз", - "wordTranslate": "спуск" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb74" - }, - "group": 2, - "page": 27, - "word": "grocer", - "image": "files/28_1749.jpg", - "audio": "files/28_1749.mp3", - "audioMeaning": "files/28_1749_meaning.mp3", - "audioExample": "files/28_1749_example.mp3", - "textMeaning": "A grocer is a person who sells food.", - "textExample": "Our grocer, Mr. Smith, is a very kind man.", - "transcription": "[gróusər]", - "__v": 0, - "textExampleTranslate": "Наш бакалейщик, мистер Смит, очень добрый человек", - "textMeaningTranslate": "Бакалейщик - это человек, который продает еду", - "wordTranslate": "бакалейщик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb75" - }, - "group": 2, - "page": 27, - "word": "hesitate", - "image": "files/28_1750.jpg", - "audio": "files/28_1750.mp3", - "audioMeaning": "files/28_1750_meaning.mp3", - "audioExample": "files/28_1750_example.mp3", - "textMeaning": "To hesitate is to wait for a short time before doing something.", - "textExample": "He hesitated for a moment before he decided which one to choose.", - "transcription": "[hézətèit]", - "__v": 0, - "textExampleTranslate": "Он колебался на мгновение, прежде чем решил, какой из них выбрать", - "textMeaningTranslate": "Сомневаться - это немного подождать, прежде чем что-то делать", - "wordTranslate": "стесняться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb76" - }, - "group": 2, - "page": 27, - "word": "institution", - "image": "files/28_1751.jpg", - "audio": "files/28_1751.mp3", - "audioMeaning": "files/28_1751_meaning.mp3", - "audioExample": "files/28_1751_example.mp3", - "textMeaning": "An institution is an organization that works to help a city or group of people.", - "textExample": "Banks are vital institutions that businesses and people use every day.", - "transcription": "[ìnstətjúːʃən]", - "__v": 0, - "textExampleTranslate": "Банки являются жизненно важными учреждениями, которые бизнес и люди используют каждый день", - "textMeaningTranslate": "Учреждение - это организация, которая работает, чтобы помочь городу или группе людей", - "wordTranslate": "учреждение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb77" - }, - "group": 2, - "page": 27, - "word": "jog", - "image": "files/28_1752.jpg", - "audio": "files/28_1752.mp3", - "audioMeaning": "files/28_1752_meaning.mp3", - "audioExample": "files/28_1752_example.mp3", - "textMeaning": "To jog is to run slowly.", - "textExample": "He jogs every day so he can be healthier.", - "transcription": "[dʒɔg]", - "__v": 0, - "textExampleTranslate": "Он бегает трусцой каждый день, чтобы стать здоровее", - "textMeaningTranslate": "Бегать значит бегать медленно", - "wordTranslate": "пробежка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb78" - }, - "group": 2, - "page": 27, - "word": "merchant", - "image": "files/28_1753.jpg", - "audio": "files/28_1753.mp3", - "audioMeaning": "files/28_1753_meaning.mp3", - "audioExample": "files/28_1753_example.mp3", - "textMeaning": "A merchant is a person who sells things.", - "textExample": "The merchant was selling used cars.", - "transcription": "[mə́ːrʧənt]", - "__v": 0, - "textExampleTranslate": "Купец продавал подержанные автомобили", - "textMeaningTranslate": "Торговец - это человек, который продает вещи", - "wordTranslate": "коммерсант" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb79" - }, - "group": 2, - "page": 27, - "word": "poke", - "image": "files/28_1754.jpg", - "audio": "files/28_1754.mp3", - "audioMeaning": "files/28_1754_meaning.mp3", - "audioExample": "files/28_1754_example.mp3", - "textMeaning": "To poke something is to push something quickly with your finger or a pointed object.", - "textExample": "I poked my finger on a thumb tack.", - "transcription": "[pouk]", - "__v": 0, - "textExampleTranslate": "Я ткнул пальцем в гвоздь большого пальца", - "textMeaningTranslate": "Ткнуть что-то - значит быстро что-то толкнуть пальцем или заостренным предметом", - "wordTranslate": "тыкать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb7a" - }, - "group": 2, - "page": 27, - "word": "postpone", - "image": "files/28_1755.jpg", - "audio": "files/28_1755.mp3", - "audioMeaning": "files/28_1755_meaning.mp3", - "audioExample": "files/28_1755_example.mp3", - "textMeaning": "To postpone something is to make it happen later than planned.", - "textExample": "They postponed the meeting until Elena arrived.", - "transcription": "[poustpóun]", - "__v": 0, - "textExampleTranslate": "Они отложили встречу до прибытия Елены", - "textMeaningTranslate": "Отложить что-то - значит сделать это позже, чем планировалось", - "wordTranslate": "отложить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb7b" - }, - "group": 2, - "page": 27, - "word": "splash", - "image": "files/28_1756.jpg", - "audio": "files/28_1756.mp3", - "audioMeaning": "files/28_1756_meaning.mp3", - "audioExample": "files/28_1756_example.mp3", - "textMeaning": "To splash is to crash into something so that liquid spreads out.", - "textExample": "Some green paint splashed upon the floor.", - "transcription": "[splæʃ]", - "__v": 0, - "textExampleTranslate": "На пол брызнула зеленая краска", - "textMeaningTranslate": "Брызгать - значит врезаться во что-то, чтобы жидкость растекалась", - "wordTranslate": "всплеск" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb7c" - }, - "group": 2, - "page": 27, - "word": "stubborn", - "image": "files/28_1757.jpg", - "audio": "files/28_1757.mp3", - "audioMeaning": "files/28_1757_meaning.mp3", - "audioExample": "files/28_1757_example.mp3", - "textMeaning": "Stubborn people don’t change their minds easily.", - "textExample": "Both of my parents are stubborn. They never give in to each other.", - "transcription": "[stΛbərn]", - "__v": 0, - "textExampleTranslate": "Оба моих родителя упрямы. Они никогда не сдаются друг другу", - "textMeaningTranslate": "Упрямые люди не могут легко передумать", - "wordTranslate": "упрямый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb7d" - }, - "group": 2, - "page": 27, - "word": "tide", - "image": "files/28_1759.jpg", - "audio": "files/28_1759.mp3", - "audioMeaning": "files/28_1759_meaning.mp3", - "audioExample": "files/28_1759_example.mp3", - "textMeaning": "The tide is the level of the water in the sea.", - "textExample": "The tide continued to crawl upon the beach little by little.", - "transcription": "[taid]", - "__v": 0, - "textExampleTranslate": "Поток продолжал ползти по пляжу понемногу", - "textMeaningTranslate": "Прилив - это уровень воды в море", - "wordTranslate": "прилив" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb7e" - }, - "group": 2, - "page": 27, - "word": "suburb", - "image": "files/28_1758.jpg", - "audio": "files/28_1758.mp3", - "audioMeaning": "files/28_1758_meaning.mp3", - "audioExample": "files/28_1758_example.mp3", - "textMeaning": "A suburb is a small part of a large city.", - "textExample": "I grew up in the suburbs, only a few minutes outside of the city.", - "transcription": "[sΛbəːrb]", - "__v": 0, - "textExampleTranslate": "Я вырос в пригороде, всего в нескольких минутах езды от города", - "textMeaningTranslate": "Пригород - маленькая часть большого города", - "wordTranslate": "пригород" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb7f" - }, - "group": 2, - "page": 27, - "word": "tragedy", - "image": "files/28_1760.jpg", - "audio": "files/28_1760.mp3", - "audioMeaning": "files/28_1760_meaning.mp3", - "audioExample": "files/28_1760_example.mp3", - "textMeaning": "A tragedy is a very sad event.", - "textExample": "It was a tragedy when his house was struck by lightning and burned.", - "transcription": "[trǽdʒədi]", - "__v": 0, - "textExampleTranslate": "Это была трагедия, когда его дом был поражен молнией и сгорел", - "textMeaningTranslate": "Трагедия - очень печальное событие", - "wordTranslate": "трагедия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb80" - }, - "group": 2, - "page": 28, - "word": "bomb", - "image": "files/29_1761.jpg", - "audio": "files/29_1761.mp3", - "audioMeaning": "files/29_1761_meaning.mp3", - "audioExample": "files/29_1761_example.mp3", - "textMeaning": "A bomb is an object that explodes and destroys large areas.", - "textExample": "The bomb will destroy anything that is nearby.", - "transcription": "[bɑm]", - "__v": 0, - "textExampleTranslate": "Бомба уничтожит все, что находится рядом", - "textMeaningTranslate": "Бомба - это объект, который взрывается и разрушает большие территории", - "wordTranslate": "бомбить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb81" - }, - "group": 2, - "page": 28, - "word": "circumstance", - "image": "files/29_1763.jpg", - "audio": "files/29_1763.mp3", - "audioMeaning": "files/29_1763_meaning.mp3", - "audioExample": "files/29_1763_example.mp3", - "textMeaning": "A circumstance is an event that makes a situation what it is.", - "textExample": "There were many circumstances behind their success, like hard work.", - "transcription": "[sə́ːrkəmstӕns]", - "__v": 0, - "textExampleTranslate": "За их успехом стояли многие обстоятельства, такие как тяжелая работа", - "textMeaningTranslate": "Обстоятельство - это событие, которое делает ситуацию такой, какая она есть", - "wordTranslate": "обстоятельство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb82" - }, - "group": 2, - "page": 28, - "word": "coffin", - "image": "files/29_1764.jpg", - "audio": "files/29_1764.mp3", - "audioMeaning": "files/29_1764_meaning.mp3", - "audioExample": "files/29_1764_example.mp3", - "textMeaning": "A coffin is a box used to bury dead people.", - "textExample": "When people pass away, they are usually buried inside of a coffin.", - "transcription": "[kɔ́ːfin]", - "__v": 0, - "textExampleTranslate": "Когда люди умирают, их обычно хоронят в гробу", - "textMeaningTranslate": "Гроб - это ящик, в котором хоронят мертвых людей", - "wordTranslate": "гроб" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb83" - }, - "group": 2, - "page": 28, - "word": "certificate", - "image": "files/29_1762.jpg", - "audio": "files/29_1762.mp3", - "audioMeaning": "files/29_1762_meaning.mp3", - "audioExample": "files/29_1762_example.mp3", - "textMeaning": "A certificate is a document that says that something is true or happened.", - "textExample": "I was given a certificate for completing the computer course.", - "transcription": "[sərtɪfəkət]", - "__v": 0, - "textExampleTranslate": "Мне дали сертификат на прохождение компьютерного курса", - "textMeaningTranslate": "Сертификат - это документ, который говорит, что что-то верно или произошло", - "wordTranslate": "сертификат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb84" - }, - "group": 2, - "page": 28, - "word": "cope", - "image": "files/29_1765.jpg", - "audio": "files/29_1765.mp3", - "audioMeaning": "files/29_1765_meaning.mp3", - "audioExample": "files/29_1765_example.mp3", - "textMeaning": "To cope with a difficult or stressful situation means to deal with it.", - "textExample": "He copes with work stress by exercising three or four times a week.", - "transcription": "[koup]", - "__v": 0, - "textExampleTranslate": "Он справляется со стрессом на работе, занимаясь три или четыре раза в неделю", - "textMeaningTranslate": "Справиться с трудной или стрессовой ситуацией - значит справиться с ней", - "wordTranslate": "справляться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb85" - }, - "group": 2, - "page": 28, - "word": "criticism", - "image": "files/29_1766.jpg", - "audio": "files/29_1766.mp3", - "audioMeaning": "files/29_1766_meaning.mp3", - "audioExample": "files/29_1766_example.mp3", - "textMeaning": "Criticism is the act of saying that something is not correct or good.", - "textExample": "She had a lot of criticism about their new plan.", - "transcription": "[krítisìzəm]", - "__v": 0, - "textExampleTranslate": "У нее было много критики по поводу их нового плана", - "textMeaningTranslate": "Критика - это акт, говорящий, что что-то не является правильным или хорошим", - "wordTranslate": "критика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb86" - }, - "group": 2, - "page": 28, - "word": "devastate", - "image": "files/29_1767.jpg", - "audio": "files/29_1767.mp3", - "audioMeaning": "files/29_1767_meaning.mp3", - "audioExample": "files/29_1767_example.mp3", - "textMeaning": "To devastate something is to cause great damage or pain to that thing.", - "textExample": "The entire wall was devastated.", - "transcription": "[dévəstèit]", - "__v": 0, - "textExampleTranslate": "Вся стена была опустошена", - "textMeaningTranslate": "Разрушить что-то - значит причинить большой вред или боль этой вещи", - "wordTranslate": "сокрушение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb87" - }, - "group": 2, - "page": 28, - "word": "frown", - "image": "files/29_1768.jpg", - "audio": "files/29_1768.mp3", - "audioMeaning": "files/29_1768_meaning.mp3", - "audioExample": "files/29_1768_example.mp3", - "textMeaning": "To frown is to make an unhappy look with one’s face.", - "textExample": "Melissa frowned when she found out that the party had been cancelled.", - "transcription": "[fraun]", - "__v": 0, - "textExampleTranslate": "Мелисса нахмурилась, когда узнала, что вечеринка отменена", - "textMeaningTranslate": "Нахмуриться - значит выглядеть несчастным с лицом", - "wordTranslate": "хмуриться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb88" - }, - "group": 2, - "page": 28, - "word": "gaze", - "image": "files/29_1769.jpg", - "audio": "files/29_1769.mp3", - "audioMeaning": "files/29_1769_meaning.mp3", - "audioExample": "files/29_1769_example.mp3", - "textMeaning": "To gaze at something means to look at it for a long time.", - "textExample": "We used a telescope to gaze at the stars for over an hour.", - "transcription": "[geiz]", - "__v": 0, - "textExampleTranslate": "Мы использовали телескоп, чтобы смотреть на звезды более часа", - "textMeaningTranslate": "Смотреть на что-то - значит смотреть на это долго", - "wordTranslate": "посмотреть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb89" - }, - "group": 2, - "page": 28, - "word": "glance", - "image": "files/29_1770.jpg", - "audio": "files/29_1770.mp3", - "audioMeaning": "files/29_1770_meaning.mp3", - "audioExample": "files/29_1770_example.mp3", - "textMeaning": "To glance at something means to look at it quickly.", - "textExample": "She glanced behind her to see if he was looking at her.", - "transcription": "[glæns]", - "__v": 0, - "textExampleTranslate": "Она оглянулась, чтобы увидеть, смотрит ли он на нее", - "textMeaningTranslate": "Взглянуть на что-то - значит посмотреть на это быстро", - "wordTranslate": "взгляд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb8a" - }, - "group": 2, - "page": 28, - "word": "grief", - "image": "files/29_1771.jpg", - "audio": "files/29_1771.mp3", - "audioMeaning": "files/29_1771_meaning.mp3", - "audioExample": "files/29_1771_example.mp3", - "textMeaning": "Grief is the feeling of deep sadness, usually when a person dies.", - "textExample": "The grief caused by losing her parents was very difficult for her.", - "transcription": "[griːf]", - "__v": 0, - "textExampleTranslate": "Горе, вызванное потерей родителей, было для нее очень трудным", - "textMeaningTranslate": "Горе - это чувство глубокой грусти, обычно когда человек умирает", - "wordTranslate": "горе" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb8b" - }, - "group": 2, - "page": 28, - "word": "groom", - "image": "files/29_1772.jpg", - "audio": "files/29_1772.mp3", - "audioMeaning": "files/29_1772_meaning.mp3", - "audioExample": "files/29_1772_example.mp3", - "textMeaning": "A groom is a man who is going to be married.", - "textExample": "The groom looked happy as he walked with his new wife.", - "transcription": "[gruːm]", - "__v": 0, - "textExampleTranslate": "Жених выглядел счастливым, когда шел со своей новой женой", - "textMeaningTranslate": "Жених - это мужчина, который собирается жениться", - "wordTranslate": "жених" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb8c" - }, - "group": 2, - "page": 28, - "word": "license", - "image": "files/29_1773.jpg", - "audio": "files/29_1773.mp3", - "audioMeaning": "files/29_1773_meaning.mp3", - "audioExample": "files/29_1773_example.mp3", - "textMeaning": "A license is an official document that gives one permission to do something.", - "textExample": "In the United States, you need a driver’s license to drive legally.", - "transcription": "[láisəns]", - "__v": 0, - "textExampleTranslate": "В Соединенных Штатах вам нужны водительские права для легального вождения", - "textMeaningTranslate": "Лицензия - это официальный документ, который дает разрешение на что-либо", - "wordTranslate": "лицензия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb8d" - }, - "group": 2, - "page": 28, - "word": "microscope", - "image": "files/29_1774.jpg", - "audio": "files/29_1774.mp3", - "audioMeaning": "files/29_1774_meaning.mp3", - "audioExample": "files/29_1774_example.mp3", - "textMeaning": "A microscope is a device that makes small objects look bigger.", - "textExample": "Germs cannot be seen without a microscope.", - "transcription": "[máikrəskòup]", - "__v": 0, - "textExampleTranslate": "Микробов нельзя увидеть без микроскопа", - "textMeaningTranslate": "Микроскоп - это устройство, которое делает маленькие объекты больше", - "wordTranslate": "микроскоп" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb8e" - }, - "group": 2, - "page": 28, - "word": "nuclear", - "image": "files/29_1775.jpg", - "audio": "files/29_1775.mp3", - "audioMeaning": "files/29_1775_meaning.mp3", - "audioExample": "files/29_1775_example.mp3", - "textMeaning": "A nuclear thing relates to the division or joining of atoms.", - "textExample": "Nuclear power plants provide inexpensive energy to cities.", - "transcription": "[njúːkliər]", - "__v": 0, - "textExampleTranslate": "Атомные электростанции обеспечивают города недорогой энергией", - "textMeaningTranslate": "Ядерная вещь относится к разделению или объединению атомов", - "wordTranslate": "ядерный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb8f" - }, - "group": 2, - "page": 28, - "word": "portray", - "image": "files/29_1776.jpg", - "audio": "files/29_1776.mp3", - "audioMeaning": "files/29_1776_meaning.mp3", - "audioExample": "files/29_1776_example.mp3", - "textMeaning": "To portray something means to describe it or show it in a picture.", - "textExample": "Her picture portrayed the house she grew up in when she was little.", - "transcription": "[pɔːrtréi]", - "__v": 0, - "textExampleTranslate": "На ее картине изображен дом, в котором она выросла, когда была маленькой", - "textMeaningTranslate": "Изобразить что-либо означает описать это или показать это на картинке", - "wordTranslate": "изображать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb90" - }, - "group": 2, - "page": 28, - "word": "rotate", - "image": "files/29_1777.jpg", - "audio": "files/29_1777.mp3", - "audioMeaning": "files/29_1777_meaning.mp3", - "audioExample": "files/29_1777_example.mp3", - "textMeaning": "To rotate something means to turn it around in a circle.", - "textExample": "An airplane’s propellers rotate quickly to help it fly.", - "transcription": "[róuteit]", - "__v": 0, - "textExampleTranslate": "Винты самолета быстро вращаются, чтобы помочь ему летать", - "textMeaningTranslate": "Вращать что-то значит вращать его по кругу", - "wordTranslate": "поворот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb91" - }, - "group": 2, - "page": 28, - "word": "submarine", - "image": "files/29_1779.jpg", - "audio": "files/29_1779.mp3", - "audioMeaning": "files/29_1779_meaning.mp3", - "audioExample": "files/29_1779_example.mp3", - "textMeaning": "A submarine is a boat that can go underwater for long periods of time.", - "textExample": "The submarine dove under the sea so the enemy couldn’t see it.", - "transcription": "[sʌ́bmərìːn]", - "__v": 0, - "textExampleTranslate": "Подводная лодка нырнула в море, чтобы противник не мог ее увидеть", - "textMeaningTranslate": "Подводная лодка - это лодка, которая может плавать под водой в течение длительных периодов времени", - "wordTranslate": "подводная лодка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb92" - }, - "group": 2, - "page": 28, - "word": "souvenir", - "image": "files/29_1778.jpg", - "audio": "files/29_1778.mp3", - "audioMeaning": "files/29_1778_meaning.mp3", - "audioExample": "files/29_1778_example.mp3", - "textMeaning": "A souvenir is something bought to remember of a place or event.", - "textExample": "I bought a Russian doll as a souvenir on my trip to Moscow.", - "transcription": "[sùːvəníəːr]", - "__v": 0, - "textExampleTranslate": "Я купил русскую куклу в качестве сувенира во время поездки в Москву", - "textMeaningTranslate": "Сувенир - это что-то купленное, чтобы запомнить место или событие", - "wordTranslate": "сувенир" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb93" - }, - "group": 2, - "page": 29, - "word": "coastline", - "image": "files/30_1781.jpg", - "audio": "files/30_1781.mp3", - "audioMeaning": "files/30_1781_meaning.mp3", - "audioExample": "files/30_1781_example.mp3", - "textMeaning": "A coastline is the outline of a country’s coast.", - "textExample": "He noticed that most of the cities in Australia are on the coastline.", - "transcription": "[kóustlàin]", - "__v": 0, - "textExampleTranslate": "Он заметил, что большинство городов в Австралии находятся на береговой линии", - "textMeaningTranslate": "Береговая линия - это контур побережья страны", - "wordTranslate": "береговая" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb94" - }, - "group": 2, - "page": 28, - "word": "trace", - "image": "files/29_1780.jpg", - "audio": "files/29_1780.mp3", - "audioMeaning": "files/29_1780_meaning.mp3", - "audioExample": "files/29_1780_example.mp3", - "textMeaning": "To trace something means to follow over it with the eyes or a finger.", - "textExample": "He traced over the graph with his finger.", - "transcription": "[treis]", - "__v": 0, - "textExampleTranslate": "Он провел пальцем по графику", - "textMeaningTranslate": "Отследить что-либо - значит проследить за этим глазами или пальцем", - "wordTranslate": "след" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb95" - }, - "group": 2, - "page": 29, - "word": "deter", - "image": "files/30_1782.jpg", - "audio": "files/30_1782.mp3", - "audioMeaning": "files/30_1782_meaning.mp3", - "audioExample": "files/30_1782_example.mp3", - "textMeaning": "To deter means to prevent or discourage someone from doing something.", - "textExample": "Icy roads deter people from driving their cars.", - "transcription": "[ditə́ːr]", - "__v": 0, - "textExampleTranslate": "Ледяные дороги удерживают людей от вождения их автомобилей", - "textMeaningTranslate": "Сдерживать означает препятствовать или препятствовать кому-либо делать что-либо", - "wordTranslate": "сдерживания" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb96" - }, - "group": 2, - "page": 29, - "word": "devise", - "image": "files/30_1783.jpg", - "audio": "files/30_1783.mp3", - "audioMeaning": "files/30_1783_meaning.mp3", - "audioExample": "files/30_1783_example.mp3", - "textMeaning": "To devise something means to come up with an idea or plan about it.", - "textExample": "The thieves devised a plan to steal the diamonds.", - "transcription": "[diváiz]", - "__v": 0, - "textExampleTranslate": "Воры разработали план, чтобы украсть алмазы", - "textMeaningTranslate": "Придумать что-то значит придумать идею или план об этом", - "wordTranslate": "завещание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb97" - }, - "group": 2, - "page": 29, - "word": "distance", - "image": "files/30_1784.jpg", - "audio": "files/30_1784.mp3", - "audioMeaning": "files/30_1784_meaning.mp3", - "audioExample": "files/30_1784_example.mp3", - "textMeaning": "A distance is how far it is between two points.", - "textExample": "The distance between America and Russia is about 8,000 km.", - "transcription": "[dístəns]", - "__v": 0, - "textExampleTranslate": "Расстояние между Америкой и Россией составляет около 8000 км ", - "textMeaningTranslate": "Расстояние - это расстояние между двумя точками", - "wordTranslate": "расстояние" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb98" - }, - "group": 2, - "page": 29, - "word": "expertise", - "image": "files/30_1785.jpg", - "audio": "files/30_1785.mp3", - "audioMeaning": "files/30_1785_meaning.mp3", - "audioExample": "files/30_1785_example.mp3", - "textMeaning": "Expertise is the knowledge and skills to do something well.", - "textExample": "John has a lot of advertising expertise. He can sell anything!", - "transcription": "[èkspərtíːz]", - "__v": 0, - "textExampleTranslate": "У Джона есть большой опыт в рекламе. Он может продать что угодно!", - "textMeaningTranslate": "Экспертиза - это знания и умения делать что-то хорошо", - "wordTranslate": "экспертиза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb99" - }, - "group": 2, - "page": 29, - "word": "fracture", - "image": "files/30_1786.jpg", - "audio": "files/30_1786.mp3", - "audioMeaning": "files/30_1786_meaning.mp3", - "audioExample": "files/30_1786_example.mp3", - "textMeaning": "A fracture is a crack or break in something.", - "textExample": "Don’t stand on that leg because there is a fracture. It might get worse.", - "transcription": "[frǽktʃəːr]", - "__v": 0, - "textExampleTranslate": "Не стой на этой ноге, потому что есть перелом. Это может ухудшиться", - "textMeaningTranslate": "Перелом - это трещина или разрыв в чем-то", - "wordTranslate": "перелом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb9a" - }, - "group": 2, - "page": 29, - "word": "headache", - "image": "files/30_1787.jpg", - "audio": "files/30_1787.mp3", - "audioMeaning": "files/30_1787_meaning.mp3", - "audioExample": "files/30_1787_example.mp3", - "textMeaning": "A headache is a pain in one’s head.", - "textExample": "My sister gets a headache every time she has a lot of stress.", - "transcription": "[hédeɪk]", - "__v": 0, - "textExampleTranslate": "Моя сестра страдает от головной боли каждый раз, когда у нее много стресса", - "textMeaningTranslate": "Головная боль - это боль в голове", - "wordTranslate": "головная боль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb9b" - }, - "group": 2, - "page": 29, - "word": "implement", - "image": "files/30_1788.jpg", - "audio": "files/30_1788.mp3", - "audioMeaning": "files/30_1788_meaning.mp3", - "audioExample": "files/30_1788_example.mp3", - "textMeaning": "To implement something means to ensure that what has been planned is done.", - "textExample": "The school decided to implement a new teaching strategy.", - "transcription": "[ímpləmènt]", - "__v": 0, - "textExampleTranslate": "Школа решила внедрить новую стратегию обучения", - "textMeaningTranslate": "Реализовать что-либо - значит обеспечить выполнение запланированного", - "wordTranslate": "воплощать в жизнь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb9c" - }, - "group": 2, - "page": 29, - "word": "insight", - "image": "files/30_1789.jpg", - "audio": "files/30_1789.mp3", - "audioMeaning": "files/30_1789_meaning.mp3", - "audioExample": "files/30_1789_example.mp3", - "textMeaning": "Insight is a deep and accurate understanding of something.", - "textExample": "The physics textbook gave the student a new insight about gravity.", - "transcription": "[ínsàit]", - "__v": 0, - "textExampleTranslate": "Учебник физики дал учащемуся новое понимание гравитации", - "textMeaningTranslate": "Понимание - это глубокое и точное понимание чего-либо", - "wordTranslate": "на виду" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb9d" - }, - "group": 2, - "page": 29, - "word": "limb", - "image": "files/30_1790.jpg", - "audio": "files/30_1790.mp3", - "audioMeaning": "files/30_1790_meaning.mp3", - "audioExample": "files/30_1790_example.mp3", - "textMeaning": "A limb is a large branch on a tree.", - "textExample": "The monkey sat on the tree limb and enjoyed a piece of fruit.", - "transcription": "[lim]", - "__v": 0, - "textExampleTranslate": "Обезьяна сидела на ветке дерева и наслаждалась фруктом", - "textMeaningTranslate": "Ветвь - это большая ветка на дереве", - "wordTranslate": "конечность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb9e" - }, - "group": 2, - "page": 29, - "word": "might", - "image": "files/30_1791.jpg", - "audio": "files/30_1791.mp3", - "audioMeaning": "files/30_1791_meaning.mp3", - "audioExample": "files/30_1791_example.mp3", - "textMeaning": "Might means strength or power.", - "textExample": "Try with all your might to lift the heavy tire.", - "transcription": "[mait]", - "__v": 0, - "textExampleTranslate": "Постарайся изо всех сил поднять тяжелую шину", - "textMeaningTranslate": "Сила означает силу или мощь", - "wordTranslate": "мощь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afb9f" - }, - "group": 2, - "page": 29, - "word": "raft", - "image": "files/30_1794.jpg", - "audio": "files/30_1794.mp3", - "audioMeaning": "files/30_1794_meaning.mp3", - "audioExample": "files/30_1794_example.mp3", - "textMeaning": "A raft is a flat kind of boat.", - "textExample": "He sailed across the Pacific Ocean on a raft.", - "transcription": "[ræft]", - "__v": 0, - "textExampleTranslate": "Он плыл через Тихий океан на плоту", - "textMeaningTranslate": "Плот - это плоский вид лодки", - "wordTranslate": "плот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afba0" - }, - "group": 2, - "page": 29, - "word": "optimism", - "image": "files/30_1792.jpg", - "audio": "files/30_1792.mp3", - "audioMeaning": "files/30_1792_meaning.mp3", - "audioExample": "files/30_1792_example.mp3", - "textMeaning": "Optimism is the state of being hopeful about the future.", - "textExample": "The mother had optimism about her children’s futures.", - "transcription": "[ɑ́ptəmìzəm]", - "__v": 0, - "textExampleTranslate": "У матери был оптимизм по поводу будущего ее детей", - "textMeaningTranslate": "Оптимизм - это состояние надежды на будущее", - "wordTranslate": "оптимизм" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afba2" - }, - "group": 2, - "page": 29, - "word": "proficient", - "image": "files/30_1793.jpg", - "audio": "files/30_1793.mp3", - "audioMeaning": "files/30_1793_meaning.mp3", - "audioExample": "files/30_1793_example.mp3", - "textMeaning": "Proficient means able to do something well.", - "textExample": "Secretaries are proficient at typing quickly.", - "transcription": "[prəfíʃənt]", - "__v": 0, - "textExampleTranslate": "Секретари умеют быстро печатать", - "textMeaningTranslate": "Опытный - значит делать что-то хорошо", - "wordTranslate": "опытный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afba1" - }, - "group": 2, - "page": 29, - "word": "ridge", - "image": "files/30_1795.jpg", - "audio": "files/30_1795.mp3", - "audioMeaning": "files/30_1795_meaning.mp3", - "audioExample": "files/30_1795_example.mp3", - "textMeaning": "A ridge is a long, narrow piece of raised land.", - "textExample": "The brown bear walked along the edge of the mountain ridge.", - "transcription": "[ridʒ]", - "__v": 0, - "textExampleTranslate": "Бурый медведь шел по краю горного хребта", - "textMeaningTranslate": "Гребень - это длинный узкий кусок возвышенности", - "wordTranslate": "хребет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afba3" - }, - "group": 2, - "page": 29, - "word": "shoulder", - "image": "files/30_1796.jpg", - "audio": "files/30_1796.mp3", - "audioMeaning": "files/30_1796_meaning.mp3", - "audioExample": "files/30_1796_example.mp3", - "textMeaning": "A shoulder is the body part between the top of the arm and the neck.", - "textExample": "He carried his bike on his shoulder.", - "transcription": "[ʃóuldər]", - "__v": 0, - "textExampleTranslate": "Он нес свой велосипед на плече", - "textMeaningTranslate": "Плечо - это часть тела между верхней частью руки и шеей", - "wordTranslate": "плечо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afba4" - }, - "group": 2, - "page": 29, - "word": "shove", - "image": "files/30_1797.jpg", - "audio": "files/30_1797.mp3", - "audioMeaning": "files/30_1797_meaning.mp3", - "audioExample": "files/30_1797_example.mp3", - "textMeaning": "To shove something is to push it with a lot of power.", - "textExample": "She shoved him out of the way.", - "transcription": "[ʃʌv]", - "__v": 0, - "textExampleTranslate": "Она оттолкнула его с дороги", - "textMeaningTranslate": "Толкать что-то - значит толкать это с большой силой", - "wordTranslate": "переть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afba5" - }, - "group": 2, - "page": 29, - "word": "thrust", - "image": "files/30_1799.jpg", - "audio": "files/30_1799.mp3", - "audioMeaning": "files/30_1799_meaning.mp3", - "audioExample": "files/30_1799_example.mp3", - "textMeaning": "To thrust means to push or move something quickly with a lot of force.", - "textExample": "The boxer thrust his fist into the punching bag.", - "transcription": "[θrʌst]", - "__v": 0, - "textExampleTranslate": "Боксер сунул кулак в боксерскую грушу", - "textMeaningTranslate": "Толкать значит толкать или двигать что-то быстро с большой силой", - "wordTranslate": "тяга" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afba7" - }, - "group": 2, - "page": 29, - "word": "tolerate", - "image": "files/30_1800.jpg", - "audio": "files/30_1800.mp3", - "audioMeaning": "files/30_1800_meaning.mp3", - "audioExample": "files/30_1800_example.mp3", - "textMeaning": "To tolerate something means to be able to accept it even when it is unpleasant.", - "textExample": "When you are in a hurry, it can be hard to tolerate traffic signals.", - "transcription": "[tάlərèit]", - "__v": 0, - "textExampleTranslate": "Когда вы спешите, может быть трудно терпеть светофоры", - "textMeaningTranslate": "Терпеть что-то значит быть способным принять это, даже когда это неприятно", - "wordTranslate": "терпеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afba9" - }, - "group": 3, - "page": 0, - "word": "accountable", - "image": "files/01_1801.jpg", - "audio": "files/01_1801.mp3", - "audioMeaning": "files/01_1801_meaning.mp3", - "audioExample": "files/01_1801_example.mp3", - "textMeaning": "When someone is accountable, he or she is responsible for the effects of his or her actions.", - "textExample": "Political leaders are accountable to the people they represent.", - "transcription": "[əkáuntəbl]", - "__v": 0, - "textExampleTranslate": "Политические лидеры ответственны перед людьми, которых они представляют", - "textMeaningTranslate": "Когда кто-то несет ответственность, он или она несут ответственность за последствия своих действий", - "wordTranslate": "подотчетны" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afba6" - }, - "group": 2, - "page": 29, - "word": "spouse", - "image": "files/30_1798.jpg", - "audio": "files/30_1798.mp3", - "audioMeaning": "files/30_1798_meaning.mp3", - "audioExample": "files/30_1798_example.mp3", - "textMeaning": "A spouse is the person to whom someone is married.", - "textExample": "I live in a home with my spouse and our two children.", - "transcription": "[spaus]", - "__v": 0, - "textExampleTranslate": "Я живу в доме с моим супругом и нашими двумя детьми", - "textMeaningTranslate": "Супруг - это человек, за которого кто-то состоит в браке", - "wordTranslate": "супруги" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbab" - }, - "group": 3, - "page": 0, - "word": "coin", - "image": "files/01_1804.jpg", - "audio": "files/01_1804.mp3", - "audioMeaning": "files/01_1804_meaning.mp3", - "audioExample": "files/01_1804_example.mp3", - "textMeaning": "To coin is to create a new word or phrase that other people begin to use.", - "textExample": "The coach coined the phrase, “There is no ‘I’ in team.”", - "transcription": "[kɔin]", - "__v": 0, - "textExampleTranslate": "Тренер придумал фразу 'В команде нет 'я''", - "textMeaningTranslate": "Монета означает создание нового слова или фразы, которые начинают использовать другие люди", - "wordTranslate": "монета" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afba8" - }, - "group": 3, - "page": 0, - "word": "addictive", - "image": "files/01_1802.jpg", - "audio": "files/01_1802.mp3", - "audioMeaning": "files/01_1802_meaning.mp3", - "audioExample": "files/01_1802_example.mp3", - "textMeaning": "If something is addictive, it is hard to stop doing.", - "textExample": "I think this game is very addictive.", - "transcription": "[ədíktiv]", - "__v": 0, - "textExampleTranslate": "Я думаю, что эта игра очень затягивает", - "textMeaningTranslate": "Если что-то вызывает привыкание, трудно перестать делать", - "wordTranslate": "привыкание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbaa" - }, - "group": 3, - "page": 0, - "word": "agenda", - "image": "files/01_1803.jpg", - "audio": "files/01_1803.mp3", - "audioMeaning": "files/01_1803_meaning.mp3", - "audioExample": "files/01_1803_example.mp3", - "textMeaning": "An agenda is a plan or goal that guides someone’s behavior.", - "textExample": "The man is pushing his questionable agenda on his colleagues.", - "transcription": "[ədʒéndə]", - "__v": 0, - "textExampleTranslate": "Человек выдвигает свою сомнительную повестку дня на своих коллег", - "textMeaningTranslate": "Повестка дня - это план или цель, определяющая поведение человека", - "wordTranslate": "повестка дня" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbad" - }, - "group": 3, - "page": 0, - "word": "depression", - "image": "files/01_1806.jpg", - "audio": "files/01_1806.mp3", - "audioMeaning": "files/01_1806_meaning.mp3", - "audioExample": "files/01_1806_example.mp3", - "textMeaning": "Depression is a medical condition that makes a person very unhappy for long periods of time.", - "textExample": "Ron decided to get help for his depression.", - "transcription": "[dipréʃən]", - "__v": 0, - "textExampleTranslate": "Рон решил получить помощь от депрессии", - "textMeaningTranslate": "Депрессия - это заболевание, которое делает человека очень несчастным в течение длительного времени", - "wordTranslate": "депрессия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbac" - }, - "group": 3, - "page": 0, - "word": "correlate", - "image": "files/01_1805.jpg", - "audio": "files/01_1805.mp3", - "audioMeaning": "files/01_1805_meaning.mp3", - "audioExample": "files/01_1805_example.mp3", - "textMeaning": "To correlate is to have a close connection to something.", - "textExample": "Scientists believe that brain size might correlate with intelligence.", - "transcription": "[kɔ́ːrəlèit]", - "__v": 0, - "textExampleTranslate": "Ученые считают, что размер мозга может коррелировать с интеллектом", - "textMeaningTranslate": "Соотносить это значит иметь тесную связь с чем-то", - "wordTranslate": "коррелят" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbae" - }, - "group": 3, - "page": 0, - "word": "digital", - "image": "files/01_1807.jpg", - "audio": "files/01_1807.mp3", - "audioMeaning": "files/01_1807_meaning.mp3", - "audioExample": "files/01_1807_example.mp3", - "textMeaning": "When something is digital, it is characterized by computer technology.", - "textExample": "Students prefer to take notes on their laptops and other digital devices.", - "transcription": "[dídʒətl]", - "__v": 0, - "textExampleTranslate": "Студенты предпочитают делать заметки на своих ноутбуках и других цифровых устройствах", - "textMeaningTranslate": "Когда что-то является цифровым, оно характеризуется компьютерными технологиями", - "wordTranslate": "цифровой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbaf" - }, - "group": 3, - "page": 0, - "word": "keyboard", - "image": "files/01_1809.jpg", - "audio": "files/01_1809.mp3", - "audioMeaning": "files/01_1809_meaning.mp3", - "audioExample": "files/01_1809_example.mp3", - "textMeaning": "A keyboard has buttons marked with letters and numbers that are pressed to put information into a computer.", - "textExample": "Paul spilled coffee all over his keyboard.", - "transcription": "[kíbɔːrd]", - "__v": 0, - "textExampleTranslate": "Пол разлил кофе по всей клавиатуре", - "textMeaningTranslate": "На клавиатуре есть кнопки, помеченные буквами и цифрами, которые нажимаются для ввода информации в компьютер", - "wordTranslate": "клавиатура" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbb0" - }, - "group": 3, - "page": 0, - "word": "importance", - "image": "files/01_1808.jpg", - "audio": "files/01_1808.mp3", - "audioMeaning": "files/01_1808_meaning.mp3", - "audioExample": "files/01_1808_example.mp3", - "textMeaning": "Importance is the quality or state of being important, valuable, or significant.", - "textExample": "The professor lectured the students on the importance of communication strategies.", - "transcription": "[impɔ́ːrtəns]", - "__v": 0, - "textExampleTranslate": "Профессор читал лекции студентам о важности коммуникационных стратегий", - "textMeaningTranslate": "Важность - это качество или состояние важности, ценности или значимости", - "wordTranslate": "значение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbb2" - }, - "group": 3, - "page": 0, - "word": "media", - "image": "files/01_1811.jpg", - "audio": "files/01_1811.mp3", - "audioMeaning": "files/01_1811_meaning.mp3", - "audioExample": "files/01_1811_example.mp3", - "textMeaning": "Media is the different ways of entertaining and giving information to the public.", - "textExample": "Many people like to express their opinions online using social media.", - "transcription": "[míːdiə]", - "__v": 0, - "textExampleTranslate": "Многие люди хотели бы выразить свое мнение в Интернете с помощью социальных сетей", - "textMeaningTranslate": "СМИ - это разные способы развлечения и предоставления информации общественности", - "wordTranslate": "CМИ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbb1" - }, - "group": 3, - "page": 0, - "word": "loneliness", - "image": "files/01_1810.jpg", - "audio": "files/01_1810.mp3", - "audioMeaning": "files/01_1810_meaning.mp3", - "audioExample": "files/01_1810_example.mp3", - "textMeaning": "Loneliness is the unhappiness that is felt by someone if they do not have any friends.", - "textExample": "Many people join social clubs to escape loneliness.", - "transcription": "[lóunlinis]", - "__v": 0, - "textExampleTranslate": "Многие люди вступают в социальные клубы, чтобы избежать одиночества", - "textMeaningTranslate": "Одиночество - это несчастье, которое кто-то чувствует, если у него нет друзей", - "wordTranslate": "одиночество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbb3" - }, - "group": 3, - "page": 0, - "word": "platform", - "image": "files/01_1812.jpg", - "audio": "files/01_1812.mp3", - "audioMeaning": "files/01_1812_meaning.mp3", - "audioExample": "files/01_1812_example.mp3", - "textMeaning": "A platform is something that allows someone to tell a large number of people about an idea, product, etc.", - "textExample": "The band uses their music as a platform to express their political beliefs.", - "transcription": "[plǽtfɔːrm]", - "__v": 0, - "textExampleTranslate": "Группа использует свою музыку в качестве платформы для выражения своих политических убеждений", - "textMeaningTranslate": "Платформа - это то, что позволяет кому-то рассказать большому количеству людей об идее, продукте и т. Д", - "wordTranslate": "платформа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbb4" - }, - "group": 3, - "page": 0, - "word": "presence", - "image": "files/01_1814.jpg", - "audio": "files/01_1814.mp3", - "audioMeaning": "files/01_1814_meaning.mp3", - "audioExample": "files/01_1814_example.mp3", - "textMeaning": "Presence is when someone or something is present in a particular place.", - "textExample": "The researcher discovered the presence of bacteria in the water sample.", - "transcription": "[prézns]", - "__v": 0, - "textExampleTranslate": "Исследователь обнаружил присутствие бактерий в пробе воды", - "textMeaningTranslate": "Присутствие - это когда кто-то или что-то присутствует в определенном месте", - "wordTranslate": "присутствие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbb5" - }, - "group": 3, - "page": 0, - "word": "poor", - "image": "files/01_1813.jpg", - "audio": "files/01_1813.mp3", - "audioMeaning": "files/01_1813_meaning.mp3", - "audioExample": "files/01_1813_example.mp3", - "textMeaning": "When something is poor, it is not as good as it could or should be.", - "textExample": "The condition of the sidewalk is very poor.", - "transcription": "[puər]", - "__v": 0, - "textExampleTranslate": "Состояние тротуара очень плохое", - "textMeaningTranslate": "Когда что-то плохое, это не так хорошо, как могло бы или должно быть", - "wordTranslate": "бедных" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbb7" - }, - "group": 3, - "page": 0, - "word": "surge", - "image": "files/01_1816.jpg", - "audio": "files/01_1816.mp3", - "audioMeaning": "files/01_1816_meaning.mp3", - "audioExample": "files/01_1816_example.mp3", - "textMeaning": "A surge is a sudden, large increase in something.", - "textExample": "All at once, there was a surge of runners at the finish line.", - "transcription": "[səːrdʒ]", - "__v": 0, - "textExampleTranslate": "Внезапно на финише всплеск бегунов", - "textMeaningTranslate": "Волна - это внезапное, значительное увеличение чего-либо", - "wordTranslate": "всплеск" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbb6" - }, - "group": 3, - "page": 0, - "word": "subject", - "image": "files/01_1815.jpg", - "audio": "files/01_1815.mp3", - "audioMeaning": "files/01_1815_meaning.mp3", - "audioExample": "files/01_1815_example.mp3", - "textMeaning": "To subject is to cause or force someone or something to experience something harmful or unpleasant.", - "textExample": "The location of the trees will subject them to strong winds from the hurricane.", - "transcription": "[sΛbdʒikt]", - "__v": 0, - "textExampleTranslate": "Расположение деревьев подвергнет их сильным ветрам от урагана", - "textMeaningTranslate": "Субъект должен вызывать или заставлять кого-то или что-либо испытывать что-то вредное или неприятное", - "wordTranslate": "тема" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbba" - }, - "group": 3, - "page": 0, - "word": "validate", - "image": "files/01_1820.jpg", - "audio": "files/01_1820.mp3", - "audioMeaning": "files/01_1820_meaning.mp3", - "audioExample": "files/01_1820_example.mp3", - "textMeaning": "To validate is to make someone feel that his or her ideas and feelings are respected.", - "textExample": "Winning first prize will validate all of Tony’s hard work.", - "transcription": "[vǽlədèit]", - "__v": 0, - "textExampleTranslate": "Получение первого приза подтвердит всю тяжелую работу Тони", - "textMeaningTranslate": "Подтвердить - значит заставить кого-то почувствовать, что его или ее идеи и чувства уважают", - "wordTranslate": "проверка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbb8" - }, - "group": 3, - "page": 0, - "word": "survey", - "image": "files/01_1817.jpg", - "audio": "files/01_1817.mp3", - "audioMeaning": "files/01_1817_meaning.mp3", - "audioExample": "files/01_1817_example.mp3", - "textMeaning": "A survey is a set of questions that are asked to a large number of people in order to find out about opinions.", - "textExample": "I filled out a survey about my shopping experience at the department store.", - "transcription": "[sərvéi]", - "__v": 0, - "textExampleTranslate": "Я заполнил опрос о моем опыте покупок в универмаге", - "textMeaningTranslate": "Опрос - это набор вопросов, которые задают большому количеству людей, чтобы узнать о мнениях", - "wordTranslate": "опрос" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbb9" - }, - "group": 3, - "page": 0, - "word": "target", - "image": "files/01_1818.jpg", - "audio": "files/01_1818.mp3", - "audioMeaning": "files/01_1818_meaning.mp3", - "audioExample": "files/01_1818_example.mp3", - "textMeaning": "To target is to aim an attack at someone or something.", - "textExample": "Scientists are looking for new drugs to target cancer cells.", - "transcription": "[tάːrgit]", - "__v": 0, - "textExampleTranslate": "Ученые ищут новые лекарства для нацеливания на раковые клетки", - "textMeaningTranslate": "Таргетировать это нацеливать нападение на кого-то или что-то", - "wordTranslate": "мишень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbbb" - }, - "group": 3, - "page": 0, - "word": "trend", - "image": "files/01_1819.jpg", - "audio": "files/01_1819.mp3", - "audioMeaning": "files/01_1819_meaning.mp3", - "audioExample": "files/01_1819_example.mp3", - "textMeaning": "A trend is a general tendency in the way a situation is changing or developing.", - "textExample": "Lucy likes to think she started this fashion trend.", - "transcription": "[trend]", - "__v": 0, - "textExampleTranslate": "Люси нравится думать, что она начала эту модную тенденцию", - "textMeaningTranslate": "Тенденция - это общая тенденция изменения или развития ситуации", - "wordTranslate": "тренд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbbd" - }, - "group": 3, - "page": 1, - "word": "carbon dioxide", - "image": "files/02_1822.jpg", - "audio": "files/02_1822.mp3", - "audioMeaning": "files/02_1822_meaning.mp3", - "audioExample": "files/02_1822_example.mp3", - "textMeaning": "Carbon dioxide is a gas made from one carbon atom and two oxygen atoms.", - "textExample": "There is carbon dioxide in the smoke from coal power plants.", - "transcription": "[kάːrbən daiάksaid]", - "__v": 0, - "textExampleTranslate": "В дыму угольных электростанций есть углекислый газ", - "textMeaningTranslate": "Диоксид углерода - это газ, состоящий из одного атома углерода и двух атомов кислорода", - "wordTranslate": "углекислый газ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbbc" - }, - "group": 3, - "page": 1, - "word": "carbon", - "image": "files/02_1821.jpg", - "audio": "files/02_1821.mp3", - "audioMeaning": "files/02_1821_meaning.mp3", - "audioExample": "files/02_1821_example.mp3", - "textMeaning": "Carbon is a chemical element.", - "textExample": "Carbon is found in coal.", - "transcription": "[kάːrbən]", - "__v": 0, - "textExampleTranslate": "Уголь найден в угле", - "textMeaningTranslate": "Углерод - это химический элемент", - "wordTranslate": "углерод" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbbe" - }, - "group": 3, - "page": 1, - "word": "dust", - "image": "files/02_1823.jpg", - "audio": "files/02_1823.mp3", - "audioMeaning": "files/02_1823_meaning.mp3", - "audioExample": "files/02_1823_example.mp3", - "textMeaning": "Dust is very small, dry particles of earth or sand.", - "textExample": "Some people wear medical face masks to avoid breathing in fine dust and germs.", - "transcription": "[dʌst]", - "__v": 0, - "textExampleTranslate": "Некоторые люди носят медицинские маски, чтобы не вдыхать мелкую пыль и микробы", - "textMeaningTranslate": "Пыль очень маленькая, сухие частицы земли или песка", - "wordTranslate": "пыли" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbbf" - }, - "group": 3, - "page": 1, - "word": "enable", - "image": "files/02_1825.jpg", - "audio": "files/02_1825.mp3", - "audioMeaning": "files/02_1825_meaning.mp3", - "audioExample": "files/02_1825_example.mp3", - "textMeaning": "To enable is to make it possible for something to happen.", - "textExample": "Studying hard will enable the girl to get a good job.", - "transcription": "[inéibl]", - "__v": 0, - "textExampleTranslate": "Тяжелое обучение позволит девушке получить хорошую работу", - "textMeaningTranslate": "Включить - это сделать возможным, чтобы что-то произошло", - "wordTranslate": "включить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbc0" - }, - "group": 3, - "page": 1, - "word": "emit", - "image": "files/02_1824.jpg", - "audio": "files/02_1824.mp3", - "audioMeaning": "files/02_1824_meaning.mp3", - "audioExample": "files/02_1824_example.mp3", - "textMeaning": "To emit is to send out gas, heat, light, sound, etc.", - "textExample": "This iron emits steam.", - "transcription": "[imít]", - "__v": 0, - "textExampleTranslate": "Это железо испускает пар", - "textMeaningTranslate": "Излучать - значит излучать газ, тепло, свет, звук и т. Д", - "wordTranslate": "испускают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbc2" - }, - "group": 3, - "page": 1, - "word": "heal", - "image": "files/02_1827.jpg", - "audio": "files/02_1827.mp3", - "audioMeaning": "files/02_1827_meaning.mp3", - "audioExample": "files/02_1827_example.mp3", - "textMeaning": "To heal is to become healthy or well again.", - "textExample": "This ointment will help heal your wounds.", - "transcription": "[hi:l]", - "__v": 0, - "textExampleTranslate": "Эта мазь поможет залечить ваши раны", - "textMeaningTranslate": "Исцелить - значит снова стать здоровым или здоровым", - "wordTranslate": "залечить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbc1" - }, - "group": 3, - "page": 1, - "word": "grind", - "image": "files/02_1826.jpg", - "audio": "files/02_1826.mp3", - "audioMeaning": "files/02_1826_meaning.mp3", - "audioExample": "files/02_1826_example.mp3", - "textMeaning": "To grind is to break something into small pieces or powder.", - "textExample": "We grind wheat to make flour.", - "transcription": "[graind]", - "__v": 0, - "textExampleTranslate": "Мы перемалываем пшеницу, чтобы сделать муку", - "textMeaningTranslate": "Измельчить - значит разбить что-то на мелкие кусочки или порошок", - "wordTranslate": "шлифовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbc3" - }, - "group": 3, - "page": 1, - "word": "integrate", - "image": "files/02_1828.jpg", - "audio": "files/02_1828.mp3", - "audioMeaning": "files/02_1828_meaning.mp3", - "audioExample": "files/02_1828_example.mp3", - "textMeaning": "To integrate is to make something a part of another larger thing.", - "textExample": "More women are being integrated into the military.", - "transcription": "[íntəgrèit]", - "__v": 0, - "textExampleTranslate": "Больше женщин интегрируется в армию", - "textMeaningTranslate": "Интегрировать - значит сделать что-то частью другой более крупной вещи", - "wordTranslate": "интегрировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbc4" - }, - "group": 3, - "page": 1, - "word": "moreover", - "image": "files/02_1830.jpg", - "audio": "files/02_1830.mp3", - "audioMeaning": "files/02_1830_meaning.mp3", - "audioExample": "files/02_1830_example.mp3", - "textMeaning": "Moreover is used to introduce information that adds to or supports what has previously been said.", - "textExample": "Marianne likes to walk to work to save money; moreover, it is good exercise.", - "transcription": "[mɔːróuvər]", - "__v": 0, - "textExampleTranslate": "Марианна любит ходить на работу, чтобы сэкономить деньги; кроме того, это хорошее упражнение", - "textMeaningTranslate": "Кроме того, используется для представления информации, которая добавляет или поддерживает то, что было сказано ранее", - "wordTranslate": "более того" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbc5" - }, - "group": 3, - "page": 1, - "word": "leading", - "image": "files/02_1829.jpg", - "audio": "files/02_1829.mp3", - "audioMeaning": "files/02_1829_meaning.mp3", - "audioExample": "files/02_1829_example.mp3", - "textMeaning": "When something is leading, it is the most advanced or best.", - "textExample": "Teresa is the leading expert on brain surgery for dogs.", - "transcription": "[líːdiŋ]", - "__v": 0, - "textExampleTranslate": "Тереза является ведущим специалистом по хирургии головного мозга для собак", - "textMeaningTranslate": "Когда что-то ведет, это самое передовое или лучшее", - "wordTranslate": "ведущий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbc6" - }, - "group": 3, - "page": 1, - "word": "object", - "image": "files/02_1831.jpg", - "audio": "files/02_1831.mp3", - "audioMeaning": "files/02_1831_meaning.mp3", - "audioExample": "files/02_1831_example.mp3", - "textMeaning": "To object is to feel or say that you oppose or disapprove of something.", - "textExample": "The students object to raising the tuition.", - "transcription": "[άbdʒikt]", - "__v": 0, - "textExampleTranslate": "Студенты возражают против повышения платы за обучение", - "textMeaningTranslate": "Возражать - значит чувствовать или говорить, что ты против или не одобряешь что-то", - "wordTranslate": "объект" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbc8" - }, - "group": 3, - "page": 1, - "word": "powder", - "image": "files/02_1833.jpg", - "audio": "files/02_1833.mp3", - "audioMeaning": "files/02_1833_meaning.mp3", - "audioExample": "files/02_1833_example.mp3", - "textMeaning": "Powder is a dry substance in the form of very small grains.", - "textExample": "Turmeric is a yellow powder used in cooking.", - "transcription": "[páudər]", - "__v": 0, - "textExampleTranslate": "Куркума - желтый порошок, используемый в кулинарии", - "textMeaningTranslate": "Порошок представляет собой сухое вещество в виде очень мелких зерен", - "wordTranslate": "порошок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbc7" - }, - "group": 3, - "page": 1, - "word": "pollutant", - "image": "files/02_1832.jpg", - "audio": "files/02_1832.mp3", - "audioMeaning": "files/02_1832_meaning.mp3", - "audioExample": "files/02_1832_example.mp3", - "textMeaning": "A pollutant is a substance that makes the air or water not safe for use.", - "textExample": "A pollutant in the water killed this fish.", - "transcription": "[pəlúːtənt]", - "__v": 0, - "textExampleTranslate": "Загрязнитель в воде убил эту рыбу", - "textMeaningTranslate": "Загрязнитель - это вещество, которое делает воздух или воду небезопасными для использования", - "wordTranslate": "загрязнитель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbc9" - }, - "group": 3, - "page": 1, - "word": "skeptic", - "image": "files/02_1836.jpg", - "audio": "files/02_1836.mp3", - "audioMeaning": "files/02_1836_meaning.mp3", - "audioExample": "files/02_1836_example.mp3", - "textMeaning": "A skeptic is a person who disagrees with particular claims that are generally thought to be true.", - "textExample": "Kevin is a skeptic because he never believes anyone or anything.", - "transcription": "[sképtik]", - "__v": 0, - "textExampleTranslate": "Кевин скептик, потому что он никогда никому и ни во что не верит", - "textMeaningTranslate": "Скептик - это человек, который не согласен с конкретными утверждениями, которые обычно считаются правдой", - "wordTranslate": "скептик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbca" - }, - "group": 3, - "page": 1, - "word": "reject", - "image": "files/02_1835.jpg", - "audio": "files/02_1835.mp3", - "audioMeaning": "files/02_1835_meaning.mp3", - "audioExample": "files/02_1835_example.mp3", - "textMeaning": "To reject is to refuse to accept, believe in, or agree with something.", - "textExample": "I’m afraid the teacher will reject my new idea.", - "transcription": "[ridʒékt]", - "__v": 0, - "textExampleTranslate": "Боюсь, учитель отвергнет мою новую идею", - "textMeaningTranslate": "Отклонить - значит отказаться принять, поверить или согласиться с чем-либо", - "wordTranslate": "отклонить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbcb" - }, - "group": 3, - "page": 1, - "word": "prompt", - "image": "files/02_1834.jpg", - "audio": "files/02_1834.mp3", - "audioMeaning": "files/02_1834_meaning.mp3", - "audioExample": "files/02_1834_example.mp3", - "textMeaning": "To prompt is to cause someone to do something.", - "textExample": "The tight deadline will prompt the employee to work very hard.", - "transcription": "[prampt]", - "__v": 0, - "textExampleTranslate": "Сжатый срок заставит сотрудника работать очень усердно", - "textMeaningTranslate": "Подсказать - это заставить кого-то что-то делать", - "wordTranslate": "незамедлительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbce" - }, - "group": 3, - "page": 1, - "word": "ton", - "image": "files/02_1839.jpg", - "audio": "files/02_1839.mp3", - "audioMeaning": "files/02_1839_meaning.mp3", - "audioExample": "files/02_1839_example.mp3", - "textMeaning": "A ton is a unit for measuring weight equal to 2000 pounds or 907.2 kilograms.", - "textExample": "This dump truck can carry up to 25 tons.", - "transcription": "[tʌn]", - "__v": 0, - "textExampleTranslate": "Этот самосвал может перевозить до 25 тонн", - "textMeaningTranslate": "Тонна - это единица измерения веса, равная 2000 фунтов или 907,2 кг", - "wordTranslate": "тонна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbcd" - }, - "group": 3, - "page": 1, - "word": "substantially", - "image": "files/02_1838.jpg", - "audio": "files/02_1838.mp3", - "audioMeaning": "files/02_1838_meaning.mp3", - "audioExample": "files/02_1838_example.mp3", - "textMeaning": "If something changes substantially, it changes a lot.", - "textExample": "The price of the apartment went up substantially.", - "transcription": "[səbstǽnʃəli]", - "__v": 0, - "textExampleTranslate": "Цена квартиры существенно выросла", - "textMeaningTranslate": "Если что-то существенно меняется, оно сильно меняется", - "wordTranslate": "по существу" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbcc" - }, - "group": 3, - "page": 1, - "word": "substance", - "image": "files/02_1837.jpg", - "audio": "files/02_1837.mp3", - "audioMeaning": "files/02_1837_meaning.mp3", - "audioExample": "files/02_1837_example.mp3", - "textMeaning": "A substance is a particular type of solid, liquid, or gas.", - "textExample": "Arsenic is a poisonous substance.", - "transcription": "[sΛbstəns]", - "__v": 0, - "textExampleTranslate": "Мышьяк - ядовитое вещество", - "textMeaningTranslate": "Вещество представляет собой определенный тип твердого вещества, жидкости или газа", - "wordTranslate": "вещество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbcf" - }, - "group": 3, - "page": 1, - "word": "transport", - "image": "files/02_1840.jpg", - "audio": "files/02_1840.mp3", - "audioMeaning": "files/02_1840_meaning.mp3", - "audioExample": "files/02_1840_example.mp3", - "textMeaning": "Transport is the system or method of carrying passengers or goods from one place to another.", - "textExample": "Cargo ships are used for the transport of manufactured goods.", - "transcription": "[trænspɔ́ːrt]", - "__v": 0, - "textExampleTranslate": "Грузовые суда используются для перевозки промышленных товаров", - "textMeaningTranslate": "Транспорт - это система или метод перевозки пассажиров или товаров из одного места в другое", - "wordTranslate": "транспорт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbd0" - }, - "group": 3, - "page": 2, - "word": "align", - "image": "files/03_1841.jpg", - "audio": "files/03_1841.mp3", - "audioMeaning": "files/03_1841_meaning.mp3", - "audioExample": "files/03_1841_example.mp3", - "textMeaning": "To align is to support a political group, country, or person that you agree with.", - "textExample": "The crowd seemed to align themselves with the protestors.", - "transcription": "[əláin]", - "__v": 0, - "textExampleTranslate": "Толпа, казалось, присоединилась к протестующим", - "textMeaningTranslate": "Согласовать - значит поддержать политическую группу, страну или человека, с которым вы согласны", - "wordTranslate": "выравнивание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbd1" - }, - "group": 3, - "page": 2, - "word": "authority", - "image": "files/03_1842.jpg", - "audio": "files/03_1842.mp3", - "audioMeaning": "files/03_1842_meaning.mp3", - "audioExample": "files/03_1842_example.mp3", - "textMeaning": "An authority is someone who has the power to make decisions and enforce rules and laws.", - "textExample": "The local police department is the authority whenever large crowds gather.", - "transcription": "[əθɔ́ːrəti]", - "__v": 0, - "textExampleTranslate": "Местное полицейское управление - это власть, когда собирается большое количество людей", - "textMeaningTranslate": "Орган власти - это тот, кто имеет право принимать решения и обеспечивать соблюдение правил и законов", - "wordTranslate": "орган власти" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbd3" - }, - "group": 3, - "page": 2, - "word": "betray", - "image": "files/03_1844.jpg", - "audio": "files/03_1844.mp3", - "audioMeaning": "files/03_1844_meaning.mp3", - "audioExample": "files/03_1844_example.mp3", - "textMeaning": "To betray is to be disloyal to someone who trusts you.", - "textExample": "The four friends would never betray each other’s trust.", - "transcription": "[bitréi]", - "__v": 0, - "textExampleTranslate": "Четыре друга никогда бы не предали доверие друг друга", - "textMeaningTranslate": "Предать - значит быть неверным тому, кто тебе доверяет", - "wordTranslate": "предавать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbd2" - }, - "group": 3, - "page": 2, - "word": "barn", - "image": "files/03_1843.jpg", - "audio": "files/03_1843.mp3", - "audioMeaning": "files/03_1843_meaning.mp3", - "audioExample": "files/03_1843_example.mp3", - "textMeaning": "A barn is a large farm building that houses crops, equipment, and animals.", - "textExample": "My grandparents keep hay in their red barn.", - "transcription": "[baːrn]", - "__v": 0, - "textExampleTranslate": "Мои бабушка и дедушка держат сено в своем красном сарае", - "textMeaningTranslate": "Амбар - это большое сельскохозяйственное здание, в котором содержатся сельскохозяйственные культуры, оборудование и животные", - "wordTranslate": "сарай" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbd4" - }, - "group": 3, - "page": 2, - "word": "Catholic", - "image": "files/03_1846.jpg", - "audio": "files/03_1846.mp3", - "audioMeaning": "files/03_1846_meaning.mp3", - "audioExample": "files/03_1846_example.mp3", - "textMeaning": "A Catholic thing or person is one that is connected with the Roman Catholic Church.", - "textExample": "Rosanne is Catholic, so she goes to church every Sunday.", - "transcription": "[kǽθəlik]", - "__v": 0, - "textExampleTranslate": "Розанна католичка, поэтому она ходит в церковь каждое воскресенье", - "textMeaningTranslate": "Католическая вещь или человек - это та, которая связана с римско-католической церковью", - "wordTranslate": "католический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbd5" - }, - "group": 3, - "page": 2, - "word": "Bible", - "image": "files/03_1845.jpg", - "audio": "files/03_1845.mp3", - "audioMeaning": "files/03_1845_meaning.mp3", - "audioExample": "files/03_1845_example.mp3", - "textMeaning": "The Bible is the book of sacred writing in the Christian religion.", - "textExample": "I read the Bible every night before I go to sleep.", - "transcription": "[báibl]", - "__v": 0, - "textExampleTranslate": "Я читаю Библию каждую ночь перед сном", - "textMeaningTranslate": "Библия - это книга священного письма в христианской религии", - "wordTranslate": "библия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbd6" - }, - "group": 3, - "page": 2, - "word": "detain", - "image": "files/03_1848.jpg", - "audio": "files/03_1848.mp3", - "audioMeaning": "files/03_1848_meaning.mp3", - "audioExample": "files/03_1848_example.mp3", - "textMeaning": "To detain is to officially prevent someone from leaving a place.", - "textExample": "The police had to detain the thief for shoplifting.", - "transcription": "[ditéin]", - "__v": 0, - "textExampleTranslate": "Полиции пришлось задержать вора за кражу в магазине", - "textMeaningTranslate": "Задержать - значит официально помешать кому-либо покинуть место", - "wordTranslate": "задержать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbd8" - }, - "group": 3, - "page": 2, - "word": "flee", - "image": "files/03_1851.jpg", - "audio": "files/03_1851.mp3", - "audioMeaning": "files/03_1851_meaning.mp3", - "audioExample": "files/03_1851_example.mp3", - "textMeaning": "To flee is to leave somewhere very quickly in order to escape from danger.", - "textExample": "When a predator approaches a deer, the deer will flee.", - "transcription": "[fiː]", - "__v": 0, - "textExampleTranslate": "Когда хищник приближается к оленю, олень убежит", - "textMeaningTranslate": "Бежать значит уйти куда-то очень быстро, чтобы избежать опасности", - "wordTranslate": "бежать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbd7" - }, - "group": 3, - "page": 2, - "word": "cooperate", - "image": "files/03_1847.jpg", - "audio": "files/03_1847.mp3", - "audioMeaning": "files/03_1847_meaning.mp3", - "audioExample": "files/03_1847_example.mp3", - "textMeaning": "To cooperate is to work with someone to achieve something that you both want.", - "textExample": "The members of the team agreed to cooperate in order to get the project done.", - "transcription": "[kouάpərèit]", - "__v": 0, - "textExampleTranslate": "Члены команды согласились сотрудничать, чтобы завершить проект", - "textMeaningTranslate": "Сотрудничать - значит работать с кем-то, чтобы достичь того, чего вы оба хотите", - "wordTranslate": "сотрудничать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbd9" - }, - "group": 3, - "page": 2, - "word": "exit", - "image": "files/03_1849.jpg", - "audio": "files/03_1849.mp3", - "audioMeaning": "files/03_1849_meaning.mp3", - "audioExample": "files/03_1849_example.mp3", - "textMeaning": "An exit is something that is used as a way to get out of a place.", - "textExample": "The green sign shows where the exit is located.", - "transcription": "[égzit]", - "__v": 0, - "textExampleTranslate": "Зеленый знак показывает, где находится выход", - "textMeaningTranslate": "Выход - это то, что используется как способ убраться с места", - "wordTranslate": "выход" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbda" - }, - "group": 3, - "page": 2, - "word": "exceptional", - "image": "files/03_1850.jpg", - "audio": "files/03_1850.mp3", - "audioMeaning": "files/03_1850_meaning.mp3", - "audioExample": "files/03_1850_example.mp3", - "textMeaning": "An exceptional thing or person is one that is outstanding.", - "textExample": "Holly is an exceptional student.", - "transcription": "[iksépʃənl]", - "__v": 0, - "textExampleTranslate": "Холли - исключительная ученица", - "textMeaningTranslate": "Исключительная вещь или человек - это то, что является выдающимся", - "wordTranslate": "исключительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbdb" - }, - "group": 3, - "page": 2, - "word": "network", - "image": "files/03_1852.jpg", - "audio": "files/03_1852.mp3", - "audioMeaning": "files/03_1852_meaning.mp3", - "audioExample": "files/03_1852_example.mp3", - "textMeaning": "A network is a group of people or organizations that are in some way connected to each other.", - "textExample": "Lesley is part of a volunteer network that plants trees in the city.", - "transcription": "[nétwə̀ːrk]", - "__v": 0, - "textExampleTranslate": "Лесли является частью сети добровольцев, которая сажает деревья в городе", - "textMeaningTranslate": "Сеть - это группа людей или организаций, которые каким-то образом связаны друг с другом", - "wordTranslate": "сеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbdc" - }, - "group": 3, - "page": 2, - "word": "outrage", - "image": "files/03_1853.jpg", - "audio": "files/03_1853.mp3", - "audioMeaning": "files/03_1853_meaning.mp3", - "audioExample": "files/03_1853_example.mp3", - "textMeaning": "To outrage is to make someone feel very angry or shocked.", - "textExample": "He was outraged when his proposal was turned down.", - "transcription": "[áutreidʒ]", - "__v": 0, - "textExampleTranslate": "Он был возмущен, когда его предложение было отклонено", - "textMeaningTranslate": "Возмущать - значит заставлять кого-то чувствовать себя очень злым или шокированным", - "wordTranslate": "безобразие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbdd" - }, - "group": 3, - "page": 2, - "word": "passage", - "image": "files/03_1855.jpg", - "audio": "files/03_1855.mp3", - "audioMeaning": "files/03_1855_meaning.mp3", - "audioExample": "files/03_1855_example.mp3", - "textMeaning": "A passage is a narrow space that people can move through.", - "textExample": "Follow the passage down the stairs.", - "transcription": "[pǽsidʒ]", - "__v": 0, - "textExampleTranslate": "Следуйте по проходу вниз по лестнице", - "textMeaningTranslate": "Проход - это узкое пространство, через которое люди могут двигаться", - "wordTranslate": "проход" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbde" - }, - "group": 3, - "page": 2, - "word": "parish", - "image": "files/03_1854.jpg", - "audio": "files/03_1854.mp3", - "audioMeaning": "files/03_1854_meaning.mp3", - "audioExample": "files/03_1854_example.mp3", - "textMeaning": "A parish is the area for which a priest in some Christian churches is responsible.", - "textExample": "Greg’s parish has grown over the past year.", - "transcription": "[pǽriʃ]", - "__v": 0, - "textExampleTranslate": "Приход Грега вырос за последний год", - "textMeaningTranslate": "Приход - это область, за которую отвечает священник в некоторых христианских церквях", - "wordTranslate": "приход" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbdf" - }, - "group": 3, - "page": 2, - "word": "pastor", - "image": "files/03_1856.jpg", - "audio": "files/03_1856.mp3", - "audioMeaning": "files/03_1856_meaning.mp3", - "audioExample": "files/03_1856_example.mp3", - "textMeaning": "A pastor is a minister in charge of a parish or church.", - "textExample": "The pastor speaks to the members of the church.", - "transcription": "[pǽstər]", - "__v": 0, - "textExampleTranslate": "Пастор говорит с членами церкви", - "textMeaningTranslate": "Пастор - это служитель, отвечающий за приход или церковь", - "wordTranslate": "пастор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbe0" - }, - "group": 3, - "page": 2, - "word": "patrol", - "image": "files/03_1857.jpg", - "audio": "files/03_1857.mp3", - "audioMeaning": "files/03_1857_meaning.mp3", - "audioExample": "files/03_1857_example.mp3", - "textMeaning": "A patrol is a group of people or vehicles that go through an area to make sure that it is free of trouble or danger.", - "textExample": "The military patrol is responsible for keeping the area safe.", - "transcription": "[pətróul]", - "__v": 0, - "textExampleTranslate": "Военный патруль несет ответственность за безопасность района", - "textMeaningTranslate": "Патруль - это группа людей или транспортных средств, которые проезжают через территорию, чтобы убедиться, что на ней нет проблем или опасности", - "wordTranslate": "патруль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbe1" - }, - "group": 3, - "page": 2, - "word": "raid", - "image": "files/03_1858.jpg", - "audio": "files/03_1858.mp3", - "audioMeaning": "files/03_1858_meaning.mp3", - "audioExample": "files/03_1858_example.mp3", - "textMeaning": "To raid is to attack a place in a short time in order to cause damage.", - "textExample": "The soldiers are looking for the people who continue to raid the jungle villages.", - "transcription": "[reid]", - "__v": 0, - "textExampleTranslate": "Солдаты ищут людей, которые продолжают совершать набеги на деревни джунглей", - "textMeaningTranslate": "Чтобы совершить набег, нужно атаковать место за короткое время, чтобы нанести урон", - "wordTranslate": "рейд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbe2" - }, - "group": 3, - "page": 2, - "word": "rail", - "image": "files/03_1859.jpg", - "audio": "files/03_1859.mp3", - "audioMeaning": "files/03_1859_meaning.mp3", - "audioExample": "files/03_1859_example.mp3", - "textMeaning": "A rail is a system of tracks on which trains travel.", - "textExample": "I prefer traveling by rail because it’s more convenient than driving through traffic.", - "transcription": "[reil]", - "__v": 0, - "textExampleTranslate": "Я предпочитаю путешествовать по железной дороге, потому что это удобнее, чем ехать в пробках", - "textMeaningTranslate": "Рельс - это система путей, по которым движутся поезда", - "wordTranslate": "рельсы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbe3" - }, - "group": 3, - "page": 2, - "word": "tunnel", - "image": "files/03_1860.jpg", - "audio": "files/03_1860.mp3", - "audioMeaning": "files/03_1860_meaning.mp3", - "audioExample": "files/03_1860_example.mp3", - "textMeaning": "A tunnel is an underground passage for cars, trains, etc. to go through.", - "textExample": "The tunnel will lead you to the next city.", - "transcription": "[tΛnl]", - "__v": 0, - "textExampleTranslate": "Туннель приведет вас в следующий город", - "textMeaningTranslate": "Туннель - это подземный переход, через который проходят машины, поезда и т. Д", - "wordTranslate": "туннель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbe4" - }, - "group": 3, - "page": 3, - "word": "comfortable", - "image": "files/04_1861.jpg", - "audio": "files/04_1861.mp3", - "audioMeaning": "files/04_1861_meaning.mp3", - "audioExample": "files/04_1861_example.mp3", - "textMeaning": "When something is comfortable, it makes you feel relaxed, confident, and not worried.", - "textExample": "Will loves his comfortable new sofa.", - "transcription": "[kΛmfərtəbl]", - "__v": 0, - "textExampleTranslate": "Уилл любит свой новый удобный диван", - "textMeaningTranslate": "Когда что-то удобно, это заставляет вас чувствовать себя спокойно, уверенно и не беспокоиться", - "wordTranslate": "комфортно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbe5" - }, - "group": 3, - "page": 3, - "word": "education", - "image": "files/04_1862.jpg", - "audio": "files/04_1862.mp3", - "audioMeaning": "files/04_1862_meaning.mp3", - "audioExample": "files/04_1862_example.mp3", - "textMeaning": "Education is the process of teaching and learning, usually at a school, college, or university.", - "textExample": "These students are receiving their education at a private school.", - "transcription": "[èdʒukéiʃən]", - "__v": 0, - "textExampleTranslate": "Эти студенты получают образование в частной школе", - "textMeaningTranslate": "Образование - это процесс преподавания и обучения, обычно в школе, колледже или университете", - "wordTranslate": "образование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbe6" - }, - "group": 3, - "page": 3, - "word": "encouragement", - "image": "files/04_1863.jpg", - "audio": "files/04_1863.mp3", - "audioMeaning": "files/04_1863_meaning.mp3", - "audioExample": "files/04_1863_example.mp3", - "textMeaning": "Encouragement is something that makes someone more determined, hopeful, or confident.", - "textExample": "The mother gives constant encouragement to her son.", - "transcription": "[inkə́ːridʒmənt]", - "__v": 0, - "textExampleTranslate": "Мать постоянно поддерживает сына", - "textMeaningTranslate": "Поощрение - это то, что делает кого-то более решительным, обнадеживающим или уверенным в себе", - "wordTranslate": "поощрение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbe7" - }, - "group": 3, - "page": 3, - "word": "endorse", - "image": "files/04_1864.jpg", - "audio": "files/04_1864.mp3", - "audioMeaning": "files/04_1864_meaning.mp3", - "audioExample": "files/04_1864_example.mp3", - "textMeaning": "To endorse is to express formal support or approval for someone or something.", - "textExample": "The committee will endorse their leader for the upcoming election.", - "transcription": "[indɔ́ːrs]", - "__v": 0, - "textExampleTranslate": "Комитет утвердит своего лидера на предстоящих выборах", - "textMeaningTranslate": "Одобрить означает выразить официальную поддержку или одобрение для кого-то или чего-то", - "wordTranslate": "одобрить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbe8" - }, - "group": 3, - "page": 3, - "word": "equal", - "image": "files/04_1865.jpg", - "audio": "files/04_1865.mp3", - "audioMeaning": "files/04_1865_meaning.mp3", - "audioExample": "files/04_1865_example.mp3", - "textMeaning": "When something is equal, it is the same in size, number, amount, or value as something else.", - "textExample": "The apple and orange are equal in weight.", - "transcription": "[íːkwəl]", - "__v": 0, - "textExampleTranslate": "Яблоко и апельсин равны по весу", - "textMeaningTranslate": "Когда что-то равно, оно такое же по размеру, количеству, количеству или стоимости, как что-то еще", - "wordTranslate": "равно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbe9" - }, - "group": 3, - "page": 3, - "word": "field", - "image": "files/04_1867.jpg", - "audio": "files/04_1867.mp3", - "audioMeaning": "files/04_1867_meaning.mp3", - "audioExample": "files/04_1867_example.mp3", - "textMeaning": "A field is a subject that people study or an area of activity that they are involved in as part of their work.", - "textExample": "Jane works in the healthcare field.", - "transcription": "[fiːld]", - "__v": 0, - "textExampleTranslate": "Джейн работает в сфере здравоохранения", - "textMeaningTranslate": "Область - это предмет, который изучают люди, или область деятельности, в которую они вовлечены как часть своей работы", - "wordTranslate": "поле" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbea" - }, - "group": 3, - "page": 3, - "word": "face", - "image": "files/04_1866.jpg", - "audio": "files/04_1866.mp3", - "audioMeaning": "files/04_1866_meaning.mp3", - "audioExample": "files/04_1866_example.mp3", - "textMeaning": "To face is to deal with something in a direct way.", - "textExample": "Justin will face many challenges at work.", - "transcription": "[feis]", - "__v": 0, - "textExampleTranslate": "Джастин столкнется со многими проблемами на работе", - "textMeaningTranslate": "Быть лицом к лицу - значит иметь дело с чем-то прямым", - "wordTranslate": "лицо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbeb" - }, - "group": 3, - "page": 3, - "word": "foster", - "image": "files/04_1868.jpg", - "audio": "files/04_1868.mp3", - "audioMeaning": "files/04_1868_meaning.mp3", - "audioExample": "files/04_1868_example.mp3", - "textMeaning": "To foster is to help a skill, feeling, or idea develop over a period of time.", - "textExample": "The afterschool program is designed to foster a sense of community at school.", - "transcription": "[fɔ́ːstər]", - "__v": 0, - "textExampleTranslate": "Программа послешкольного обучения предназначена для развития чувства общности в школе", - "textMeaningTranslate": "Воспитывать - значит помогать развитию навыков, чувств или идей в течение определенного периода времени", - "wordTranslate": "содействовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbec" - }, - "group": 3, - "page": 3, - "word": "guidance", - "image": "files/04_1869.jpg", - "audio": "files/04_1869.mp3", - "audioMeaning": "files/04_1869_meaning.mp3", - "audioExample": "files/04_1869_example.mp3", - "textMeaning": "Guidance is help and advice that is given to someone about their work, education, or personal life.", - "textExample": "Ms. Smith provided valuable guidance to all her students.", - "transcription": "[gáidns]", - "__v": 0, - "textExampleTranslate": "Г-жа Смит дала ценные советы всем своим ученикам", - "textMeaningTranslate": "Руководство - это помощь и совет, которые даются кому-либо об их работе, образовании или личной жизни", - "wordTranslate": "руководство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbed" - }, - "group": 3, - "page": 3, - "word": "hold", - "image": "files/04_1870.jpg", - "audio": "files/04_1870.mp3", - "audioMeaning": "files/04_1870_meaning.mp3", - "audioExample": "files/04_1870_example.mp3", - "textMeaning": "To hold is to have a particular degree, title, record, job, or position.", - "textExample": "Damian will soon hold a degree in business administration.", - "transcription": "[hould]", - "__v": 0, - "textExampleTranslate": "Дамиан скоро получит степень в области делового администрирования", - "textMeaningTranslate": "Держаться - значит иметь определенную степень, звание, запись, должность или должность", - "wordTranslate": "держать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbee" - }, - "group": 3, - "page": 3, - "word": "inclusion", - "image": "files/04_1871.jpg", - "audio": "files/04_1871.mp3", - "audioMeaning": "files/04_1871_meaning.mp3", - "audioExample": "files/04_1871_example.mp3", - "textMeaning": "Inclusion is the act of including someone or something in a larger group or set.", - "textExample": "The school promotes the inclusion of parents in their students’ education.", - "transcription": "[inklúːʒən]", - "__v": 0, - "textExampleTranslate": "Школа способствует включению родителей в образование своих учеников", - "textMeaningTranslate": "Включение - это акт включения кого-то или чего-либо в большую группу или группу", - "wordTranslate": "включение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbef" - }, - "group": 3, - "page": 3, - "word": "inspire", - "image": "files/04_1872.jpg", - "audio": "files/04_1872.mp3", - "audioMeaning": "files/04_1872_meaning.mp3", - "audioExample": "files/04_1872_example.mp3", - "textMeaning": "To inspire is to encourage someone by making them feel confident and eager to do something.", - "textExample": "Jim’s father likes to inspire his son by encouraging him to follow his dream.", - "transcription": "[inspáiər]", - "__v": 0, - "textExampleTranslate": "Отец Джима любит вдохновлять сына, побуждая его следовать своей мечте", - "textMeaningTranslate": "Вдохновлять - значит вдохновлять кого-то, заставляя его чувствовать себя уверенно и стремиться что-то сделать", - "wordTranslate": "вдохновлять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbf0" - }, - "group": 3, - "page": 3, - "word": "mere", - "image": "files/04_1873.jpg", - "audio": "files/04_1873.mp3", - "audioMeaning": "files/04_1873_meaning.mp3", - "audioExample": "files/04_1873_example.mp3", - "textMeaning": "Mere is used to emphasize how small or unimportant something or someone is.", - "textExample": "Scott lost the race by a mere two seconds.", - "transcription": "[miər]", - "__v": 0, - "textExampleTranslate": "Скотт проиграл гонку всего за две секунды", - "textMeaningTranslate": "Просто используется, чтобы подчеркнуть, насколько маленьким или неважным является что-то или кто-то", - "wordTranslate": "всего лишь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbf1" - }, - "group": 3, - "page": 3, - "word": "position", - "image": "files/04_1874.jpg", - "audio": "files/04_1874.mp3", - "audioMeaning": "files/04_1874_meaning.mp3", - "audioExample": "files/04_1874_example.mp3", - "textMeaning": "A position is a rank or role of someone in an organization or company.", - "textExample": "Kyle is interviewing for a marketing position.", - "transcription": "[pəzíʃən]", - "__v": 0, - "textExampleTranslate": "Кайл проводит собеседование на маркетинговую позицию", - "textMeaningTranslate": "Должность - это звание или роль кого-либо в организации или компании", - "wordTranslate": "должность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbf2" - }, - "group": 3, - "page": 3, - "word": "power", - "image": "files/04_1875.jpg", - "audio": "files/04_1875.mp3", - "audioMeaning": "files/04_1875_meaning.mp3", - "audioExample": "files/04_1875_example.mp3", - "textMeaning": "Power is the ability to influence people or give them strong feelings.", - "textExample": "The coach has the power to keep the players from playing if they don’t show up to practice.", - "transcription": "[páuər]", - "__v": 0, - "textExampleTranslate": "Тренер может удержать игроков от игры, если они не появятся на тренировке", - "textMeaningTranslate": "Власть - это способность влиять на людей или давать им сильные чувства", - "wordTranslate": "сила" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbf3" - }, - "group": 3, - "page": 3, - "word": "responsibility", - "image": "files/04_1876.jpg", - "audio": "files/04_1876.mp3", - "audioMeaning": "files/04_1876_meaning.mp3", - "audioExample": "files/04_1876_example.mp3", - "textMeaning": "Responsibility is a task or duty that you are expected or required to do.", - "textExample": "Parents have the responsibility to raise their children with love.", - "transcription": "[rispὰnsəbíləti]", - "__v": 0, - "textExampleTranslate": "Родители обязаны воспитывать своих детей с любовью", - "textMeaningTranslate": "Ответственность - это задача или обязанность, которую вы ожидаете или должны выполнять", - "wordTranslate": "обязанность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbf4" - }, - "group": 3, - "page": 3, - "word": "soar", - "image": "files/04_1877.jpg", - "audio": "files/04_1877.mp3", - "audioMeaning": "files/04_1877_meaning.mp3", - "audioExample": "files/04_1877_example.mp3", - "textMeaning": "To soar is to increase quickly to a high level.", - "textExample": "The temperature today will soar to a high of 100 degrees Fahrenheit.", - "transcription": "[sɔːr]", - "__v": 0, - "textExampleTranslate": "Температура сегодня взлетит до 100 градусов по Фаренгейту", - "textMeaningTranslate": "Парить - значит быстро увеличиваться до высокого уровня", - "wordTranslate": "парить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbf5" - }, - "group": 3, - "page": 3, - "word": "tool", - "image": "files/04_1878.jpg", - "audio": "files/04_1878.mp3", - "audioMeaning": "files/04_1878_meaning.mp3", - "audioExample": "files/04_1878_example.mp3", - "textMeaning": "A tool is a piece of equipment or a skill that is useful for doing your job.", - "textExample": "Presentation skills are an important tool for communication.", - "transcription": "[tuːl]", - "__v": 0, - "textExampleTranslate": "Навыки презентации - важный инструмент для общения", - "textMeaningTranslate": "Инструмент - это часть оборудования или навык, который полезен для выполнения вашей работы", - "wordTranslate": "орудие труда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbf6" - }, - "group": 3, - "page": 3, - "word": "vocal", - "image": "files/04_1879.jpg", - "audio": "files/04_1879.mp3", - "audioMeaning": "files/04_1879_meaning.mp3", - "audioExample": "files/04_1879_example.mp3", - "textMeaning": "When someone is vocal, he or she expresses a strong opinion publicly.", - "textExample": "Shawn gets vocal when someone disagrees with his opinions.", - "transcription": "[vóukəl]", - "__v": 0, - "textExampleTranslate": "Шон получает вокал, когда кто-то не согласен с его мнением", - "textMeaningTranslate": "Когда кто-то вокальный, он или она выражает твердое мнение публично", - "wordTranslate": "вокал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbf7" - }, - "group": 3, - "page": 3, - "word": "workplace", - "image": "files/04_1880.jpg", - "audio": "files/04_1880.mp3", - "audioMeaning": "files/04_1880_meaning.mp3", - "audioExample": "files/04_1880_example.mp3", - "textMeaning": "A workplace is the room or building where you work.", - "textExample": "Diversity is important in the workplace.", - "transcription": "[wəːrkpleis]", - "__v": 0, - "textExampleTranslate": "Разнообразие важно на рабочем месте", - "textMeaningTranslate": "Рабочее место - это комната или здание, где вы работаете", - "wordTranslate": "рабочее место" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbf8" - }, - "group": 3, - "page": 4, - "word": "academic", - "image": "files/05_1881.jpg", - "audio": "files/05_1881.mp3", - "audioMeaning": "files/05_1881_meaning.mp3", - "audioExample": "files/05_1881_example.mp3", - "textMeaning": "When something is academic, it relates to schools and education.", - "textExample": "Alex received an award for his academic achievements.", - "transcription": "[ӕkədémik]", - "__v": 0, - "textExampleTranslate": "Алекс получил награду за свои академические достижения", - "textMeaningTranslate": "Когда что-то является академическим, это касается школ и образования", - "wordTranslate": "академический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbf9" - }, - "group": 3, - "page": 4, - "word": "acceptance", - "image": "files/05_1882.jpg", - "audio": "files/05_1882.mp3", - "audioMeaning": "files/05_1882_meaning.mp3", - "audioExample": "files/05_1882_example.mp3", - "textMeaning": "Acceptance is when people agree that an idea, statement, explanation, etc., is right or true.", - "textExample": "Mr. Song celebrated his acceptance into the political party.", - "transcription": "[əkséptəns]", - "__v": 0, - "textExampleTranslate": "Мистер Сонг отметил свое принятие в политическую партию", - "textMeaningTranslate": "Признание - это когда люди соглашаются с тем, что идея, утверждение, объяснение и т. Д. Правильные или истинные", - "wordTranslate": "принятие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbfa" - }, - "group": 3, - "page": 4, - "word": "array", - "image": "files/05_1883.jpg", - "audio": "files/05_1883.mp3", - "audioMeaning": "files/05_1883_meaning.mp3", - "audioExample": "files/05_1883_example.mp3", - "textMeaning": "An array is a large group or number of things.", - "textExample": "The toy cars are available in an array of colors.", - "transcription": "[əréi]", - "__v": 0, - "textExampleTranslate": "Игрушечные машины доступны во множестве цветов", - "textMeaningTranslate": "Массив - это большая группа или количество вещей", - "wordTranslate": "массив" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbfb" - }, - "group": 3, - "page": 4, - "word": "blur", - "image": "files/05_1884.jpg", - "audio": "files/05_1884.mp3", - "audioMeaning": "files/05_1884_meaning.mp3", - "audioExample": "files/05_1884_example.mp3", - "textMeaning": "To blur is to make something unclear or difficult to see or remember.", - "textExample": "The photographer can blur the bright lights into the background.", - "transcription": "[bləːr]", - "__v": 0, - "textExampleTranslate": "Фотограф может размыть яркие огни на заднем плане", - "textMeaningTranslate": "Размыть - значит сделать что-то неясным или трудно увидеть или запомнить", - "wordTranslate": "размытость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbfc" - }, - "group": 3, - "page": 4, - "word": "café", - "image": "files/05_1885.jpg", - "audio": "files/05_1885.mp3", - "audioMeaning": "files/05_1885_meaning.mp3", - "audioExample": "files/05_1885_example.mp3", - "textMeaning": "A café is a small restaurant where you can buy drinks and simple meals.", - "textExample": "Monica works part-time at a café.", - "transcription": "[kæféi]", - "__v": 0, - "textExampleTranslate": "Моника работает неполный рабочий день в кафе", - "textMeaningTranslate": "Кафе - это небольшой ресторан, где можно купить напитки и простые блюда", - "wordTranslate": "кафе" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbfd" - }, - "group": 3, - "page": 4, - "word": "canvas", - "image": "files/05_1886.jpg", - "audio": "files/05_1886.mp3", - "audioMeaning": "files/05_1886_meaning.mp3", - "audioExample": "files/05_1886_example.mp3", - "textMeaning": "A canvas is a thick piece of cloth that artists use to paint on.", - "textExample": "The artist paints bright colors on a canvas.", - "transcription": "[kǽnvəs]", - "__v": 0, - "textExampleTranslate": "Художник рисует яркие краски на холсте", - "textMeaningTranslate": "Холст - это толстый кусок ткани, на котором художники рисуют", - "wordTranslate": "холст" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbfe" - }, - "group": 3, - "page": 4, - "word": "cinema", - "image": "files/05_1887.jpg", - "audio": "files/05_1887.mp3", - "audioMeaning": "files/05_1887_meaning.mp3", - "audioExample": "files/05_1887_example.mp3", - "textMeaning": "A cinema is a building in which films are shown.", - "textExample": "My sister enjoys watching movies at the cinema.", - "transcription": "[sínəmə]", - "__v": 0, - "textExampleTranslate": "Моя сестра любит смотреть фильмы в кино", - "textMeaningTranslate": "Кинотеатр - это здание, в котором показывают фильмы", - "wordTranslate": "кинотеатр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afbff" - }, - "group": 3, - "page": 4, - "word": "class", - "image": "files/05_1888.jpg", - "audio": "files/05_1888.mp3", - "audioMeaning": "files/05_1888_meaning.mp3", - "audioExample": "files/05_1888_example.mp3", - "textMeaning": "Class is the way people in society are divided into different social and economic groups.", - "textExample": "This upper-class family travels on a private jet.", - "transcription": "[klæs]", - "__v": 0, - "textExampleTranslate": "Эта семья высшего класса путешествует на частном самолете", - "textMeaningTranslate": "Класс - это способ разделения людей в обществе на различные социальные и экономические группы", - "wordTranslate": "учебный класс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc00" - }, - "group": 3, - "page": 4, - "word": "distinctive", - "image": "files/05_1889.jpg", - "audio": "files/05_1889.mp3", - "audioMeaning": "files/05_1889_meaning.mp3", - "audioExample": "files/05_1889_example.mp3", - "textMeaning": "When something is distinctive, it has a special quality, character, or appearance that is different and easy to recognize.", - "textExample": "Olives have a distinctive flavor.", - "transcription": "[distíŋktiv]", - "__v": 0, - "textExampleTranslate": "Оливки имеют отличительный вкус", - "textMeaningTranslate": "Когда что-то является отличительным, оно обладает особым качеством, характером или внешним видом, которое отличается от других и его легко узнать", - "wordTranslate": "отличительная" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc01" - }, - "group": 3, - "page": 4, - "word": "key", - "image": "files/05_1890.jpg", - "audio": "files/05_1890.mp3", - "audioMeaning": "files/05_1890_meaning.mp3", - "audioExample": "files/05_1890_example.mp3", - "textMeaning": "When something is key, it is extremely important.", - "textExample": "Marco is a key player on the country’s national team.", - "transcription": "[kiː]", - "__v": 0, - "textExampleTranslate": "Марко - ключевой игрок сборной страны", - "textMeaningTranslate": "Когда что-то является ключевым, это чрезвычайно важно", - "wordTranslate": "ключ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc02" - }, - "group": 3, - "page": 4, - "word": "movement", - "image": "files/05_1891.jpg", - "audio": "files/05_1891.mp3", - "audioMeaning": "files/05_1891_meaning.mp3", - "audioExample": "files/05_1891_example.mp3", - "textMeaning": "A movement is a series of organized activities in which people work together to do or achieve something.", - "textExample": "Booker T. Washington was a member of the civil rights movement.", - "transcription": "[múːvmənt]", - "__v": 0, - "textExampleTranslate": "Букер Т. Вашингтон был членом движения за гражданские права", - "textMeaningTranslate": "Движение - это серия организованных действий, в которых люди работают вместе, чтобы что-то сделать или чего-то достичь", - "wordTranslate": "движение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc03" - }, - "group": 3, - "page": 4, - "word": "practice", - "image": "files/05_1892.jpg", - "audio": "files/05_1892.mp3", - "audioMeaning": "files/05_1892_meaning.mp3", - "audioExample": "files/05_1892_example.mp3", - "textMeaning": "A practice is something that is done often or regularly.", - "textExample": "Samuel has made it a practice to read the newspaper every morning.", - "transcription": "[prǽktis]", - "__v": 0, - "textExampleTranslate": "Самуил сделал практику читать газету каждое утро", - "textMeaningTranslate": "Практика - это то, что делается часто или регулярно", - "wordTranslate": "практика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc04" - }, - "group": 3, - "page": 4, - "word": "realistic", - "image": "files/05_1893.jpg", - "audio": "files/05_1893.mp3", - "audioMeaning": "files/05_1893_meaning.mp3", - "audioExample": "files/05_1893_example.mp3", - "textMeaning": "When something is realistic, it is shown as it is in real life.", - "textExample": "Dorothy is painting realistic images of fish.", - "transcription": "[rìːəlístik]", - "__v": 0, - "textExampleTranslate": "Дороти рисует реалистичные изображения рыб", - "textMeaningTranslate": "Когда что-то реалистично, это проявляется в реальной жизни", - "wordTranslate": "реалистичный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc05" - }, - "group": 3, - "page": 4, - "word": "reflection", - "image": "files/05_1894.jpg", - "audio": "files/05_1894.mp3", - "audioMeaning": "files/05_1894_meaning.mp3", - "audioExample": "files/05_1894_example.mp3", - "textMeaning": "A reflection is an image that is seen in a mirror or other shiny surface.", - "textExample": "The man stared at his reflection in the mirror.", - "transcription": "[rifékʃən]", - "__v": 0, - "textExampleTranslate": "Человек уставился на свое отражение в зеркале", - "textMeaningTranslate": "Отражение - это изображение, которое видно в зеркале или другой блестящей поверхности", - "wordTranslate": "отражение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc06" - }, - "group": 3, - "page": 4, - "word": "rule", - "image": "files/05_1895.jpg", - "audio": "files/05_1895.mp3", - "audioMeaning": "files/05_1895_meaning.mp3", - "audioExample": "files/05_1895_example.mp3", - "textMeaning": "A rule is an official instruction that says how things must be done or what is allowed.", - "textExample": "Wearing a helmet while riding a bicycle is a rule in some cities.", - "transcription": "[ruːl]", - "__v": 0, - "textExampleTranslate": "Ношение шлема во время езды на велосипеде является правилом в некоторых городах", - "textMeaningTranslate": "Правило - это официальная инструкция, в которой говорится, как все должно быть сделано или что разрешено", - "wordTranslate": "правило" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc07" - }, - "group": 3, - "page": 4, - "word": "stroke", - "image": "files/05_1896.jpg", - "audio": "files/05_1896.mp3", - "audioMeaning": "files/05_1896_meaning.mp3", - "audioExample": "files/05_1896_example.mp3", - "textMeaning": "A stroke is a single movement of a pen or brush when you are writing or painting.", - "textExample": "The artist began with a yellow stroke on his painting.", - "transcription": "[strouk]", - "__v": 0, - "textExampleTranslate": "Художник начал с желтого мазка на своей картине", - "textMeaningTranslate": "Штрих - это одно движение ручки или кисти, когда вы пишете или рисуете", - "wordTranslate": "инсульт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc08" - }, - "group": 3, - "page": 4, - "word": "sunlight", - "image": "files/05_1897.jpg", - "audio": "files/05_1897.mp3", - "audioMeaning": "files/05_1897_meaning.mp3", - "audioExample": "files/05_1897_example.mp3", - "textMeaning": "Sunlight is the natural light that comes from the sun.", - "textExample": "The sunlight shines through the trees.", - "transcription": "[sʌnlait]", - "__v": 0, - "textExampleTranslate": "Солнечный свет светит сквозь деревья", - "textMeaningTranslate": "Солнечный свет - это естественный свет, который исходит от солнца", - "wordTranslate": "солнечный лучик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc09" - }, - "group": 3, - "page": 4, - "word": "traditional", - "image": "files/05_1898.jpg", - "audio": "files/05_1898.mp3", - "audioMeaning": "files/05_1898_meaning.mp3", - "audioExample": "files/05_1898_example.mp3", - "textMeaning": "When something is traditional, it is based on old-fashioned ideas.", - "textExample": "I prefer traditional furniture.", - "transcription": "[trədíʃənl]", - "__v": 0, - "textExampleTranslate": "Я предпочитаю традиционную мебель", - "textMeaningTranslate": "Когда что-то является традиционным, оно основано на старомодных идеях", - "wordTranslate": "традиционные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc0a" - }, - "group": 3, - "page": 4, - "word": "unlike", - "image": "files/05_1899.jpg", - "audio": "files/05_1899.mp3", - "audioMeaning": "files/05_1899_meaning.mp3", - "audioExample": "files/05_1899_example.mp3", - "textMeaning": "Unlike is used in place of “completely different from a particular person or thing.”", - "textExample": "Unlike his older brother, Jim is short.", - "transcription": "[ənlaik]", - "__v": 0, - "textExampleTranslate": "В отличие от своего старшего брата, Джим короткий", - "textMeaningTranslate": "'В отличие от' используется вместо 'полностью отличается от конкретного человека или вещи'", - "wordTranslate": "в отличие от" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc0d" - }, - "group": 3, - "page": 5, - "word": "beyond", - "image": "files/06_1902.jpg", - "audio": "files/06_1902.mp3", - "audioMeaning": "files/06_1902_meaning.mp3", - "audioExample": "files/06_1902_example.mp3", - "textMeaning": "Beyond is used to say that one thing is more than another.", - "textExample": "The job is beyond the man’s ability.", - "transcription": "[biάnd]", - "__v": 0, - "textExampleTranslate": "Работа вне возможностей человека", - "textMeaningTranslate": "За пределами говорят, что одно больше другого", - "wordTranslate": "за" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc0c" - }, - "group": 3, - "page": 5, - "word": "anthem", - "image": "files/06_1901.jpg", - "audio": "files/06_1901.mp3", - "audioMeaning": "files/06_1901_meaning.mp3", - "audioExample": "files/06_1901_example.mp3", - "textMeaning": "An anthem is a formal or religious song.", - "textExample": "Everyone sings the national anthem before the baseball game starts.", - "transcription": "[ǽnθəm]", - "__v": 0, - "textExampleTranslate": "Все поют гимн перед началом игры в бейсбол", - "textMeaningTranslate": "Гимн - это официальная или религиозная песня", - "wordTranslate": "гимн" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc0f" - }, - "group": 3, - "page": 5, - "word": "fighting", - "image": "files/06_1904.jpg", - "audio": "files/06_1904.mp3", - "audioMeaning": "files/06_1904_meaning.mp3", - "audioExample": "files/06_1904_example.mp3", - "textMeaning": "Fighting is physical conflict between people or groups in a war, in the street, etc.", - "textExample": "Heavy fighting continued for days.", - "transcription": "[fáitiŋ]", - "__v": 0, - "textExampleTranslate": "Тяжелые бои продолжались несколько дней", - "textMeaningTranslate": "Борьба - это физический конфликт между людьми или группами во время войны, на улице и т. Д", - "wordTranslate": "борьба" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc0b" - }, - "group": 3, - "page": 4, - "word": "width", - "image": "files/05_1900.jpg", - "audio": "files/05_1900.mp3", - "audioMeaning": "files/05_1900_meaning.mp3", - "audioExample": "files/05_1900_example.mp3", - "textMeaning": "Width is the distance from one side of something to the other side.", - "textExample": "The man is measuring the width of the box.", - "transcription": "[widθ]", - "__v": 0, - "textExampleTranslate": "Человек измеряет ширину коробки", - "textMeaningTranslate": "Ширина - это расстояние от одной стороны чего-либо до другой стороны", - "wordTranslate": "ширина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc0e" - }, - "group": 3, - "page": 5, - "word": "determination", - "image": "files/06_1903.jpg", - "audio": "files/06_1903.mp3", - "audioMeaning": "files/06_1903_meaning.mp3", - "audioExample": "files/06_1903_example.mp3", - "textMeaning": "Determination is what you have when you try to do something even when it is difficult.", - "textExample": "Chris is the youngest competitor, but he has the most determination.", - "transcription": "[ditə̀ːrmənéiʃən]", - "__v": 0, - "textExampleTranslate": "Крис - самый молодой конкурент, но у него больше всего решимости", - "textMeaningTranslate": "Определение - это то, что у вас есть, когда вы пытаетесь что-то сделать, даже когда это трудно", - "wordTranslate": "определение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc11" - }, - "group": 3, - "page": 5, - "word": "landing", - "image": "files/06_1906.jpg", - "audio": "files/06_1906.mp3", - "audioMeaning": "files/06_1906_meaning.mp3", - "audioExample": "files/06_1906_example.mp3", - "textMeaning": "A landing is when you return to the ground or another surface after a flight or a boat ride.", - "textExample": "The man is in charge of leading the landing in the warzone.", - "transcription": "[lǽndiŋ]", - "__v": 0, - "textExampleTranslate": "Человек отвечает за высадку в зоне боевых действий", - "textMeaningTranslate": "Посадка - это когда вы возвращаетесь на землю или на другую поверхность после полета или поездки на лодке", - "wordTranslate": "посадка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc12" - }, - "group": 3, - "page": 5, - "word": "mark", - "image": "files/06_1907.jpg", - "audio": "files/06_1907.mp3", - "audioMeaning": "files/06_1907_meaning.mp3", - "audioExample": "files/06_1907_example.mp3", - "textMeaning": "To mark is to celebrate an important event or time by doing something.", - "textExample": "My grandparents are having a party to mark their 50th anniversary.", - "transcription": "[maːrk]", - "__v": 0, - "textExampleTranslate": "Мои бабушка и дедушка устраивают вечеринку в честь своего 50-летия", - "textMeaningTranslate": "Отмечать - это праздновать важное событие или время, делая что-то", - "wordTranslate": "отметка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc10" - }, - "group": 3, - "page": 5, - "word": "joint", - "image": "files/06_1905.jpg", - "audio": "files/06_1905.mp3", - "audioMeaning": "files/06_1905_meaning.mp3", - "audioExample": "files/06_1905_example.mp3", - "textMeaning": "When something is joint, it is done by or involves two or more people or groups.", - "textExample": "Mike and Joanna are joint owners of a coffee shop.", - "transcription": "[dʒɔint]", - "__v": 0, - "textExampleTranslate": "Майк и Джоанна являются совладельцами кафе", - "textMeaningTranslate": "Когда что-то является совместным, это делается двумя или более людьми или группами или включает их", - "wordTranslate": "совместное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc13" - }, - "group": 3, - "page": 5, - "word": "mobilize", - "image": "files/06_1908.jpg", - "audio": "files/06_1908.mp3", - "audioMeaning": "files/06_1908_meaning.mp3", - "audioExample": "files/06_1908_example.mp3", - "textMeaning": "To mobilize is to prepare an army to fight in a war.", - "textExample": "Thousands of soldiers were ready to mobilize for the fight.", - "transcription": "[móubəlàiz]", - "__v": 0, - "textExampleTranslate": "Тысячи солдат были готовы мобилизоваться для борьбы", - "textMeaningTranslate": "Мобилизовать - значит подготовить армию к войне", - "wordTranslate": "мобилизация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc14" - }, - "group": 3, - "page": 5, - "word": "nation", - "image": "files/06_1909.jpg", - "audio": "files/06_1909.mp3", - "audioMeaning": "files/06_1909_meaning.mp3", - "audioExample": "files/06_1909_example.mp3", - "textMeaning": "A nation is a large area of land that is controlled by its own government.", - "textExample": "India is a nation that is developing rapidly.", - "transcription": "[néiʃən]", - "__v": 0, - "textExampleTranslate": "Индия - это страна, которая быстро развивается", - "textMeaningTranslate": "Нация - это большая территория, контролируемая собственным правительством", - "wordTranslate": "нация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc15" - }, - "group": 3, - "page": 5, - "word": "originally", - "image": "files/06_1910.jpg", - "audio": "files/06_1910.mp3", - "audioMeaning": "files/06_1910_meaning.mp3", - "audioExample": "files/06_1910_example.mp3", - "textMeaning": "Originally is used in place of “in the beginning” or “when something first happened or began.”", - "textExample": "This building was originally a bank.", - "transcription": "[ərídʒənəli]", - "__v": 0, - "textExampleTranslate": "Это здание изначально было банком", - "textMeaningTranslate": "'Первоначально' используется вместо 'в начале' или 'когда что-то впервые произошло или началось'", - "wordTranslate": "первоначально" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc17" - }, - "group": 3, - "page": 5, - "word": "pray", - "image": "files/06_1912.jpg", - "audio": "files/06_1912.mp3", - "audioMeaning": "files/06_1912_meaning.mp3", - "audioExample": "files/06_1912_example.mp3", - "textMeaning": "To pray is to speak to God in order to ask for help or to give thanks.", - "textExample": "The girl likes to pray for world peace.", - "transcription": "[prei]", - "__v": 0, - "textExampleTranslate": "Девушка любит молиться за мир во всем мире", - "textMeaningTranslate": "Молиться - значит говорить с Богом, чтобы попросить о помощи или поблагодарить", - "wordTranslate": "молись" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc16" - }, - "group": 3, - "page": 5, - "word": "outbreak", - "image": "files/06_1911.jpg", - "audio": "files/06_1911.mp3", - "audioMeaning": "files/06_1911_meaning.mp3", - "audioExample": "files/06_1911_example.mp3", - "textMeaning": "An outbreak is a sudden start or increase of fighting or disease.", - "textExample": "The scientists prepared for an outbreak of a dangerous virus.", - "transcription": "[autbreik]", - "__v": 0, - "textExampleTranslate": "Ученые подготовились к вспышке опасного вируса", - "textMeaningTranslate": "Вспышка - это внезапное начало или усиление борьбы или болезни", - "wordTranslate": "вспышка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc18" - }, - "group": 3, - "page": 5, - "word": "prisoner", - "image": "files/06_1913.jpg", - "audio": "files/06_1913.mp3", - "audioMeaning": "files/06_1913_meaning.mp3", - "audioExample": "files/06_1913_example.mp3", - "textMeaning": "A prisoner is someone who is taken by force and kept somewhere.", - "textExample": "He has been a prisoner for many years.", - "transcription": "[prízənər]", - "__v": 0, - "textExampleTranslate": "Он был в плену много лет", - "textMeaningTranslate": "Заключенный - это тот, кого силой берут и где-то держат", - "wordTranslate": "заключенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc19" - }, - "group": 3, - "page": 5, - "word": "sacrifice", - "image": "files/06_1914.jpg", - "audio": "files/06_1914.mp3", - "audioMeaning": "files/06_1914_meaning.mp3", - "audioExample": "files/06_1914_example.mp3", - "textMeaning": "To sacrifice is to give up something in order to get something you want or do something else for someone.", - "textExample": "Karen has had to sacrifice a lot for her children.", - "transcription": "[sǽkrəfàis]", - "__v": 0, - "textExampleTranslate": "Карен пришлось многим пожертвовать ради своих детей", - "textMeaningTranslate": "Пожертвовать - значит отказаться от чего-то, чтобы получить то, что ты хочешь, или сделать что-то еще для кого-то", - "wordTranslate": "приносить в жертву" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc1a" - }, - "group": 3, - "page": 5, - "word": "silence", - "image": "files/06_1915.jpg", - "audio": "files/06_1915.mp3", - "audioMeaning": "files/06_1915_meaning.mp3", - "audioExample": "files/06_1915_example.mp3", - "textMeaning": "Silence is the complete absence of sound or noise.", - "textExample": "I can only sleep in complete silence.", - "transcription": "[sáiləns]", - "__v": 0, - "textExampleTranslate": "Я могу спать только в полной тишине", - "textMeaningTranslate": "Молчание - это полное отсутствие звука или шума", - "wordTranslate": "молчание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc1c" - }, - "group": 3, - "page": 5, - "word": "victory", - "image": "files/06_1918.jpg", - "audio": "files/06_1918.mp3", - "audioMeaning": "files/06_1918_meaning.mp3", - "audioExample": "files/06_1918_example.mp3", - "textMeaning": "A victory is a situation in which you win a battle, game, election, or dispute.", - "textExample": "The man was thrilled with his victory.", - "transcription": "[víktəri]", - "__v": 0, - "textExampleTranslate": "Человек был в восторге от его победы", - "textMeaningTranslate": "Победа - это ситуация, в которой вы выигрываете битву, игру, выборы или спор", - "wordTranslate": "победа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc1d" - }, - "group": 3, - "page": 5, - "word": "tribute", - "image": "files/06_1917.jpg", - "audio": "files/06_1917.mp3", - "audioMeaning": "files/06_1917_meaning.mp3", - "audioExample": "files/06_1917_example.mp3", - "textMeaning": "A tribute is something that you say, do, or give in order to express respect for someone.", - "textExample": "In some countries, people wear poppies as a tribute to veterans.", - "transcription": "[tríbjuːt]", - "__v": 0, - "textExampleTranslate": "В некоторых странах люди носят маки как дань ветеранам", - "textMeaningTranslate": "Дань - это то, что вы говорите, делаете или отдаете, чтобы выразить уважение к кому-либо", - "wordTranslate": "дань" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc1b" - }, - "group": 3, - "page": 5, - "word": "thus", - "image": "files/06_1916.jpg", - "audio": "files/06_1916.mp3", - "audioMeaning": "files/06_1916_meaning.mp3", - "audioExample": "files/06_1916_example.mp3", - "textMeaning": "Thus is used in place of “as a result of something that was just mentioned.”", - "textExample": "Victor wants to lose weight; thus, he’ll go on a diet and start exercising.", - "transcription": "[ðʌs]", - "__v": 0, - "textExampleTranslate": "Виктор хочет похудеть; значит, он сядет на диету и начнет заниматься спортом", - "textMeaningTranslate": "'Таким образом', используется вместо 'в результате чего-то, что было только что упомянуто'", - "wordTranslate": "таким образом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc1e" - }, - "group": 3, - "page": 5, - "word": "wild", - "image": "files/06_1919.jpg", - "audio": "files/06_1919.mp3", - "audioMeaning": "files/06_1919_meaning.mp3", - "audioExample": "files/06_1919_example.mp3", - "textMeaning": "To be wild is to be without control.", - "textExample": "Dandelions grow wild in the cracks of the streets.", - "transcription": "[waild]", - "__v": 0, - "textExampleTranslate": "Одуванчики растут дико в трещинах улиц", - "textMeaningTranslate": "Быть диким - значит быть без контроля", - "wordTranslate": "дикий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc1f" - }, - "group": 3, - "page": 5, - "word": "wound", - "image": "files/06_1920.jpg", - "audio": "files/06_1920.mp3", - "audioMeaning": "files/06_1920_meaning.mp3", - "audioExample": "files/06_1920_example.mp3", - "textMeaning": "To wound is to injure someone or something by cutting or breaking the skin.", - "textExample": "The boy knew he might wound his knees if he didn’t wear pads on them.", - "transcription": "[wuːnd]", - "__v": 0, - "textExampleTranslate": "Мальчик знал, что может поранить колени, если не наденет на них прокладки", - "textMeaningTranslate": "Ранить - значит ранить кого-то или что-то, разрезая или ломая кожу", - "wordTranslate": "рана" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc20" - }, - "group": 3, - "page": 6, - "word": "assimilate", - "image": "files/07_1921.jpg", - "audio": "files/07_1921.mp3", - "audioMeaning": "files/07_1921_meaning.mp3", - "audioExample": "files/07_1921_example.mp3", - "textMeaning": "To assimilate is to adopt the ways of a new culture and fully become a part of it.", - "textExample": "When the family moves to the US they will assimilate into American culture.", - "transcription": "[əsíməlèit]", - "__v": 0, - "textExampleTranslate": "Когда семья переедет в США, они ассимилируются в американской культуре", - "textMeaningTranslate": "Усвоить - значит принять пути новой культуры и полностью стать ее частью", - "wordTranslate": "ассимилировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc21" - }, - "group": 3, - "page": 6, - "word": "attempt", - "image": "files/07_1922.jpg", - "audio": "files/07_1922.mp3", - "audioMeaning": "files/07_1922_meaning.mp3", - "audioExample": "files/07_1922_example.mp3", - "textMeaning": "An attempt is an act of trying to do something, especially something difficult.", - "textExample": "This is Ben’s second attempt to climb Mt. Everest.", - "transcription": "[ətémpt]", - "__v": 0, - "textExampleTranslate": "Это вторая попытка Бена подняться на Эверест", - "textMeaningTranslate": "Попытка - это попытка что-то сделать, особенно что-то сложное", - "wordTranslate": "попытка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc23" - }, - "group": 3, - "page": 6, - "word": "danger", - "image": "files/07_1925.jpg", - "audio": "files/07_1925.mp3", - "audioMeaning": "files/07_1925_meaning.mp3", - "audioExample": "files/07_1925_example.mp3", - "textMeaning": "Danger is the possibility that someone or something will be harmed, destroyed, or killed.", - "textExample": "Smoking cigarettes is a danger to health.", - "transcription": "[déindʒər]", - "__v": 0, - "textExampleTranslate": "Курение сигарет - это опасность для здоровья", - "textMeaningTranslate": "Опасность - это вероятность того, что кому-то или чему-либо будет причинен вред, уничтожен или убит", - "wordTranslate": "опасность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc22" - }, - "group": 3, - "page": 6, - "word": "case", - "image": "files/07_1923.jpg", - "audio": "files/07_1923.mp3", - "audioMeaning": "files/07_1923_meaning.mp3", - "audioExample": "files/07_1923_example.mp3", - "textMeaning": "A case is an example of a particular situation or of something happening.", - "textExample": "A deposit of $1,000 is required, but in this case, we will accept half.", - "transcription": "[keis]", - "__v": 0, - "textExampleTranslate": "Требуется депозит в размере 1000 долларов, но в этом случае мы примем половину", - "textMeaningTranslate": "Случай - это пример конкретной ситуации или чего-то, что происходит", - "wordTranslate": "дело" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc24" - }, - "group": 3, - "page": 6, - "word": "cease", - "image": "files/07_1924.jpg", - "audio": "files/07_1924.mp3", - "audioMeaning": "files/07_1924_meaning.mp3", - "audioExample": "files/07_1924_example.mp3", - "textMeaning": "To cease is to stop doing something or to stop something happening.", - "textExample": "The rain will cease in the afternoon.", - "transcription": "[siːs]", - "__v": 0, - "textExampleTranslate": "Дождь прекратится днем", - "textMeaningTranslate": "Прекратить это значит прекратить что-либо делать или прекратить что-либо происходящее", - "wordTranslate": "прекратить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc25" - }, - "group": 3, - "page": 6, - "word": "devastating", - "image": "files/07_1926.jpg", - "audio": "files/07_1926.mp3", - "audioMeaning": "files/07_1926_meaning.mp3", - "audioExample": "files/07_1926_example.mp3", - "textMeaning": "If something is devastating, it causes great harm or damage to something or someone.", - "textExample": "The tsunami had devastating effects on the seaside village.", - "transcription": "[dévəstèitiŋ]", - "__v": 0, - "textExampleTranslate": "Цунами оказало разрушительное воздействие на приморскую деревню", - "textMeaningTranslate": "Если что-то разрушительное, оно причиняет большой вред или ущерб кому-то или кому-либо", - "wordTranslate": "разрушительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc26" - }, - "group": 3, - "page": 6, - "word": "diversity", - "image": "files/07_1927.jpg", - "audio": "files/07_1927.mp3", - "audioMeaning": "files/07_1927_meaning.mp3", - "audioExample": "files/07_1927_example.mp3", - "textMeaning": "Diversity is the quality or state of having many different forms, types, ideas, etc.", - "textExample": "My company puts an emphasis on the importance on having cultural diversity.", - "transcription": "[divə́ːrsəti]", - "__v": 0, - "textExampleTranslate": "Моя компания подчеркивает важность наличия культурного разнообразия", - "textMeaningTranslate": "Разнообразие - это качество или состояние наличия множества различных форм, типов, идей и т. д", - "wordTranslate": "разнообразие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc27" - }, - "group": 3, - "page": 6, - "word": "earthquake", - "image": "files/07_1928.jpg", - "audio": "files/07_1928.mp3", - "audioMeaning": "files/07_1928_meaning.mp3", - "audioExample": "files/07_1928_example.mp3", - "textMeaning": "An earthquake is a sudden shaking of a part of the Earth’s surface that often causes a lot of damage.", - "textExample": "The earthquake caused the road to crack in multiple places.", - "transcription": "[əːrθkweik]", - "__v": 0, - "textExampleTranslate": "Землетрясение вызвало трещину в нескольких местах", - "textMeaningTranslate": "Землетрясение - это внезапное сотрясение части поверхности Земли, которое часто наносит большой ущерб", - "wordTranslate": "землетрясение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc28" - }, - "group": 3, - "page": 6, - "word": "endangered", - "image": "files/07_1929.jpg", - "audio": "files/07_1929.mp3", - "audioMeaning": "files/07_1929_meaning.mp3", - "audioExample": "files/07_1929_example.mp3", - "textMeaning": "If something is endangered, it has become very rare and may eventually die out altogether.", - "textExample": "The whooping crane is an endangered species.", - "transcription": "[indéindʒərd]", - "__v": 0, - "textExampleTranslate": "Американский журавль является исчезающим видом", - "textMeaningTranslate": "Если что-то подвергается опасности, это становится очень редким и может в конечном итоге вымереть", - "wordTranslate": "находящихся под угрозой исчезновения" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc29" - }, - "group": 3, - "page": 6, - "word": "extinction", - "image": "files/07_1930.jpg", - "audio": "files/07_1930.mp3", - "audioMeaning": "files/07_1930_meaning.mp3", - "audioExample": "files/07_1930_example.mp3", - "textMeaning": "Extinction is when a particular animal, plant, type of person, custom, skill, etc. stops existing.", - "textExample": "The extinction of the dodo bird occurred in the 1600s.", - "transcription": "[ikstíŋkʃən]", - "__v": 0, - "textExampleTranslate": "Вымирание птицы додо произошло в 1600-х годах", - "textMeaningTranslate": "Вымирание - это когда конкретное животное, растение, тип человека, обычай, навык и т. д. перестают существовать", - "wordTranslate": "вымирание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc2a" - }, - "group": 3, - "page": 6, - "word": "forever", - "image": "files/07_1931.jpg", - "audio": "files/07_1931.mp3", - "audioMeaning": "files/07_1931_meaning.mp3", - "audioExample": "files/07_1931_example.mp3", - "textMeaning": "We use forever in place of “for all future time” or “for a very long time.”", - "textExample": "Michelle and Tanya want to be best friends forever.", - "transcription": "[fərevər]", - "__v": 0, - "textExampleTranslate": "Мишель и Таня хотят быть лучшими друзьями навсегда", - "textMeaningTranslate": "Мы используем 'вечно' вместо 'на все будущие времена' или 'на очень долгое время'", - "wordTranslate": "навсегда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc2b" - }, - "group": 3, - "page": 6, - "word": "generally", - "image": "files/07_1932.jpg", - "audio": "files/07_1932.mp3", - "audioMeaning": "files/07_1932_meaning.mp3", - "audioExample": "files/07_1932_example.mp3", - "textMeaning": "We use generally in place of “in most cases” or “to most people.”", - "textExample": "The suburbs are generally viewed as a good place to raise children.", - "transcription": "[dʒénərəli]", - "__v": 0, - "textExampleTranslate": "Пригород обычно считается хорошим местом для воспитания детей", - "textMeaningTranslate": "'Обычно' мы используем вместо 'в большинстве случаев' или 'для большинства людей'", - "wordTranslate": "в общем" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc2c" - }, - "group": 3, - "page": 6, - "word": "genocide", - "image": "files/07_1933.jpg", - "audio": "files/07_1933.mp3", - "audioMeaning": "files/07_1933_meaning.mp3", - "audioExample": "files/07_1933_example.mp3", - "textMeaning": "Genocide is the deliberate murder of a whole group or race of people.", - "textExample": "As a result of the genocide, many children have been orphaned.", - "transcription": "[dʒénəsàid]", - "__v": 0, - "textExampleTranslate": "В результате геноцида многие дети стали сиротами", - "textMeaningTranslate": "Геноцид - это преднамеренное убийство целой группы или расы людей", - "wordTranslate": "геноцид" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc2d" - }, - "group": 3, - "page": 6, - "word": "hit", - "image": "files/07_1934.jpg", - "audio": "files/07_1934.mp3", - "audioMeaning": "files/07_1934_meaning.mp3", - "audioExample": "files/07_1934_example.mp3", - "textMeaning": "To hit is to affect someone or something in a harmful or dangerous way.", - "textExample": "The ship was hit by a violent storm.", - "transcription": "[hit]", - "__v": 0, - "textExampleTranslate": "Корабль был поражен сильным штормом", - "textMeaningTranslate": "Бить - значит вредить кому-то или чему-либо вредным или опасным образом", - "wordTranslate": "ударил" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc2e" - }, - "group": 3, - "page": 6, - "word": "lose", - "image": "files/07_1935.jpg", - "audio": "files/07_1935.mp3", - "audioMeaning": "files/07_1935_meaning.mp3", - "audioExample": "files/07_1935_example.mp3", - "textMeaning": "To lose is to have something that is important or necessary taken from you or destroyed.", - "textExample": "The family never thought they’d lose everything to fire.", - "transcription": "[luːz]", - "__v": 0, - "textExampleTranslate": "Семья никогда не думала, что потеряет все из-за огня", - "textMeaningTranslate": "Потерять - значит получить что-то важное или необходимое, взятое или уничтоженное вами", - "wordTranslate": "потерять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc30" - }, - "group": 3, - "page": 6, - "word": "percent", - "image": "files/07_1937.jpg", - "audio": "files/07_1937.mp3", - "audioMeaning": "files/07_1937_meaning.mp3", - "audioExample": "files/07_1937_example.mp3", - "textMeaning": "A percent is an amount that is equal to one one-hundredth of something.", - "textExample": "Liz needs to get 80 percent on her test to pass the course.", - "transcription": "[pərsént]", - "__v": 0, - "textExampleTranslate": "Лиз должна получить 80 процентов на тест, чтобы пройти курс", - "textMeaningTranslate": "Процент - это количество, равное одной сотой чего-либо", - "wordTranslate": "процент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc2f" - }, - "group": 3, - "page": 6, - "word": "native", - "image": "files/07_1936.jpg", - "audio": "files/07_1936.mp3", - "audioMeaning": "files/07_1936_meaning.mp3", - "audioExample": "files/07_1936_example.mp3", - "textMeaning": "If something is native, it refers to the place someone was born and raised.", - "textExample": "Carlos is a hero in his native country of Brazil.", - "transcription": "[néitiv]", - "__v": 0, - "textExampleTranslate": "Карлос герой в своей родной стране Бразилии", - "textMeaningTranslate": "Если что-то родное, это относится к месту, где кто-то родился и вырос", - "wordTranslate": "родной" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc31" - }, - "group": 3, - "page": 6, - "word": "reason", - "image": "files/07_1938.jpg", - "audio": "files/07_1938.mp3", - "audioMeaning": "files/07_1938_meaning.mp3", - "audioExample": "files/07_1938_example.mp3", - "textMeaning": "A reason is a statement or fact that explains why something is the way it is, or why someone does, thinks, or says something.", - "textExample": "The reason Eric is late for work is that he forgot to set his alarm.", - "transcription": "[ríːzn]", - "__v": 0, - "textExampleTranslate": "Причина, по которой Эрик опаздывает на работу, заключается в том, что он забыл поставить будильник", - "textMeaningTranslate": "Причиной является утверждение или факт, объясняющий, почему что-то так, или почему кто-то делает, думает или говорит что-то", - "wordTranslate": "причина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc32" - }, - "group": 3, - "page": 6, - "word": "reference", - "image": "files/07_1939.jpg", - "audio": "files/07_1939.mp3", - "audioMeaning": "files/07_1939_meaning.mp3", - "audioExample": "files/07_1939_example.mp3", - "textMeaning": "A reference is the act of referring to something or someone.", - "textExample": "My supervisor made a reference to the data I’d collected.", - "transcription": "[réfərəns]", - "__v": 0, - "textExampleTranslate": "Мой руководитель сделал ссылку на данные, которые я собрал", - "textMeaningTranslate": "Ссылка - это акт обращения к чему-то или кому-либо", - "wordTranslate": "ссылка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc33" - }, - "group": 3, - "page": 7, - "word": "burn", - "image": "files/08_1941.jpg", - "audio": "files/08_1941.mp3", - "audioMeaning": "files/08_1941_meaning.mp3", - "audioExample": "files/08_1941_example.mp3", - "textMeaning": "To burn is to use something as a source of energy.", - "textExample": "Running is good exercise for people who want to burn fat and lose weight.", - "transcription": "[bəːrn]", - "__v": 0, - "textExampleTranslate": "Бег - это хорошее упражнение для людей, которые хотят сжигать жир и худеть", - "textMeaningTranslate": "Сжечь - значит использовать что-то в качестве источника энергии", - "wordTranslate": "гореть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc34" - }, - "group": 3, - "page": 6, - "word": "urban", - "image": "files/07_1940.jpg", - "audio": "files/07_1940.mp3", - "audioMeaning": "files/07_1940_meaning.mp3", - "audioExample": "files/07_1940_example.mp3", - "textMeaning": "If something is urban, it is related to towns and cities.", - "textExample": "It is common to see tall buildings in urban areas.", - "transcription": "[ə́ːrbən]", - "__v": 0, - "textExampleTranslate": "В городских районах часто можно увидеть высокие здания", - "textMeaningTranslate": "Если что-то городское, то это связано с городами и городами", - "wordTranslate": "городской" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc36" - }, - "group": 3, - "page": 7, - "word": "coconut", - "image": "files/08_1943.jpg", - "audio": "files/08_1943.mp3", - "audioMeaning": "files/08_1943_meaning.mp3", - "audioExample": "files/08_1943_example.mp3", - "textMeaning": "A coconut is a large brown fruit that has a hard shell and white flesh.", - "textExample": "A coconut produces a healthy oil.", - "transcription": "[kóukənΛt]", - "__v": 0, - "textExampleTranslate": "Кокос производит здоровое масло", - "textMeaningTranslate": "Кокос - это большой коричневый фрукт с твердой скорлупой и белой мякотью", - "wordTranslate": "кокос" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc37" - }, - "group": 3, - "page": 7, - "word": "epilepsy", - "image": "files/08_1944.jpg", - "audio": "files/08_1944.mp3", - "audioMeaning": "files/08_1944_meaning.mp3", - "audioExample": "files/08_1944_example.mp3", - "textMeaning": "Epilepsy is a medical condition that affects the brain and can make someone become unconscious or unable to control their movement for a short time.", - "textExample": "The doctor diagnosed the patient with epilepsy.", - "transcription": "[épəlèpsi]", - "__v": 0, - "textExampleTranslate": "Врач поставил диагноз пациенту с эпилепсией", - "textMeaningTranslate": "Эпилепсия - это заболевание, которое влияет на мозг и может привести к тому, что кто-то потеряет сознание или не сможет в течение короткого времени контролировать свои движения", - "wordTranslate": "эпилепсия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc35" - }, - "group": 3, - "page": 7, - "word": "check", - "image": "files/08_1942.jpg", - "audio": "files/08_1942.mp3", - "audioMeaning": "files/08_1942_meaning.mp3", - "audioExample": "files/08_1942_example.mp3", - "textMeaning": "To check is to ask someone whether something is correct, true, or allowed.", - "textExample": "Peter wants to check with the teacher to see if he is doing the assignment right.", - "transcription": "[ʧek]", - "__v": 0, - "textExampleTranslate": "Питер хочет уточнить у учителя, правильно ли он выполняет задание", - "textMeaningTranslate": "Проверить - значит спросить кого-то, правильно ли это, верно или разрешено", - "wordTranslate": "чек об оплате" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc3a" - }, - "group": 3, - "page": 7, - "word": "glucose", - "image": "files/08_1947.jpg", - "audio": "files/08_1947.mp3", - "audioMeaning": "files/08_1947_meaning.mp3", - "audioExample": "files/08_1947_example.mp3", - "textMeaning": "Glucose is a natural form of sugar that exists in plants and fruit.", - "textExample": "People with diabetes need to check their glucose levels.", - "transcription": "[glúːkous]", - "__v": 0, - "textExampleTranslate": "Люди с диабетом должны проверять уровень глюкозы в крови", - "textMeaningTranslate": "Глюкоза - это естественная форма сахара, которая существует в растениях и фруктах", - "wordTranslate": "глюкоза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc38" - }, - "group": 3, - "page": 7, - "word": "fat", - "image": "files/08_1945.jpg", - "audio": "files/08_1945.mp3", - "audioMeaning": "files/08_1945_meaning.mp3", - "audioExample": "files/08_1945_example.mp3", - "textMeaning": "Fat is an oily solid or liquid substance in food.", - "textExample": "The fat contained in salmon, avocados, and nuts is healthy.", - "transcription": "[fæt]", - "__v": 0, - "textExampleTranslate": "Жир, содержащийся в лососе, авокадо и орехах, полезен для здоровья", - "textMeaningTranslate": "Жир - это жирное твердое или жидкое вещество в пище", - "wordTranslate": "жир" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc39" - }, - "group": 3, - "page": 7, - "word": "gain", - "image": "files/08_1946.jpg", - "audio": "files/08_1946.mp3", - "audioMeaning": "files/08_1946_meaning.mp3", - "audioExample": "files/08_1946_example.mp3", - "textMeaning": "To gain is to gradually get more and more of a quality, feeling, etc.", - "textExample": "Winning the award will help Steven gain confidence.", - "transcription": "[gein]", - "__v": 0, - "textExampleTranslate": "Получение награды поможет Стивену обрести уверенность", - "textMeaningTranslate": "Получить - значит постепенно приобретать все больше качества, чувств и т. Д", - "wordTranslate": "усиление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc3c" - }, - "group": 3, - "page": 7, - "word": "keep", - "image": "files/08_1949.jpg", - "audio": "files/08_1949.mp3", - "audioMeaning": "files/08_1949_meaning.mp3", - "audioExample": "files/08_1949_example.mp3", - "textMeaning": "To keep is to stay in a particular state, condition, or position.", - "textExample": "Brian needs to keep working in order to finish his project on time.", - "transcription": "[kiːp]", - "__v": 0, - "textExampleTranslate": "Брайан должен продолжать работать, чтобы закончить свой проект вовремя", - "textMeaningTranslate": "Держаться - значит оставаться в определенном состоянии, состоянии или положении", - "wordTranslate": "хранить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc3b" - }, - "group": 3, - "page": 7, - "word": "high", - "image": "files/08_1948.jpg", - "audio": "files/08_1948.mp3", - "audioMeaning": "files/08_1948_meaning.mp3", - "audioExample": "files/08_1948_example.mp3", - "textMeaning": "When something is high, it is greater than usual in amount, number, or degree.", - "textExample": "The thermometer shows a high body temperature.", - "transcription": "[hai]", - "__v": 0, - "textExampleTranslate": "Термометр показывает высокую температуру тела", - "textMeaningTranslate": "Когда что-то высоко, оно больше, чем обычно, по количеству, количеству или степени", - "wordTranslate": "высокая" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc3d" - }, - "group": 3, - "page": 7, - "word": "known", - "image": "files/08_1950.jpg", - "audio": "files/08_1950.mp3", - "audioMeaning": "files/08_1950_meaning.mp3", - "audioExample": "files/08_1950_example.mp3", - "textMeaning": "If something is known, it is something that people are aware of or have discovered.", - "textExample": "Bob is known throughout the neighborhood as a burglars.", - "transcription": "[noun]", - "__v": 0, - "textExampleTranslate": "Боб известен во всем районе как грабители", - "textMeaningTranslate": "Если что-то известно, это то, что люди знают или обнаружили", - "wordTranslate": "известный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc3f" - }, - "group": 3, - "page": 7, - "word": "low", - "image": "files/08_1952.jpg", - "audio": "files/08_1952.mp3", - "audioMeaning": "files/08_1952_meaning.mp3", - "audioExample": "files/08_1952_example.mp3", - "textMeaning": "If something is low, it is smaller than usual in amount, number, or degree.", - "textExample": "The temperature gets very low in the winter.", - "transcription": "[lou]", - "__v": 0, - "textExampleTranslate": "Температура зимой очень низкая", - "textMeaningTranslate": "Если что-то низкое, оно меньше, чем обычно, по количеству, количеству или степени", - "wordTranslate": "низкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc41" - }, - "group": 3, - "page": 7, - "word": "metabolic", - "image": "files/08_1954.jpg", - "audio": "files/08_1954.mp3", - "audioMeaning": "files/08_1954_meaning.mp3", - "audioExample": "files/08_1954_example.mp3", - "textMeaning": "When something is metabolic, it relates to the chemical process in which plants or animals use food and water to make energy.", - "textExample": "Fish have a very high metabolic rate.", - "transcription": "[mètəbάlik]", - "__v": 0, - "textExampleTranslate": "У рыб очень высокий уровень метаболизма", - "textMeaningTranslate": "Когда что-то метаболизируется, это относится к химическому процессу, в котором растения или животные используют пищу и воду для производства энергии", - "wordTranslate": "метаболический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc3e" - }, - "group": 3, - "page": 7, - "word": "liver", - "image": "files/08_1951.jpg", - "audio": "files/08_1951.mp3", - "audioMeaning": "files/08_1951_meaning.mp3", - "audioExample": "files/08_1951_example.mp3", - "textMeaning": "The liver is a large organ in the body that produces bile and cleans blood.", - "textExample": "The professor showed us what the human liver looks like.", - "transcription": "[lívər]", - "__v": 0, - "textExampleTranslate": "Профессор показал нам, как выглядит человеческая печень", - "textMeaningTranslate": "Печень - это большой орган в организме, который производит желчь и очищает кровь", - "wordTranslate": "печень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc40" - }, - "group": 3, - "page": 7, - "word": "management", - "image": "files/08_1953.jpg", - "audio": "files/08_1953.mp3", - "audioMeaning": "files/08_1953_meaning.mp3", - "audioExample": "files/08_1953_example.mp3", - "textMeaning": "Management is the act or process of controlling and dealing with something.", - "textExample": "Practicing yoga is good for stress management.", - "transcription": "[mǽnidʒmənt]", - "__v": 0, - "textExampleTranslate": "Практика йоги полезна для управления стрессом", - "textMeaningTranslate": "Управление - это акт или процесс контроля и решения чего-либо", - "wordTranslate": "управление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc42" - }, - "group": 3, - "page": 7, - "word": "oil", - "image": "files/08_1955.jpg", - "audio": "files/08_1955.mp3", - "audioMeaning": "files/08_1955_meaning.mp3", - "audioExample": "files/08_1955_example.mp3", - "textMeaning": "Oil is a smooth, thick liquid made from plants or some animals, and is especially in cooking.", - "textExample": "The chef put the oil in the pan and heated it up.", - "transcription": "[ɔil]", - "__v": 0, - "textExampleTranslate": "Шеф-повар положил масло в кастрюлю и нагрел его", - "textMeaningTranslate": "Масло является гладкой, густой жидкостью, приготовленной из растений или некоторых животных, и особенно в кулинарии", - "wordTranslate": "масло" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc44" - }, - "group": 3, - "page": 7, - "word": "performance", - "image": "files/08_1957.jpg", - "audio": "files/08_1957.mp3", - "audioMeaning": "files/08_1957_meaning.mp3", - "audioExample": "files/08_1957_example.mp3", - "textMeaning": "Performance is how well someone or something functions, works, etc.", - "textExample": "Liam’s performance in the race was not his best.", - "transcription": "[pərfɔ́ːrməns]", - "__v": 0, - "textExampleTranslate": "Выступление Лиама в гонке было не лучшим", - "textMeaningTranslate": "Производительность - это то, насколько хорошо кто-то или что-то функционирует, работает и т. Д", - "wordTranslate": "представление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc43" - }, - "group": 3, - "page": 7, - "word": "olive", - "image": "files/08_1956.jpg", - "audio": "files/08_1956.mp3", - "audioMeaning": "files/08_1956_meaning.mp3", - "audioExample": "files/08_1956_example.mp3", - "textMeaning": "An olive is a small egg-shaped black or green fruit.", - "textExample": "I prepared a bowl of olives for my guests.", - "transcription": "[άliv]", - "__v": 0, - "textExampleTranslate": "Я приготовил миску оливок для моих гостей", - "textMeaningTranslate": "Оливка - маленький черный или зеленый фрукт в форме яйца", - "wordTranslate": "оливковый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc46" - }, - "group": 3, - "page": 7, - "word": "starch", - "image": "files/08_1959.jpg", - "audio": "files/08_1959.mp3", - "audioMeaning": "files/08_1959_meaning.mp3", - "audioExample": "files/08_1959_example.mp3", - "textMeaning": "Starch is a substance that provides your body with energy and is found in foods such as wheat, potatoes, and rice.", - "textExample": "Pasta is high in starch.", - "transcription": "[staːrʧ]", - "__v": 0, - "textExampleTranslate": "Макароны с высоким содержанием крахмала", - "textMeaningTranslate": "Крахмал - это вещество, которое обеспечивает ваше тело энергией и содержится в таких продуктах, как пшеница, картофель и рис", - "wordTranslate": "крахмал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc45" - }, - "group": 3, - "page": 7, - "word": "powerful", - "image": "files/08_1958.jpg", - "audio": "files/08_1958.mp3", - "audioMeaning": "files/08_1958_meaning.mp3", - "audioExample": "files/08_1958_example.mp3", - "textMeaning": "If something is powerful, it has a strong effect.", - "textExample": "This perfume has a powerful scent.", - "transcription": "[páuərfəl]", - "__v": 0, - "textExampleTranslate": "Этот парфюм обладает сильным ароматом", - "textMeaningTranslate": "Если что-то мощное, оно имеет сильный эффект", - "wordTranslate": "мощный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc49" - }, - "group": 3, - "page": 8, - "word": "area", - "image": "files/09_1962.jpg", - "audio": "files/09_1962.mp3", - "audioMeaning": "files/09_1962_meaning.mp3", - "audioExample": "files/09_1962_example.mp3", - "textMeaning": "An area is a reasonably large place.", - "textExample": "He was very familiar with the local area.", - "transcription": "[έəriə]", - "__v": 0, - "textExampleTranslate": "Он был очень хорошо знаком с местностью", - "textMeaningTranslate": "Площадь - это достаточно большое место", - "wordTranslate": "площадь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc47" - }, - "group": 3, - "page": 7, - "word": "summary", - "image": "files/08_1960.jpg", - "audio": "files/08_1960.mp3", - "audioMeaning": "files/08_1960_meaning.mp3", - "audioExample": "files/08_1960_example.mp3", - "textMeaning": "A summary is a short statement that contains the main information about something.", - "textExample": "Cindy concluded the meeting with a summary of the project.", - "transcription": "[sΛməri]", - "__v": 0, - "textExampleTranslate": "Синди завершила встречу с кратким изложением проекта", - "textMeaningTranslate": "Резюме - это краткое изложение, которое содержит основную информацию о чем-либо", - "wordTranslate": "резюме" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc48" - }, - "group": 3, - "page": 8, - "word": "analytic", - "image": "files/09_1961.jpg", - "audio": "files/09_1961.mp3", - "audioMeaning": "files/09_1961_meaning.mp3", - "audioExample": "files/09_1961_example.mp3", - "textMeaning": "If something is analytic, it is related to logic and reasoning.", - "textExample": "The analytic article criticized the new plan and presented one of its own.", - "transcription": "[æ̀nəlítik]", - "__v": 0, - "textExampleTranslate": "Аналитическая статья раскритиковала новый план и представила свой собственный", - "textMeaningTranslate": "Если что-то аналитическое, это связано с логикой и рассуждением", - "wordTranslate": "аналитический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc4b" - }, - "group": 3, - "page": 8, - "word": "cognitive", - "image": "files/09_1964.jpg", - "audio": "files/09_1964.mp3", - "audioMeaning": "files/09_1964_meaning.mp3", - "audioExample": "files/09_1964_example.mp3", - "textMeaning": "If something is cognitive, it is related to learning and knowing things.", - "textExample": "After her physical examination, her cognitive skills were tested.", - "transcription": "[kɑ́gnətiv]", - "__v": 0, - "textExampleTranslate": "После ее физического обследования ее когнитивные способности были проверены", - "textMeaningTranslate": "Если что-то познавательно, это связано с обучением и знанием вещей", - "wordTranslate": "познавательный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc4a" - }, - "group": 3, - "page": 8, - "word": "bachelor", - "image": "files/09_1963.jpg", - "audio": "files/09_1963.mp3", - "audioMeaning": "files/09_1963_meaning.mp3", - "audioExample": "files/09_1963_example.mp3", - "textMeaning": "A bachelor is an unmarried man.", - "textExample": "Since he was a bachelor, Jason did his shopping by himself.", - "transcription": "[bǽtʃələr]", - "__v": 0, - "textExampleTranslate": "Поскольку он был холостяком, Джейсон делал покупки сам", - "textMeaningTranslate": "Холостяк - неженатый мужчина", - "wordTranslate": "бакалавр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc4c" - }, - "group": 3, - "page": 8, - "word": "collision", - "image": "files/09_1965.jpg", - "audio": "files/09_1965.mp3", - "audioMeaning": "files/09_1965_meaning.mp3", - "audioExample": "files/09_1965_example.mp3", - "textMeaning": "A collision is the act of two things hitting into each another.", - "textExample": "The collision between the two cars created a loud noise.", - "transcription": "[kəlíʒən]", - "__v": 0, - "textExampleTranslate": "Столкновение двух машин вызвало громкий шум", - "textMeaningTranslate": "Столкновение - это акт двух столкновений друг с другом", - "wordTranslate": "столкновение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc4d" - }, - "group": 3, - "page": 8, - "word": "competent", - "image": "files/09_1966.jpg", - "audio": "files/09_1966.mp3", - "audioMeaning": "files/09_1966_meaning.mp3", - "audioExample": "files/09_1966_example.mp3", - "textMeaning": "If someone is competent, they are able to think or act successfully.", - "textExample": "Competent employees are much better than unknowledgeable ones.", - "transcription": "[kɑ́mpətənt]", - "__v": 0, - "textExampleTranslate": "Компетентные сотрудники намного лучше, чем непознаваемые", - "textMeaningTranslate": "Если кто-то компетентен, он способен думать или действовать успешно", - "wordTranslate": "компетентный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc4e" - }, - "group": 3, - "page": 8, - "word": "diploma", - "image": "files/09_1967.jpg", - "audio": "files/09_1967.mp3", - "audioMeaning": "files/09_1967_meaning.mp3", - "audioExample": "files/09_1967_example.mp3", - "textMeaning": "A diploma is a certificate proving that someone has completed their studies.", - "textExample": "After four years of college, Mary finally had a diploma.", - "transcription": "[diplóumə]", - "__v": 0, - "textExampleTranslate": "После четырех лет колледжа Мэри наконец получила диплом", - "textMeaningTranslate": "Диплом - это сертификат, подтверждающий, что кто-то закончил обучение", - "wordTranslate": "диплом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc4f" - }, - "group": 3, - "page": 8, - "word": "excel", - "image": "files/09_1968.jpg", - "audio": "files/09_1968.mp3", - "audioMeaning": "files/09_1968_meaning.mp3", - "audioExample": "files/09_1968_example.mp3", - "textMeaning": "To excel at a subject or activity means to be very good at it.", - "textExample": "Jenny excels at playing the piano.", - "transcription": "[iksél] (excel is related to excellent)", - "__v": 0, - "textExampleTranslate": "Дженни отлично играет на пианино", - "textMeaningTranslate": "Превзойти в предмете или деятельности значит быть очень хорошим в этом", - "wordTranslate": "превосходить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc50" - }, - "group": 3, - "page": 8, - "word": "geology", - "image": "files/09_1969.jpg", - "audio": "files/09_1969.mp3", - "audioMeaning": "files/09_1969_meaning.mp3", - "audioExample": "files/09_1969_example.mp3", - "textMeaning": "Geology is the study of the Earth’s natural structures and how they change.", - "textExample": "Because he studied geology, he knew how the mountains were formed.", - "transcription": "[ʤiːɑ́ləʤi]", - "__v": 0, - "textExampleTranslate": "Поскольку он изучал геологию, он знал, как образовались горы", - "textMeaningTranslate": "Геология - это изучение природных структур Земли и их изменений", - "wordTranslate": "геология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc51" - }, - "group": 3, - "page": 8, - "word": "integral", - "image": "files/09_1970.jpg", - "audio": "files/09_1970.mp3", - "audioMeaning": "files/09_1970_meaning.mp3", - "audioExample": "files/09_1970_example.mp3", - "textMeaning": "Something that is integral is an important part of the whole.", - "textExample": "She is an integral member of our team.", - "transcription": "[íntigrəl]", - "__v": 0, - "textExampleTranslate": "Она является неотъемлемым членом нашей команды", - "textMeaningTranslate": "То, что является неотъемлемой частью, является важной частью целого", - "wordTranslate": "интеграл" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc52" - }, - "group": 3, - "page": 8, - "word": "intellect", - "image": "files/09_1971.jpg", - "audio": "files/09_1971.mp3", - "audioMeaning": "files/09_1971_meaning.mp3", - "audioExample": "files/09_1971_example.mp3", - "textMeaning": "An intellect is a person’s ability to understand things easily.", - "textExample": "She was known for her quick and strong intellect as well as her beauty.", - "transcription": "[íntəlèkt]", - "__v": 0, - "textExampleTranslate": "Она была известна своим быстрым и сильным интеллектом, а также своей красотой", - "textMeaningTranslate": "Интеллект - это способность человека легко понимать вещи", - "wordTranslate": "интеллект" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc55" - }, - "group": 3, - "page": 8, - "word": "minimum", - "image": "files/09_1974.jpg", - "audio": "files/09_1974.mp3", - "audioMeaning": "files/09_1974_meaning.mp3", - "audioExample": "files/09_1974_example.mp3", - "textMeaning": "The minimum is the smallest amount.", - "textExample": "What is the minimum temperature in winter in this area?", - "transcription": "[mínəməm]", - "__v": 0, - "textExampleTranslate": "Какая минимальная температура зимой в этом районе?", - "textMeaningTranslate": "Минимум - это наименьшее количество", - "wordTranslate": "минимум" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc54" - }, - "group": 3, - "page": 8, - "word": "keen", - "image": "files/09_1973.jpg", - "audio": "files/09_1973.mp3", - "audioMeaning": "files/09_1973_meaning.mp3", - "audioExample": "files/09_1973_example.mp3", - "textMeaning": "If someone is keen, they are intelligent.", - "textExample": "Only a keen student could have solved that math problem.", - "transcription": "[kiːn]", - "__v": 0, - "textExampleTranslate": "Только увлеченный ученик мог решить эту математическую задачу", - "textMeaningTranslate": "Если кто-то увлечен, он умный", - "wordTranslate": "острый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc53" - }, - "group": 3, - "page": 8, - "word": "job", - "image": "files/09_1972.jpg", - "audio": "files/09_1972.mp3", - "audioMeaning": "files/09_1972_meaning.mp3", - "audioExample": "files/09_1972_example.mp3", - "textMeaning": "Your job is the work you do to earn money.", - "textExample": "He now has a high-paying job.", - "transcription": "[dʒab]", - "__v": 0, - "textExampleTranslate": "У него сейчас высокооплачиваемая работа", - "textMeaningTranslate": "Ваша работа - это работа, которую вы делаете, чтобы заработать деньги", - "wordTranslate": "работа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc56" - }, - "group": 3, - "page": 8, - "word": "psychology", - "image": "files/09_1975.jpg", - "audio": "files/09_1975.mp3", - "audioMeaning": "files/09_1975_meaning.mp3", - "audioExample": "files/09_1975_example.mp3", - "textMeaning": "Psychology involves the study of how the brain affects our thought and actions.", - "textExample": "The psychology of seeing is a fascinating subject.", - "transcription": "[saikάlədʒi]", - "__v": 0, - "textExampleTranslate": "Психология видения - захватывающий предмет", - "textMeaningTranslate": "Психология включает в себя изучение того, как мозг влияет на наши мысли и действия", - "wordTranslate": "психология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc57" - }, - "group": 3, - "page": 8, - "word": "radioactive", - "image": "files/09_1976.jpg", - "audio": "files/09_1976.mp3", - "audioMeaning": "files/09_1976_meaning.mp3", - "audioExample": "files/09_1976_example.mp3", - "textMeaning": "If something is radioactive, then it lets out, or is related to, radiation.", - "textExample": "Radioactive states can be very bad for anyone’s health.", - "transcription": "[rèidiouǽktiv]", - "__v": 0, - "textExampleTranslate": "Радиоактивные состояния могут быть очень вредны для здоровья любого человека", - "textMeaningTranslate": "Если что-то радиоактивно, то оно испускает или связано с излучением", - "wordTranslate": "радиоактивный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc58" - }, - "group": 3, - "page": 8, - "word": "relativity", - "image": "files/09_1977.jpg", - "audio": "files/09_1977.mp3", - "audioMeaning": "files/09_1977_meaning.mp3", - "audioExample": "files/09_1977_example.mp3", - "textMeaning": "Relativity is a set of ideas about time and space developed by Albert Einstein.", - "textExample": "Relativity teaches that light travels at the same speed throughout the universe.", - "transcription": "[rèlətívəti]", - "__v": 0, - "textExampleTranslate": "Относительность учит, что свет распространяется с одинаковой скоростью по всей вселенной", - "textMeaningTranslate": "Относительность - это набор идей о времени и пространстве, разработанный Альбертом Эйнштейном", - "wordTranslate": "относительность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc59" - }, - "group": 3, - "page": 8, - "word": "sociology", - "image": "files/09_1978.jpg", - "audio": "files/09_1978.mp3", - "audioMeaning": "files/09_1978_meaning.mp3", - "audioExample": "files/09_1978_example.mp3", - "textMeaning": "Sociology is the study of human society, its organizations, and problems.", - "textExample": "Sociology teaches that people’s problems are a result of their society.", - "transcription": "[sòusiɑ́lədʒi]", - "__v": 0, - "textExampleTranslate": "Социология учит, что проблемы людей являются результатом их общества", - "textMeaningTranslate": "Социология - это изучение человеческого общества, его организаций и проблем", - "wordTranslate": "социология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc5a" - }, - "group": 3, - "page": 8, - "word": "theoretical", - "image": "files/09_1979.jpg", - "audio": "files/09_1979.mp3", - "audioMeaning": "files/09_1979_meaning.mp3", - "audioExample": "files/09_1979_example.mp3", - "textMeaning": "If something is theoretical, it is based on theory rather than experience.", - "textExample": "His conclusion was only theoretical and not meant to be publicized.", - "transcription": "[θìːərétikəl]", - "__v": 0, - "textExampleTranslate": "Его заключение было только теоретическим и не предназначалось для обнародования", - "textMeaningTranslate": "Если что-то теоретическое, оно основано на теории, а не на опыте", - "wordTranslate": "теоретический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc5b" - }, - "group": 3, - "page": 8, - "word": "weak", - "image": "files/09_1980.jpg", - "audio": "files/09_1980.mp3", - "audioMeaning": "files/09_1980_meaning.mp3", - "audioExample": "files/09_1980_example.mp3", - "textMeaning": "If someone is weak, they are not strong and healthy.", - "textExample": "She is still weak after the illness.", - "transcription": "[wiːk]", - "__v": 0, - "textExampleTranslate": "Она все еще слаба после болезни", - "textMeaningTranslate": "Если кто-то слаб, он не силен и здоров", - "wordTranslate": "слабый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc5c" - }, - "group": 3, - "page": 9, - "word": "administrator", - "image": "files/10_1981.jpg", - "audio": "files/10_1981.mp3", - "audioMeaning": "files/10_1981_meaning.mp3", - "audioExample": "files/10_1981_example.mp3", - "textMeaning": "An administrator is a person who controls a business, company, or organization.", - "textExample": "Everyone in the store did whatever the administrator asked them to do.", - "transcription": "[ædmínəstrèitər]", - "__v": 0, - "textExampleTranslate": "Все в магазине делали все, что просил их администратор", - "textMeaningTranslate": "Администратор - это человек, который контролирует бизнес, компанию или организацию", - "wordTranslate": "администратор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc5d" - }, - "group": 3, - "page": 9, - "word": "audit", - "image": "files/10_1983.jpg", - "audio": "files/10_1983.mp3", - "audioMeaning": "files/10_1983_meaning.mp3", - "audioExample": "files/10_1983_example.mp3", - "textMeaning": "To audit means to inspect financial records from a person or business.", - "textExample": "The government usually audits companies that report lower than usual incomes.", - "transcription": "[ɔ́ːdit]", - "__v": 0, - "textExampleTranslate": "Правительство обычно проверяет компании, которые сообщают о доходах ниже обычных", - "textMeaningTranslate": "Аудит - это проверка финансовой отчетности человека или бизнеса", - "wordTranslate": "аудит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc5f" - }, - "group": 3, - "page": 9, - "word": "affluent", - "image": "files/10_1982.jpg", - "audio": "files/10_1982.mp3", - "audioMeaning": "files/10_1982_meaning.mp3", - "audioExample": "files/10_1982_example.mp3", - "textMeaning": "If someone is affluent, they are wealthy.", - "textExample": "People in the city are usually more affluent than people in the country.", - "transcription": "[ǽfluənt]", - "__v": 0, - "textExampleTranslate": "Люди в городе, как правило, более богаты, чем люди в стране", - "textMeaningTranslate": "Если кто-то богат, они богаты", - "wordTranslate": "богатый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc5e" - }, - "group": 3, - "page": 9, - "word": "corrupt", - "image": "files/10_1986.jpg", - "audio": "files/10_1986.mp3", - "audioMeaning": "files/10_1986_meaning.mp3", - "audioExample": "files/10_1986_example.mp3", - "textMeaning": "If someone is corrupt, they break the law for money or fame.", - "textExample": "The corrupt policemen didn’t arrest the man because he gave them money.", - "transcription": "[kərʌ́pt]", - "__v": 0, - "textExampleTranslate": "Коррумпированные полицейские не арестовали мужчину, потому что он дал им деньги", - "textMeaningTranslate": "Если кто-то коррумпирован, он нарушает закон ради денег или славы", - "wordTranslate": "коррумпированный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc60" - }, - "group": 3, - "page": 9, - "word": "automate", - "image": "files/10_1984.jpg", - "audio": "files/10_1984.mp3", - "audioMeaning": "files/10_1984_meaning.mp3", - "audioExample": "files/10_1984_example.mp3", - "textMeaning": "To automate something means to have machines or computers do the work.", - "textExample": "When the bank automated, it started installing ATM machines.", - "transcription": "[ɔ́ːtəmèit]", - "__v": 0, - "textExampleTranslate": "Когда банк автоматизировался, он начал устанавливать банкоматы", - "textMeaningTranslate": "Автоматизировать что-то означает, что машины или компьютеры выполняют свою работу", - "wordTranslate": "автоматизировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc61" - }, - "group": 3, - "page": 9, - "word": "bribe", - "image": "files/10_1985.jpg", - "audio": "files/10_1985.mp3", - "audioMeaning": "files/10_1985_meaning.mp3", - "audioExample": "files/10_1985_example.mp3", - "textMeaning": "To bribe someone means to illegally persuade them for a favor with money.", - "textExample": "The judge was bribed so that she would set the suspect free.", - "transcription": "[braib]", - "__v": 0, - "textExampleTranslate": "Судья был подкуплен, чтобы она освободила подозреваемого", - "textMeaningTranslate": "Подкупить кого-то - значит незаконно убедить его в одолжении деньгами", - "wordTranslate": "взятка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc62" - }, - "group": 3, - "page": 9, - "word": "dispose", - "image": "files/10_1987.jpg", - "audio": "files/10_1987.mp3", - "audioMeaning": "files/10_1987_meaning.mp3", - "audioExample": "files/10_1987_example.mp3", - "textMeaning": "To dispose of something means to get rid of it.", - "textExample": "He disposed of the can by throwing it into the recycle bin.", - "transcription": "[dispóuz]", - "__v": 0, - "textExampleTranslate": "Он избавился от банки, бросив ее в корзину", - "textMeaningTranslate": "Распорядиться чем-то - значит избавиться от этого", - "wordTranslate": "распоряжаться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc63" - }, - "group": 3, - "page": 9, - "word": "infrastructure", - "image": "files/10_1990.jpg", - "audio": "files/10_1990.mp3", - "audioMeaning": "files/10_1990_meaning.mp3", - "audioExample": "files/10_1990_example.mp3", - "textMeaning": "An infrastructure is a collection of services needed to run a society or business.", - "textExample": "Power lines are important parts of a city’s infrastructure.", - "transcription": "[ínfrəstrʌ̀ktʃər]", - "__v": 0, - "textExampleTranslate": "Линии электропередачи являются важной частью городской инфраструктуры", - "textMeaningTranslate": "Инфраструктура - это набор услуг, необходимых для управления обществом или бизнесом", - "wordTranslate": "инфраструктура" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc64" - }, - "group": 3, - "page": 9, - "word": "headquarters", - "image": "files/10_1988.jpg", - "audio": "files/10_1988.mp3", - "audioMeaning": "files/10_1988_meaning.mp3", - "audioExample": "files/10_1988_example.mp3", - "textMeaning": "A headquarters is a building where the bosses of a company work.", - "textExample": "He took the long route to the headquarters because it was a nice day.", - "transcription": "[hédkwɔ̀ːrtərz]", - "__v": 0, - "textExampleTranslate": "Он взял длинный путь в штаб-квартиру, потому что это был хороший день", - "textMeaningTranslate": "Штаб-квартира - это здание, в котором работают руководители компании", - "wordTranslate": "главное управление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc66" - }, - "group": 3, - "page": 9, - "word": "legislate", - "image": "files/10_1991.jpg", - "audio": "files/10_1991.mp3", - "audioMeaning": "files/10_1991_meaning.mp3", - "audioExample": "files/10_1991_example.mp3", - "textMeaning": "To legislate means to make laws.", - "textExample": "Senators have to legislate fairly so most people will enjoy the benefits.", - "transcription": "[lédʒislèit]", - "__v": 0, - "textExampleTranslate": "Сенаторы должны издавать законы, чтобы большинство людей получало выгоду", - "textMeaningTranslate": "Законодывать означает создавать законы", - "wordTranslate": "законы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc65" - }, - "group": 3, - "page": 9, - "word": "incentive", - "image": "files/10_1989.jpg", - "audio": "files/10_1989.mp3", - "audioMeaning": "files/10_1989_meaning.mp3", - "audioExample": "files/10_1989_example.mp3", - "textMeaning": "An incentive is what makes a person want to do something.", - "textExample": "The chance of winning a prize was an incentive to get people to play the game.", - "transcription": "[inséntiv]", - "__v": 0, - "textExampleTranslate": "Возможность выиграть приз была стимулом заставить людей играть в игру", - "textMeaningTranslate": "Стимул - это то, что заставляет человека хотеть что-то сделать", - "wordTranslate": "стимул" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc67" - }, - "group": 3, - "page": 9, - "word": "legitimate", - "image": "files/10_1992.jpg", - "audio": "files/10_1992.mp3", - "audioMeaning": "files/10_1992_meaning.mp3", - "audioExample": "files/10_1992_example.mp3", - "textMeaning": "If something is legitimate, then it is acceptable according to the law.", - "textExample": "She found a legitimate plan to raise extra funds for her vacation.", - "transcription": "[lidʒítəmit]", - "__v": 0, - "textExampleTranslate": "Она нашла законный план собрать дополнительные средства для своего отпуска", - "textMeaningTranslate": "Если что-то является законным, то это приемлемо в соответствии с законом", - "wordTranslate": "законный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc68" - }, - "group": 3, - "page": 9, - "word": "merchandise", - "image": "files/10_1994.jpg", - "audio": "files/10_1994.mp3", - "audioMeaning": "files/10_1994_meaning.mp3", - "audioExample": "files/10_1994_example.mp3", - "textMeaning": "Merchandise is goods ready to be purchased or sold.", - "textExample": "The store added more merchandise because there were more shoppers.", - "transcription": "[mə́ːrtʃəndàiz]", - "__v": 0, - "textExampleTranslate": "Магазин добавил больше товаров, потому что было больше покупателей", - "textMeaningTranslate": "Товар - это товар, готовый к покупке или продаже", - "wordTranslate": "товар" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc69" - }, - "group": 3, - "page": 9, - "word": "manipulate", - "image": "files/10_1993.jpg", - "audio": "files/10_1993.mp3", - "audioMeaning": "files/10_1993_meaning.mp3", - "audioExample": "files/10_1993_example.mp3", - "textMeaning": "To manipulate something means to skillfully or unfairly control or affect it.", - "textExample": "The doctor manipulated the data to make it look like the cure was working.", - "transcription": "[mənípjəlèit]", - "__v": 0, - "textExampleTranslate": "Доктор манипулировал данными, чтобы выглядело, как будто лекарство работало", - "textMeaningTranslate": "Управлять чем-либо означает умело или несправедливо контролировать или влиять на это", - "wordTranslate": "манипулировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc6a" - }, - "group": 3, - "page": 9, - "word": "retail", - "image": "files/10_1995.jpg", - "audio": "files/10_1995.mp3", - "audioMeaning": "files/10_1995_meaning.mp3", - "audioExample": "files/10_1995_example.mp3", - "textMeaning": "Retail is the activity of selling goods to the public, often for personal use.", - "textExample": "Although cheap to make, once a t-shirt reaches retail, it costs ten times as much.", - "transcription": "[ríːteil]", - "__v": 0, - "textExampleTranslate": "Несмотря на то, что, когда футболка поступает в розничную продажу, она дешевая, она стоит в десять раз дороже", - "textMeaningTranslate": "Розничная торговля - это деятельность по продаже товаров населению, часто для личного пользования", - "wordTranslate": "розничная торговля" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc6c" - }, - "group": 3, - "page": 9, - "word": "rubbish", - "image": "files/10_1997.jpg", - "audio": "files/10_1997.mp3", - "audioMeaning": "files/10_1997_meaning.mp3", - "audioExample": "files/10_1997_example.mp3", - "textMeaning": "Rubbish is trash or waste.", - "textExample": "The floor around the garbage can was covered with all kinds of rubbish.", - "transcription": "[rʌ́biʃ]", - "__v": 0, - "textExampleTranslate": "Пол вокруг мусорного бака был покрыт всяким мусором", - "textMeaningTranslate": "Мусор - это мусор или отходы", - "wordTranslate": "мусор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc6b" - }, - "group": 3, - "page": 9, - "word": "revenue", - "image": "files/10_1996.jpg", - "audio": "files/10_1996.mp3", - "audioMeaning": "files/10_1996_meaning.mp3", - "audioExample": "files/10_1996_example.mp3", - "textMeaning": "Revenue is the income made by a company.", - "textExample": "The new products really increased the business’s monthly revenue.", - "transcription": "[révənjùː]", - "__v": 0, - "textExampleTranslate": "Новые продукты действительно увеличили ежемесячный доход бизнеса", - "textMeaningTranslate": "Доход - это доход, полученный компанией", - "wordTranslate": "доходы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc6d" - }, - "group": 3, - "page": 9, - "word": "transaction", - "image": "files/10_1999.jpg", - "audio": "files/10_1999.mp3", - "audioMeaning": "files/10_1999_meaning.mp3", - "audioExample": "files/10_1999_example.mp3", - "textMeaning": "A transaction is an act of buying or selling something.", - "textExample": "Because the clerk was new at the job, the simple transaction took a long time.", - "transcription": "[trænsǽkʃən]", - "__v": 0, - "textExampleTranslate": "Поскольку клерк был новичком в работе, простая транзакция заняла много времени", - "textMeaningTranslate": "Транзакция - это акт покупки или продажи чего-либо", - "wordTranslate": "сделка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc6e" - }, - "group": 3, - "page": 9, - "word": "subsidy", - "image": "files/10_1998.jpg", - "audio": "files/10_1998.mp3", - "audioMeaning": "files/10_1998_meaning.mp3", - "audioExample": "files/10_1998_example.mp3", - "textMeaning": "A subsidy is money given by the government to companies to assist them.", - "textExample": "The official gave the company a subsidy so it could open two new factories.", - "transcription": "[sʌ́bsidi]", - "__v": 0, - "textExampleTranslate": "Чиновник дал компании субсидию, чтобы она могла открыть два новых завода", - "textMeaningTranslate": "Субсидия - это деньги, предоставляемые правительством компаниям для оказания им помощи", - "wordTranslate": "субсидия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc70" - }, - "group": 3, - "page": 10, - "word": "assess", - "image": "files/11_2001.jpg", - "audio": "files/11_2001.mp3", - "audioMeaning": "files/11_2001_meaning.mp3", - "audioExample": "files/11_2001_example.mp3", - "textMeaning": "To assess something means to judge the structure, purpose, or quality of it.", - "textExample": "She assessed the condition of the toy car before buying it.", - "transcription": "[əsés]", - "__v": 0, - "textExampleTranslate": "Она оценила состояние игрушечной машины перед покупкой", - "textMeaningTranslate": "Оценивать что-либо - значит судить о структуре, цели или качестве этого", - "wordTranslate": "оценивать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc6f" - }, - "group": 3, - "page": 9, - "word": "violate", - "image": "files/10_2000.jpg", - "audio": "files/10_2000.mp3", - "audioMeaning": "files/10_2000_meaning.mp3", - "audioExample": "files/10_2000_example.mp3", - "textMeaning": "To violate a law, rule, or agreement means to break it.", - "textExample": "I was given a ticket because the policeman said I violated a traffic law.", - "transcription": "[váiəlèit]", - "__v": 0, - "textExampleTranslate": "Мне дали билет, потому что полицейский сказал, что я нарушил правила дорожного движения", - "textMeaningTranslate": "Нарушать закон, правило или соглашение означает нарушать его", - "wordTranslate": "нарушает" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc71" - }, - "group": 3, - "page": 10, - "word": "astonish", - "image": "files/11_2002.jpg", - "audio": "files/11_2002.mp3", - "audioMeaning": "files/11_2002_meaning.mp3", - "audioExample": "files/11_2002_example.mp3", - "textMeaning": "To astonish someone means to greatly surprise them.", - "textExample": "The number of people that came to her party astonished her.", - "transcription": "[əstɑ́niʃ]", - "__v": 0, - "textExampleTranslate": "Количество людей, пришедших на ее вечеринку, поразило ее", - "textMeaningTranslate": "Удивить кого-то - значит сильно удивить его", - "wordTranslate": "удивлять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc73" - }, - "group": 3, - "page": 10, - "word": "essence", - "image": "files/11_2004.jpg", - "audio": "files/11_2004.mp3", - "audioMeaning": "files/11_2004_meaning.mp3", - "audioExample": "files/11_2004_example.mp3", - "textMeaning": "The essence of something is its important qualities or basic characteristics.", - "textExample": "The essence of the argument was that both sides felt they had lost money.", - "transcription": "[ésns]", - "__v": 0, - "textExampleTranslate": "Суть аргумента в том, что обе стороны чувствовали, что потеряли деньги", - "textMeaningTranslate": "Сущность чего-либо - это его важные качества или основные характеристики", - "wordTranslate": "сущность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc72" - }, - "group": 3, - "page": 10, - "word": "commence", - "image": "files/11_2003.jpg", - "audio": "files/11_2003.mp3", - "audioMeaning": "files/11_2003_meaning.mp3", - "audioExample": "files/11_2003_example.mp3", - "textMeaning": "To commence something means to begin it.", - "textExample": "His speech commenced with a “thank you” to all who had helped him succeed.", - "transcription": "[kəméns]", - "__v": 0, - "textExampleTranslate": "Его речь началась с благодарности всем, кто помог ему добиться успеха", - "textMeaningTranslate": "Начать что-то значит начать это", - "wordTranslate": "начинайте" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc74" - }, - "group": 3, - "page": 10, - "word": "fabulous", - "image": "files/11_2006.jpg", - "audio": "files/11_2006.mp3", - "audioMeaning": "files/11_2006_meaning.mp3", - "audioExample": "files/11_2006_example.mp3", - "textMeaning": "If something is fabulous, it is extremely good.", - "textExample": "This strawberry is the best I’ve ever had. It’s fabulous.", - "transcription": "[fǽbjələs]", - "__v": 0, - "textExampleTranslate": "Эта клубника - лучшее, что я когда-либо пробовал. Это невероятно", - "textMeaningTranslate": "Если что-то сказочное, это очень хорошо", - "wordTranslate": "сказочные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc77" - }, - "group": 3, - "page": 10, - "word": "impulse", - "image": "files/11_2008.jpg", - "audio": "files/11_2008.mp3", - "audioMeaning": "files/11_2008_meaning.mp3", - "audioExample": "files/11_2008_example.mp3", - "textMeaning": "An impulse is a sudden thoughtless urge to do something.", - "textExample": "Because of the scary noise, she had an impulse to run somewhere and hide.", - "transcription": "[ímpʌls]", - "__v": 0, - "textExampleTranslate": "Из-за страшного шума у нее был импульс бежать куда-то и прятаться", - "textMeaningTranslate": "Импульс - это внезапное бездумное желание что-то сделать", - "wordTranslate": "импульс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc75" - }, - "group": 3, - "page": 10, - "word": "extract", - "image": "files/11_2005.jpg", - "audio": "files/11_2005.mp3", - "audioMeaning": "files/11_2005_meaning.mp3", - "audioExample": "files/11_2005_example.mp3", - "textMeaning": "To extract something means to remove it.", - "textExample": "The dentist extracted the woman’s damaged tooth and put in a fake one.", - "transcription": "[ikstrǽkt]", - "__v": 0, - "textExampleTranslate": "Стоматолог извлек поврежденный зуб женщины и вставил поддельный", - "textMeaningTranslate": "Извлечь что-то означает удалить это", - "wordTranslate": "экстракт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc76" - }, - "group": 3, - "page": 10, - "word": "haste", - "image": "files/11_2007.jpg", - "audio": "files/11_2007.mp3", - "audioMeaning": "files/11_2007_meaning.mp3", - "audioExample": "files/11_2007_example.mp3", - "textMeaning": "Haste is speed in movement or action.", - "textExample": "In order to get to the meeting in time, he proceeded with haste.", - "transcription": "[heist]", - "__v": 0, - "textExampleTranslate": "Чтобы успеть на встречу, он поспешил", - "textMeaningTranslate": "Ускорение - это скорость в движении или действии", - "wordTranslate": "поспешность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc78" - }, - "group": 3, - "page": 10, - "word": "inhibit", - "image": "files/11_2009.jpg", - "audio": "files/11_2009.mp3", - "audioMeaning": "files/11_2009_meaning.mp3", - "audioExample": "files/11_2009_example.mp3", - "textMeaning": "When you inhibit something, you stop it from developing.", - "textExample": "Poor reading skills will inhibit learning in a wide range of subject areas.", - "transcription": "[inhíbit]", - "__v": 0, - "textExampleTranslate": "Плохие навыки чтения будут препятствовать обучению в широком диапазоне предметных областей", - "textMeaningTranslate": "Когда вы что-то подавляете, вы мешаете этому развиваться", - "wordTranslate": "блокировка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc79" - }, - "group": 3, - "page": 10, - "word": "molecule", - "image": "files/11_2011.jpg", - "audio": "files/11_2011.mp3", - "audioMeaning": "files/11_2011_meaning.mp3", - "audioExample": "files/11_2011_example.mp3", - "textMeaning": "A molecule is the smallest basic unit that makes up a physical substance.", - "textExample": "A tiny drop of water is made up of many billions of molecules of water.", - "transcription": "[mάləkjùːl]", - "__v": 0, - "textExampleTranslate": "Крошечная капля воды состоит из многих миллиардов молекул воды", - "textMeaningTranslate": "Молекула - это самая маленькая базовая единица, составляющая физическое вещество", - "wordTranslate": "молекула" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc7a" - }, - "group": 3, - "page": 10, - "word": "latter", - "image": "files/11_2010.jpg", - "audio": "files/11_2010.mp3", - "audioMeaning": "files/11_2010_meaning.mp3", - "audioExample": "files/11_2010_example.mp3", - "textMeaning": "Latter describes something last in a series or the second choice of two things.", - "textExample": "In the latter minutes of the game, the visitors scored the winning goal.", - "transcription": "[lǽtəːr]", - "__v": 0, - "textExampleTranslate": "В последние минуты игры гости забили победный гол", - "textMeaningTranslate": "Последние описывают что-то последнее в серии или второй выбор из двух вещей", - "wordTranslate": "последний" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc7b" - }, - "group": 3, - "page": 10, - "word": "ongoing", - "image": "files/11_2012.jpg", - "audio": "files/11_2012.mp3", - "audioMeaning": "files/11_2012_meaning.mp3", - "audioExample": "files/11_2012_example.mp3", - "textMeaning": "If something is ongoing, then it is still happening or still growing.", - "textExample": "The development of plants is ongoing because it takes time for them to mature.", - "transcription": "[ɑ́ngòuiŋ]", - "__v": 0, - "textExampleTranslate": "Развитие растений продолжается, потому что для их созревания требуется время", - "textMeaningTranslate": "Если что-то продолжается, то это все еще происходит или продолжает расти", - "wordTranslate": "текущий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc7c" - }, - "group": 3, - "page": 10, - "word": "precise", - "image": "files/11_2013.jpg", - "audio": "files/11_2013.mp3", - "audioMeaning": "files/11_2013_meaning.mp3", - "audioExample": "files/11_2013_example.mp3", - "textMeaning": "If someone is precise, then they are exact and careful about their work.", - "textExample": "The builder was very precise about where he placed the nails.", - "transcription": "[prisáis]", - "__v": 0, - "textExampleTranslate": "Строитель очень точно определил, куда он положил гвозди", - "textMeaningTranslate": "Если кто-то точен, то он точен и осторожен в своей работе", - "wordTranslate": "точный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc7d" - }, - "group": 3, - "page": 10, - "word": "proximity", - "image": "files/11_2014.jpg", - "audio": "files/11_2014.mp3", - "audioMeaning": "files/11_2014_meaning.mp3", - "audioExample": "files/11_2014_example.mp3", - "textMeaning": "Proximity is closeness in time, space, or relationships.", - "textExample": "All the trees in the proximity of the beach had been cut down.", - "transcription": "[prɑksíməti]", - "__v": 0, - "textExampleTranslate": "Все деревья в непосредственной близости от пляжа были вырублены", - "textMeaningTranslate": "Близость - это близость во времени, пространстве или отношениях", - "wordTranslate": "близость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc7e" - }, - "group": 3, - "page": 10, - "word": "publicity", - "image": "files/11_2015.jpg", - "audio": "files/11_2015.mp3", - "audioMeaning": "files/11_2015_meaning.mp3", - "audioExample": "files/11_2015_example.mp3", - "textMeaning": "Publicity is public attention given to someone or something by the media.", - "textExample": "She received a lot of publicity after her performance in the film.", - "transcription": "[pʌblísəti]", - "__v": 0, - "textExampleTranslate": "Она получила много рекламы после своего выступления в фильме", - "textMeaningTranslate": "Публичность - это общественное внимание, уделяемое кому-то или чему-либо средствами массовой информации", - "wordTranslate": "гласность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc80" - }, - "group": 3, - "page": 10, - "word": "remedy", - "image": "files/11_2016.jpg", - "audio": "files/11_2016.mp3", - "audioMeaning": "files/11_2016_meaning.mp3", - "audioExample": "files/11_2016_example.mp3", - "textMeaning": "A remedy is a cure for a disease, argument, or problem.", - "textExample": "A good remedy for a headache is an aspirin and a glass of water.", - "transcription": "[rémədi]", - "__v": 0, - "textExampleTranslate": "Хорошим средством от головной боли является аспирин и стакан воды", - "textMeaningTranslate": "Средство - это лекарство от болезни, спора или проблемы", - "wordTranslate": "лекарство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc7f" - }, - "group": 3, - "page": 10, - "word": "significance", - "image": "files/11_2017.jpg", - "audio": "files/11_2017.mp3", - "audioMeaning": "files/11_2017_meaning.mp3", - "audioExample": "files/11_2017_example.mp3", - "textMeaning": "The significance of something is the quality that makes it important.", - "textExample": "The significance of the snowy weather was that we didn’t have to go to school.", - "transcription": "[signífkəns]", - "__v": 0, - "textExampleTranslate": "Значимость снежной погоды заключалась в том, что нам не нужно было ходить в школу", - "textMeaningTranslate": "Значимость чего-либо - это качество, которое делает его важным", - "wordTranslate": "значение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc81" - }, - "group": 3, - "page": 10, - "word": "subsequent", - "image": "files/11_2018.jpg", - "audio": "files/11_2018.mp3", - "audioMeaning": "files/11_2018_meaning.mp3", - "audioExample": "files/11_2018_example.mp3", - "textMeaning": "If something is subsequent, then it comes after something else in time.", - "textExample": "The flood and the subsequent rescue of those caught in the flood were on TV.", - "transcription": "[sʌ́bsikwənt]", - "__v": 0, - "textExampleTranslate": "Потоп и последующее спасение тех, кто попал в наводнение, были на телевидении", - "textMeaningTranslate": "Если что-то является последующим, то оно приходит после чего-то другого во времени", - "wordTranslate": "последующий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc82" - }, - "group": 3, - "page": 10, - "word": "synthetic", - "image": "files/11_2019.jpg", - "audio": "files/11_2019.mp3", - "audioMeaning": "files/11_2019_meaning.mp3", - "audioExample": "files/11_2019_example.mp3", - "textMeaning": "If something is synthetic, then it is made to be like something natural.", - "textExample": "Clothing made out of synthetic fabrics is very effective at keeping people warm.", - "transcription": "[sinθétik]", - "__v": 0, - "textExampleTranslate": "Одежда из синтетических тканей очень эффективна для согревания людей", - "textMeaningTranslate": "Если что-то синтетическое, то оно сделано как нечто естественное", - "wordTranslate": "синтетический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc83" - }, - "group": 3, - "page": 11, - "word": "acute", - "image": "files/12_2021.jpg", - "audio": "files/12_2021.mp3", - "audioMeaning": "files/12_2021_meaning.mp3", - "audioExample": "files/12_2021_example.mp3", - "textMeaning": "When a bad thing is acute, it is very severe and intense.", - "textExample": "When she fell out of the tree, the girl felt an acute pain in her arm.", - "transcription": "[əkjúːt]", - "__v": 0, - "textExampleTranslate": "Когда она упала с дерева, девушка почувствовала острую боль в руке", - "textMeaningTranslate": "Когда плохая вещь острая, она очень тяжелая и интенсивная", - "wordTranslate": "острый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc84" - }, - "group": 3, - "page": 11, - "word": "aggression", - "image": "files/12_2022.jpg", - "audio": "files/12_2022.mp3", - "audioMeaning": "files/12_2022_meaning.mp3", - "audioExample": "files/12_2022_example.mp3", - "textMeaning": "Aggression is behavior that is mean or violent to others.", - "textExample": "The problem was only made worse by Mark’s aggression.", - "transcription": "[əgréʃən]", - "__v": 0, - "textExampleTranslate": "Проблема только усугубилась агрессией Марка", - "textMeaningTranslate": "Агрессия - это поведение, которое является злым или насильственным по отношению к другим", - "wordTranslate": "агрессия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc86" - }, - "group": 3, - "page": 11, - "word": "biography", - "image": "files/12_2023.jpg", - "audio": "files/12_2023.mp3", - "audioMeaning": "files/12_2023_meaning.mp3", - "audioExample": "files/12_2023_example.mp3", - "textMeaning": "A biography is an account of someone’s life that is written by someone else.", - "textExample": "We read a biography about Charles Darwin in science class.", - "transcription": "[baiɑ́grəf]", - "__v": 0, - "textExampleTranslate": "Мы читаем биографию Чарльза Дарвина на уроке науки", - "textMeaningTranslate": "Биография - это описание чьей-то жизни, написанное кем-то другим", - "wordTranslate": "биография" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc85" - }, - "group": 3, - "page": 10, - "word": "terminal", - "image": "files/11_2020.jpg", - "audio": "files/11_2020.mp3", - "audioMeaning": "files/11_2020_meaning.mp3", - "audioExample": "files/11_2020_example.mp3", - "textMeaning": "If something is terminal, then it causes or results in death.", - "textExample": "Since his condition was not terminal, he felt a great sense of relief.", - "transcription": "[tə́ːrmənəl]", - "__v": 0, - "textExampleTranslate": "Поскольку его состояние не было предельным, он почувствовал большое облегчение", - "textMeaningTranslate": "Если что-то является терминальным, то это вызывает или приводит к смерти", - "wordTranslate": "терминал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc87" - }, - "group": 3, - "page": 11, - "word": "boost", - "image": "files/12_2024.jpg", - "audio": "files/12_2024.mp3", - "audioMeaning": "files/12_2024_meaning.mp3", - "audioExample": "files/12_2024_example.mp3", - "textMeaning": "To boost something means to increase or improve it.", - "textExample": "Lowering prices boosts customers’ interest in shopping.", - "transcription": "[buːst]", - "__v": 0, - "textExampleTranslate": "Снижение цен повышает интерес покупателей к покупкам", - "textMeaningTranslate": "Усилить что-то - значит увеличить или улучшить", - "wordTranslate": "увеличение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc88" - }, - "group": 3, - "page": 11, - "word": "clap", - "image": "files/12_2025.jpg", - "audio": "files/12_2025.mp3", - "audioMeaning": "files/12_2025_meaning.mp3", - "audioExample": "files/12_2025_example.mp3", - "textMeaning": "To clap means to hit one’s hands together to express pleasure or get attention.", - "textExample": "After the speech, everyone in the crowd clapped their hands for the speaker.", - "transcription": "[klæp]", - "__v": 0, - "textExampleTranslate": "После выступления все в толпе хлопали в ладоши за спикера", - "textMeaningTranslate": "Хлопать в ладоши - значит стукнуть руками, чтобы выразить удовольствие или привлечь внимание", - "wordTranslate": "хлопок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc89" - }, - "group": 3, - "page": 11, - "word": "classical", - "image": "files/12_2026.jpg", - "audio": "files/12_2026.mp3", - "audioMeaning": "files/12_2026_meaning.mp3", - "audioExample": "files/12_2026_example.mp3", - "textMeaning": "Classical music is more formal and serious than popular music.", - "textExample": "Beethoven is a composer of classical music.", - "transcription": "[klǽsikəl]", - "__v": 0, - "textExampleTranslate": "Бетховен - композитор классической музыки", - "textMeaningTranslate": "Классическая музыка более формальная и серьезная, чем популярная музыка", - "wordTranslate": "классический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc8a" - }, - "group": 3, - "page": 11, - "word": "compel", - "image": "files/12_2027.jpg", - "audio": "files/12_2027.mp3", - "audioMeaning": "files/12_2027_meaning.mp3", - "audioExample": "files/12_2027_example.mp3", - "textMeaning": "To compel someone to do something means to force them to do it.", - "textExample": "Traffic signs compel drivers to drive safely.", - "transcription": "[kəmpél]", - "__v": 0, - "textExampleTranslate": "Дорожные знаки заставляют водителей безопасно ездить", - "textMeaningTranslate": "Заставить кого-то сделать что-то значит заставить его сделать это", - "wordTranslate": "компел" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc8b" - }, - "group": 3, - "page": 11, - "word": "creation", - "image": "files/12_2028.jpg", - "audio": "files/12_2028.mp3", - "audioMeaning": "files/12_2028_meaning.mp3", - "audioExample": "files/12_2028_example.mp3", - "textMeaning": "A creation is something original that is made.", - "textExample": "We saw the creation of a new political party.", - "transcription": "[kriéiʃən]", - "__v": 0, - "textExampleTranslate": "Мы увидели создание новой политической партии", - "textMeaningTranslate": "Творение - это нечто оригинальное, что сделано", - "wordTranslate": "создание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc8c" - }, - "group": 3, - "page": 11, - "word": "dominance", - "image": "files/12_2029.jpg", - "audio": "files/12_2029.mp3", - "audioMeaning": "files/12_2029_meaning.mp3", - "audioExample": "files/12_2029_example.mp3", - "textMeaning": "The dominance of a person is their state of being more powerful than others.", - "textExample": "Large gorillas hit their chests to express their dominance over others.", - "transcription": "[dɑ́mənəns]", - "__v": 0, - "textExampleTranslate": "Большие гориллы бьют себя в грудь, чтобы выразить свое господство над другими", - "textMeaningTranslate": "Доминирование человека - это его состояние более могущественного, чем у других", - "wordTranslate": "доминирование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc8d" - }, - "group": 3, - "page": 11, - "word": "gorgeous", - "image": "files/12_2030.jpg", - "audio": "files/12_2030.mp3", - "audioMeaning": "files/12_2030_meaning.mp3", - "audioExample": "files/12_2030_example.mp3", - "textMeaning": "When something is gorgeous, it is very pleasing and attractive.", - "textExample": "The girl picked out a gorgeous dress to wear to the dance.", - "transcription": "[gɔ́ːrʤəs]", - "__v": 0, - "textExampleTranslate": "Девушка выбрала великолепное платье для танца", - "textMeaningTranslate": "Когда что-то великолепно, это очень приятно и привлекательно", - "wordTranslate": "великолепный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc8e" - }, - "group": 3, - "page": 11, - "word": "inevitable", - "image": "files/12_2031.jpg", - "audio": "files/12_2031.mp3", - "audioMeaning": "files/12_2031_meaning.mp3", - "audioExample": "files/12_2031_example.mp3", - "textMeaning": "When something is inevitable, it is certain to happen or cannot be avoided.", - "textExample": "It is inevitable that the days will get longer in the summer.", - "transcription": "[inévitəbəl]", - "__v": 0, - "textExampleTranslate": "Это неизбежно, что летом дни станут длиннее", - "textMeaningTranslate": "Когда что-то неизбежно, это обязательно произойдет или не может быть предотвращено", - "wordTranslate": "неизбежным" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc8f" - }, - "group": 3, - "page": 11, - "word": "legacy", - "image": "files/12_2032.jpg", - "audio": "files/12_2032.mp3", - "audioMeaning": "files/12_2032_meaning.mp3", - "audioExample": "files/12_2032_example.mp3", - "textMeaning": "A legacy is an effect that exists because of a person or thing in the past.", - "textExample": "The legacy of the ancient Egyptians can be seen in their monuments.", - "transcription": "[légəsi]", - "__v": 0, - "textExampleTranslate": "Наследие древних египтян можно увидеть в их памятниках", - "textMeaningTranslate": "Наследие - это эффект, который существует из-за человека или вещи в прошлом", - "wordTranslate": "наследие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc90" - }, - "group": 3, - "page": 11, - "word": "masterpiece", - "image": "files/12_2033.jpg", - "audio": "files/12_2033.mp3", - "audioMeaning": "files/12_2033_meaning.mp3", - "audioExample": "files/12_2033_example.mp3", - "textMeaning": "A masterpiece is a very good painting, novel, movie, or other work of art.", - "textExample": "The Arc de Triomphe is considered a masterpiece in the world of architecture.", - "transcription": "[mǽstərpìːs]", - "__v": 0, - "textExampleTranslate": "Триумфальная арка считается шедевром в мире архитектуры", - "textMeaningTranslate": "Шедевр - это очень хорошая картина, роман, фильм или другое произведение искусства", - "wordTranslate": "шедевр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc91" - }, - "group": 3, - "page": 11, - "word": "multiple", - "image": "files/12_2034.jpg", - "audio": "files/12_2034.mp3", - "audioMeaning": "files/12_2034_meaning.mp3", - "audioExample": "files/12_2034_example.mp3", - "textMeaning": "If there are multiple things, there are many of them.", - "textExample": "When the stunt went wrong, the man suffered multiple injuries.", - "transcription": "[mʌ́ltəpəl]", - "__v": 0, - "textExampleTranslate": "Когда трюк пошел не так, человек получил множественные травмы", - "textMeaningTranslate": "Если есть несколько вещей, их много", - "wordTranslate": "несколько" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc92" - }, - "group": 3, - "page": 11, - "word": "narrate", - "image": "files/12_2035.jpg", - "audio": "files/12_2035.mp3", - "audioMeaning": "files/12_2035_meaning.mp3", - "audioExample": "files/12_2035_example.mp3", - "textMeaning": "To narrate a story means to write about it or read it aloud.", - "textExample": "This story was written by John, but Aaron is narrating it to the crowd.", - "transcription": "[nǽreit]", - "__v": 0, - "textExampleTranslate": "Эта история была написана Джоном, но Аарон рассказывает ее толпе", - "textMeaningTranslate": "Рассказывать историю - значит писать об этом или читать вслух", - "wordTranslate": "повествуют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc93" - }, - "group": 3, - "page": 11, - "word": "notorious", - "image": "files/12_2036.jpg", - "audio": "files/12_2036.mp3", - "audioMeaning": "files/12_2036_meaning.mp3", - "audioExample": "files/12_2036_example.mp3", - "textMeaning": "When something is notorious, it is well known because of something bad.", - "textExample": "This area of town is notorious for gang activity.", - "transcription": "[noutɔ́ːriəs]", - "__v": 0, - "textExampleTranslate": "Этот район города известен своей бандитской активностью", - "textMeaningTranslate": "Когда что-то печально известно, это хорошо известно из-за чего-то плохого", - "wordTranslate": "печально известный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc94" - }, - "group": 3, - "page": 11, - "word": "overall", - "image": "files/12_2037.jpg", - "audio": "files/12_2037.mp3", - "audioMeaning": "files/12_2037_meaning.mp3", - "audioExample": "files/12_2037_example.mp3", - "textMeaning": "When a thing is talked about overall, the whole thing is considered.", - "textExample": "Overall, the party was a huge success.", - "transcription": "[óuvərɔ̀ːl]", - "__v": 0, - "textExampleTranslate": "В целом, вечеринка имела огромный успех", - "textMeaningTranslate": "Когда о чем-то говорят в целом, все рассматривается", - "wordTranslate": "в целом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc95" - }, - "group": 3, - "page": 11, - "word": "partiality", - "image": "files/12_2038.jpg", - "audio": "files/12_2038.mp3", - "audioMeaning": "files/12_2038_meaning.mp3", - "audioExample": "files/12_2038_example.mp3", - "textMeaning": "A partiality is a tendency to prefer one thing to another.", - "textExample": "She has a partiality for walking to school instead of driving.", - "transcription": "[pɑ̀ːrʃiǽləti]", - "__v": 0, - "textExampleTranslate": "У нее есть пристрастие к тому, чтобы ходить в школу вместо вождения", - "textMeaningTranslate": "Пристрастие - это тенденция отдавать предпочтение одной вещи другой", - "wordTranslate": "пристрастность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc96" - }, - "group": 3, - "page": 11, - "word": "spontaneous", - "image": "files/12_2039.jpg", - "audio": "files/12_2039.mp3", - "audioMeaning": "files/12_2039_meaning.mp3", - "audioExample": "files/12_2039_example.mp3", - "textMeaning": "When an act is spontaneous, it is not planned. It happens suddenly.", - "textExample": "My wife made a spontaneous decision to buy a new sofa while I was at work.", - "transcription": "[spɑntéiniəs]", - "__v": 0, - "textExampleTranslate": "Моя жена приняла спонтанное решение купить новый диван, пока я был на работе", - "textMeaningTranslate": "Когда акт спонтанный, он не запланирован. Это происходит внезапно", - "wordTranslate": "спонтанный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc97" - }, - "group": 3, - "page": 11, - "word": "virtue", - "image": "files/12_2040.jpg", - "audio": "files/12_2040.mp3", - "audioMeaning": "files/12_2040_meaning.mp3", - "audioExample": "files/12_2040_example.mp3", - "textMeaning": "A virtue is a good quality or way of behaving.", - "textExample": "My best virtue is forgiveness.", - "transcription": "[və́ːrtʃuː]", - "__v": 0, - "textExampleTranslate": "Моя лучшая добродетель - прощение", - "textMeaningTranslate": "Добродетель - это хорошее качество или способ поведения", - "wordTranslate": "добродетель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc98" - }, - "group": 3, - "page": 12, - "word": "aspect", - "image": "files/13_2041.jpg", - "audio": "files/13_2041.mp3", - "audioMeaning": "files/13_2041_meaning.mp3", - "audioExample": "files/13_2041_example.mp3", - "textMeaning": "An aspect is one part or feature of something.", - "textExample": "I thought about the different aspects of owning two dogs.", - "transcription": "[ǽspekt]", - "__v": 0, - "textExampleTranslate": "Я думал о разных аспектах владения двумя собаками", - "textMeaningTranslate": "Аспект - это одна часть или особенность чего-либо", - "wordTranslate": "аспект" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc99" - }, - "group": 3, - "page": 12, - "word": "asset", - "image": "files/13_2042.jpg", - "audio": "files/13_2042.mp3", - "audioMeaning": "files/13_2042_meaning.mp3", - "audioExample": "files/13_2042_example.mp3", - "textMeaning": "An asset is a skill or quality that is useful or valuable.", - "textExample": "The coach realized the boy’s speed was an asset to the team.", - "transcription": "[ǽset]", - "__v": 0, - "textExampleTranslate": "Тренер понял, что скорость мальчика - это преимущество команды", - "textMeaningTranslate": "Актив - это умение или качество, которое полезно или ценно", - "wordTranslate": "актив" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc9a" - }, - "group": 3, - "page": 12, - "word": "assignment", - "image": "files/13_2043.jpg", - "audio": "files/13_2043.mp3", - "audioMeaning": "files/13_2043_meaning.mp3", - "audioExample": "files/13_2043_example.mp3", - "textMeaning": "An assignment is task that is given to you to do.", - "textExample": "He was given a difficult assignment but he felt he could succeed in doing it.", - "transcription": "[əsáinmənt]", - "__v": 0, - "textExampleTranslate": "Ему дали трудное задание, но он чувствовал, что может преуспеть в этом", - "textMeaningTranslate": "Задание - это задание, которое вам дано выполнить", - "wordTranslate": "назначение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc9b" - }, - "group": 3, - "page": 12, - "word": "awareness", - "image": "files/13_2044.jpg", - "audio": "files/13_2044.mp3", - "audioMeaning": "files/13_2044_meaning.mp3", - "audioExample": "files/13_2044_example.mp3", - "textMeaning": "An awareness is knowledge or perception or a situation or fact.", - "textExample": "She has little awareness of what needs to be done.", - "transcription": "[əwέərnis]", - "__v": 0, - "textExampleTranslate": "Она мало осведомлена о том, что нужно сделать", - "textMeaningTranslate": "Осознание - это знание или восприятие, или ситуация, или факт", - "wordTranslate": "осознание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc9c" - }, - "group": 3, - "page": 12, - "word": "bud", - "image": "files/13_2045.jpg", - "audio": "files/13_2045.mp3", - "audioMeaning": "files/13_2045_meaning.mp3", - "audioExample": "files/13_2045_example.mp3", - "textMeaning": "A bud is a part of a plant that turns into a flower or a leaf.", - "textExample": "Two weeks after planting the seed, a small bud appeared.", - "transcription": "[bʌd]", - "__v": 0, - "textExampleTranslate": "Через две недели после посадки семян появился маленький бутон", - "textMeaningTranslate": "Бутон - это часть растения, которое превращается в цветок или лист", - "wordTranslate": "бутон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc9d" - }, - "group": 3, - "page": 12, - "word": "coordinate", - "image": "files/13_2046.jpg", - "audio": "files/13_2046.mp3", - "audioMeaning": "files/13_2046_meaning.mp3", - "audioExample": "files/13_2046_example.mp3", - "textMeaning": "To coordinate things is to make different parts work together.", - "textExample": "Each skating team had to coordinate their movements for the show.", - "transcription": "[kouɔ́ːrdənèit]", - "__v": 0, - "textExampleTranslate": "Каждая команда по фигурному катанию должна была координировать свои движения для шоу", - "textMeaningTranslate": "Координировать вещи - значит, чтобы разные части работали вместе", - "wordTranslate": "координировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc9e" - }, - "group": 3, - "page": 12, - "word": "credit", - "image": "files/13_2047.jpg", - "audio": "files/13_2047.mp3", - "audioMeaning": "files/13_2047_meaning.mp3", - "audioExample": "files/13_2047_example.mp3", - "textMeaning": "Credit is something good in your favour.", - "textExample": "His bank account is in credit, so he has money he can spend.", - "transcription": "[krédit]", - "__v": 0, - "textExampleTranslate": "Его банковский счет в кредит, поэтому у него есть деньги, которые он может потратить", - "textMeaningTranslate": "Кредит - это что-то хорошее в вашу пользу", - "wordTranslate": "кредит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afc9f" - }, - "group": 3, - "page": 12, - "word": "disprove", - "image": "files/13_2048.jpg", - "audio": "files/13_2048.mp3", - "audioMeaning": "files/13_2048_meaning.mp3", - "audioExample": "files/13_2048_example.mp3", - "textMeaning": "To disprove something means to show that it is not true.", - "textExample": "The scientist disproved the theory that the sun moved around the Earth.", - "transcription": "[disprúːv]", - "__v": 0, - "textExampleTranslate": "Ученый опроверг теорию о том, что Солнце движется вокруг Земли", - "textMeaningTranslate": "Опровергнуть что-либо означает показать, что это неправда", - "wordTranslate": "опровергать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afca0" - }, - "group": 3, - "page": 12, - "word": "humanitarian", - "image": "files/13_2049.jpg", - "audio": "files/13_2049.mp3", - "audioMeaning": "files/13_2049_meaning.mp3", - "audioExample": "files/13_2049_example.mp3", - "textMeaning": "If something is humanitarian, it is connected to helping people’s lives.", - "textExample": "After the flood, several humanitarian organizations offered help.", - "transcription": "[hjuːmæ̀nətɛə́riən]", - "__v": 0, - "textExampleTranslate": "После потопа несколько гуманитарных организаций предложили помощь", - "textMeaningTranslate": "Если что-то гуманитарное, это связано с тем, чтобы помогать людям", - "wordTranslate": "гуманитарный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afca1" - }, - "group": 3, - "page": 12, - "word": "hypothesis", - "image": "files/13_2050.jpg", - "audio": "files/13_2050.mp3", - "audioMeaning": "files/13_2050_meaning.mp3", - "audioExample": "files/13_2050_example.mp3", - "textMeaning": "A hypothesis is an idea about something that has not been proved yet.", - "textExample": "The teacher did an experiment to prove whether his hypothesis was right.", - "transcription": "[haipάθəsis]", - "__v": 0, - "textExampleTranslate": "Учитель провел эксперимент, чтобы доказать, верна ли его гипотеза", - "textMeaningTranslate": "Гипотеза - это идея о том, что еще не доказано", - "wordTranslate": "гипотеза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afca2" - }, - "group": 3, - "page": 12, - "word": "informative", - "image": "files/13_2051.jpg", - "audio": "files/13_2051.mp3", - "audioMeaning": "files/13_2051_meaning.mp3", - "audioExample": "files/13_2051_example.mp3", - "textMeaning": "When something is informative, it provides a lot of information.", - "textExample": "The travel guide had a lot of informative facts about the region.", - "transcription": "[infɔ́ːrmətiv]", - "__v": 0, - "textExampleTranslate": "В путеводителе было много информативных фактов о регионе", - "textMeaningTranslate": "Когда что-то информативно, оно дает много информации", - "wordTranslate": "информативный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afca3" - }, - "group": 3, - "page": 12, - "word": "optic", - "image": "files/13_2052.jpg", - "audio": "files/13_2052.mp3", - "audioMeaning": "files/13_2052_meaning.mp3", - "audioExample": "files/13_2052_example.mp3", - "textMeaning": "When something is optic, it relates to the eyes or light.", - "textExample": "Her blindness was caused by a problem with her optic nerve.", - "transcription": "[ɑ́ptik]", - "__v": 0, - "textExampleTranslate": "Ее слепота была вызвана проблемой с ее зрительным нервом", - "textMeaningTranslate": "Когда что-то оптическое, это относится к глазам или свету", - "wordTranslate": "оптические" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afca4" - }, - "group": 3, - "page": 12, - "word": "premise", - "image": "files/13_2053.jpg", - "audio": "files/13_2053.mp3", - "audioMeaning": "files/13_2053_meaning.mp3", - "audioExample": "files/13_2053_example.mp3", - "textMeaning": "A premise is an idea on which something is based.", - "textExample": "The premise of the movie that Bobbi and I watched was unrealistic.", - "transcription": "[prémis]", - "__v": 0, - "textExampleTranslate": "Предпосылка фильма, который мы с Бобби смотрели, была нереальной", - "textMeaningTranslate": "Предпосылка - это идея, на которой что-то основано", - "wordTranslate": "посылка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afca5" - }, - "group": 3, - "page": 12, - "word": "rack", - "image": "files/13_2054.jpg", - "audio": "files/13_2054.mp3", - "audioMeaning": "files/13_2054_meaning.mp3", - "audioExample": "files/13_2054_example.mp3", - "textMeaning": "A rack is an object with shelves that holds things.", - "textExample": "He stored his tools on a rack.", - "transcription": "[ræk]", - "__v": 0, - "textExampleTranslate": "Он хранил свои инструменты на стойке", - "textMeaningTranslate": "Стеллаж - это объект с полками, в котором хранятся вещи", - "wordTranslate": "стойка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afca6" - }, - "group": 3, - "page": 12, - "word": "Renaissance", - "image": "files/13_2055.jpg", - "audio": "files/13_2055.mp3", - "audioMeaning": "files/13_2055_meaning.mp3", - "audioExample": "files/13_2055_example.mp3", - "textMeaning": "The Renaissance was a period between the 14th and 17th centuries.", - "textExample": "Leonardo da Vinci was a popular artist of the Renaissance.", - "transcription": "[rènəsɑ́ːns]", - "__v": 0, - "textExampleTranslate": "Леонардо да Винчи был популярным художником эпохи Возрождения", - "textMeaningTranslate": "Ренессанс был периодом между 14 и 17 веками", - "wordTranslate": "эпоха Возрождения" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afca7" - }, - "group": 3, - "page": 12, - "word": "spatial", - "image": "files/13_2056.jpg", - "audio": "files/13_2056.mp3", - "audioMeaning": "files/13_2056_meaning.mp3", - "audioExample": "files/13_2056_example.mp3", - "textMeaning": "When something is spatial, it relates to the position and size of things.", - "textExample": "He was asked where the books were located to test his spatial awareness.", - "transcription": "[spéiʃəl]", - "__v": 0, - "textExampleTranslate": "Его спросили, где находятся книги, чтобы проверить его пространственное понимание", - "textMeaningTranslate": "Когда что-то пространственно, это относится к положению и размеру вещей", - "wordTranslate": "пространственный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afca8" - }, - "group": 3, - "page": 12, - "word": "specify", - "image": "files/13_2057.jpg", - "audio": "files/13_2057.mp3", - "audioMeaning": "files/13_2057_meaning.mp3", - "audioExample": "files/13_2057_example.mp3", - "textMeaning": "To specify is to describe something clearly.", - "textExample": "The poster didn’t specify where the concert was taking place.", - "transcription": "[spésəfài]", - "__v": 0, - "textExampleTranslate": "На плакате не было указано, где проходил концерт", - "textMeaningTranslate": "Указать - значит описать что-то четко", - "wordTranslate": "уточнить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afca9" - }, - "group": 3, - "page": 12, - "word": "tie", - "image": "files/13_2058.jpg", - "audio": "files/13_2058.mp3", - "audioMeaning": "files/13_2058_meaning.mp3", - "audioExample": "files/13_2058_example.mp3", - "textMeaning": "If you tie two things together, you fasten them with rope, string, etc.", - "textExample": "The dog is used to being tied up.", - "transcription": "[tai]", - "__v": 0, - "textExampleTranslate": "Собака привыкла быть привязанной", - "textMeaningTranslate": "Если вы связываете две вещи вместе, вы скрепляете их веревкой, веревкой и т. Д", - "wordTranslate": "галстук" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcaa" - }, - "group": 3, - "page": 12, - "word": "undertake", - "image": "files/13_2059.jpg", - "audio": "files/13_2059.mp3", - "audioMeaning": "files/13_2059_meaning.mp3", - "audioExample": "files/13_2059_example.mp3", - "textMeaning": "To undertake a particular task is to take on the responsibility of doing it.", - "textExample": "We undertook to make sure everybody was well informed of current progress.", - "transcription": "[Λndərteik]", - "__v": 0, - "textExampleTranslate": "Мы обязались следить за тем, чтобы все были в курсе текущих событий", - "textMeaningTranslate": "Выполнить определенную задачу - это взять на себя ответственность за ее выполнение", - "wordTranslate": "предпринять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcab" - }, - "group": 3, - "page": 12, - "word": "wax", - "image": "files/13_2060.jpg", - "audio": "files/13_2060.mp3", - "audioMeaning": "files/13_2060_meaning.mp3", - "audioExample": "files/13_2060_example.mp3", - "textMeaning": "Wax is a substance that is slightly shiny and melts when heated.", - "textExample": "The candles are made of wax.", - "transcription": "[wæks]", - "__v": 0, - "textExampleTranslate": "Свечи сделаны из воска", - "textMeaningTranslate": "Воск - это вещество, которое слегка блестит и плавится при нагревании", - "wordTranslate": "воск" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcac" - }, - "group": 3, - "page": 13, - "word": "addict", - "image": "files/14_2061.jpg", - "audio": "files/14_2061.mp3", - "audioMeaning": "files/14_2061_meaning.mp3", - "audioExample": "files/14_2061_example.mp3", - "textMeaning": "An addict is a person who cannot stop doing something.", - "textExample": "She was a coffee addict. She had more than three cups each day.", - "transcription": "[ǽdíkt]", - "__v": 0, - "textExampleTranslate": "Она была наркоманом кофе. У нее было больше трех чашек в день", - "textMeaningTranslate": "Наркоман - это человек, который не может перестать что-то делать", - "wordTranslate": "наркоман" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcad" - }, - "group": 3, - "page": 13, - "word": "archeological", - "image": "files/14_2062.jpg", - "audio": "files/14_2062.mp3", - "audioMeaning": "files/14_2062_meaning.mp3", - "audioExample": "files/14_2062_example.mp3", - "textMeaning": "When something is archeological, it relates to archeology.", - "textExample": "They found archeological evidence of an ancient species of man.", - "transcription": "[ɑ̀ːrkiəlɑ́dʒikəl]", - "__v": 0, - "textExampleTranslate": "Они нашли археологические свидетельства древнего вида человека", - "textMeaningTranslate": "Когда что-то археологическое, это относится к археологии", - "wordTranslate": "археологический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcae" - }, - "group": 3, - "page": 13, - "word": "archeology", - "image": "files/14_2063.jpg", - "audio": "files/14_2063.mp3", - "audioMeaning": "files/14_2063_meaning.mp3", - "audioExample": "files/14_2063_example.mp3", - "textMeaning": "Archeology is the study of ancient people through their artifacts.", - "textExample": "He studied archeology to learn more about ancient Egyptian culture.", - "transcription": "[ɑ̀ːrkiɑ́lədʒi]", - "__v": 0, - "textExampleTranslate": "Он изучал археологию, чтобы узнать больше о древнеегипетской культуре", - "textMeaningTranslate": "Археология - это изучение древних людей через их артефакты", - "wordTranslate": "археология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcb0" - }, - "group": 3, - "page": 13, - "word": "budget", - "image": "files/14_2065.jpg", - "audio": "files/14_2065.mp3", - "audioMeaning": "files/14_2065_meaning.mp3", - "audioExample": "files/14_2065_example.mp3", - "textMeaning": "A budget is the amount of money available to spend on something.", - "textExample": "His budget for food was very tight.", - "transcription": "[bʌ́dʒit]", - "__v": 0, - "textExampleTranslate": "Его бюджет на еду был очень ограничен", - "textMeaningTranslate": "Бюджет - это сумма денег, которую можно потратить на что-то", - "wordTranslate": "бюджет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcaf" - }, - "group": 3, - "page": 13, - "word": "brainstorm", - "image": "files/14_2064.jpg", - "audio": "files/14_2064.mp3", - "audioMeaning": "files/14_2064_meaning.mp3", - "audioExample": "files/14_2064_example.mp3", - "textMeaning": "To brainstorm is to have a lot of ideas about a certain topic.", - "textExample": "The students met after school to brainstorm ideas for their assignments.", - "transcription": "[bréinstɔ̀ːrm]", - "__v": 0, - "textExampleTranslate": "Студенты встретились после школы, чтобы обсудить идеи для своих заданий", - "textMeaningTranslate": "Провести мозговой штурм - это иметь много идей по определенной теме", - "wordTranslate": "мозговой штурм" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcb1" - }, - "group": 3, - "page": 13, - "word": "chaotic", - "image": "files/14_2066.jpg", - "audio": "files/14_2066.mp3", - "audioMeaning": "files/14_2066_meaning.mp3", - "audioExample": "files/14_2066_example.mp3", - "textMeaning": "When something is chaotic, it is crazy, confused, and hectic.", - "textExample": "The first day of school can be chaotic for a new student.", - "transcription": "[keiɑ́tik]", - "__v": 0, - "textExampleTranslate": "Первый день в школе может быть хаотичным для нового ученика", - "textMeaningTranslate": "Когда что-то хаотично, это безумие, растерянность и беспокойство", - "wordTranslate": "хаотичный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcb2" - }, - "group": 3, - "page": 13, - "word": "cite", - "image": "files/14_2067.jpg", - "audio": "files/14_2067.mp3", - "audioMeaning": "files/14_2067_meaning.mp3", - "audioExample": "files/14_2067_example.mp3", - "textMeaning": "To cite something is to mention it as an example or as proof of something.", - "textExample": "She cited six reasons that the school needed to build new classrooms.", - "transcription": "[sait]", - "__v": 0, - "textExampleTranslate": "Она привела шесть причин, по которым школе нужно было строить новые классные комнаты", - "textMeaningTranslate": "Процитировать что-либо означает упомянуть это как пример или как доказательство чего-либо", - "wordTranslate": "цитировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcb3" - }, - "group": 3, - "page": 13, - "word": "correspond", - "image": "files/14_2068.jpg", - "audio": "files/14_2068.mp3", - "audioMeaning": "files/14_2068_meaning.mp3", - "audioExample": "files/14_2068_example.mp3", - "textMeaning": "To correspond is to match or to be similar to something.", - "textExample": "The boy’s story didn’t correspond with his mother’s version.", - "transcription": "[kɔ̀ːrəspɑ́nd]", - "__v": 0, - "textExampleTranslate": "История мальчика не соответствовала версии его матери", - "textMeaningTranslate": "Соответствовать - значит соответствовать или быть похожим на что-то", - "wordTranslate": "соответствовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcb5" - }, - "group": 3, - "page": 13, - "word": "estate", - "image": "files/14_2070.jpg", - "audio": "files/14_2070.mp3", - "audioMeaning": "files/14_2070_meaning.mp3", - "audioExample": "files/14_2070_example.mp3", - "textMeaning": "An estate is a large area of land owned by a family or organization.", - "textExample": "He lived on his father’s estate in the country.", - "transcription": "[istéit]", - "__v": 0, - "textExampleTranslate": "Он жил в поместье своего отца в деревне", - "textMeaningTranslate": "Поместье - это большая территория, принадлежащая семье или организации", - "wordTranslate": "недвижимость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcb4" - }, - "group": 3, - "page": 13, - "word": "courtyard", - "image": "files/14_2069.jpg", - "audio": "files/14_2069.mp3", - "audioMeaning": "files/14_2069_meaning.mp3", - "audioExample": "files/14_2069_example.mp3", - "textMeaning": "A courtyard is an outdoor area that is surrounded by the walls of a building.", - "textExample": "During the summer, the courtyard is a nice place to have lunch.", - "transcription": "[kɔ́ːrtjɑ̀ːrd]", - "__v": 0, - "textExampleTranslate": "Летом во дворе можно хорошо пообедать", - "textMeaningTranslate": "Внутренний двор - это открытая площадка, окруженная стенами здания", - "wordTranslate": "двор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcb6" - }, - "group": 3, - "page": 13, - "word": "fraud", - "image": "files/14_2071.jpg", - "audio": "files/14_2071.mp3", - "audioMeaning": "files/14_2071_meaning.mp3", - "audioExample": "files/14_2071_example.mp3", - "textMeaning": "Fraud is the crime of gaining money by lying or by tricking people.", - "textExample": "Experts say that credit card fraud increases around the holidays.", - "transcription": "[frɔːd]", - "__v": 0, - "textExampleTranslate": "Эксперты говорят, что мошенничество с кредитными картами увеличивается в праздничные дни", - "textMeaningTranslate": "Мошенничество - это преступление, связанное с получением лжи или обмана", - "wordTranslate": "мошенничество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcb7" - }, - "group": 3, - "page": 13, - "word": "hydrogen", - "image": "files/14_2072.jpg", - "audio": "files/14_2072.mp3", - "audioMeaning": "files/14_2072_meaning.mp3", - "audioExample": "files/14_2072_example.mp3", - "textMeaning": "Hydrogen is a gas that has no taste, color, or smell.", - "textExample": "Airships used to be filled with hydrogen, but it exploded easily.", - "transcription": "[háidrəʤən]", - "__v": 0, - "textExampleTranslate": "Дирижабли раньше были заполнены водородом, но он легко взрывался", - "textMeaningTranslate": "Водород - это газ, который не имеет вкуса, цвета или запаха", - "wordTranslate": "водород" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcb8" - }, - "group": 3, - "page": 13, - "word": "integrity", - "image": "files/14_2073.jpg", - "audio": "files/14_2073.mp3", - "audioMeaning": "files/14_2073_meaning.mp3", - "audioExample": "files/14_2073_example.mp3", - "textMeaning": "Integrity is honesty and good morals.", - "textExample": "The principal had a lot of integrity.", - "transcription": "[intégrəti]", - "__v": 0, - "textExampleTranslate": "У директора было много честности", - "textMeaningTranslate": "Честность - это честность и хорошая мораль", - "wordTranslate": "целостность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcb9" - }, - "group": 3, - "page": 13, - "word": "outlook", - "image": "files/14_2074.jpg", - "audio": "files/14_2074.mp3", - "audioMeaning": "files/14_2074_meaning.mp3", - "audioExample": "files/14_2074_example.mp3", - "textMeaning": "An outlook is a person’s opinion or way of thinking about something.", - "textExample": "He changed his outlook about rats after he read a book about them.", - "transcription": "[áutlùk]", - "__v": 0, - "textExampleTranslate": "Он изменил свой взгляд на крыс после того, как прочитал книгу о них", - "textMeaningTranslate": "Мировоззрение - это мнение человека или способ думать о чем-то", - "wordTranslate": "перспектива" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcbb" - }, - "group": 3, - "page": 13, - "word": "prehistoric", - "image": "files/14_2076.jpg", - "audio": "files/14_2076.mp3", - "audioMeaning": "files/14_2076_meaning.mp3", - "audioExample": "files/14_2076_example.mp3", - "textMeaning": "When something is prehistoric, it is from a time before written history.", - "textExample": "The scientists found prehistoric pots used by the people in the area.", - "transcription": "[prìːhistɔ́ːrik]", - "__v": 0, - "textExampleTranslate": "Ученые обнаружили доисторические горшки, используемые людьми в этом районе", - "textMeaningTranslate": "Когда что-то доисторическое, это от времени до написания истории", - "wordTranslate": "доисторический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcba" - }, - "group": 3, - "page": 13, - "word": "parachute", - "image": "files/14_2075.jpg", - "audio": "files/14_2075.mp3", - "audioMeaning": "files/14_2075_meaning.mp3", - "audioExample": "files/14_2075_example.mp3", - "textMeaning": "A parachute is a device that helps people and things fall to the ground safely.", - "textExample": "They used parachutes dropped from airplanes to send supplies to the civilians.", - "transcription": "[pǽrəʃùːt]", - "__v": 0, - "textExampleTranslate": "Они использовали парашюты, сброшенные с самолетов, для отправки грузов гражданским лицам", - "textMeaningTranslate": "Парашют - это устройство, которое помогает людям и вещам безопасно падать на землю", - "wordTranslate": "парашют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcbc" - }, - "group": 3, - "page": 13, - "word": "proponent", - "image": "files/14_2077.jpg", - "audio": "files/14_2077.mp3", - "audioMeaning": "files/14_2077_meaning.mp3", - "audioExample": "files/14_2077_example.mp3", - "textMeaning": "A proponent is a person who supports an idea or a plan.", - "textExample": "He was a proponent of using environmentally-friendly products.", - "transcription": "[prəpóunənt]", - "__v": 0, - "textExampleTranslate": "Он был сторонником использования экологически чистых продуктов", - "textMeaningTranslate": "Сторонник - это человек, который поддерживает идею или план", - "wordTranslate": "инициатор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcbd" - }, - "group": 3, - "page": 13, - "word": "refine", - "image": "files/14_2078.jpg", - "audio": "files/14_2078.mp3", - "audioMeaning": "files/14_2078_meaning.mp3", - "audioExample": "files/14_2078_example.mp3", - "textMeaning": "To refine something is to make it better by making changes.", - "textExample": "The principal refined his method of controlling students over the years.", - "transcription": "[rifáin]", - "__v": 0, - "textExampleTranslate": "Директор усовершенствовал свой метод управления студентами на протяжении многих лет", - "textMeaningTranslate": "Улучшать что-то - значит делать это лучше, внося изменения", - "wordTranslate": "уточняют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcbe" - }, - "group": 3, - "page": 13, - "word": "restrict", - "image": "files/14_2079.jpg", - "audio": "files/14_2079.mp3", - "audioMeaning": "files/14_2079_meaning.mp3", - "audioExample": "files/14_2079_example.mp3", - "textMeaning": "To restrict something is to limit it and prevent it from getting bigger.", - "textExample": "The club restricted the amount of members.", - "transcription": "[ristríkt]", - "__v": 0, - "textExampleTranslate": "Клуб ограничил количество членов", - "textMeaningTranslate": "Ограничить что-то - значит ограничить это и не дать ему стать больше", - "wordTranslate": "ограничить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcbf" - }, - "group": 3, - "page": 13, - "word": "team", - "image": "files/14_2080.jpg", - "audio": "files/14_2080.mp3", - "audioMeaning": "files/14_2080_meaning.mp3", - "audioExample": "files/14_2080_example.mp3", - "textMeaning": "A team is a group of people who work closely together.", - "textExample": "The All Blacks are my favorite sports team.", - "transcription": "[tiːm]", - "__v": 0, - "textExampleTranslate": "Все черные - моя любимая спортивная команда", - "textMeaningTranslate": "Команда - это группа людей, которые тесно сотрудничают", - "wordTranslate": "команда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcc0" - }, - "group": 3, - "page": 14, - "word": "aggregate", - "image": "files/15_2081.jpg", - "audio": "files/15_2081.mp3", - "audioMeaning": "files/15_2081_meaning.mp3", - "audioExample": "files/15_2081_example.mp3", - "textMeaning": "When something is aggregate, it is made up of smaller amounts added together.", - "textExample": "The company totaled its aggregate sales for the entire year.", - "transcription": "[ǽgrəgit]", - "__v": 0, - "textExampleTranslate": "Компания подвела итоги продаж за весь год", - "textMeaningTranslate": "Когда что-то является совокупным, оно состоит из меньших сумм, сложенных вместе", - "wordTranslate": "агрегат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcc1" - }, - "group": 3, - "page": 14, - "word": "antibiotic", - "image": "files/15_2082.jpg", - "audio": "files/15_2082.mp3", - "audioMeaning": "files/15_2082_meaning.mp3", - "audioExample": "files/15_2082_example.mp3", - "textMeaning": "An antibiotic is a medical drug used to kill bacteria and treat infections.", - "textExample": "The doctor gave me a shot of an antibiotic when I got the flu.", - "transcription": "[æ̀ntibaiɑ́tik]", - "__v": 0, - "textExampleTranslate": "Врач дал мне укол антибиотика, когда я заболел гриппом", - "textMeaningTranslate": "Антибиотик - это медицинский препарат, используемый для уничтожения бактерий и лечения инфекций", - "wordTranslate": "антибиотик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcc2" - }, - "group": 3, - "page": 14, - "word": "circuit", - "image": "files/15_2083.jpg", - "audio": "files/15_2083.mp3", - "audioMeaning": "files/15_2083_meaning.mp3", - "audioExample": "files/15_2083_example.mp3", - "textMeaning": "A circuit is a piece of an electronic device that allows electricity to flow.", - "textExample": "Be very careful not to shock yourself when fixing an electrical circuit.", - "transcription": "[sə́ːrkit]", - "__v": 0, - "textExampleTranslate": "Будьте очень осторожны, чтобы не ударить себя при исправлении электрической цепи", - "textMeaningTranslate": "Схема представляет собой часть электронного устройства, которое позволяет электричеству течь", - "wordTranslate": "цепь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcc3" - }, - "group": 3, - "page": 14, - "word": "database", - "image": "files/15_2086.jpg", - "audio": "files/15_2086.mp3", - "audioMeaning": "files/15_2086_meaning.mp3", - "audioExample": "files/15_2086_example.mp3", - "textMeaning": "A database is a collection of data that is stored in a computer.", - "textExample": "The company has a database of all the names and accounts of their customers.", - "transcription": "[déitəbèis]", - "__v": 0, - "textExampleTranslate": "У компании есть база данных всех имен и учетных записей их клиентов", - "textMeaningTranslate": "База данных - это набор данных, которые хранятся на компьютере", - "wordTranslate": "база данных" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcc5" - }, - "group": 3, - "page": 14, - "word": "equivalent", - "image": "files/15_2087.jpg", - "audio": "files/15_2087.mp3", - "audioMeaning": "files/15_2087_meaning.mp3", - "audioExample": "files/15_2087_example.mp3", - "textMeaning": "An equivalent is an amount or value that is the same as another amount or value.", - "textExample": "I worked the equivalent of sixty hours this week.", - "transcription": "[ikwívələnt]", - "__v": 0, - "textExampleTranslate": "Я работал эквивалент шестьдесят часов на этой неделе", - "textMeaningTranslate": "Эквивалентом является сумма или стоимость, которая совпадает с другой суммой или стоимостью", - "wordTranslate": "эквивалент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcc4" - }, - "group": 3, - "page": 14, - "word": "compress", - "image": "files/15_2085.jpg", - "audio": "files/15_2085.mp3", - "audioMeaning": "files/15_2085_meaning.mp3", - "audioExample": "files/15_2085_example.mp3", - "textMeaning": "To compress something means to press or squeeze it so that it takes up less space.", - "textExample": "I compressed my clothes to fit into a single suitcase.", - "transcription": "[kəmprés]", - "__v": 0, - "textExampleTranslate": "Я сжал свою одежду, чтобы поместиться в один чемодан", - "textMeaningTranslate": "Сжать что-то - значит нажать или сжать его, чтобы оно занимало меньше места", - "wordTranslate": "компресс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcc6" - }, - "group": 3, - "page": 14, - "word": "complement", - "image": "files/15_2084.jpg", - "audio": "files/15_2084.mp3", - "audioMeaning": "files/15_2084_meaning.mp3", - "audioExample": "files/15_2084_example.mp3", - "textMeaning": "To complement something or someone is to make them better.", - "textExample": "The wool scarf complemented her lovely eyes.", - "transcription": "[kɑ́mpləmènt]", - "__v": 0, - "textExampleTranslate": "Шерстяной шарф дополнял ее прекрасные глаза", - "textMeaningTranslate": "Чтобы дополнить что-то или кто-то, чтобы сделать их лучше", - "wordTranslate": "дополнить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcc7" - }, - "group": 3, - "page": 14, - "word": "immune", - "image": "files/15_2088.jpg", - "audio": "files/15_2088.mp3", - "audioMeaning": "files/15_2088_meaning.mp3", - "audioExample": "files/15_2088_example.mp3", - "textMeaning": "When someone is immune to a disease, they cannot be affected by it.", - "textExample": "Children usually get shots to make them immune to certain diseases.", - "transcription": "[imjúːn]", - "__v": 0, - "textExampleTranslate": "Дети обычно получают прививки, чтобы сделать их невосприимчивыми к определенным заболеваниям", - "textMeaningTranslate": "Когда кто-то невосприимчив к заболеванию, он не может на него повлиять", - "wordTranslate": "иммунитет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcc8" - }, - "group": 3, - "page": 14, - "word": "input", - "image": "files/15_2089.jpg", - "audio": "files/15_2089.mp3", - "audioMeaning": "files/15_2089_meaning.mp3", - "audioExample": "files/15_2089_example.mp3", - "textMeaning": "Input is information that is put into a computer.", - "textExample": "Type the input into the computer program.", - "transcription": "[ínpùt]", - "__v": 0, - "textExampleTranslate": "Введите ввод в компьютерную программу", - "textMeaningTranslate": "Ввод - это информация, которая вводится в компьютер", - "wordTranslate": "вход" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcc9" - }, - "group": 3, - "page": 14, - "word": "magnet", - "image": "files/15_2091.jpg", - "audio": "files/15_2091.mp3", - "audioMeaning": "files/15_2091_meaning.mp3", - "audioExample": "files/15_2091_example.mp3", - "textMeaning": "A magnet is a piece of iron or other material which attracts iron toward it.", - "textExample": "I used a magnet to pick up the nails that were scattered on the floor.", - "transcription": "[mǽgnit]", - "__v": 0, - "textExampleTranslate": "Я использовал магнит, чтобы поднять гвозди, которые были разбросаны по полу", - "textMeaningTranslate": "Магнит - это кусок железа или другого материала, который притягивает к себе железо", - "wordTranslate": "магнит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcca" - }, - "group": 3, - "page": 14, - "word": "intimate", - "image": "files/15_2090.jpg", - "audio": "files/15_2090.mp3", - "audioMeaning": "files/15_2090_meaning.mp3", - "audioExample": "files/15_2090_example.mp3", - "textMeaning": "When a relationship is intimate, the two things are very closely connected.", - "textExample": "I only tell my secrets to my most intimate friends.", - "transcription": "[íntəmit]", - "__v": 0, - "textExampleTranslate": "Я делюсь своими секретами только с самыми близкими друзьями", - "textMeaningTranslate": "Когда отношения близки, две вещи очень тесно связаны", - "wordTranslate": "намекнуть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afccb" - }, - "group": 3, - "page": 14, - "word": "metabolism", - "image": "files/15_2092.jpg", - "audio": "files/15_2092.mp3", - "audioMeaning": "files/15_2092_meaning.mp3", - "audioExample": "files/15_2092_example.mp3", - "textMeaning": "A person’s metabolism is the way chemical processes in their body use energy.", - "textExample": "If you exercise every day, your metabolism speeds up.", - "transcription": "[mətǽbəlìzəm]", - "__v": 0, - "textExampleTranslate": "Если вы тренируетесь каждый день, ваш метаболизм ускоряется", - "textMeaningTranslate": "Метаболизм человека - это способ, которым химические процессы в его организме используют энергию", - "wordTranslate": "метаболизм" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afccc" - }, - "group": 3, - "page": 14, - "word": "microchip", - "image": "files/15_2093.jpg", - "audio": "files/15_2093.mp3", - "audioMeaning": "files/15_2093_meaning.mp3", - "audioExample": "files/15_2093_example.mp3", - "textMeaning": "A microchip is a small device in a computer that holds information.", - "textExample": "I can put more data on my computer if I buy a more powerful microchip.", - "transcription": "[máikroutʃìp]", - "__v": 0, - "textExampleTranslate": "Я могу разместить больше данных на своем компьютере, если куплю более мощный микрочип", - "textMeaningTranslate": "Микрочип - это небольшое устройство в компьютере, которое содержит информацию", - "wordTranslate": "микрочип" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afccd" - }, - "group": 3, - "page": 14, - "word": "phase", - "image": "files/15_2094.jpg", - "audio": "files/15_2094.mp3", - "audioMeaning": "files/15_2094_meaning.mp3", - "audioExample": "files/15_2094_example.mp3", - "textMeaning": "A phase is a stage in a process or the gradual development of something.", - "textExample": "The first phase in the recycling project involves finding volunteers to help out.", - "transcription": "[feiz]", - "__v": 0, - "textExampleTranslate": "Первая фаза в проекте по утилизации включает поиск добровольцев, чтобы помочь", - "textMeaningTranslate": "Фаза - это стадия в процессе или постепенное развитие чего-либо", - "wordTranslate": "фаза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcce" - }, - "group": 3, - "page": 14, - "word": "pinch", - "image": "files/15_2095.jpg", - "audio": "files/15_2095.mp3", - "audioMeaning": "files/15_2095_meaning.mp3", - "audioExample": "files/15_2095_example.mp3", - "textMeaning": "To pinch means to take a piece of skin between one’s fingers and squeeze.", - "textExample": "I pinched my nose so I couldn’t smell the odor from the garbage.", - "transcription": "[pintʃ]", - "__v": 0, - "textExampleTranslate": "Я ущипнул себя за нос, чтобы не чувствовать запах мусора", - "textMeaningTranslate": "Ущипнуть означает взять кусок кожи между пальцами и сжать", - "wordTranslate": "зажать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afccf" - }, - "group": 3, - "page": 14, - "word": "quantum", - "image": "files/15_2097.jpg", - "audio": "files/15_2097.mp3", - "audioMeaning": "files/15_2097_meaning.mp3", - "audioExample": "files/15_2097_example.mp3", - "textMeaning": "When something is quantum, it relates to the behavior of atomic particles.", - "textExample": "The physics student studied quantum mechanics.", - "transcription": "[kwɑ́ntəm]", - "__v": 0, - "textExampleTranslate": "Студент-физик изучал квантовую механику", - "textMeaningTranslate": "Когда что-то является квантовым, это относится к поведению атомных частиц", - "wordTranslate": "квант" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcd0" - }, - "group": 3, - "page": 14, - "word": "prevalent", - "image": "files/15_2096.jpg", - "audio": "files/15_2096.mp3", - "audioMeaning": "files/15_2096_meaning.mp3", - "audioExample": "files/15_2096_example.mp3", - "textMeaning": "When something is prevalent, it is common.", - "textExample": "Growing a beard is more prevalent in some countries than in others.", - "transcription": "[prévələnt]", - "__v": 0, - "textExampleTranslate": "В некоторых странах отращивание бороды более распространено, чем в других", - "textMeaningTranslate": "Когда что-то распространено, это распространено", - "wordTranslate": "превалирует" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcd1" - }, - "group": 3, - "page": 14, - "word": "ratio", - "image": "files/15_2098.jpg", - "audio": "files/15_2098.mp3", - "audioMeaning": "files/15_2098_meaning.mp3", - "audioExample": "files/15_2098_example.mp3", - "textMeaning": "A ratio is a relationship between two things expressed in numbers or amounts.", - "textExample": "The boy-to-girl ratio is one to three.", - "transcription": "[réiʃou]", - "__v": 0, - "textExampleTranslate": "Соотношение мальчиков и девочек составляет один к трем", - "textMeaningTranslate": "Соотношение - это отношение между двумя вещами, выраженными в цифрах или количествах", - "wordTranslate": "отношение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcd2" - }, - "group": 3, - "page": 14, - "word": "spiral", - "image": "files/15_2099.jpg", - "audio": "files/15_2099.mp3", - "audioMeaning": "files/15_2099_meaning.mp3", - "audioExample": "files/15_2099_example.mp3", - "textMeaning": "A spiral is a shape which winds round and round as if around a cylinder.", - "textExample": "A strand of DNA looks like two interlocking spirals.", - "transcription": "[spáiərəl]", - "__v": 0, - "textExampleTranslate": "Нить ДНК выглядит как две взаимосвязанные спирали", - "textMeaningTranslate": "Спираль - это форма, которая вращается вокруг и вокруг, как будто вокруг цилиндра", - "wordTranslate": "спираль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcd3" - }, - "group": 3, - "page": 14, - "word": "viral", - "image": "files/15_2100.jpg", - "audio": "files/15_2100.mp3", - "audioMeaning": "files/15_2100_meaning.mp3", - "audioExample": "files/15_2100_example.mp3", - "textMeaning": "When something is viral, it is a disease or infection that is caused by a virus.", - "textExample": "The girl was in bed for a week when she had a viral infection.", - "transcription": "[váiərəl]", - "__v": 0, - "textExampleTranslate": "Девушка была в постели неделю, когда у нее была вирусная инфекция", - "textMeaningTranslate": "Когда что-то вирусное, это болезнь или инфекция, вызванная вирусом", - "wordTranslate": "вирусный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcd4" - }, - "group": 3, - "page": 15, - "word": "administration", - "image": "files/16_2102.jpg", - "audio": "files/16_2102.mp3", - "audioMeaning": "files/16_2102_meaning.mp3", - "audioExample": "files/16_2102_example.mp3", - "textMeaning": "An administration is the group of people who manage a company or organization.", - "textExample": "She hoped she could be promoted to a job in administration.", - "transcription": "[ədmìnəstréiʃən]", - "__v": 0, - "textExampleTranslate": "Она надеялась, что сможет получить должность в администрации", - "textMeaningTranslate": "Администрация - это группа людей, которые управляют компанией или организацией", - "wordTranslate": "администрация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcd7" - }, - "group": 3, - "page": 15, - "word": "biotechnology", - "image": "files/16_2104.jpg", - "audio": "files/16_2104.mp3", - "audioMeaning": "files/16_2104_meaning.mp3", - "audioExample": "files/16_2104_example.mp3", - "textMeaning": "Biotechnology is the use of living parts, such as cells, in industry and technology.", - "textExample": "Researchers at the biotechnology company use bacteria to make medicine.", - "transcription": "[bàiouteknɑ́lədʒi]", - "__v": 0, - "textExampleTranslate": "Исследователи в биотехнологической компании используют бактерии для производства лекарств", - "textMeaningTranslate": "Биотехнология - это использование живых частей, таких как клетки, в промышленности и технологии", - "wordTranslate": "биотехнология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcd5" - }, - "group": 3, - "page": 15, - "word": "acid", - "image": "files/16_2101.jpg", - "audio": "files/16_2101.mp3", - "audioMeaning": "files/16_2101_meaning.mp3", - "audioExample": "files/16_2101_example.mp3", - "textMeaning": "An acid is a chemical that can burn or dissolve other substances.", - "textExample": "In chemistry class, we mixed two acids together and watched the reaction.", - "transcription": "[ǽsid]", - "__v": 0, - "textExampleTranslate": "На уроке химии мы смешали две кислоты вместе и наблюдали за реакцией", - "textMeaningTranslate": "Кислота - это химическое вещество, которое может сжечь или растворить другие вещества", - "wordTranslate": "кислота" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcd8" - }, - "group": 3, - "page": 15, - "word": "cholesterol", - "image": "files/16_2105.jpg", - "audio": "files/16_2105.mp3", - "audioMeaning": "files/16_2105_meaning.mp3", - "audioExample": "files/16_2105_example.mp3", - "textMeaning": "Cholesterol is a substance in fat, tissues, and blood of all animals.", - "textExample": "When people have too much cholesterol, they are at a high risk for heart problems.", - "transcription": "[kəléstəròul]", - "__v": 0, - "textExampleTranslate": "Когда у людей слишком много холестерина, они подвергаются высокому риску проблем с сердцем", - "textMeaningTranslate": "Холестерин - это вещество в жире, тканях и крови всех животных", - "wordTranslate": "холестерин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcd6" - }, - "group": 3, - "page": 15, - "word": "administrative", - "image": "files/16_2103.jpg", - "audio": "files/16_2103.mp3", - "audioMeaning": "files/16_2103_meaning.mp3", - "audioExample": "files/16_2103_example.mp3", - "textMeaning": "Administrative describes anything related to managing a company or organization.", - "textExample": "I work as an administrative assistant to the owner of the company.", - "transcription": "[ədmínəstrèitiv]", - "__v": 0, - "textExampleTranslate": "Я работаю административным помощником владельца компании", - "textMeaningTranslate": "Административный описывает все, что связано с управлением компанией или организацией", - "wordTranslate": "административные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcd9" - }, - "group": 3, - "page": 15, - "word": "coalition", - "image": "files/16_2106.jpg", - "audio": "files/16_2106.mp3", - "audioMeaning": "files/16_2106_meaning.mp3", - "audioExample": "files/16_2106_example.mp3", - "textMeaning": "A coalition is a group of people or organizations working for a common purpose.", - "textExample": "The companies formed a coalition to make trade less expensive.", - "transcription": "[kòuəlíʃən]", - "__v": 0, - "textExampleTranslate": "Компании создали коалицию, чтобы сделать торговлю менее дорогой", - "textMeaningTranslate": "Коалиция - это группа людей или организаций, работающих в общих целях", - "wordTranslate": "коалиция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcdd" - }, - "group": 3, - "page": 15, - "word": "erosion", - "image": "files/16_2110.jpg", - "audio": "files/16_2110.mp3", - "audioMeaning": "files/16_2110_meaning.mp3", - "audioExample": "files/16_2110_example.mp3", - "textMeaning": "Erosion is the destruction of rock or soil due to flowing water or weather.", - "textExample": "Canyons are formed because rivers of fast-moving water caused erosion.", - "transcription": "[iróuʒən]", - "__v": 0, - "textExampleTranslate": "Каньоны образовались из-за того, что реки быстро движущейся воды вызвали эрозию", - "textMeaningTranslate": "Эрозия - это разрушение камня или почвы из-за проточной воды или погоды", - "wordTranslate": "эрозия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcdc" - }, - "group": 3, - "page": 15, - "word": "eliminate", - "image": "files/16_2109.jpg", - "audio": "files/16_2109.mp3", - "audioMeaning": "files/16_2109_meaning.mp3", - "audioExample": "files/16_2109_example.mp3", - "textMeaning": "To eliminate something that is unwanted means to completely remove it.", - "textExample": "Wearing a seatbelt eliminates some of the dangers of driving a car.", - "transcription": "[ilímənèit]", - "__v": 0, - "textExampleTranslate": "Ношение ремня безопасности устраняет некоторые опасности вождения автомобиля", - "textMeaningTranslate": "Устранить то, что является нежелательным, означает полностью удалить это", - "wordTranslate": "ликвидировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcdb" - }, - "group": 3, - "page": 15, - "word": "diabetes", - "image": "files/16_2108.jpg", - "audio": "files/16_2108.mp3", - "audioMeaning": "files/16_2108_meaning.mp3", - "audioExample": "files/16_2108_example.mp3", - "textMeaning": "Diabetes is a medical condition in which a person’s body cannot control the level of sugar in their blood.", - "textExample": "Overweight people are more likely to suffer from diabetes than slimmer ones.", - "transcription": "[dàiəbí:tis]", - "__v": 0, - "textExampleTranslate": "Люди с избыточным весом чаще страдают от диабета, чем худые", - "textMeaningTranslate": "Диабет - это заболевание, при котором организм человека не может контролировать уровень сахара в крови", - "wordTranslate": "диабет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcda" - }, - "group": 3, - "page": 15, - "word": "deceptive", - "image": "files/16_2107.jpg", - "audio": "files/16_2107.mp3", - "audioMeaning": "files/16_2107_meaning.mp3", - "audioExample": "files/16_2107_example.mp3", - "textMeaning": "When something is deceptive, it encourages one to believe something that is false.", - "textExample": "The scary-looking man’s appearance is deceptive; he is actually very nice.", - "transcription": "[diséptiv]", - "__v": 0, - "textExampleTranslate": "Внешность страшно выглядящего человека обманчива, на самом деле он очень милый", - "textMeaningTranslate": "Когда что-то обманчиво, это побуждает человека верить во что-то ложное", - "wordTranslate": "обманчивый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcde" - }, - "group": 3, - "page": 15, - "word": "ethics", - "image": "files/16_2111.jpg", - "audio": "files/16_2111.mp3", - "audioMeaning": "files/16_2111_meaning.mp3", - "audioExample": "files/16_2111_example.mp3", - "textMeaning": "Ethics are moral beliefs or rules about right or wrong.", - "textExample": "The act of stealing certainly doesn’t go against some people’s ethics.", - "transcription": "[éɵiks]", - "__v": 0, - "textExampleTranslate": "Кража, конечно, не идет вразрез с этикой некоторых людей", - "textMeaningTranslate": "Этика - это моральные убеждения или правила о правильном или неправильном", - "wordTranslate": "этика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcdf" - }, - "group": 3, - "page": 15, - "word": "explicit", - "image": "files/16_2112.jpg", - "audio": "files/16_2112.mp3", - "audioMeaning": "files/16_2112_meaning.mp3", - "audioExample": "files/16_2112_example.mp3", - "textMeaning": "If something is explicit, it is very clear, open, and truthful.", - "textExample": "The man gave a very explicit account of the car accident.", - "transcription": "[iksplísit]", - "__v": 0, - "textExampleTranslate": "Человек дал очень четкое описание автомобильной аварии", - "textMeaningTranslate": "Если что-то явно, это очень ясно, открыто и правдиво", - "wordTranslate": "явный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afce0" - }, - "group": 3, - "page": 15, - "word": "framework", - "image": "files/16_2113.jpg", - "audio": "files/16_2113.mp3", - "audioMeaning": "files/16_2113_meaning.mp3", - "audioExample": "files/16_2113_example.mp3", - "textMeaning": "A framework is a set of rules or ideas that people use to solve problems.", - "textExample": "His ideas fit into the framework of a successful business plan.", - "transcription": "[fréimwə̀ːrk]", - "__v": 0, - "textExampleTranslate": "Его идеи вписываются в рамки успешного бизнес-плана", - "textMeaningTranslate": "Структура - это набор правил или идей, которые люди используют для решения проблем", - "wordTranslate": "фреймворк" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afce1" - }, - "group": 3, - "page": 15, - "word": "manufacture", - "image": "files/16_2114.jpg", - "audio": "files/16_2114.mp3", - "audioMeaning": "files/16_2114_meaning.mp3", - "audioExample": "files/16_2114_example.mp3", - "textMeaning": "To manufacture something means to make it in a factory.", - "textExample": "My father’s company manufactures steel building materials.", - "transcription": "[mæ̀njəfǽktʃəːr]", - "__v": 0, - "textExampleTranslate": "Компания моего отца производит стальные строительные материалы", - "textMeaningTranslate": "Производить что-то - значит делать это на фабрике", - "wordTranslate": "производство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afce2" - }, - "group": 3, - "page": 15, - "word": "mechanism", - "image": "files/16_2115.jpg", - "audio": "files/16_2115.mp3", - "audioMeaning": "files/16_2115_meaning.mp3", - "audioExample": "files/16_2115_example.mp3", - "textMeaning": "A mechanism is a part of a machine that performs a certain function.", - "textExample": "I can’t open my car door because the locking mechanism is broke.", - "transcription": "[mékənìzəm]", - "__v": 0, - "textExampleTranslate": "Я не могу открыть дверь машины, потому что сломан механизм блокировки", - "textMeaningTranslate": "Механизм - это часть машины, которая выполняет определенную функцию", - "wordTranslate": "механизм" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afce3" - }, - "group": 3, - "page": 15, - "word": "minimize", - "image": "files/16_2116.jpg", - "audio": "files/16_2116.mp3", - "audioMeaning": "files/16_2116_meaning.mp3", - "audioExample": "files/16_2116_example.mp3", - "textMeaning": "To minimize means to reduce something to the lowest possible level.", - "textExample": "I checked my homework twice to minimize errors I might have made.", - "transcription": "[mínəmàiz]", - "__v": 0, - "textExampleTranslate": "Я дважды проверил домашнее задание, чтобы минимизировать ошибки, которые я мог совершить", - "textMeaningTranslate": "Минимизировать означает снизить что-либо до минимально возможного уровня", - "wordTranslate": "минимизировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afce4" - }, - "group": 3, - "page": 15, - "word": "nectar", - "image": "files/16_2117.jpg", - "audio": "files/16_2117.mp3", - "audioMeaning": "files/16_2117_meaning.mp3", - "audioExample": "files/16_2117_example.mp3", - "textMeaning": "Nectar is a sweet liquid produced by flowers that bees and other insects collect.", - "textExample": "Bees use nectar to make their honey.", - "transcription": "[néktər]", - "__v": 0, - "textExampleTranslate": "Пчелы используют нектар для приготовления своего меда", - "textMeaningTranslate": "Нектар - это сладкая жидкость, получаемая цветами, которые собирают пчелы и другие насекомые", - "wordTranslate": "нектар" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afce7" - }, - "group": 3, - "page": 15, - "word": "straightforward", - "image": "files/16_2120.jpg", - "audio": "files/16_2120.mp3", - "audioMeaning": "files/16_2120_meaning.mp3", - "audioExample": "files/16_2120_example.mp3", - "textMeaning": "When something is straightforward, it is good because it is easy to understand.", - "textExample": "The teacher’s grading system was straightforward and fair.", - "transcription": "[strèitfɔ́ːrwərd]", - "__v": 0, - "textExampleTranslate": "Система оценок учителя была простой и честной", - "textMeaningTranslate": "Когда что-то простое, это хорошо, потому что это легко понять", - "wordTranslate": "простой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afce6" - }, - "group": 3, - "page": 15, - "word": "regime", - "image": "files/16_2119.jpg", - "audio": "files/16_2119.mp3", - "audioMeaning": "files/16_2119_meaning.mp3", - "audioExample": "files/16_2119_example.mp3", - "textMeaning": "A regime is a system of government or management.", - "textExample": "He was a member of the old regime that had been overthrown in the election.", - "transcription": "[reiʒíːm]", - "__v": 0, - "textExampleTranslate": "Он был членом старого режима, который был свергнут на выборах", - "textMeaningTranslate": "Режим - это система правительства или управления", - "wordTranslate": "режим" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afce5" - }, - "group": 3, - "page": 15, - "word": "notion", - "image": "files/16_2118.jpg", - "audio": "files/16_2118.mp3", - "audioMeaning": "files/16_2118_meaning.mp3", - "audioExample": "files/16_2118_example.mp3", - "textMeaning": "A notion is an idea or belief about something.", - "textExample": "I had a notion that this route would get us to the beach.", - "transcription": "[nóuʃən]", - "__v": 0, - "textExampleTranslate": "У меня было представление, что этот маршрут приведет нас к пляжу", - "textMeaningTranslate": "Понятие - это идея или вера о чем-то", - "wordTranslate": "понятие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afce8" - }, - "group": 3, - "page": 16, - "word": "bankrupt", - "image": "files/17_2121.jpg", - "audio": "files/17_2121.mp3", - "audioMeaning": "files/17_2121_meaning.mp3", - "audioExample": "files/17_2121_example.mp3", - "textMeaning": "If someone is bankrupt, then they are unable to pay their debts.", - "textExample": "The store had few customers and soon went bankrupt.", - "transcription": "[bǽŋkrʌpt]", - "__v": 0, - "textExampleTranslate": "У магазина было мало покупателей, и вскоре он обанкротился", - "textMeaningTranslate": "Если кто-то обанкротился, то он не может оплатить свои долги", - "wordTranslate": "банкрот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afce9" - }, - "group": 3, - "page": 16, - "word": "conform", - "image": "files/17_2122.jpg", - "audio": "files/17_2122.mp3", - "audioMeaning": "files/17_2122_meaning.mp3", - "audioExample": "files/17_2122_example.mp3", - "textMeaning": "To conform to rules or laws is to obey them.", - "textExample": "The new student had to conform to the school’s dress code.", - "transcription": "[kənfɔ́ːrm]", - "__v": 0, - "textExampleTranslate": "Новый ученик должен был соответствовать школьному дресс-коду", - "textMeaningTranslate": "Соблюдать правила или законы - значит подчиняться им", - "wordTranslate": "соответствовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcea" - }, - "group": 3, - "page": 16, - "word": "employ", - "image": "files/17_2123.jpg", - "audio": "files/17_2123.mp3", - "audioMeaning": "files/17_2123_meaning.mp3", - "audioExample": "files/17_2123_example.mp3", - "textMeaning": "To employ someone means to give work to them.", - "textExample": "The bookstore employed two full-time clerks.", - "transcription": "[implɔ́i]", - "__v": 0, - "textExampleTranslate": "В книжном магазине работали два штатных клерка", - "textMeaningTranslate": "Нанять кого-либо - значит дать ему работу", - "wordTranslate": "нанимают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afceb" - }, - "group": 3, - "page": 16, - "word": "expel", - "image": "files/17_2124.jpg", - "audio": "files/17_2124.mp3", - "audioMeaning": "files/17_2124_meaning.mp3", - "audioExample": "files/17_2124_example.mp3", - "textMeaning": "To expel someone means to force them to leave a place.", - "textExample": "Since he would not follow the rules, the principal had to expel the student.", - "transcription": "[ikspél]", - "__v": 0, - "textExampleTranslate": "Поскольку он не будет следовать правилам, директор должен был исключить студента", - "textMeaningTranslate": "Изгнать кого-либо означает заставить его покинуть место", - "wordTranslate": "высылать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcec" - }, - "group": 3, - "page": 16, - "word": "extension", - "image": "files/17_2125.jpg", - "audio": "files/17_2125.mp3", - "audioMeaning": "files/17_2125_meaning.mp3", - "audioExample": "files/17_2125_example.mp3", - "textMeaning": "An extension is a part added to something to give it more time or space.", - "textExample": "My parents decided to add an extension to our house for the new baby.", - "transcription": "[iksténʃən]", - "__v": 0, - "textExampleTranslate": "Мои родители решили добавить в наш дом пристройку для нового ребенка", - "textMeaningTranslate": "Расширение - это часть, добавленная к чему-либо, чтобы дать ему больше времени или пространства", - "wordTranslate": "расширение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afced" - }, - "group": 3, - "page": 16, - "word": "forthcoming", - "image": "files/17_2126.jpg", - "audio": "files/17_2126.mp3", - "audioMeaning": "files/17_2126_meaning.mp3", - "audioExample": "files/17_2126_example.mp3", - "textMeaning": "If something is forthcoming, then it is about to happen in the future.", - "textExample": "Some economists predicted that the forthcoming world economy would be severe.", - "transcription": "[fɔ̀ːrɵkʌ́miŋ]", - "__v": 0, - "textExampleTranslate": "Некоторые экономисты предсказывали, что будущая мировая экономика будет серьезной", - "textMeaningTranslate": "Если что-то ожидается, то это произойдет в будущем", - "wordTranslate": "предстоящий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcee" - }, - "group": 3, - "page": 16, - "word": "furnish", - "image": "files/17_2127.jpg", - "audio": "files/17_2127.mp3", - "audioMeaning": "files/17_2127_meaning.mp3", - "audioExample": "files/17_2127_example.mp3", - "textMeaning": "To furnish means to put furniture in a house or room.", - "textExample": "Most homes are furnished with tables, chairs, and beds.", - "transcription": "[fə́ːrniʃ]", - "__v": 0, - "textExampleTranslate": "Большинство домов обставлены столами, стульями и кроватями", - "textMeaningTranslate": "Обставлять - значит расставлять мебель в доме или комнате", - "wordTranslate": "отделка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcf0" - }, - "group": 3, - "page": 16, - "word": "hygienic", - "image": "files/17_2129.jpg", - "audio": "files/17_2129.mp3", - "audioMeaning": "files/17_2129_meaning.mp3", - "audioExample": "files/17_2129_example.mp3", - "textMeaning": "If something is hygienic, then it is clean and unlikely to cause disease.", - "textExample": "My sister works very hard to keep her entire home as hygienic as possible.", - "transcription": "[hàiʤinik]", - "__v": 0, - "textExampleTranslate": "Моя сестра очень усердно работает, чтобы сохранить весь свой дом как можно более гигиеничным", - "textMeaningTranslate": "Если что-то гигиеническое, то оно чистое и вряд ли вызовет болезнь", - "wordTranslate": "гигиенический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcef" - }, - "group": 3, - "page": 16, - "word": "hygiene", - "image": "files/17_2128.jpg", - "audio": "files/17_2128.mp3", - "audioMeaning": "files/17_2128_meaning.mp3", - "audioExample": "files/17_2128_example.mp3", - "textMeaning": "Hygiene is the conditions or methods needed for health and cleanliness.", - "textExample": "People who brush their teeth at least twice a day are practicing good hygiene.", - "transcription": "[háiʤiːn]", - "__v": 0, - "textExampleTranslate": "Люди, которые чистят зубы по крайней мере два раза в день, соблюдают правила гигиены", - "textMeaningTranslate": "Гигиена - это условия или методы, необходимые для здоровья и чистоты", - "wordTranslate": "гигиена" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcf1" - }, - "group": 3, - "page": 16, - "word": "landlord", - "image": "files/17_2130.jpg", - "audio": "files/17_2130.mp3", - "audioMeaning": "files/17_2130_meaning.mp3", - "audioExample": "files/17_2130_example.mp3", - "textMeaning": "A landlord is a man who rents property to a person.", - "textExample": "The landlord collected everyone’s rent money on the first day of every month.", - "transcription": "[lǽndlɔ̀ːrd]", - "__v": 0, - "textExampleTranslate": "Хозяин собирал все арендные деньги в первый день каждого месяца", - "textMeaningTranslate": "Арендодатель - это человек, который сдает собственность человеку", - "wordTranslate": "помещичья" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcf2" - }, - "group": 3, - "page": 16, - "word": "lease", - "image": "files/17_2131.jpg", - "audio": "files/17_2131.mp3", - "audioMeaning": "files/17_2131_meaning.mp3", - "audioExample": "files/17_2131_example.mp3", - "textMeaning": "To lease means to rent property, usually an apartment or land.", - "textExample": "When the family first leased the apartment, the rent was very low.", - "transcription": "[liːs]", - "__v": 0, - "textExampleTranslate": "Когда семья впервые арендовала квартиру, арендная плата была очень низкой", - "textMeaningTranslate": "Арендовать означает арендовать имущество, обычно квартиру или землю", - "wordTranslate": "аренда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcf3" - }, - "group": 3, - "page": 16, - "word": "mandatory", - "image": "files/17_2132.jpg", - "audio": "files/17_2132.mp3", - "audioMeaning": "files/17_2132_meaning.mp3", - "audioExample": "files/17_2132_example.mp3", - "textMeaning": "If something is mandatory, then it is required by law.", - "textExample": "It’s mandatory that everyone be at least 16 to drive a car in the US.", - "transcription": "[mǽndətɔ̀ːri]", - "__v": 0, - "textExampleTranslate": "Обязательно, чтобы в США всем было не менее 16 лет", - "textMeaningTranslate": "Если что-то является обязательным, то это требуется по закону", - "wordTranslate": "обязательное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcf4" - }, - "group": 3, - "page": 16, - "word": "mend", - "image": "files/17_2133.jpg", - "audio": "files/17_2133.mp3", - "audioMeaning": "files/17_2133_meaning.mp3", - "audioExample": "files/17_2133_example.mp3", - "textMeaning": "To mend something means to fix it when it is broken or damaged.", - "textExample": "Mother mended the rip in my pants with a piece of cloth.", - "transcription": "[mend]", - "__v": 0, - "textExampleTranslate": "Мама исправила разрыв в моих штанах куском ткани", - "textMeaningTranslate": "Исправить что-то означает исправить это, когда оно сломано или повреждено", - "wordTranslate": "исправиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcf5" - }, - "group": 3, - "page": 16, - "word": "mortgage", - "image": "files/17_2134.jpg", - "audio": "files/17_2134.mp3", - "audioMeaning": "files/17_2134_meaning.mp3", - "audioExample": "files/17_2134_example.mp3", - "textMeaning": "A mortgage is a loan for property, especially a home or a business.", - "textExample": "When they bought their new home, the married couple had to sign a mortgage.", - "transcription": "[mɔ́ːrgidʒ]", - "__v": 0, - "textExampleTranslate": "Когда они купили свой новый дом, супруги должны были подписать ипотечный кредит", - "textMeaningTranslate": "Ипотека - это кредит на имущество, особенно на дом или бизнес", - "wordTranslate": "ипотечный кредит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcf6" - }, - "group": 3, - "page": 16, - "word": "personnel", - "image": "files/17_2135.jpg", - "audio": "files/17_2135.mp3", - "audioMeaning": "files/17_2135_meaning.mp3", - "audioExample": "files/17_2135_example.mp3", - "textMeaning": "Personnel are employees in a business.", - "textExample": "When business increased, we had to hire more personnel.", - "transcription": "[pə̀ːrsənél]", - "__v": 0, - "textExampleTranslate": "Когда бизнес увеличился, нам пришлось нанять больше персонала", - "textMeaningTranslate": "Персонал - это работники в бизнесе", - "wordTranslate": "персонал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcf7" - }, - "group": 3, - "page": 16, - "word": "plumbing", - "image": "files/17_2136.jpg", - "audio": "files/17_2136.mp3", - "audioMeaning": "files/17_2136_meaning.mp3", - "audioExample": "files/17_2136_example.mp3", - "textMeaning": "Plumbing is the system of pipes used in a home to supply water.", - "textExample": "When the plumbing stopped working, no one was allowed to use the toilets.", - "transcription": "[plʌ́miŋ]", - "__v": 0, - "textExampleTranslate": "Когда перестала работать сантехника, никому не разрешили пользоваться туалетами", - "textMeaningTranslate": "Сантехника - это система труб, используемых в доме для подачи воды", - "wordTranslate": "сантехника" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcf8" - }, - "group": 3, - "page": 16, - "word": "quote", - "image": "files/17_2137.jpg", - "audio": "files/17_2137.mp3", - "audioMeaning": "files/17_2137_meaning.mp3", - "audioExample": "files/17_2137_example.mp3", - "textMeaning": "A quote is what someone has said, including saying how much a piece of work will cost.", - "textExample": "His writing was full of quotes from Shakespeare.", - "transcription": "[kwout]", - "__v": 0, - "textExampleTranslate": "Его письмо было полно цитат из Шекспира", - "textMeaningTranslate": "Цитата - это то, что кто-то сказал, включая то, сколько будет стоить произведение", - "wordTranslate": "цитировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcf9" - }, - "group": 3, - "page": 16, - "word": "tenant", - "image": "files/17_2138.jpg", - "audio": "files/17_2138.mp3", - "audioMeaning": "files/17_2138_meaning.mp3", - "audioExample": "files/17_2138_example.mp3", - "textMeaning": "A tenant is a person who rents property from a landlord.", - "textExample": "The new tenants moved into the house across the street.", - "transcription": "[ténənt]", - "__v": 0, - "textExampleTranslate": "Новые жильцы переехали в дом через улицу", - "textMeaningTranslate": "Арендатор - это лицо, которое арендует имущество у арендодателя", - "wordTranslate": "арендатор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcfb" - }, - "group": 3, - "page": 16, - "word": "whereby", - "image": "files/17_2140.jpg", - "audio": "files/17_2140.mp3", - "audioMeaning": "files/17_2140_meaning.mp3", - "audioExample": "files/17_2140_example.mp3", - "textMeaning": "Whereby means by which or through which.", - "textExample": "The mayor had a new bridge built whereby the citizens could cross the river.", - "transcription": "[hwɛəːrbái]", - "__v": 0, - "textExampleTranslate": "У мэра был построен новый мост, благодаря которому граждане могли переходить реку", - "textMeaningTranslate": "Который означает, с помощью которого или с помощью которого", - "wordTranslate": "согласно которому" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcfa" - }, - "group": 3, - "page": 16, - "word": "utility", - "image": "files/17_2139.jpg", - "audio": "files/17_2139.mp3", - "audioMeaning": "files/17_2139_meaning.mp3", - "audioExample": "files/17_2139_example.mp3", - "textMeaning": "A utility is a business that supplies services such as water or electricity.", - "textExample": "If you don’t pay the utilities, you may have your electricity turned off.", - "transcription": "[juːtíləti]", - "__v": 0, - "textExampleTranslate": "Если вы не платите за коммунальные услуги, возможно, у вас отключено электричество", - "textMeaningTranslate": "Утилита - это бизнес, который поставляет такие услуги, как вода или электричество", - "wordTranslate": "утилита" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcfc" - }, - "group": 3, - "page": 17, - "word": "adapt", - "image": "files/18_2141.jpg", - "audio": "files/18_2141.mp3", - "audioMeaning": "files/18_2141_meaning.mp3", - "audioExample": "files/18_2141_example.mp3", - "textMeaning": "To adapt means to change in order to deal with a new situation.", - "textExample": "When he went to the new town, he had to adapt to all the weather changes.", - "transcription": "[ədǽpt]", - "__v": 0, - "textExampleTranslate": "Когда он отправился в новый город, ему пришлось адаптироваться ко всем погодным изменениям", - "textMeaningTranslate": "Адаптировать - значит измениться, чтобы справиться с новой ситуацией", - "wordTranslate": "адаптироваться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcfd" - }, - "group": 3, - "page": 17, - "word": "biological", - "image": "files/18_2142.jpg", - "audio": "files/18_2142.mp3", - "audioMeaning": "files/18_2142_meaning.mp3", - "audioExample": "files/18_2142_example.mp3", - "textMeaning": "Biological describes the process of life and living things.", - "textExample": "In science class, we learned about the biological process of bacterial growth.", - "transcription": "[bàiəlɑ́dʒikəl]", - "__v": 0, - "textExampleTranslate": "На уроке науки мы узнали о биологическом процессе роста бактерий", - "textMeaningTranslate": "Биологический описывает процесс жизни и живых существ", - "wordTranslate": "биологический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcfe" - }, - "group": 3, - "page": 17, - "word": "cellular", - "image": "files/18_2143.jpg", - "audio": "files/18_2143.mp3", - "audioMeaning": "files/18_2143_meaning.mp3", - "audioExample": "files/18_2143_example.mp3", - "textMeaning": "When something is cellular, it relates to the cells of animals or plants.", - "textExample": "She used a microscope to see the activity at a cellular level.", - "transcription": "[séljələr]", - "__v": 0, - "textExampleTranslate": "Она использовала микроскоп, чтобы увидеть активность на клеточном уровне", - "textMeaningTranslate": "Когда что-то клеточное, это относится к клеткам животных или растений", - "wordTranslate": "сотовая связь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afcff" - }, - "group": 3, - "page": 17, - "word": "dynamic", - "image": "files/18_2144.jpg", - "audio": "files/18_2144.mp3", - "audioMeaning": "files/18_2144_meaning.mp3", - "audioExample": "files/18_2144_example.mp3", - "textMeaning": "When people are dynamic, they are lively and have creative ideas.", - "textExample": "The new, dynamic employee came up with a good way to juggle his workload.", - "transcription": "[dainǽmik]", - "__v": 0, - "textExampleTranslate": "Новый динамичный сотрудник придумал хороший способ манипулировать своей рабочей нагрузкой", - "textMeaningTranslate": "Когда люди динамичны, они живы и имеют креативные идеи", - "wordTranslate": "динамический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd00" - }, - "group": 3, - "page": 17, - "word": "fantasy", - "image": "files/18_2145.jpg", - "audio": "files/18_2145.mp3", - "audioMeaning": "files/18_2145_meaning.mp3", - "audioExample": "files/18_2145_example.mp3", - "textMeaning": "A fantasy is a pleasant situation that people think about but is unlikely to happen.", - "textExample": "Becoming an astronaut is a fantasy shared by many children.", - "transcription": "[fǽntəsi]", - "__v": 0, - "textExampleTranslate": "Стать космонавтом - это фантазия, которую разделяют многие дети", - "textMeaningTranslate": "Фантазия - это приятная ситуация, о которой думают люди, но она вряд ли случится", - "wordTranslate": "фантазия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd01" - }, - "group": 3, - "page": 17, - "word": "heredity", - "image": "files/18_2146.jpg", - "audio": "files/18_2146.mp3", - "audioMeaning": "files/18_2146_meaning.mp3", - "audioExample": "files/18_2146_example.mp3", - "textMeaning": "Heredity is the process of passing on features from parents to children.", - "textExample": "The boy’s face is similar to his father’s because of heredity.", - "transcription": "[hirédəti]", - "__v": 0, - "textExampleTranslate": "Лицо мальчика похоже на лицо его отца из-за наследственности", - "textMeaningTranslate": "Наследственность - это процесс передачи черт от родителей детям", - "wordTranslate": "наследственность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd02" - }, - "group": 3, - "page": 17, - "word": "internal", - "image": "files/18_2147.jpg", - "audio": "files/18_2147.mp3", - "audioMeaning": "files/18_2147_meaning.mp3", - "audioExample": "files/18_2147_example.mp3", - "textMeaning": "When something is internal, it exists or happens inside a person, object, or place.", - "textExample": "We removed the outer case to reveal the computer’s internal wires.", - "transcription": "[intə́ːrnl]", - "__v": 0, - "textExampleTranslate": "Мы сняли внешний корпус, чтобы раскрыть внутренние провода компьютера", - "textMeaningTranslate": "Когда что-то является внутренним, оно существует или происходит внутри человека, объекта или места", - "wordTranslate": "внутренний" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd03" - }, - "group": 3, - "page": 17, - "word": "minimal", - "image": "files/18_2148.jpg", - "audio": "files/18_2148.mp3", - "audioMeaning": "files/18_2148_meaning.mp3", - "audioExample": "files/18_2148_example.mp3", - "textMeaning": "When something is minimal, it is very small.", - "textExample": "My lazy husband does a minimal amount of work around the house.", - "transcription": "[mínəməl]", - "__v": 0, - "textExampleTranslate": "Мой ленивый муж выполняет минимальную работу по дому", - "textMeaningTranslate": "Когда что-то минимально, оно очень мало", - "wordTranslate": "минимальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd04" - }, - "group": 3, - "page": 17, - "word": "pioneer", - "image": "files/18_2149.jpg", - "audio": "files/18_2149.mp3", - "audioMeaning": "files/18_2149_meaning.mp3", - "audioExample": "files/18_2149_example.mp3", - "textMeaning": "A pioneer is a person who is the first to discover or be involved in something.", - "textExample": "He was a pioneer of computer programming.", - "transcription": "[pàiəníər]", - "__v": 0, - "textExampleTranslate": "Он был пионером компьютерного программирования", - "textMeaningTranslate": "Пионер - это человек, который первым обнаруживает или вовлекается во что-то", - "wordTranslate": "пионер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd05" - }, - "group": 3, - "page": 17, - "word": "prescribe", - "image": "files/18_2150.jpg", - "audio": "files/18_2150.mp3", - "audioMeaning": "files/18_2150_meaning.mp3", - "audioExample": "files/18_2150_example.mp3", - "textMeaning": "To prescribe medicine means to tell someone to take it.", - "textExample": "When I was sick, the doctor prescribed me flu medicine for me to take.", - "transcription": "[priskráib]", - "__v": 0, - "textExampleTranslate": "Когда я болел, врач прописал мне лекарство от гриппа, которое мне нужно принимать", - "textMeaningTranslate": "Назначить лекарство - значит сказать кому-то, чтобы его принимать", - "wordTranslate": "предписать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd06" - }, - "group": 3, - "page": 17, - "word": "respective", - "image": "files/18_2151.jpg", - "audio": "files/18_2151.mp3", - "audioMeaning": "files/18_2151_meaning.mp3", - "audioExample": "files/18_2151_example.mp3", - "textMeaning": "When things are respective, they relate separately to each person just mentioned.", - "textExample": "The boxers were told to return to their respective corners.", - "transcription": "[rispéactive]", - "__v": 0, - "textExampleTranslate": "Боксерам сказали вернуться на свои углы", - "textMeaningTranslate": "Когда вещи соотносятся, они относятся отдельно к каждому только что упомянутому человеку", - "wordTranslate": "соответствующий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd07" - }, - "group": 3, - "page": 17, - "word": "rigid", - "image": "files/18_2152.jpg", - "audio": "files/18_2152.mp3", - "audioMeaning": "files/18_2152_meaning.mp3", - "audioExample": "files/18_2152_example.mp3", - "textMeaning": "When rules or systems are rigid, they are severe because they cannot be changed.", - "textExample": "Societies often have rigid rules about the way that people are supposed to act.", - "transcription": "[rídʒid]", - "__v": 0, - "textExampleTranslate": "В обществах часто существуют жесткие правила поведения людей", - "textMeaningTranslate": "Когда правила или системы жесткие, они суровы, потому что их нельзя изменить", - "wordTranslate": "жесткий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd08" - }, - "group": 3, - "page": 17, - "word": "sequence", - "image": "files/18_2153.jpg", - "audio": "files/18_2153.mp3", - "audioMeaning": "files/18_2153_meaning.mp3", - "audioExample": "files/18_2153_example.mp3", - "textMeaning": "A sequence is a number of events or things that come one after another.", - "textExample": "The dominos fell in a sequence of one after another.", - "transcription": "[síːkwəns]", - "__v": 0, - "textExampleTranslate": "Домино упали в последовательности один за другим", - "textMeaningTranslate": "Последовательность - это ряд событий или вещей, которые происходят один за другим", - "wordTranslate": "последовательность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd09" - }, - "group": 3, - "page": 17, - "word": "similar", - "image": "files/18_2154.jpg", - "audio": "files/18_2154.mp3", - "audioMeaning": "files/18_2154_meaning.mp3", - "audioExample": "files/18_2154_example.mp3", - "textMeaning": "Things which are similar are almost the same.", - "textExample": "I have had a similar experience to the one you described.", - "transcription": "[símələr]", - "__v": 0, - "textExampleTranslate": "У меня был опыт, подобный тому, который вы описали", - "textMeaningTranslate": "Вещи, которые похожи, почти одинаковы", - "wordTranslate": "аналогичный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd0a" - }, - "group": 3, - "page": 17, - "word": "substitute", - "image": "files/18_2155.jpg", - "audio": "files/18_2155.mp3", - "audioMeaning": "files/18_2155_meaning.mp3", - "audioExample": "files/18_2155_example.mp3", - "textMeaning": "To substitute something or someone means to have them take the place of another.", - "textExample": "When I ran out of juice, I had to substitute water to drink in the morning.", - "transcription": "[sΛbstətjùːt]", - "__v": 0, - "textExampleTranslate": "Когда у меня кончились соки, я должен был заменить воду, чтобы пить по утрам", - "textMeaningTranslate": "Заменить что-то или кого-то означает, что они заменят кого-то другого", - "wordTranslate": "замена" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd0b" - }, - "group": 3, - "page": 17, - "word": "surgeon", - "image": "files/18_2156.jpg", - "audio": "files/18_2156.mp3", - "audioMeaning": "files/18_2156_meaning.mp3", - "audioExample": "files/18_2156_example.mp3", - "textMeaning": "A surgeon is a doctor who is trained to do surgery.", - "textExample": "The surgeon operated on the old man’s heart.", - "transcription": "[sə́ːrdʒən]", - "__v": 0, - "textExampleTranslate": "Хирург прооперировал сердце старика", - "textMeaningTranslate": "Хирург - это врач, который обучен делать операцию", - "wordTranslate": "хирург" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd0c" - }, - "group": 3, - "page": 17, - "word": "therapy", - "image": "files/18_2157.jpg", - "audio": "files/18_2157.mp3", - "audioMeaning": "files/18_2157_meaning.mp3", - "audioExample": "files/18_2157_example.mp3", - "textMeaning": "Therapy is treatment for a particular physical or mental illness or condition.", - "textExample": "After she broke her legs, she used physical therapy to learn how to walk again.", - "transcription": "[θérəpi]", - "__v": 0, - "textExampleTranslate": "После того, как она сломала ноги, она использовала физиотерапию, чтобы снова научиться ходить", - "textMeaningTranslate": "Терапия - это лечение определенного физического или психического заболевания или состояния", - "wordTranslate": "терапия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd0d" - }, - "group": 3, - "page": 17, - "word": "transfer", - "image": "files/18_2158.jpg", - "audio": "files/18_2158.mp3", - "audioMeaning": "files/18_2158_meaning.mp3", - "audioExample": "files/18_2158_example.mp3", - "textMeaning": "To transfer something means to move it from one place to another.", - "textExample": "The family transferred the groceries from the shopping cart to the car.", - "transcription": "[trænsfə́ːr]", - "__v": 0, - "textExampleTranslate": "Семья перевела продукты из корзины покупок в машину", - "textMeaningTranslate": "Переносить что-либо означает перемещать это из одного места в другое", - "wordTranslate": "перечислить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd0e" - }, - "group": 3, - "page": 17, - "word": "transition", - "image": "files/18_2159.jpg", - "audio": "files/18_2159.mp3", - "audioMeaning": "files/18_2159_meaning.mp3", - "audioExample": "files/18_2159_example.mp3", - "textMeaning": "A transition is a process where there is a change from one form to another.", - "textExample": "The weather gets colder during the transition from summer to autumn.", - "transcription": "[trænzíʃən]", - "__v": 0, - "textExampleTranslate": "Погода становится холоднее при переходе с лета на осень", - "textMeaningTranslate": "Переход - это процесс, при котором происходит переход от одной формы к другой", - "wordTranslate": "переход" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd0f" - }, - "group": 3, - "page": 17, - "word": "transplant", - "image": "files/18_2160.jpg", - "audio": "files/18_2160.mp3", - "audioMeaning": "files/18_2160_meaning.mp3", - "audioExample": "files/18_2160_example.mp3", - "textMeaning": "A transplant is an operation in which a damaged part of one’s body is replaced.", - "textExample": "The sick child needed a heart transplant to live.", - "transcription": "[trǽnsplæ̀nt]", - "__v": 0, - "textExampleTranslate": "Больному ребенку нужна была пересадка сердца, чтобы жить", - "textMeaningTranslate": "Трансплантация - это операция, в ходе которой заменяется поврежденная часть тела", - "wordTranslate": "трансплантат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd10" - }, - "group": 3, - "page": 18, - "word": "astrology", - "image": "files/19_2161.jpg", - "audio": "files/19_2161.mp3", - "audioMeaning": "files/19_2161_meaning.mp3", - "audioExample": "files/19_2161_example.mp3", - "textMeaning": "Astrology is the study of the stars in the belief that they influence people’s lives.", - "textExample": "Jack, who studies astrology, believes that the stars can predict the future.", - "transcription": "[əstrɑ́lədʒi]", - "__v": 0, - "textExampleTranslate": "Джек, который изучает астрологию, считает, что звезды могут предсказывать будущее", - "textMeaningTranslate": "Астрология - это изучение звезд в убеждении, что они влияют на жизнь людей", - "wordTranslate": "астрология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd11" - }, - "group": 3, - "page": 18, - "word": "couple", - "image": "files/19_2162.jpg", - "audio": "files/19_2162.mp3", - "audioMeaning": "files/19_2162_meaning.mp3", - "audioExample": "files/19_2162_example.mp3", - "textMeaning": "A couple is made of two things that go together.", - "textExample": "There were a couple of problems I had to solve.", - "transcription": "[kΛpl]", - "__v": 0, - "textExampleTranslate": "Мне пришлось решить пару проблем", - "textMeaningTranslate": "Пара состоит из двух вещей, которые идут вместе", - "wordTranslate": "пара" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd12" - }, - "group": 3, - "page": 18, - "word": "deviate", - "image": "files/19_2163.jpg", - "audio": "files/19_2163.mp3", - "audioMeaning": "files/19_2163_meaning.mp3", - "audioExample": "files/19_2163_example.mp3", - "textMeaning": "To deviate is to move away from your proper course.", - "textExample": "Very few deviate much from the average.", - "transcription": "[díːvièit]", - "__v": 0, - "textExampleTranslate": "Очень немногие сильно отклоняются от среднего", - "textMeaningTranslate": "Отклониться - значит отойти от своего правильного курса", - "wordTranslate": "отклоняться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd13" - }, - "group": 3, - "page": 18, - "word": "differentiate", - "image": "files/19_2164.jpg", - "audio": "files/19_2164.mp3", - "audioMeaning": "files/19_2164_meaning.mp3", - "audioExample": "files/19_2164_example.mp3", - "textMeaning": "To differentiate things or people is to show the difference between them.", - "textExample": "It was hard to differentiate between the identical twins.", - "transcription": "[dìfərénʃièit]", - "__v": 0, - "textExampleTranslate": "Было трудно различить одинаковых близнецов", - "textMeaningTranslate": "Различать вещи или людей - значит показывать разницу между ними", - "wordTranslate": "дифференцировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd14" - }, - "group": 3, - "page": 18, - "word": "disrupt", - "image": "files/19_2165.jpg", - "audio": "files/19_2165.mp3", - "audioMeaning": "files/19_2165_meaning.mp3", - "audioExample": "files/19_2165_example.mp3", - "textMeaning": "To disrupt something or someone is to prevent them from working.", - "textExample": "The loud crash disrupted the class lecture.", - "transcription": "[disrʌ́pt]", - "__v": 0, - "textExampleTranslate": "Громкая авария сорвала лекцию класса", - "textMeaningTranslate": "Нарушить что-то или кого-то - значит помешать им работать", - "wordTranslate": "сорвать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd15" - }, - "group": 3, - "page": 18, - "word": "equation", - "image": "files/19_2166.jpg", - "audio": "files/19_2166.mp3", - "audioMeaning": "files/19_2166_meaning.mp3", - "audioExample": "files/19_2166_example.mp3", - "textMeaning": "An equation is a math operation to determine the value of something.", - "textExample": "I used the Pythagorean theorem to solve the equation.", - "transcription": "[ikwéiʒən]", - "__v": 0, - "textExampleTranslate": "Я использовал теорему Пифагора для решения уравнения", - "textMeaningTranslate": "Уравнение - это математическая операция для определения стоимости чего-либо", - "wordTranslate": "уравнение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd16" - }, - "group": 3, - "page": 18, - "word": "err", - "image": "files/19_2167.jpg", - "audio": "files/19_2167.mp3", - "audioMeaning": "files/19_2167_meaning.mp3", - "audioExample": "files/19_2167_example.mp3", - "textMeaning": "To err means to make a mistake.", - "textExample": "The pilot erred in his estimate of the time it would take to make the trip.", - "transcription": "[əːr]", - "__v": 0, - "textExampleTranslate": "Пилот ошибся в оценке времени, которое потребуется, чтобы совершить поездку", - "textMeaningTranslate": "Ошибаться - значит ошибиться", - "wordTranslate": "эээ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd17" - }, - "group": 3, - "page": 18, - "word": "erroneous", - "image": "files/19_2168.jpg", - "audio": "files/19_2168.mp3", - "audioMeaning": "files/19_2168_meaning.mp3", - "audioExample": "files/19_2168_example.mp3", - "textMeaning": "When something is erroneous, it is incorrect or only partly correct.", - "textExample": "The child held the erroneous belief that time machines were real.", - "transcription": "[iróuniəs]", - "__v": 0, - "textExampleTranslate": "Ребенок верил, что машины времени реальны", - "textMeaningTranslate": "Когда что-то ошибочно, это неправильно или только частично правильно", - "wordTranslate": "ошибочный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd18" - }, - "group": 3, - "page": 18, - "word": "frantic", - "image": "files/19_2169.jpg", - "audio": "files/19_2169.mp3", - "audioMeaning": "files/19_2169_meaning.mp3", - "audioExample": "files/19_2169_example.mp3", - "textMeaning": "If people or things are frantic, they behave in a wild way because they are frightened.", - "textExample": "The cat became frantic when I tried to give it a bath.", - "transcription": "[frǽntik]", - "__v": 0, - "textExampleTranslate": "Кот пришел в бешенство, когда я попытался дать ему ванну", - "textMeaningTranslate": "Если люди или вещи безумны, они ведут себя диким образом, потому что они напуганы", - "wordTranslate": "неистовый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd19" - }, - "group": 3, - "page": 18, - "word": "inadvertent", - "image": "files/19_2170.jpg", - "audio": "files/19_2170.mp3", - "audioMeaning": "files/19_2170_meaning.mp3", - "audioExample": "files/19_2170_example.mp3", - "textMeaning": "When an action is inadvertent, it is done without realizing what you are doing.", - "textExample": "She made an inadvertent error when she knocked over the nail polish.", - "transcription": "[ìnədvə́ːrtənt]", - "__v": 0, - "textExampleTranslate": "Она сделала непреднамеренную ошибку, когда опрокинула лак для ногтей", - "textMeaningTranslate": "Когда действие непреднамеренное, оно совершается без осознания того, что вы делаете", - "wordTranslate": "непреднамеренное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd1a" - }, - "group": 3, - "page": 18, - "word": "improvise", - "image": "files/19_2171.jpg", - "audio": "files/19_2171.mp3", - "audioMeaning": "files/19_2171_meaning.mp3", - "audioExample": "files/19_2171_example.mp3", - "textMeaning": "To improvise something is to do it with whatever is available or without planning.", - "textExample": "There was no meat for the pizza, so we improvised with what was in the fridge.", - "transcription": "[ímprəvàiz]", - "__v": 0, - "textExampleTranslate": "Не было мяса для пиццы, поэтому мы импровизировали с тем, что было в холодильнике", - "textMeaningTranslate": "Импровизировать - значит делать то, что доступно или без планирования", - "wordTranslate": "импровизировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd1b" - }, - "group": 3, - "page": 18, - "word": "mariner", - "image": "files/19_2173.jpg", - "audio": "files/19_2173.mp3", - "audioMeaning": "files/19_2173_meaning.mp3", - "audioExample": "files/19_2173_example.mp3", - "textMeaning": "A mariner is a sailor.", - "textExample": "The old mariner used his telescope to find the shore.", - "transcription": "[mǽrənəːr]", - "__v": 0, - "textExampleTranslate": "Старый моряк использовал свой телескоп, чтобы найти берег", - "textMeaningTranslate": "Моряк - это моряк", - "wordTranslate": "моряк" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd1c" - }, - "group": 3, - "page": 18, - "word": "latitude", - "image": "files/19_2172.jpg", - "audio": "files/19_2172.mp3", - "audioMeaning": "files/19_2172_meaning.mp3", - "audioExample": "files/19_2172_example.mp3", - "textMeaning": "The latitude of a place is its distance from the equator.", - "textExample": "The device was able to tell the traveler his exact latitude.", - "transcription": "[lǽtətjùːd]", - "__v": 0, - "textExampleTranslate": "Устройство могло сообщить путешественнику его точную широту", - "textMeaningTranslate": "Широта места - это его расстояние от экватора", - "wordTranslate": "широта" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd1d" - }, - "group": 3, - "page": 18, - "word": "multitude", - "image": "files/19_2174.jpg", - "audio": "files/19_2174.mp3", - "audioMeaning": "files/19_2174_meaning.mp3", - "audioExample": "files/19_2174_example.mp3", - "textMeaning": "A multitude of things or people is a very large number of them.", - "textExample": "A multitude of people were waiting at the airport.", - "transcription": "[mʌ́ltitjùːd]", - "__v": 0, - "textExampleTranslate": "Множество людей ждали в аэропорту", - "textMeaningTranslate": "Множество вещей или людей - это очень большое их количество", - "wordTranslate": "множество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd1e" - }, - "group": 3, - "page": 18, - "word": "permanence", - "image": "files/19_2176.jpg", - "audio": "files/19_2176.mp3", - "audioMeaning": "files/19_2176_meaning.mp3", - "audioExample": "files/19_2176_example.mp3", - "textMeaning": "The permanence of something is its ability to last forever.", - "textExample": "Poor results threaten the permanence of the new system.", - "transcription": "[pə́ːrmənəns]", - "__v": 0, - "textExampleTranslate": "Плохие результаты угрожают постоянству новой системы", - "textMeaningTranslate": "Постоянство чего-либо - это его способность длиться вечно", - "wordTranslate": "неизменность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd20" - }, - "group": 3, - "page": 18, - "word": "revolve", - "image": "files/19_2177.jpg", - "audio": "files/19_2177.mp3", - "audioMeaning": "files/19_2177_meaning.mp3", - "audioExample": "files/19_2177_example.mp3", - "textMeaning": "To revolve around something is to keep it as the main feature or focus.", - "textExample": "My life revolves around sports.", - "transcription": "[rivɑ́lv]", - "__v": 0, - "textExampleTranslate": "Моя жизнь вращается вокруг спорта", - "textMeaningTranslate": "Вращаться вокруг чего-то - значит держать это в качестве основной функции или цели", - "wordTranslate": "вращаются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd1f" - }, - "group": 3, - "page": 18, - "word": "nuisance", - "image": "files/19_2175.jpg", - "audio": "files/19_2175.mp3", - "audioMeaning": "files/19_2175_meaning.mp3", - "audioExample": "files/19_2175_example.mp3", - "textMeaning": "A nuisance is a person or thing that is annoying or causes a lot of problems.", - "textExample": "The teenager considered her noisy little brothers to be quite a nuisance.", - "transcription": "[njúːsns]", - "__v": 0, - "textExampleTranslate": "Подросток считал, что ее шумные младшие братья доставляют немало хлопот", - "textMeaningTranslate": "Недовольство - это человек или вещь, которая раздражает или вызывает много проблем", - "wordTranslate": "неприятность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd21" - }, - "group": 3, - "page": 18, - "word": "soothe", - "image": "files/19_2178.jpg", - "audio": "files/19_2178.mp3", - "audioMeaning": "files/19_2178_meaning.mp3", - "audioExample": "files/19_2178_example.mp3", - "textMeaning": "To soothe means to calm someone who is angry or upset.", - "textExample": "The mother soothed her crying baby by rocking him in her arms.", - "transcription": "[suːð]", - "__v": 0, - "textExampleTranslate": "Мать успокаивала своего плачущего ребенка, покачивая его на руках", - "textMeaningTranslate": "Успокоить - значит успокоить того, кто зол или расстроен", - "wordTranslate": "успокаивают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd22" - }, - "group": 3, - "page": 18, - "word": "stranded", - "image": "files/19_2179.jpg", - "audio": "files/19_2179.mp3", - "audioMeaning": "files/19_2179_meaning.mp3", - "audioExample": "files/19_2179_example.mp3", - "textMeaning": "If someone is stranded, they are prevented from leaving a place.", - "textExample": "When the plane left, my sister and I were stranded in China.", - "transcription": "[strǽndid]", - "__v": 0, - "textExampleTranslate": "Когда самолет улетел, мы с сестрой оказались в Китае", - "textMeaningTranslate": "Если кто-то застрял, ему не дают покинуть место", - "wordTranslate": "мель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd23" - }, - "group": 3, - "page": 18, - "word": "technique", - "image": "files/19_2180.jpg", - "audio": "files/19_2180.mp3", - "audioMeaning": "files/19_2180_meaning.mp3", - "audioExample": "files/19_2180_example.mp3", - "textMeaning": "A technique is a way of doing something.", - "textExample": "There are a lot of teaching techniques that are well supported by research.", - "transcription": "[tekníːk]", - "__v": 0, - "textExampleTranslate": "Есть много методов обучения, которые хорошо поддерживаются исследованиями", - "textMeaningTranslate": "Техника - это способ сделать что-то", - "wordTranslate": "техника" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd24" - }, - "group": 3, - "page": 19, - "word": "absurd", - "image": "files/20_2181.jpg", - "audio": "files/20_2181.mp3", - "audioMeaning": "files/20_2181_meaning.mp3", - "audioExample": "files/20_2181_example.mp3", - "textMeaning": "If something or someone is absurd, they are ridiculous.", - "textExample": "That group of people making animal noises sounds completely absurd.", - "transcription": "[əbsə́ːrd]", - "__v": 0, - "textExampleTranslate": "Эта группа людей, издающих звуки животных, звучит совершенно абсурдно", - "textMeaningTranslate": "Если что-то или кто-то абсурдны, они смешны", - "wordTranslate": "абсурдным" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd26" - }, - "group": 3, - "page": 19, - "word": "aristocrat", - "image": "files/20_2183.jpg", - "audio": "files/20_2183.mp3", - "audioMeaning": "files/20_2183_meaning.mp3", - "audioExample": "files/20_2183_example.mp3", - "textMeaning": "An aristocrat is a person who is of the highest class in certain societies.", - "textExample": "The aristocrat did not need a job because his family was wealthy.", - "transcription": "[ərístəkræ̀t]", - "__v": 0, - "textExampleTranslate": "Аристократ не нуждался в работе, потому что его семья была богатой", - "textMeaningTranslate": "Аристократ это человек, который имеет высший класс в некоторых обществах", - "wordTranslate": "аристократ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd25" - }, - "group": 3, - "page": 19, - "word": "aristocracy", - "image": "files/20_2182.jpg", - "audio": "files/20_2182.mp3", - "audioMeaning": "files/20_2182_meaning.mp3", - "audioExample": "files/20_2182_example.mp3", - "textMeaning": "The aristocracy is the highest class of people in certain societies.", - "textExample": "Most members of the aristocracy were very well fed.", - "transcription": "[æ̀rəstɑ́krəsi]", - "__v": 0, - "textExampleTranslate": "Большинство членов аристократии были очень хорошо накормлены", - "textMeaningTranslate": "Аристократия - высший класс людей в определенных обществах", - "wordTranslate": "аристократия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd27" - }, - "group": 3, - "page": 19, - "word": "craze", - "image": "files/20_2185.jpg", - "audio": "files/20_2185.mp3", - "audioMeaning": "files/20_2185_meaning.mp3", - "audioExample": "files/20_2185_example.mp3", - "textMeaning": "A craze is a brief and popular activity or object.", - "textExample": "Wearing bright red socks was a craze when I was in high school.", - "transcription": "[kreiz]", - "__v": 0, - "textExampleTranslate": "Ношение ярко-красных носков было увлечением, когда я учился в средней школе", - "textMeaningTranslate": "Повальное увлечение - это короткая и популярная деятельность или объект", - "wordTranslate": "мания" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd28" - }, - "group": 3, - "page": 19, - "word": "enlarge", - "image": "files/20_2187.jpg", - "audio": "files/20_2187.mp3", - "audioMeaning": "files/20_2187_meaning.mp3", - "audioExample": "files/20_2187_example.mp3", - "textMeaning": "To enlarge something means to make it bigger.", - "textExample": "The classrooms were enlarged over the summer to make room for more students.", - "transcription": "[enlɑ́ːrdʒ]", - "__v": 0, - "textExampleTranslate": "Классы были расширены за лето, чтобы освободить место для большего количества студентов", - "textMeaningTranslate": "Увеличить что-то значит сделать больше", - "wordTranslate": "увеличить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd29" - }, - "group": 3, - "page": 19, - "word": "attire", - "image": "files/20_2184.jpg", - "audio": "files/20_2184.mp3", - "audioMeaning": "files/20_2184_meaning.mp3", - "audioExample": "files/20_2184_example.mp3", - "textMeaning": "Attire is nice or special clothing.", - "textExample": "Everyone wore their best attire to the president’s daughter’s wedding.", - "transcription": "[ətáiər]", - "__v": 0, - "textExampleTranslate": "Все носили свои лучшие наряды на свадьбу дочери президента", - "textMeaningTranslate": "Одежда хорошая или специальная", - "wordTranslate": "наряд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd2a" - }, - "group": 3, - "page": 19, - "word": "denote", - "image": "files/20_2186.jpg", - "audio": "files/20_2186.mp3", - "audioMeaning": "files/20_2186_meaning.mp3", - "audioExample": "files/20_2186_example.mp3", - "textMeaning": "When one thing denotes another, it stands as a sign or substitute for that thing.", - "textExample": "Quotation marks are used to denote speech.", - "transcription": "[dinóut]", - "__v": 0, - "textExampleTranslate": "Кавычки используются для обозначения речи", - "textMeaningTranslate": "Когда одна вещь обозначает другую, она выступает в качестве знака или замены этой вещи", - "wordTranslate": "обозначает" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd2b" - }, - "group": 3, - "page": 19, - "word": "excess", - "image": "files/20_2188.jpg", - "audio": "files/20_2188.mp3", - "audioMeaning": "files/20_2188_meaning.mp3", - "audioExample": "files/20_2188_example.mp3", - "textMeaning": "An excess is an amount of something that is more than needed or wanted.", - "textExample": "Because it never got cold that winter, many stores had an excess of coats.", - "transcription": "[ékses]", - "__v": 0, - "textExampleTranslate": "Поскольку зимой никогда не было холодно, во многих магазинах было много пальто", - "textMeaningTranslate": "Избыток - это количество чего-то, что больше, чем нужно или нужно", - "wordTranslate": "избыток" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd2c" - }, - "group": 3, - "page": 19, - "word": "feminine", - "image": "files/20_2189.jpg", - "audio": "files/20_2189.mp3", - "audioMeaning": "files/20_2189_meaning.mp3", - "audioExample": "files/20_2189_example.mp3", - "textMeaning": "If something is feminine, then it has qualities that are commonly related to women.", - "textExample": "Many of the older people thought his long hair made him look too feminine.", - "transcription": "[fémənin]", - "__v": 0, - "textExampleTranslate": "Многие пожилые люди думали, что его длинные волосы заставляли его выглядеть слишком женственно", - "textMeaningTranslate": "Если что-то женское, то оно обладает качествами, которые обычно связаны с женщинами", - "wordTranslate": "женский род" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd2d" - }, - "group": 3, - "page": 19, - "word": "partner", - "image": "files/20_2192.jpg", - "audio": "files/20_2192.mp3", - "audioMeaning": "files/20_2192_meaning.mp3", - "audioExample": "files/20_2192_example.mp3", - "textMeaning": "Your partner is someone who lives or works with you as an equal.", - "textExample": "Ladies and gentlemen, take your partners for the next dance.", - "transcription": "[pάːrtnər]", - "__v": 0, - "textExampleTranslate": "Дамы и господа, возьмите ваших партнеров для следующего танца", - "textMeaningTranslate": "Ваш партнер - это тот, кто живет или работает с вами на равных", - "wordTranslate": "партнер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd2e" - }, - "group": 3, - "page": 19, - "word": "predominant", - "image": "files/20_2193.jpg", - "audio": "files/20_2193.mp3", - "audioMeaning": "files/20_2193_meaning.mp3", - "audioExample": "files/20_2193_example.mp3", - "textMeaning": "If something is predominant, then it is the most important, common, or strongest.", - "textExample": "Before cars were invented, horses were the predominant method of travel.", - "transcription": "[pridɑ́mənənt]", - "__v": 0, - "textExampleTranslate": "До изобретения автомобилей лошади были преобладающим методом передвижения", - "textMeaningTranslate": "Если что-то преобладает, то это самое важное, общее или самое сильное", - "wordTranslate": "доминирующий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd2f" - }, - "group": 3, - "page": 19, - "word": "hierarchy", - "image": "files/20_2190.jpg", - "audio": "files/20_2190.mp3", - "audioMeaning": "files/20_2190_meaning.mp3", - "audioExample": "files/20_2190_example.mp3", - "textMeaning": "A hierarchy is a system of things or people ranked one above the other.", - "textExample": "Everyone knows where they fit in the hierarchy.", - "transcription": "[háiərὰːrki]", - "__v": 0, - "textExampleTranslate": "Все знают, где они вписываются в иерархию", - "textMeaningTranslate": "Иерархия - это система вещей или людей, ранжированных один над другим", - "wordTranslate": "иерархия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd30" - }, - "group": 3, - "page": 19, - "word": "pad", - "image": "files/20_2191.jpg", - "audio": "files/20_2191.mp3", - "audioMeaning": "files/20_2191_meaning.mp3", - "audioExample": "files/20_2191_example.mp3", - "textMeaning": "A pad is a thick piece of soft material used to protect or clean things.", - "textExample": "Football players wear shoulder pads to keep them safe.", - "transcription": "[pæd]", - "__v": 0, - "textExampleTranslate": "Футболисты носят наплечники, чтобы держать их в безопасности", - "textMeaningTranslate": "Подушка - это толстый кусок мягкого материала, который используется для защиты или чистки вещей", - "wordTranslate": "подушка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd31" - }, - "group": 3, - "page": 19, - "word": "protocol", - "image": "files/20_2194.jpg", - "audio": "files/20_2194.mp3", - "audioMeaning": "files/20_2194_meaning.mp3", - "audioExample": "files/20_2194_example.mp3", - "textMeaning": "Protocol is a system of rules and customs that guides how things are done.", - "textExample": "The introduction of the guests followed the normal protocol.", - "transcription": "[próutəkɔ̀ːl]", - "__v": 0, - "textExampleTranslate": "Представление гостей следовало нормальному протоколу", - "textMeaningTranslate": "Протокол - это система правил и обычаев, которая определяет, как все делается", - "wordTranslate": "протокол" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd32" - }, - "group": 3, - "page": 19, - "word": "reputable", - "image": "files/20_2195.jpg", - "audio": "files/20_2195.mp3", - "audioMeaning": "files/20_2195_meaning.mp3", - "audioExample": "files/20_2195_example.mp3", - "textMeaning": "If someone or something is reputable, then they have a good reputation.", - "textExample": "The service from the less-than-reputable company made her angry.", - "transcription": "[répjətəbəl]", - "__v": 0, - "textExampleTranslate": "Сервис от менее уважаемой компании разозлил ее", - "textMeaningTranslate": "Если кто-то или что-то заслуживает уважения, то у них хорошая репутация", - "wordTranslate": "авторитетный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd33" - }, - "group": 3, - "page": 19, - "word": "signify", - "image": "files/20_2196.jpg", - "audio": "files/20_2196.mp3", - "audioMeaning": "files/20_2196_meaning.mp3", - "audioExample": "files/20_2196_example.mp3", - "textMeaning": "To signify means to be a symbol of something.", - "textExample": "A red octagon is used to signify a place to stop.", - "transcription": "[sígnəfài]", - "__v": 0, - "textExampleTranslate": "Красный восьмиугольник используется для обозначения места для остановки", - "textMeaningTranslate": "Значить означает быть символом чего-то", - "wordTranslate": "означают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd34" - }, - "group": 3, - "page": 19, - "word": "strap", - "image": "files/20_2197.jpg", - "audio": "files/20_2197.mp3", - "audioMeaning": "files/20_2197_meaning.mp3", - "audioExample": "files/20_2197_example.mp3", - "textMeaning": "A strap is a thin long piece of fabric used to fasten, carry, or hold something.", - "textExample": "She put the strap of her purse over her shoulder and walked out the door.", - "transcription": "[stræp]", - "__v": 0, - "textExampleTranslate": "Она надела сумочку через плечо и вышла за дверь", - "textMeaningTranslate": "Ремень - это тонкий длинный кусок ткани, используемый для крепления, переноски или удержания чего-либо", - "wordTranslate": "ремень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd35" - }, - "group": 3, - "page": 19, - "word": "style", - "image": "files/20_2198.jpg", - "audio": "files/20_2198.mp3", - "audioMeaning": "files/20_2198_meaning.mp3", - "audioExample": "files/20_2198_example.mp3", - "textMeaning": "Your style is the way you do things.", - "textExample": "Her clothes were all in the latest style.", - "transcription": "[stail]", - "__v": 0, - "textExampleTranslate": "Её одежда была вся в последнем стиле", - "textMeaningTranslate": "Твой стиль - это то, как ты делаешь вещи", - "wordTranslate": "стиль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd36" - }, - "group": 3, - "page": 19, - "word": "tangle", - "image": "files/20_2199.jpg", - "audio": "files/20_2199.mp3", - "audioMeaning": "files/20_2199_meaning.mp3", - "audioExample": "files/20_2199_example.mp3", - "textMeaning": "A tangle is something or many things twisted together.", - "textExample": "The laces of his shoes were in such a tangle that he could not untie them.", - "transcription": "[tǽŋgəl]", - "__v": 0, - "textExampleTranslate": "Шнурки его туфель были так запутаны, что он не мог их развязать", - "textMeaningTranslate": "Путаница - это нечто или много вещей, скрученных вместе", - "wordTranslate": "переплетение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd37" - }, - "group": 3, - "page": 19, - "word": "vanity", - "image": "files/20_2200.jpg", - "audio": "files/20_2200.mp3", - "audioMeaning": "files/20_2200_meaning.mp3", - "audioExample": "files/20_2200_example.mp3", - "textMeaning": "Vanity is excessive pride or love of one’s own appearance or things one has done.", - "textExample": "Her vanity won’t allow her to pass a mirror without looking at herself.", - "transcription": "[vǽnəti]", - "__v": 0, - "textExampleTranslate": "Ее тщеславие не позволит ей пройти зеркало, не глядя на себя", - "textMeaningTranslate": "Тщеславие - это чрезмерная гордость или любовь к своей внешности или вещам, которые ты совершил", - "wordTranslate": "тщеславие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd38" - }, - "group": 3, - "page": 20, - "word": "ashore", - "image": "files/21_2201.jpg", - "audio": "files/21_2201.mp3", - "audioMeaning": "files/21_2201_meaning.mp3", - "audioExample": "files/21_2201_example.mp3", - "textMeaning": "If something goes ashore, it goes from the water to the land.", - "textExample": "After a long day of fishing, Glen pulled his boat ashore, so it wouldn’t float away.", - "transcription": "[əʃɔ́ːr]", - "__v": 0, - "textExampleTranslate": "После долгого дня рыбалки Глен вытащил свою лодку на берег, чтобы она не уплыла", - "textMeaningTranslate": "Если что-то выходит на берег, оно идет от воды к земле", - "wordTranslate": "берег" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd3d" - }, - "group": 3, - "page": 20, - "word": "embryo", - "image": "files/21_2206.jpg", - "audio": "files/21_2206.mp3", - "audioMeaning": "files/21_2206_meaning.mp3", - "audioExample": "files/21_2206_example.mp3", - "textMeaning": "An embryo is a human or animal that is still growing inside its mother.", - "textExample": "Some doctors say that what a mother eats has a big effect on her embryo.", - "transcription": "[émbriòu]", - "__v": 0, - "textExampleTranslate": "Некоторые врачи говорят, что то, что ест мать, сильно влияет на ее эмбрион", - "textMeaningTranslate": "Эмбрион - это человек или животное, которое все еще растет внутри своей матери", - "wordTranslate": "зародыш" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd39" - }, - "group": 3, - "page": 20, - "word": "counterpart", - "image": "files/21_2203.jpg", - "audio": "files/21_2203.mp3", - "audioMeaning": "files/21_2203_meaning.mp3", - "audioExample": "files/21_2203_example.mp3", - "textMeaning": "A counterpart is something that is very similar to something else in what it does.", - "textExample": "Our manager will meet our rival company’s counterpart later today.", - "transcription": "[káuntərpɑ̀ːrt]", - "__v": 0, - "textExampleTranslate": "Наш менеджер встретится с коллегой нашей конкурирующей компании позже сегодня", - "textMeaningTranslate": "Партнер - это нечто очень похожее на то, что он делает", - "wordTranslate": "двойник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd3a" - }, - "group": 3, - "page": 20, - "word": "contradict", - "image": "files/21_2202.jpg", - "audio": "files/21_2202.mp3", - "audioMeaning": "files/21_2202_meaning.mp3", - "audioExample": "files/21_2202_example.mp3", - "textMeaning": "To contradict means to state the opposite of what someone else has said.", - "textExample": "Ken was always fighting with his little sister because she kept contradicting him.", - "transcription": "[kɑ̀ntrədíkt]", - "__v": 0, - "textExampleTranslate": "Кен всегда боролся со своей младшей сестрой, потому что она продолжала ему противоречить", - "textMeaningTranslate": "Противостоять значит утверждать противоположное тому, что сказал кто-то другой", - "wordTranslate": "противоречат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd3c" - }, - "group": 3, - "page": 20, - "word": "diverge", - "image": "files/21_2205.jpg", - "audio": "files/21_2205.mp3", - "audioMeaning": "files/21_2205_meaning.mp3", - "audioExample": "files/21_2205_example.mp3", - "textMeaning": "To diverge is to become different or to follow a different direction.", - "textExample": "The road diverged into two paths that led to our houses.", - "transcription": "[divə́ːrdʒ]", - "__v": 0, - "textExampleTranslate": "Дорога разошлась на две дорожки, которые вели к нашим домам", - "textMeaningTranslate": "Разойтись - значит стать другим или следовать другому направлению", - "wordTranslate": "расходятся" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd3b" - }, - "group": 3, - "page": 20, - "word": "devoid", - "image": "files/21_2204.jpg", - "audio": "files/21_2204.mp3", - "audioMeaning": "files/21_2204_meaning.mp3", - "audioExample": "files/21_2204_example.mp3", - "textMeaning": "When something or someone is devoid of a thing, they are missing it.", - "textExample": "The movie was devoid of any violence, so it was a perfect movie for the family.", - "transcription": "[divɔ́id]", - "__v": 0, - "textExampleTranslate": "В фильме не было никакого насилия, поэтому это был идеальный фильм для всей семьи", - "textMeaningTranslate": "Когда что-то или кто-то лишен чего-то, они упускают это", - "wordTranslate": "лишены" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd3e" - }, - "group": 3, - "page": 20, - "word": "finally", - "image": "files/21_2207.jpg", - "audio": "files/21_2207.mp3", - "audioMeaning": "files/21_2207_meaning.mp3", - "audioExample": "files/21_2207_example.mp3", - "textMeaning": "When something finally happens, it happens at the end of a series of events.", - "textExample": "We finally reached our destination.", - "transcription": "[fáinəli] (final + ly)", - "__v": 0, - "textExampleTranslate": "Мы наконец достигли нашей цели", - "textMeaningTranslate": "Когда что-то наконец происходит, это происходит в конце ряда событий", - "wordTranslate": "наконец-то" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd42" - }, - "group": 3, - "page": 20, - "word": "major", - "image": "files/21_2211.jpg", - "audio": "files/21_2211.mp3", - "audioMeaning": "files/21_2211_meaning.mp3", - "audioExample": "files/21_2211_example.mp3", - "textMeaning": "A major event is a very important event.", - "textExample": "There had been a major shift in government policy.", - "transcription": "[méidʒər]", - "__v": 0, - "textExampleTranslate": "Произошло серьезное изменение в правительственной политике", - "textMeaningTranslate": "Важное событие - очень важное событие", - "wordTranslate": "крупный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd40" - }, - "group": 3, - "page": 20, - "word": "homogeneous", - "image": "files/21_2209.jpg", - "audio": "files/21_2209.mp3", - "audioMeaning": "files/21_2209_meaning.mp3", - "audioExample": "files/21_2209_example.mp3", - "textMeaning": "If something is homogeneous, it is made up of things which are all the same.", - "textExample": "All of the houses on Victor’s block were boring and homogenous.", - "transcription": "[hòuməʤíːniəs]", - "__v": 0, - "textExampleTranslate": "Все дома на блоке Виктора были скучными и однородными", - "textMeaningTranslate": "Если что-то однородно, оно состоит из одинаковых вещей", - "wordTranslate": "гомогенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd41" - }, - "group": 3, - "page": 20, - "word": "individual", - "image": "files/21_2210.jpg", - "audio": "files/21_2210.mp3", - "audioMeaning": "files/21_2210_meaning.mp3", - "audioExample": "files/21_2210_example.mp3", - "textMeaning": "An individual is a single member of a group.", - "textExample": "Each individual is responsible for themselves.", - "transcription": "[ìndəvídʒuəl]", - "__v": 0, - "textExampleTranslate": "Каждый человек несет ответственность за себя", - "textMeaningTranslate": "Человек является отдельным членом группы", - "wordTranslate": "физическое лицо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd3f" - }, - "group": 3, - "page": 20, - "word": "gazette", - "image": "files/21_2208.jpg", - "audio": "files/21_2208.mp3", - "audioMeaning": "files/21_2208_meaning.mp3", - "audioExample": "files/21_2208_example.mp3", - "textMeaning": "A gazette is a newspaper.", - "textExample": "Alice wants to write for a gazette when she’s older.", - "transcription": "[gəzét]", - "__v": 0, - "textExampleTranslate": "Алиса хочет написать для газеты, когда она станет старше", - "textMeaningTranslate": "Газета - это газета", - "wordTranslate": "вестник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd43" - }, - "group": 3, - "page": 20, - "word": "obstruct", - "image": "files/21_2212.jpg", - "audio": "files/21_2212.mp3", - "audioMeaning": "files/21_2212_meaning.mp3", - "audioExample": "files/21_2212_example.mp3", - "textMeaning": "To obstruct something means to get in its way.", - "textExample": "The car broke down on the road and obstructed traffic for hours.", - "transcription": "[əbstrʌ́kt]", - "__v": 0, - "textExampleTranslate": "Машина сломалась на дороге и мешала движению часами", - "textMeaningTranslate": "Препятствовать чему-либо - значит мешать", - "wordTranslate": "воспрепятствовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd44" - }, - "group": 3, - "page": 20, - "word": "plunge", - "image": "files/21_2213.jpg", - "audio": "files/21_2213.mp3", - "audioMeaning": "files/21_2213_meaning.mp3", - "audioExample": "files/21_2213_example.mp3", - "textMeaning": "To plunge means to move down into something very quickly.", - "textExample": "The water in the pool was very cold, but the boy plunged in anyway.", - "transcription": "[plʌndʒ]", - "__v": 0, - "textExampleTranslate": "Вода в бассейне была очень холодной, но мальчик все равно погрузился", - "textMeaningTranslate": "Окунуться означает двигаться очень быстро во что-то", - "wordTranslate": "лягушатник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd45" - }, - "group": 3, - "page": 20, - "word": "prolong", - "image": "files/21_2214.jpg", - "audio": "files/21_2214.mp3", - "audioMeaning": "files/21_2214_meaning.mp3", - "audioExample": "files/21_2214_example.mp3", - "textMeaning": "To prolong means to make something last for a longer time.", - "textExample": "Sandy walked slowly across the beach, trying to prolong her lunch break.", - "transcription": "[proulɔ́ːŋ]", - "__v": 0, - "textExampleTranslate": "Сэнди медленно шла по пляжу, пытаясь продлить перерыв на обед", - "textMeaningTranslate": "Продлить - значит сделать что-то дольше", - "wordTranslate": "продлить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd46" - }, - "group": 3, - "page": 20, - "word": "publicize", - "image": "files/21_2215.jpg", - "audio": "files/21_2215.mp3", - "audioMeaning": "files/21_2215_meaning.mp3", - "audioExample": "files/21_2215_example.mp3", - "textMeaning": "To publicize is to make something get a lot of attention.", - "textExample": "The company publicized the job positions in the newspaper.", - "transcription": "[pʌ́bləsàiz]", - "__v": 0, - "textExampleTranslate": "Компания обнародовала вакансии в газете", - "textMeaningTranslate": "Рекламировать - значит привлекать к себе много внимания", - "wordTranslate": "гласность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd47" - }, - "group": 3, - "page": 20, - "word": "surplus", - "image": "files/21_2216.jpg", - "audio": "files/21_2216.mp3", - "audioMeaning": "files/21_2216_meaning.mp3", - "audioExample": "files/21_2216_example.mp3", - "textMeaning": "A surplus is an extra amount of something.", - "textExample": "The store sold their surplus items on sale.", - "transcription": "[sə́ːrplʌs]", - "__v": 0, - "textExampleTranslate": "Магазин продал свои излишки на распродаже", - "textMeaningTranslate": "Избыток - это дополнительное количество чего-то", - "wordTranslate": "излишки" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd48" - }, - "group": 3, - "page": 20, - "word": "survive", - "image": "files/21_2217.jpg", - "audio": "files/21_2217.mp3", - "audioMeaning": "files/21_2217_meaning.mp3", - "audioExample": "files/21_2217_example.mp3", - "textMeaning": "When something survives, it manages to continue to live in spite of difficult circumstances.", - "textExample": "She survived a heart attack.", - "transcription": "[sərváiv]", - "__v": 0, - "textExampleTranslate": "Она пережила сердечный приступ", - "textMeaningTranslate": "Когда что-то выживает, ему удается продолжать жить, несмотря на сложные обстоятельства", - "wordTranslate": "выжить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd4b" - }, - "group": 3, - "page": 20, - "word": "vigorous", - "image": "files/21_2220.jpg", - "audio": "files/21_2220.mp3", - "audioMeaning": "files/21_2220_meaning.mp3", - "audioExample": "files/21_2220_example.mp3", - "textMeaning": "If something or someone is vigorous, they use a lot of energy.", - "textExample": "Henry uses vigorous exercise to keep himself in shape.", - "transcription": "[vígərəs]", - "__v": 0, - "textExampleTranslate": "Генри использует энергичные упражнения, чтобы держать себя в форме", - "textMeaningTranslate": "Если что-то или кто-то энергичный, они используют много энергии", - "wordTranslate": "энергичный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd4a" - }, - "group": 3, - "page": 20, - "word": "verify", - "image": "files/21_2219.jpg", - "audio": "files/21_2219.mp3", - "audioMeaning": "files/21_2219_meaning.mp3", - "audioExample": "files/21_2219_example.mp3", - "textMeaning": "To verify means to find out if something is true.", - "textExample": "Julian called the movie theater to verify that the movie started at nine.", - "transcription": "[vérəfài]", - "__v": 0, - "textExampleTranslate": "Джулиан позвонил в кинотеатр, чтобы убедиться, что фильм начался в девять", - "textMeaningTranslate": "Проверить - значит узнать, правда ли что-то", - "wordTranslate": "проверить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd4c" - }, - "group": 3, - "page": 21, - "word": "altar", - "image": "files/22_2221.jpg", - "audio": "files/22_2221.mp3", - "audioMeaning": "files/22_2221_meaning.mp3", - "audioExample": "files/22_2221_example.mp3", - "textMeaning": "An altar is a table used in churches.", - "textExample": "The altar had many lit candles on it.", - "transcription": "[ɔ́ːltər]", - "__v": 0, - "textExampleTranslate": "На алтаре было много зажженных свечей", - "textMeaningTranslate": "Алтарь - это стол, используемый в церквях", - "wordTranslate": "алтарь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd49" - }, - "group": 3, - "page": 20, - "word": "theorize", - "image": "files/21_2218.jpg", - "audio": "files/21_2218.mp3", - "audioMeaning": "files/21_2218_meaning.mp3", - "audioExample": "files/21_2218_example.mp3", - "textMeaning": "To theorize means to develop ideas about something.", - "textExample": "They enjoyed theorizing about how things worked.", - "transcription": "[θíːəràiz]", - "__v": 0, - "textExampleTranslate": "Они наслаждались рассуждениями о том, как все работает", - "textMeaningTranslate": "Теоретизировать означает развивать идеи о чем-то", - "wordTranslate": "теоретизировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd4d" - }, - "group": 3, - "page": 21, - "word": "arthritis", - "image": "files/22_2222.jpg", - "audio": "files/22_2222.mp3", - "audioMeaning": "files/22_2222_meaning.mp3", - "audioExample": "files/22_2222_example.mp3", - "textMeaning": "Arthritis is an illness causing pain and swelling in a person’s joints.", - "textExample": "Agatha couldn’t play the piano anymore because of her arthritis.", - "transcription": "[aːrθráitis]", - "__v": 0, - "textExampleTranslate": "Агата больше не могла играть на пианино из-за своего артрита", - "textMeaningTranslate": "Артрит - это болезнь, вызывающая боль и отек в суставах человека", - "wordTranslate": "артрит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd4e" - }, - "group": 3, - "page": 21, - "word": "botany", - "image": "files/22_2223.jpg", - "audio": "files/22_2223.mp3", - "audioMeaning": "files/22_2223_meaning.mp3", - "audioExample": "files/22_2223_example.mp3", - "textMeaning": "Botany is the study of plants.", - "textExample": "Gardens are the best places for botany.", - "transcription": "[bɑ́təni]", - "__v": 0, - "textExampleTranslate": "Сады - лучшие места для ботаники", - "textMeaningTranslate": "Ботаника - это изучение растений", - "wordTranslate": "ботаника" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd50" - }, - "group": 3, - "page": 21, - "word": "deceased", - "image": "files/22_2225.jpg", - "audio": "files/22_2225.mp3", - "audioMeaning": "files/22_2225_meaning.mp3", - "audioExample": "files/22_2225_example.mp3", - "textMeaning": "If someone is deceased, they are dead.", - "textExample": "We visited the graves of our deceased grandparents.", - "transcription": "[disíːst]", - "__v": 0, - "textExampleTranslate": "Мы посетили могилы наших умерших бабушек и дедушек", - "textMeaningTranslate": "Если кто-то умер, он мертв", - "wordTranslate": "умерший" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd4f" - }, - "group": 3, - "page": 21, - "word": "credible", - "image": "files/22_2224.jpg", - "audio": "files/22_2224.mp3", - "audioMeaning": "files/22_2224_meaning.mp3", - "audioExample": "files/22_2224_example.mp3", - "textMeaning": "If something or someone is credible, they can be believed or trusted.", - "textExample": "Dick gave a credible reason for being late and didn’t get in any trouble.", - "transcription": "[krédəbəl]", - "__v": 0, - "textExampleTranslate": "Дик дал вескую причину опоздания и не попал в неприятности", - "textMeaningTranslate": "Если что-то или кто-то заслуживает доверия, им можно верить или доверять", - "wordTranslate": "заслуживающий доверия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd51" - }, - "group": 3, - "page": 21, - "word": "deception", - "image": "files/22_2226.jpg", - "audio": "files/22_2226.mp3", - "audioMeaning": "files/22_2226_meaning.mp3", - "audioExample": "files/22_2226_example.mp3", - "textMeaning": "Deception is the act of lying or tricking someone.", - "textExample": "The magic looked very real, but it was only deception.", - "transcription": "[disépʃən]", - "__v": 0, - "textExampleTranslate": "Магия выглядела очень реальной, но это был только обман", - "textMeaningTranslate": "Обман - это обман или обман кого-то", - "wordTranslate": "обман" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd52" - }, - "group": 3, - "page": 21, - "word": "document", - "image": "files/22_2227.jpg", - "audio": "files/22_2227.mp3", - "audioMeaning": "files/22_2227_meaning.mp3", - "audioExample": "files/22_2227_example.mp3", - "textMeaning": "A document is a written text, usually not in the form of a book.", - "textExample": "Please scan this document so we have an electronic copy.", - "transcription": "[dάkjumənt]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, отсканируйте этот документ, чтобы у нас была электронная копия", - "textMeaningTranslate": "Документ - это письменный текст, обычно не в форме книги", - "wordTranslate": "документ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd53" - }, - "group": 3, - "page": 21, - "word": "dung", - "image": "files/22_2228.jpg", - "audio": "files/22_2228.mp3", - "audioMeaning": "files/22_2228_meaning.mp3", - "audioExample": "files/22_2228_example.mp3", - "textMeaning": "Dung is solid waste material produced by animals.", - "textExample": "There was cow dung all over the field.", - "transcription": "[dʌŋ]", - "__v": 0, - "textExampleTranslate": "По всему полю был коровий навоз", - "textMeaningTranslate": "Навоз - это твердые отходы, производимые животными", - "wordTranslate": "навоз" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd54" - }, - "group": 3, - "page": 21, - "word": "dusk", - "image": "files/22_2229.jpg", - "audio": "files/22_2229.mp3", - "audioMeaning": "files/22_2229_meaning.mp3", - "audioExample": "files/22_2229_example.mp3", - "textMeaning": "Dusk is the time in the evening when it begins to get dark.", - "textExample": "After dusk, Hannah went to catch fireflies in the park.", - "transcription": "[dʌsk]", - "__v": 0, - "textExampleTranslate": "После заката Ханна пошла ловить светлячков в парке", - "textMeaningTranslate": "Сумерки - это время вечера, когда начинает темнеть", - "wordTranslate": "сумерки" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd55" - }, - "group": 3, - "page": 21, - "word": "gratify", - "image": "files/22_2230.jpg", - "audio": "files/22_2230.mp3", - "audioMeaning": "files/22_2230_meaning.mp3", - "audioExample": "files/22_2230_example.mp3", - "textMeaning": "To gratify someone means to please them.", - "textExample": "Bonnie was gratified after receiving her gift from her parents.", - "transcription": "[grǽtəfài]", - "__v": 0, - "textExampleTranslate": "Бонни была удовлетворена после получения подарка от родителей", - "textMeaningTranslate": "Удовлетворять кого-то - значит доставлять им удовольствие", - "wordTranslate": "ублажать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd56" - }, - "group": 3, - "page": 21, - "word": "hone", - "image": "files/22_2231.jpg", - "audio": "files/22_2231.mp3", - "audioMeaning": "files/22_2231_meaning.mp3", - "audioExample": "files/22_2231_example.mp3", - "textMeaning": "To hone something is to improve it and make it very good.", - "textExample": "Lisa honed her chess skills through hours and hours of practice.", - "transcription": "[houn]", - "__v": 0, - "textExampleTranslate": "Лиза оттачивала свои шахматные навыки часами практики", - "textMeaningTranslate": "Оттачивать что-то - значит улучшать и делать это очень хорошо", - "wordTranslate": "хон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd57" - }, - "group": 3, - "page": 21, - "word": "interpret", - "image": "files/22_2232.jpg", - "audio": "files/22_2232.mp3", - "audioMeaning": "files/22_2232_meaning.mp3", - "audioExample": "files/22_2232_example.mp3", - "textMeaning": "When you interpret something, you find its meaning, often by changing it into a different language.", - "textExample": "It is difficult to interpret while someone is speaking.", - "transcription": "[intə́ːrprit]", - "__v": 0, - "textExampleTranslate": "Трудно интерпретировать, когда кто-то говорит", - "textMeaningTranslate": "Когда вы интерпретируете что-то, вы обнаруживаете его значение, часто меняя его на другой язык", - "wordTranslate": "интерпретировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd58" - }, - "group": 3, - "page": 21, - "word": "motive", - "image": "files/22_2233.jpg", - "audio": "files/22_2233.mp3", - "audioMeaning": "files/22_2233_meaning.mp3", - "audioExample": "files/22_2233_example.mp3", - "textMeaning": "Your motive is your reason for doing something.", - "textExample": "We can show he had a motive to commit the crime, but we cannot show he did it.", - "transcription": "[móutiv]", - "__v": 0, - "textExampleTranslate": "Мы можем показать, что у него был мотив совершить преступление, но мы не можем показать, что он это сделал", - "textMeaningTranslate": "Твой мотив - причина, по которой ты что-то делаешь", - "wordTranslate": "мотив" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd59" - }, - "group": 3, - "page": 21, - "word": "pneumonia", - "image": "files/22_2234.jpg", - "audio": "files/22_2234.mp3", - "audioMeaning": "files/22_2234_meaning.mp3", - "audioExample": "files/22_2234_example.mp3", - "textMeaning": "Pneumonia is a dangerous illness causing the lungs to fill with liquid.", - "textExample": "Elaine got pneumonia after playing outside in the rain without a coat.", - "transcription": "[njumóunjə]", - "__v": 0, - "textExampleTranslate": "Элейн заболела пневмонией после игры на улице под дождем без пальто", - "textMeaningTranslate": "Пневмония - опасное заболевание, вызывающее легкие, которые наполняются жидкостью", - "wordTranslate": "пневмония" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd5a" - }, - "group": 3, - "page": 21, - "word": "psychic", - "image": "files/22_2235.jpg", - "audio": "files/22_2235.mp3", - "audioMeaning": "files/22_2235_meaning.mp3", - "audioExample": "files/22_2235_example.mp3", - "textMeaning": "When someone is psychic, they know what will happen or what people think.", - "textExample": "I think my grandmother has psychic abilities because she can predict anything.", - "transcription": "[sáikik]", - "__v": 0, - "textExampleTranslate": "Я думаю, что у моей бабушки есть экстрасенсорные способности, потому что она может предсказать что угодно", - "textMeaningTranslate": "Когда кто-то экстрасенс, он знает, что произойдет или что думают люди", - "wordTranslate": "психическое" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd5b" - }, - "group": 3, - "page": 21, - "word": "psychotic", - "image": "files/22_2236.jpg", - "audio": "files/22_2236.mp3", - "audioMeaning": "files/22_2236_meaning.mp3", - "audioExample": "files/22_2236_example.mp3", - "textMeaning": "If someone is psychotic, they have a very serious mental illness.", - "textExample": "The psychotic patient believed he saw things that weren’t real.", - "transcription": "[saikɑ́tik]", - "__v": 0, - "textExampleTranslate": "Психотический пациент верил, что видел вещи, которые не были реальны", - "textMeaningTranslate": "Если у кого-то психоз, у него очень серьезное психическое заболевание", - "wordTranslate": "психотическое" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd5c" - }, - "group": 3, - "page": 21, - "word": "scope", - "image": "files/22_2237.jpg", - "audio": "files/22_2237.mp3", - "audioMeaning": "files/22_2237_meaning.mp3", - "audioExample": "files/22_2237_example.mp3", - "textMeaning": "The scope of something is how many people or things it relates to.", - "textExample": "Modern history has a wide scope.", - "transcription": "[skoup]", - "__v": 0, - "textExampleTranslate": "Современная история имеет широкий простор", - "textMeaningTranslate": "Объем чего-либо - это количество людей или вещей, к которым оно относится", - "wordTranslate": "объем" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd5d" - }, - "group": 3, - "page": 21, - "word": "sinister", - "image": "files/22_2238.jpg", - "audio": "files/22_2238.mp3", - "audioMeaning": "files/22_2238_meaning.mp3", - "audioExample": "files/22_2238_example.mp3", - "textMeaning": "If something or someone is sinister, they are evil.", - "textExample": "Bad guys in most movies have sinister laughs.", - "transcription": "[sínistəːr]", - "__v": 0, - "textExampleTranslate": "У плохих парней в большинстве фильмов зловещий смех", - "textMeaningTranslate": "Если что-то или кто-то злой, они злые", - "wordTranslate": "зловещий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd5e" - }, - "group": 3, - "page": 21, - "word": "strife", - "image": "files/22_2239.jpg", - "audio": "files/22_2239.mp3", - "audioMeaning": "files/22_2239_meaning.mp3", - "audioExample": "files/22_2239_example.mp3", - "textMeaning": "Strife is disagreement or fighting between people or groups.", - "textExample": "There was a lot of strife between Jim and Lisa about what TV show to watch.", - "transcription": "[straif]", - "__v": 0, - "textExampleTranslate": "Между Джимом и Лизой было много разногласий по поводу того, какой сериал смотреть", - "textMeaningTranslate": "Борьба - это разногласие или борьба между людьми или группами", - "wordTranslate": "раздор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd5f" - }, - "group": 3, - "page": 22, - "word": "artery", - "image": "files/23_2241.jpg", - "audio": "files/23_2241.mp3", - "audioMeaning": "files/23_2241_meaning.mp3", - "audioExample": "files/23_2241_example.mp3", - "textMeaning": "An artery is a tube that takes blood from the heart to the rest of the body.", - "textExample": "Eating healthily keeps your arteries clean so blood can flow with ease.", - "transcription": "[ɑ́ːrtəri]", - "__v": 0, - "textExampleTranslate": "Здоровое питание сохраняет ваши артерии в чистоте, чтобы кровь могла легко течь", - "textMeaningTranslate": "Артерия - это труба, которая доставляет кровь от сердца к остальной части тела", - "wordTranslate": "артерия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd60" - }, - "group": 3, - "page": 21, - "word": "text", - "image": "files/22_2240.jpg", - "audio": "files/22_2240.mp3", - "audioMeaning": "files/22_2240_meaning.mp3", - "audioExample": "files/22_2240_example.mp3", - "textMeaning": "Text is language used in communicating messages.", - "textExample": "Spoken text has many features which are different from written text.", - "transcription": "[tekst]", - "__v": 0, - "textExampleTranslate": "Разговорный текст имеет много особенностей, которые отличаются от письменного текста", - "textMeaningTranslate": "Текст - это язык, используемый при передаче сообщений", - "wordTranslate": "текст" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd61" - }, - "group": 3, - "page": 22, - "word": "deterioration", - "image": "files/23_2242.jpg", - "audio": "files/23_2242.mp3", - "audioMeaning": "files/23_2242_meaning.mp3", - "audioExample": "files/23_2242_example.mp3", - "textMeaning": "Deterioration is the act of becoming worse.", - "textExample": "The lack of care led to the deterioration of the house.", - "transcription": "[ditìəriəréiʃən]", - "__v": 0, - "textExampleTranslate": "Отсутствие ухода привело к порче дома", - "textMeaningTranslate": "Ухудшение - акт становления хуже", - "wordTranslate": "ухудшение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd62" - }, - "group": 3, - "page": 22, - "word": "elusive", - "image": "files/23_2243.jpg", - "audio": "files/23_2243.mp3", - "audioMeaning": "files/23_2243_meaning.mp3", - "audioExample": "files/23_2243_example.mp3", - "textMeaning": "If things or people are elusive, they are hard to find.", - "textExample": "The elusive fish only came out at night.", - "transcription": "[ilúːsiv]", - "__v": 0, - "textExampleTranslate": "Неуловимая рыба выходила только ночью", - "textMeaningTranslate": "Если вещи или люди неуловимы, их трудно найти", - "wordTranslate": "неуловимый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd63" - }, - "group": 3, - "page": 22, - "word": "ensure", - "image": "files/23_2244.jpg", - "audio": "files/23_2244.mp3", - "audioMeaning": "files/23_2244_meaning.mp3", - "audioExample": "files/23_2244_example.mp3", - "textMeaning": "When you ensure something, you make sure it happens.", - "textExample": "Saving now will ensure we have enough money for our retirement.", - "transcription": "[inʃúər]", - "__v": 0, - "textExampleTranslate": "Экономия сейчас обеспечит нам достаточно денег для выхода на пенсию", - "textMeaningTranslate": "Когда вы что-то гарантируете, вы убедитесь, что это произойдет", - "wordTranslate": "обеспечить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd64" - }, - "group": 3, - "page": 22, - "word": "induce", - "image": "files/23_2245.jpg", - "audio": "files/23_2245.mp3", - "audioMeaning": "files/23_2245_meaning.mp3", - "audioExample": "files/23_2245_example.mp3", - "textMeaning": "To induce something means to make it happen.", - "textExample": "Running without good shoes may induce leg pain.", - "transcription": "[indjúːs]", - "__v": 0, - "textExampleTranslate": "Бег без хорошей обуви может вызвать боль в ногах", - "textMeaningTranslate": "Стимулировать что-то значит сделать это", - "wordTranslate": "индуцируют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd65" - }, - "group": 3, - "page": 22, - "word": "inseparable", - "image": "files/23_2246.jpg", - "audio": "files/23_2246.mp3", - "audioMeaning": "files/23_2246_meaning.mp3", - "audioExample": "files/23_2246_example.mp3", - "textMeaning": "If two things are inseparable, they can’t be separated.", - "textExample": "Denise and Diana have been inseparable since they first met.", - "transcription": "[insépərəbəl]", - "__v": 0, - "textExampleTranslate": "Дениз и Диана были неразлучны с тех пор, как они впервые встретились", - "textMeaningTranslate": "Если две вещи неразделимы, они не могут быть разделены", - "wordTranslate": "неотделимы друг от друга" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd66" - }, - "group": 3, - "page": 22, - "word": "invalid", - "image": "files/23_2247.jpg", - "audio": "files/23_2247.mp3", - "audioMeaning": "files/23_2247_meaning.mp3", - "audioExample": "files/23_2247_example.mp3", - "textMeaning": "If something is invalid, it is not correct.", - "textExample": "The way to winning debates is to avoid invalid arguments.", - "transcription": "[invǽlid]", - "__v": 0, - "textExampleTranslate": "Путь к победе в дебатах - избежать недопустимых аргументов", - "textMeaningTranslate": "Если что-то неверно, это не правильно", - "wordTranslate": "недействительным" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd67" - }, - "group": 3, - "page": 22, - "word": "magnify", - "image": "files/23_2248.jpg", - "audio": "files/23_2248.mp3", - "audioMeaning": "files/23_2248_meaning.mp3", - "audioExample": "files/23_2248_example.mp3", - "textMeaning": "To magnify something means to make it look bigger than it really is.", - "textExample": "Astronomers use telescopes to magnify faraway stars.", - "transcription": "[mǽgnəfài]", - "__v": 0, - "textExampleTranslate": "Астрономы используют телескопы для увеличения дальних звезд", - "textMeaningTranslate": "Увеличивать что-то - значит делать его больше, чем есть на самом деле", - "wordTranslate": "увеличить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd68" - }, - "group": 3, - "page": 22, - "word": "mainstream", - "image": "files/23_2249.jpg", - "audio": "files/23_2249.mp3", - "audioMeaning": "files/23_2249_meaning.mp3", - "audioExample": "files/23_2249_example.mp3", - "textMeaning": "The mainstream is what is considered normal and accepted by most people.", - "textExample": "Before punk rock music became part of the mainstream, only a few people liked it.", - "transcription": "[méinstrìːm]", - "__v": 0, - "textExampleTranslate": "До того как панк-рок стал частью мейнстрима, это нравилось лишь немногим", - "textMeaningTranslate": "Мейнстрим - это то, что считается нормальным и принятым большинством людей", - "wordTranslate": "основное направление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd69" - }, - "group": 3, - "page": 22, - "word": "microbe", - "image": "files/23_2250.jpg", - "audio": "files/23_2250.mp3", - "audioMeaning": "files/23_2250_meaning.mp3", - "audioExample": "files/23_2250_example.mp3", - "textMeaning": "A microbe is a very small living thing that often makes people sick.", - "textExample": "The first step in curing a disease is finding the microbe that causes it.", - "transcription": "[máikroub]", - "__v": 0, - "textExampleTranslate": "Первым шагом в лечении заболевания является поиск микроба, который его вызывает", - "textMeaningTranslate": "Микроб - это очень маленькое живое существо, которое часто делает людей больными", - "wordTranslate": "микроб" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd6a" - }, - "group": 3, - "page": 22, - "word": "minor", - "image": "files/23_2251.jpg", - "audio": "files/23_2251.mp3", - "audioMeaning": "files/23_2251_meaning.mp3", - "audioExample": "files/23_2251_example.mp3", - "textMeaning": "A minor problem is a very small and unimportant problem.", - "textExample": "This is a minor problem.", - "transcription": "[máinər]", - "__v": 0, - "textExampleTranslate": "Это небольшая проблема", - "textMeaningTranslate": "Незначительная проблема - очень маленькая и неважная проблема", - "wordTranslate": "незначительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd6b" - }, - "group": 3, - "page": 22, - "word": "negligible", - "image": "files/23_2252.jpg", - "audio": "files/23_2252.mp3", - "audioMeaning": "files/23_2252_meaning.mp3", - "audioExample": "files/23_2252_example.mp3", - "textMeaning": "If something is negligible, it is extremely small and not important.", - "textExample": "The amount she owed was negligible. It was less than ten cents.", - "transcription": "[néglidʒəbəl]", - "__v": 0, - "textExampleTranslate": "Сумма, которую она должна была ничтожна. Она была меньше десяти центов", - "textMeaningTranslate": "Если что-то незначительное, оно крайне мало и не важно", - "wordTranslate": "незначительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd6c" - }, - "group": 3, - "page": 22, - "word": "paralysis", - "image": "files/23_2253.jpg", - "audio": "files/23_2253.mp3", - "audioMeaning": "files/23_2253_meaning.mp3", - "audioExample": "files/23_2253_example.mp3", - "textMeaning": "Paralysis is the loss of the ability to move all or part of your body.", - "textExample": "His paralysis meant that he had to use a wheelchair to get around.", - "transcription": "[pərǽləsis]", - "__v": 0, - "textExampleTranslate": "Его паралич означал, что ему пришлось передвигаться на инвалидной коляске", - "textMeaningTranslate": "Паралич - это потеря способности двигать всем или частью вашего тела", - "wordTranslate": "паралич" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd6d" - }, - "group": 3, - "page": 22, - "word": "pest", - "image": "files/23_2254.jpg", - "audio": "files/23_2254.mp3", - "audioMeaning": "files/23_2254_meaning.mp3", - "audioExample": "files/23_2254_example.mp3", - "textMeaning": "A pest is an animal or insect that hurts plants or food.", - "textExample": "Many farmers put up scarecrows to keep pests of their corn.", - "transcription": "[pest]", - "__v": 0, - "textExampleTranslate": "Многие фермеры сажают чучел, чтобы держать вредителей своей кукурузы", - "textMeaningTranslate": "Вредитель - это животное или насекомое, наносящее вред растениям или пище", - "wordTranslate": "вредители" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd6e" - }, - "group": 3, - "page": 22, - "word": "prevail", - "image": "files/23_2255.jpg", - "audio": "files/23_2255.mp3", - "audioMeaning": "files/23_2255_meaning.mp3", - "audioExample": "files/23_2255_example.mp3", - "textMeaning": "To prevail means to be accepted or very common.", - "textExample": "Unfortunately, injustice still prevails in the country’s court system.", - "transcription": "[privéil]", - "__v": 0, - "textExampleTranslate": "К сожалению, в судебной системе страны по-прежнему царит несправедливость", - "textMeaningTranslate": "Превалировать означает быть принятым или очень распространенным", - "wordTranslate": "превалируют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd6f" - }, - "group": 3, - "page": 22, - "word": "pursuit", - "image": "files/23_2256.jpg", - "audio": "files/23_2256.mp3", - "audioMeaning": "files/23_2256_meaning.mp3", - "audioExample": "files/23_2256_example.mp3", - "textMeaning": "When you are in pursuit of something, you are chasing it.", - "textExample": "The pursuit of happiness is a basic human right.", - "transcription": "[pərsúːt]", - "__v": 0, - "textExampleTranslate": "Стремление к счастью является основным правом человека", - "textMeaningTranslate": "Когда вы преследуете что-то, вы преследуете это", - "wordTranslate": "погоня" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd70" - }, - "group": 3, - "page": 22, - "word": "rupture", - "image": "files/23_2257.jpg", - "audio": "files/23_2257.mp3", - "audioMeaning": "files/23_2257_meaning.mp3", - "audioExample": "files/23_2257_example.mp3", - "textMeaning": "To rupture means to tear or burst open.", - "textExample": "Sarah put too much water into the balloon, and it ruptured.", - "transcription": "[rʌ́ptʃəːr]", - "__v": 0, - "textExampleTranslate": "Сара положила слишком много воды в шар, и он разорвался", - "textMeaningTranslate": "Разорвать - значит порвать или взорваться", - "wordTranslate": "разрыв" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd71" - }, - "group": 3, - "page": 22, - "word": "savage", - "image": "files/23_2258.jpg", - "audio": "files/23_2258.mp3", - "audioMeaning": "files/23_2258_meaning.mp3", - "audioExample": "files/23_2258_example.mp3", - "textMeaning": "If things or people are savage, they are very violent or cruel.", - "textExample": "Wild animals are very savage when defending their babies.", - "transcription": "[sǽvidʒ]", - "__v": 0, - "textExampleTranslate": "Дикие животные очень дикие, когда защищают своих детей", - "textMeaningTranslate": "Если вещи или люди дикие, они очень жестокие или жестокие", - "wordTranslate": "дикарь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd72" - }, - "group": 3, - "page": 22, - "word": "stun", - "image": "files/23_2259.jpg", - "audio": "files/23_2259.mp3", - "audioMeaning": "files/23_2259_meaning.mp3", - "audioExample": "files/23_2259_example.mp3", - "textMeaning": "To stun someone means to make them unable to speak due to surprise or shock.", - "textExample": "Tim fell of the swing and was too stunned to cry.", - "transcription": "[stʌn]", - "__v": 0, - "textExampleTranslate": "Тим упал с качелей и был слишком ошеломлен, чтобы плакать", - "textMeaningTranslate": "Ошеломить кого-либо означает лишить его возможности говорить из-за удивления или шока", - "wordTranslate": "оглушения" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd73" - }, - "group": 3, - "page": 22, - "word": "susceptible", - "image": "files/23_2260.jpg", - "audio": "files/23_2260.mp3", - "audioMeaning": "files/23_2260_meaning.mp3", - "audioExample": "files/23_2260_example.mp3", - "textMeaning": "If one is susceptible to something like a disease, they are easily harmed by it.", - "textExample": "Not eating enough vegetables makes you more susceptible to getting sick.", - "transcription": "[səséptəbəl]", - "__v": 0, - "textExampleTranslate": "Недостаточное употребление овощей делает вас более восприимчивым к заболеванию", - "textMeaningTranslate": "Если кто-то подвержен чему-то подобному болезни, он легко причиняет ей вред", - "wordTranslate": "восприимчивый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd74" - }, - "group": 3, - "page": 23, - "word": "advocate", - "image": "files/24_2261.jpg", - "audio": "files/24_2261.mp3", - "audioMeaning": "files/24_2261_meaning.mp3", - "audioExample": "files/24_2261_example.mp3", - "textMeaning": "To advocate a plan or idea is to support or suggest it in public.", - "textExample": "The group advocated increased spending on education and schools.", - "transcription": "[ǽdvəkèit]", - "__v": 0, - "textExampleTranslate": "Группа выступает за увеличение расходов на образование и школы", - "textMeaningTranslate": "Отстаивать план или идею - значит поддерживать или предлагать ее публично", - "wordTranslate": "адвокат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd75" - }, - "group": 3, - "page": 23, - "word": "authorize", - "image": "files/24_2263.jpg", - "audio": "files/24_2263.mp3", - "audioMeaning": "files/24_2263_meaning.mp3", - "audioExample": "files/24_2263_example.mp3", - "textMeaning": "To authorize something means to give permission for it.", - "textExample": "The mayor authorized the construction of a new statue in the park.", - "transcription": "[ɔ́ːθəràiz]", - "__v": 0, - "textExampleTranslate": "Мэр санкционировал строительство новой статуи в парке", - "textMeaningTranslate": "Авторизовать что-либо означает дать разрешение на это", - "wordTranslate": "авторизовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd76" - }, - "group": 3, - "page": 23, - "word": "albeit", - "image": "files/24_2262.jpg", - "audio": "files/24_2262.mp3", - "audioMeaning": "files/24_2262_meaning.mp3", - "audioExample": "files/24_2262_example.mp3", - "textMeaning": "Albeit means although. (It is made of three parts – al(though), be, it.", - "textExample": "She was happy, albeit briefly.", - "transcription": "[ɔːlbíːit]", - "__v": 0, - "textExampleTranslate": "Она была счастлива, хотя и ненадолго", - "textMeaningTranslate": "Хотя и означает, хотя. (Он состоит из трех частей - все (хотя), будь, это", - "wordTranslate": "хотя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd77" - }, - "group": 3, - "page": 23, - "word": "civilian", - "image": "files/24_2264.jpg", - "audio": "files/24_2264.mp3", - "audioMeaning": "files/24_2264_meaning.mp3", - "audioExample": "files/24_2264_example.mp3", - "textMeaning": "A civilian is someone who is not in the military.", - "textExample": "It was Todd’s job to keep civilians from entering the army facility.", - "transcription": "[sivíljən]", - "__v": 0, - "textExampleTranslate": "Задачей Тодда было не дать гражданским лицам войти в военный объект", - "textMeaningTranslate": "Гражданский - это тот, кто не в армии", - "wordTranslate": "гражданский" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd78" - }, - "group": 3, - "page": 23, - "word": "commodity", - "image": "files/24_2265.jpg", - "audio": "files/24_2265.mp3", - "audioMeaning": "files/24_2265_meaning.mp3", - "audioExample": "files/24_2265_example.mp3", - "textMeaning": "A commodity is something that can be bought or sold.", - "textExample": "Fran’s uncle made most of his money trading commodities.", - "transcription": "[kəmɑ́dəti]", - "__v": 0, - "textExampleTranslate": "Дядя Фрэн сделал большую часть своих денег, торгуя товарами", - "textMeaningTranslate": "Товар - это то, что можно купить или продать", - "wordTranslate": "товар" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd79" - }, - "group": 3, - "page": 23, - "word": "communicate", - "image": "files/24_2266.jpg", - "audio": "files/24_2266.mp3", - "audioMeaning": "files/24_2266_meaning.mp3", - "audioExample": "files/24_2266_example.mp3", - "textMeaning": "When we communicate with others, we talk or write to them.", - "textExample": "He was unable to communicate his feelings clearly.", - "transcription": "[kəmjúːnəkèit]", - "__v": 0, - "textExampleTranslate": "Он не мог четко выразить свои чувства", - "textMeaningTranslate": "Когда мы общаемся с другими, мы говорим или пишем им", - "wordTranslate": "общаться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd7a" - }, - "group": 3, - "page": 23, - "word": "conquest", - "image": "files/24_2267.jpg", - "audio": "files/24_2267.mp3", - "audioMeaning": "files/24_2267_meaning.mp3", - "audioExample": "files/24_2267_example.mp3", - "textMeaning": "A conquest is an event by which one country takes over another country.", - "textExample": "After the conquest, the people of the small city had no freedom.", - "transcription": "[kɑ́ŋkwest]", - "__v": 0, - "textExampleTranslate": "После завоевания жители маленького города не имели свободы", - "textMeaningTranslate": "Завоевание - это событие, посредством которого одна страна захватывает другую страну", - "wordTranslate": "завоевание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd7b" - }, - "group": 3, - "page": 23, - "word": "disclose", - "image": "files/24_2268.jpg", - "audio": "files/24_2268.mp3", - "audioMeaning": "files/24_2268_meaning.mp3", - "audioExample": "files/24_2268_example.mp3", - "textMeaning": "To disclose something means to tell it to someone else.", - "textExample": "John came home late, so he had to disclose his activities to his wife.", - "transcription": "[disklóuz]", - "__v": 0, - "textExampleTranslate": "Джон пришел домой поздно, поэтому ему пришлось рассказать о своей деятельности своей жене", - "textMeaningTranslate": "Раскрыть что-то значит сказать это кому-то другому", - "wordTranslate": "раскрытие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd7c" - }, - "group": 3, - "page": 23, - "word": "dynamics", - "image": "files/24_2269.jpg", - "audio": "files/24_2269.mp3", - "audioMeaning": "files/24_2269_meaning.mp3", - "audioExample": "files/24_2269_example.mp3", - "textMeaning": "The dynamics of a situation are the way that parts of it affect each other.", - "textExample": "A good psychologist needs to know a lot about the dynamics of brain disorders.", - "transcription": "[dainǽmiks]", - "__v": 0, - "textExampleTranslate": "Хорошему психологу нужно много знать о динамике мозговых расстройств", - "textMeaningTranslate": "Динамика ситуации - это то, как ее части влияют друг на друга", - "wordTranslate": "динамика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd7d" - }, - "group": 3, - "page": 23, - "word": "enroll", - "image": "files/24_2270.jpg", - "audio": "files/24_2270.mp3", - "audioMeaning": "files/24_2270_meaning.mp3", - "audioExample": "files/24_2270_example.mp3", - "textMeaning": "To enroll in something is to put one’s name on a list as a member of a group.", - "textExample": "The students had to enroll in the class one semester in advance.", - "transcription": "[enróul]", - "__v": 0, - "textExampleTranslate": "Студенты должны были записаться в класс за один семестр", - "textMeaningTranslate": "Записаться во что-то - значит внести свое имя в список в качестве члена группы", - "wordTranslate": "зачислить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd7e" - }, - "group": 3, - "page": 23, - "word": "envious", - "image": "files/24_2271.jpg", - "audio": "files/24_2271.mp3", - "audioMeaning": "files/24_2271_meaning.mp3", - "audioExample": "files/24_2271_example.mp3", - "textMeaning": "When someone is envious, they want something that another person has.", - "textExample": "They were envious of their neighbor’s front yard.", - "transcription": "[énviəs]", - "__v": 0, - "textExampleTranslate": "Они завидовали переднему двору своего соседа", - "textMeaningTranslate": "Когда кто-то завидует, ему нужно то, что есть у другого", - "wordTranslate": "завидуют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd7f" - }, - "group": 3, - "page": 23, - "word": "indicate", - "image": "files/24_2273.jpg", - "audio": "files/24_2273.mp3", - "audioMeaning": "files/24_2273_meaning.mp3", - "audioExample": "files/24_2273_example.mp3", - "textMeaning": "When we indicate something, we show or point out our thoughts or plans.", - "textExample": "They indicated that things would be likely to improve soon.", - "transcription": "[índikèit]", - "__v": 0, - "textExampleTranslate": "Они указали, что ситуация, скорее всего, скоро улучшится", - "textMeaningTranslate": "Когда мы указываем что-то, мы показываем или указываем наши мысли или планы", - "wordTranslate": "показывают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd80" - }, - "group": 3, - "page": 23, - "word": "festive", - "image": "files/24_2272.jpg", - "audio": "files/24_2272.mp3", - "audioMeaning": "files/24_2272_meaning.mp3", - "audioExample": "files/24_2272_example.mp3", - "textMeaning": "When something is festive, it is happy and related to a party or celebration.", - "textExample": "Dean’s favorite part of Christmas is the festive clothing that people wear.", - "transcription": "[féstiv]", - "__v": 0, - "textExampleTranslate": "Любимая часть Рождества Дина - это праздничная одежда, которую носят люди", - "textMeaningTranslate": "Когда что-то праздничное, оно счастливое и связано с вечеринкой или праздником", - "wordTranslate": "праздничный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd81" - }, - "group": 3, - "page": 23, - "word": "lentil", - "image": "files/24_2274.jpg", - "audio": "files/24_2274.mp3", - "audioMeaning": "files/24_2274_meaning.mp3", - "audioExample": "files/24_2274_example.mp3", - "textMeaning": "Lentils are very small beans that people cook and eat.", - "textExample": "Danni made her special soup with lentils when her husband was sick.", - "transcription": "[léntil]", - "__v": 0, - "textExampleTranslate": "Данни сделала свой особый суп из чечевицы, когда ее муж заболел", - "textMeaningTranslate": "Чечевица очень маленькая фасоль, которую люди готовят и едят", - "wordTranslate": "чечевица" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd82" - }, - "group": 3, - "page": 23, - "word": "morale", - "image": "files/24_2276.jpg", - "audio": "files/24_2276.mp3", - "audioMeaning": "files/24_2276_meaning.mp3", - "audioExample": "files/24_2276_example.mp3", - "textMeaning": "Morale is the amount of hope that people have during a difficult situation.", - "textExample": "To improve our family’s morale, mom suggested going on a picnic.", - "transcription": "[mourǽl]", - "__v": 0, - "textExampleTranslate": "Чтобы улучшить моральный дух нашей семьи, мама предложила пойти на пикник", - "textMeaningTranslate": "Мораль - это количество надежды, которую люди испытывают в трудной ситуации", - "wordTranslate": "боевой дух" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd83" - }, - "group": 3, - "page": 23, - "word": "marshal", - "image": "files/24_2275.jpg", - "audio": "files/24_2275.mp3", - "audioMeaning": "files/24_2275_meaning.mp3", - "audioExample": "files/24_2275_example.mp3", - "textMeaning": "To marshal a group means to assemble them in order.", - "textExample": "The students were marshaled outside and put into groups.", - "transcription": "[mɑ́ːrʃəl]", - "__v": 0, - "textExampleTranslate": "Студенты были собраны на улице и разбиты на группы", - "textMeaningTranslate": "Собрать группу - значит собрать их по порядку", - "wordTranslate": "предводитель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd84" - }, - "group": 3, - "page": 23, - "word": "mood", - "image": "files/24_2277.jpg", - "audio": "files/24_2277.mp3", - "audioMeaning": "files/24_2277_meaning.mp3", - "audioExample": "files/24_2277_example.mp3", - "textMeaning": "Your mood is the way you are feeling.", - "textExample": "My boss is in a really bad mood today.", - "transcription": "[muːd]", - "__v": 0, - "textExampleTranslate": "У моего босса сегодня действительно плохое настроение", - "textMeaningTranslate": "Ваше настроение - это то, что вы чувствуете", - "wordTranslate": "настроение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd85" - }, - "group": 3, - "page": 23, - "word": "senate", - "image": "files/24_2279.jpg", - "audio": "files/24_2279.mp3", - "audioMeaning": "files/24_2279_meaning.mp3", - "audioExample": "files/24_2279_example.mp3", - "textMeaning": "A senate is a part of the government in some countries.", - "textExample": "Everybody liked Caroline and chose her to speak for them in the senate.", - "transcription": "[sénət]", - "__v": 0, - "textExampleTranslate": "Все любили Кэролайн и выбрали ее, чтобы говорить за них в сенате", - "textMeaningTranslate": "Сенат является частью правительства в некоторых странах", - "wordTranslate": "сенат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd86" - }, - "group": 3, - "page": 23, - "word": "unrest", - "image": "files/24_2280.jpg", - "audio": "files/24_2280.mp3", - "audioMeaning": "files/24_2280_meaning.mp3", - "audioExample": "files/24_2280_example.mp3", - "textMeaning": "Unrest is a state of anger about something among the people in a place.", - "textExample": "High taxes caused much of the unrest that led to the Revolutionary War.", - "transcription": "[ʌnrést]", - "__v": 0, - "textExampleTranslate": "Высокие налоги вызвали большую часть беспорядков, которые привели к войне за независимость", - "textMeaningTranslate": "Беспорядки - это состояние гнева по поводу чего-то среди людей в месте", - "wordTranslate": "беспорядки" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd87" - }, - "group": 3, - "page": 23, - "word": "prophecy", - "image": "files/24_2278.jpg", - "audio": "files/24_2278.mp3", - "audioMeaning": "files/24_2278_meaning.mp3", - "audioExample": "files/24_2278_example.mp3", - "textMeaning": "A prophecy is a prediction about what will happen in the future.", - "textExample": "Some people believe that prophecies are actually true.", - "transcription": "[prɑ́fəsi]", - "__v": 0, - "textExampleTranslate": "Некоторые люди верят, что пророчества действительно верны", - "textMeaningTranslate": "Пророчество - это предсказание о том, что произойдет в будущем", - "wordTranslate": "пророчество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd88" - }, - "group": 3, - "page": 24, - "word": "certify", - "image": "files/25_2281.jpg", - "audio": "files/25_2281.mp3", - "audioMeaning": "files/25_2281_meaning.mp3", - "audioExample": "files/25_2281_example.mp3", - "textMeaning": "To certify something means to confirm that its results are true.", - "textExample": "The photograph on her passport certified that she was indeed Jolene Sawyer.", - "transcription": "[sə́ːrtəfài]", - "__v": 0, - "textExampleTranslate": "Фотография в ее паспорте подтверждает, что она действительно была Джолин Сойер", - "textMeaningTranslate": "Сертифицировать что-либо означает подтвердить, что его результаты верны", - "wordTranslate": "сертифицировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd89" - }, - "group": 3, - "page": 24, - "word": "coherent", - "image": "files/25_2282.jpg", - "audio": "files/25_2282.mp3", - "audioMeaning": "files/25_2282_meaning.mp3", - "audioExample": "files/25_2282_example.mp3", - "textMeaning": "The parts of a coherent plan fit well together.", - "textExample": "This was a coherent program for solving the flooding problem.", - "transcription": "[kouhíərənt]", - "__v": 0, - "textExampleTranslate": "Это была последовательная программа для решения проблемы затопления", - "textMeaningTranslate": "Части согласованного плана хорошо сочетаются друг с другом", - "wordTranslate": "последовательный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd8a" - }, - "group": 3, - "page": 24, - "word": "compile", - "image": "files/25_2284.jpg", - "audio": "files/25_2284.mp3", - "audioMeaning": "files/25_2284_meaning.mp3", - "audioExample": "files/25_2284_example.mp3", - "textMeaning": "To compile things means to collect a variety of them into a group.", - "textExample": "She compiled a list of people who she wanted to attend her birthday party.", - "transcription": "[kəmpáil]", - "__v": 0, - "textExampleTranslate": "Она составила список людей, которых она хотела посетить на дне рождения", - "textMeaningTranslate": "Собирать вещи - значит собирать их в группу", - "wordTranslate": "компилировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd8b" - }, - "group": 3, - "page": 24, - "word": "collaborate", - "image": "files/25_2283.jpg", - "audio": "files/25_2283.mp3", - "audioMeaning": "files/25_2283_meaning.mp3", - "audioExample": "files/25_2283_example.mp3", - "textMeaning": "To collaborate means to work together on something.", - "textExample": "When they collaborated, they managed to finish their chores early.", - "transcription": "[kəlǽbərèit]", - "__v": 0, - "textExampleTranslate": "Когда они сотрудничали, им удалось закончить свои дела рано", - "textMeaningTranslate": "Сотрудничать означает работать вместе над чем-то", - "wordTranslate": "сотрудничать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd8c" - }, - "group": 3, - "page": 24, - "word": "diagnose", - "image": "files/25_2286.jpg", - "audio": "files/25_2286.mp3", - "audioMeaning": "files/25_2286_meaning.mp3", - "audioExample": "files/25_2286_example.mp3", - "textMeaning": "To diagnose someone means to identify the medical condition they have.", - "textExample": "Several of the children were diagnosed with the flu.", - "transcription": "[dáiəgnòus]", - "__v": 0, - "textExampleTranslate": "У нескольких детей был диагностирован грипп", - "textMeaningTranslate": "Диагностировать кого-либо - значит определить состояние его здоровья", - "wordTranslate": "диагностировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd8d" - }, - "group": 3, - "page": 24, - "word": "curb", - "image": "files/25_2285.jpg", - "audio": "files/25_2285.mp3", - "audioMeaning": "files/25_2285_meaning.mp3", - "audioExample": "files/25_2285_example.mp3", - "textMeaning": "To curb something means to prevent it from happening or increasing.", - "textExample": "She curbed her anger by listening to a relaxing song.", - "transcription": "[kəːrb]", - "__v": 0, - "textExampleTranslate": "Она сдерживала свой гнев, слушая расслабляющую песню", - "textMeaningTranslate": "Обуздать что-либо - значит предотвратить или увеличить это", - "wordTranslate": "снаряженная" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd8e" - }, - "group": 3, - "page": 24, - "word": "enact", - "image": "files/25_2287.jpg", - "audio": "files/25_2287.mp3", - "audioMeaning": "files/25_2287_meaning.mp3", - "audioExample": "files/25_2287_example.mp3", - "textMeaning": "To enact something means to make it into a law.", - "textExample": "The council enacted a law that would only allow buses to drive downtown.", - "transcription": "[inǽkt]", - "__v": 0, - "textExampleTranslate": "Совет принял закон, который позволял бы только автобусам ездить в центр города", - "textMeaningTranslate": "Принять что-то значит превратить это в закон", - "wordTranslate": "принять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd8f" - }, - "group": 3, - "page": 24, - "word": "gross", - "image": "files/25_2289.jpg", - "audio": "files/25_2289.mp3", - "audioMeaning": "files/25_2289_meaning.mp3", - "audioExample": "files/25_2289_example.mp3", - "textMeaning": "If something is gross, then it is disgusting.", - "textExample": "The food was so gross that the dog couldn’t eat it without feeling sick.", - "transcription": "[grous]", - "__v": 0, - "textExampleTranslate": "Еда была настолько грубой, что собака не могла съесть ее, не почувствовав себя больной", - "textMeaningTranslate": "Если что-то грубое, то это отвратительно", - "wordTranslate": "валовой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd90" - }, - "group": 3, - "page": 24, - "word": "federation", - "image": "files/25_2288.jpg", - "audio": "files/25_2288.mp3", - "audioMeaning": "files/25_2288_meaning.mp3", - "audioExample": "files/25_2288_example.mp3", - "textMeaning": "A federation is a group of states or businesses working for a common cause.", - "textExample": "The United Nations is a federation designed to prevent war, disease, and famine.", - "transcription": "[fèdəréiʃən]", - "__v": 0, - "textExampleTranslate": "Организация Объединенных Наций - это федерация, созданная для предотвращения войны, болезней и голода", - "textMeaningTranslate": "Федерация - это группа государств или предприятий, работающих на общее дело", - "wordTranslate": "федерация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd91" - }, - "group": 3, - "page": 24, - "word": "humane", - "image": "files/25_2290.jpg", - "audio": "files/25_2290.mp3", - "audioMeaning": "files/25_2290_meaning.mp3", - "audioExample": "files/25_2290_example.mp3", - "textMeaning": "If something is humane, then it is good and kind.", - "textExample": "Helping build homes for poor people is very humane.", - "transcription": "[hjuːméin]", - "__v": 0, - "textExampleTranslate": "Помогать строить дома для бедных людей очень гуманно", - "textMeaningTranslate": "Если что-то гуманно, то это хорошо и добро", - "wordTranslate": "гуманный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd92" - }, - "group": 3, - "page": 24, - "word": "onset", - "image": "files/25_2292.jpg", - "audio": "files/25_2292.mp3", - "audioMeaning": "files/25_2292_meaning.mp3", - "audioExample": "files/25_2292_example.mp3", - "textMeaning": "The onset of something unpleasant is the beginning of it.", - "textExample": "At the onset of the battle, the enemy wasn’t prepared for such a large attack.", - "transcription": "[ɑ́nsèt]", - "__v": 0, - "textExampleTranslate": "В начале битвы противник не был готов к такой большой атаке", - "textMeaningTranslate": "Начало чего-то неприятного - это начало", - "wordTranslate": "наступление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd93" - }, - "group": 3, - "page": 24, - "word": "needy", - "image": "files/25_2291.jpg", - "audio": "files/25_2291.mp3", - "audioMeaning": "files/25_2291_meaning.mp3", - "audioExample": "files/25_2291_example.mp3", - "textMeaning": "If someone is needy, they are very poor.", - "textExample": "After he lost his job, he became very needy.", - "transcription": "[níːdi]", - "__v": 0, - "textExampleTranslate": "После того, как он потерял работу, он стал очень нуждающимся", - "textMeaningTranslate": "Если кто-то нуждается, он очень беден", - "wordTranslate": "нуждающимся" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd94" - }, - "group": 3, - "page": 24, - "word": "pledge", - "image": "files/25_2293.jpg", - "audio": "files/25_2293.mp3", - "audioMeaning": "files/25_2293_meaning.mp3", - "audioExample": "files/25_2293_example.mp3", - "textMeaning": "To pledge means to make a promise to do something.", - "textExample": "Her mother pledged that she would find her daughter’s lost kitten.", - "transcription": "[pledʒ]", - "__v": 0, - "textExampleTranslate": "Мать пообещала, что найдет потерянного котенка дочери", - "textMeaningTranslate": "Пообещать - значит дать обещание что-то сделать", - "wordTranslate": "залог" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd95" - }, - "group": 3, - "page": 24, - "word": "prohibit", - "image": "files/25_2294.jpg", - "audio": "files/25_2294.mp3", - "audioMeaning": "files/25_2294_meaning.mp3", - "audioExample": "files/25_2294_example.mp3", - "textMeaning": "To prohibit something means to not allow it.", - "textExample": "She prohibited the students from speaking until their work was done.", - "transcription": "[prouhíbit]", - "__v": 0, - "textExampleTranslate": "Она запретила студентам говорить, пока их работа не будет выполнена", - "textMeaningTranslate": "Запрещать что-либо - значит не позволять это", - "wordTranslate": "запретить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd96" - }, - "group": 3, - "page": 24, - "word": "render", - "image": "files/25_2295.jpg", - "audio": "files/25_2295.mp3", - "audioMeaning": "files/25_2295_meaning.mp3", - "audioExample": "files/25_2295_example.mp3", - "textMeaning": "To render something means to make it become something else.", - "textExample": "His report was rendered unimportant by the release of new information.", - "transcription": "[réndər]", - "__v": 0, - "textExampleTranslate": "Его сообщение стало неважным из-за публикации новой информации", - "textMeaningTranslate": "Сделать что-то - значит сделать это чем-то другим", - "wordTranslate": "делают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd97" - }, - "group": 3, - "page": 24, - "word": "transform", - "image": "files/25_2297.jpg", - "audio": "files/25_2297.mp3", - "audioMeaning": "files/25_2297_meaning.mp3", - "audioExample": "files/25_2297_example.mp3", - "textMeaning": "To transform something is to change it in a very significant way.", - "textExample": "The education system has been completely transformed.", - "transcription": "[trænsfɔ:rm]", - "__v": 0, - "textExampleTranslate": "Система образования полностью преобразована", - "textMeaningTranslate": "Превратить что-то - значит изменить это очень значительным образом", - "wordTranslate": "преобразование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd98" - }, - "group": 3, - "page": 24, - "word": "smallpox", - "image": "files/25_2296.jpg", - "audio": "files/25_2296.mp3", - "audioMeaning": "files/25_2296_meaning.mp3", - "audioExample": "files/25_2296_example.mp3", - "textMeaning": "Smallpox is a disease that causes tiny bumps on the skin and high fevers.", - "textExample": "When she saw the tiny bumps, she thought her son might have smallpox.", - "transcription": "[smɔ́ːlpɑ̀ks]", - "__v": 0, - "textExampleTranslate": "Когда она увидела крошечные шишки, она подумала, что у ее сына может быть оспа", - "textMeaningTranslate": "Оспа - это болезнь, которая вызывает крошечные шишки на коже и высокую температуру", - "wordTranslate": "оспа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd99" - }, - "group": 3, - "page": 24, - "word": "transmit", - "image": "files/25_2298.jpg", - "audio": "files/25_2298.mp3", - "audioMeaning": "files/25_2298_meaning.mp3", - "audioExample": "files/25_2298_example.mp3", - "textMeaning": "To transmit something means to pass it from one person or place to another.", - "textExample": "The radio tower transmits a signal to all the radios in a 20-kilometer radius.", - "transcription": "[trænsmít]", - "__v": 0, - "textExampleTranslate": "Радиовышка передает сигнал на все радиостанции в радиусе 20 километров", - "textMeaningTranslate": "Передать что-то - значит передать это от одного человека или места другому", - "wordTranslate": "передача" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd9a" - }, - "group": 3, - "page": 24, - "word": "vow", - "image": "files/25_2299.jpg", - "audio": "files/25_2299.mp3", - "audioMeaning": "files/25_2299_meaning.mp3", - "audioExample": "files/25_2299_example.mp3", - "textMeaning": "To vow means to make a promise to do something.", - "textExample": "Before they are allowed to work, all senators must vow to never accept bribes.", - "transcription": "[vau]", - "__v": 0, - "textExampleTranslate": "Прежде чем им разрешат работать, все сенаторы должны поклясться никогда не брать взятки", - "textMeaningTranslate": "Клятва означает дать обещание сделать что-то", - "wordTranslate": "клятва" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd9b" - }, - "group": 3, - "page": 24, - "word": "widespread", - "image": "files/25_2300.jpg", - "audio": "files/25_2300.mp3", - "audioMeaning": "files/25_2300_meaning.mp3", - "audioExample": "files/25_2300_example.mp3", - "textMeaning": "Something that is widespread is spread widely across the world.", - "textExample": "It is a widespread belief that colds are caused by cold weather.", - "transcription": "[waidspred]", - "__v": 0, - "textExampleTranslate": "Широко распространено убеждение, что простуда вызвана холодной погодой", - "textMeaningTranslate": "То, что широко распространено, широко распространено по всему миру", - "wordTranslate": "широко распространен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd9c" - }, - "group": 3, - "page": 25, - "word": "adhere", - "image": "files/26_2301.jpg", - "audio": "files/26_2301.mp3", - "audioMeaning": "files/26_2301_meaning.mp3", - "audioExample": "files/26_2301_example.mp3", - "textMeaning": "To adhere means to act in the way that a rule or agreement says is right.", - "textExample": "If the new employees wish to succeed, they must adhere to the boss’s rules.", - "transcription": "[ədhíər]", - "__v": 0, - "textExampleTranslate": "Если новые сотрудники хотят добиться успеха, они должны придерживаться правил босса", - "textMeaningTranslate": "Придерживаться означает действовать так, как правило или соглашение говорит, что это правильно", - "wordTranslate": "прилипать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd9d" - }, - "group": 3, - "page": 25, - "word": "administer", - "image": "files/26_2302.jpg", - "audio": "files/26_2302.mp3", - "audioMeaning": "files/26_2302_meaning.mp3", - "audioExample": "files/26_2302_example.mp3", - "textMeaning": "To administer means to take responsibility for organizing something.", - "textExample": "The teacher’s assistant will administer the test.", - "transcription": "[ədmínistər]", - "__v": 0, - "textExampleTranslate": "Помощник учителя проведет тест", - "textMeaningTranslate": "Управлять означает брать на себя ответственность за организацию чего-либо", - "wordTranslate": "администрирование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afda2" - }, - "group": 3, - "page": 25, - "word": "emphasis", - "image": "files/26_2306.jpg", - "audio": "files/26_2306.mp3", - "audioMeaning": "files/26_2306_meaning.mp3", - "audioExample": "files/26_2306_example.mp3", - "textMeaning": "When you put an emphasis on prevention, you give special attention to prevention.", - "textExample": "The government placed a strong emphasis on educational reform.", - "transcription": "[émfəsis]", - "__v": 0, - "textExampleTranslate": "Правительство уделяло большое внимание реформе образования", - "textMeaningTranslate": "Когда вы делаете акцент на профилактике, вы уделяете особое внимание профилактике", - "wordTranslate": "акцент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd9f" - }, - "group": 3, - "page": 25, - "word": "contaminate", - "image": "files/26_2304.jpg", - "audio": "files/26_2304.mp3", - "audioMeaning": "files/26_2304_meaning.mp3", - "audioExample": "files/26_2304_example.mp3", - "textMeaning": "To contaminate something means to put dirty or harmful chemicals into it.", - "textExample": "The lake was contaminated when pollutants entered the water.", - "transcription": "[kəntǽmənèit]", - "__v": 0, - "textExampleTranslate": "Озеро было загрязнено при попадании загрязняющих веществ в воду", - "textMeaningTranslate": "Загрязнять что-то - значит добавлять в него грязные или вредные химические вещества", - "wordTranslate": "загрязнить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afda0" - }, - "group": 3, - "page": 25, - "word": "deficiency", - "image": "files/26_2305.jpg", - "audio": "files/26_2305.mp3", - "audioMeaning": "files/26_2305_meaning.mp3", - "audioExample": "files/26_2305_example.mp3", - "textMeaning": "A deficiency is a lack of something, especially something that is needed.", - "textExample": "Your snack has a deficiency of any real nutrients.", - "transcription": "[difíʃənsi]", - "__v": 0, - "textExampleTranslate": "Ваша закуска имеет дефицит каких-либо реальных питательных веществ", - "textMeaningTranslate": "Недостаток - это недостаток чего-то, особенно того, что необходимо", - "wordTranslate": "дефицит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afd9e" - }, - "group": 3, - "page": 25, - "word": "compassionate", - "image": "files/26_2303.jpg", - "audio": "files/26_2303.mp3", - "audioMeaning": "files/26_2303_meaning.mp3", - "audioExample": "files/26_2303_example.mp3", - "textMeaning": "When people are compassionate, they feel pity and sympathy for others.", - "textExample": "The compassionate nurse tried to make the sick man feel comfortable.", - "transcription": "[kəmpǽʃənət]", - "__v": 0, - "textExampleTranslate": "Сострадательная медсестра пыталась заставить больного чувствовать себя комфортно", - "textMeaningTranslate": "Когда люди сострадательны, они чувствуют жалость и сочувствие к другим", - "wordTranslate": "сострадательный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afda1" - }, - "group": 3, - "page": 25, - "word": "epidemic", - "image": "files/26_2307.jpg", - "audio": "files/26_2307.mp3", - "audioMeaning": "files/26_2307_meaning.mp3", - "audioExample": "files/26_2307_example.mp3", - "textMeaning": "An epidemic is an outbreak of a disease that spreads quickly.", - "textExample": "It was difficult to stop the flu epidemic.", - "transcription": "[èpədémik]", - "__v": 0, - "textExampleTranslate": "Было трудно остановить эпидемию гриппа", - "textMeaningTranslate": "Эпидемия - это вспышка быстро распространяющейся болезни", - "wordTranslate": "эпидемия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afda3" - }, - "group": 3, - "page": 25, - "word": "hazard", - "image": "files/26_2308.jpg", - "audio": "files/26_2308.mp3", - "audioMeaning": "files/26_2308_meaning.mp3", - "audioExample": "files/26_2308_example.mp3", - "textMeaning": "A hazard is something that could be dangerous to a person’s health or safety.", - "textExample": "Smoking cigarettes poses many health hazards.", - "transcription": "[hǽzərd]", - "__v": 0, - "textExampleTranslate": "Курение сигарет создает много опасностей для здоровья", - "textMeaningTranslate": "Опасность - это то, что может быть опасно для здоровья или безопасности человека", - "wordTranslate": "опасность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afda4" - }, - "group": 3, - "page": 25, - "word": "imperative", - "image": "files/26_2309.jpg", - "audio": "files/26_2309.mp3", - "audioMeaning": "files/26_2309_meaning.mp3", - "audioExample": "files/26_2309_example.mp3", - "textMeaning": "When something is imperative, it is extremely important and must be done.", - "textExample": "It was imperative for him to find a job.", - "transcription": "[impérətiv]", - "__v": 0, - "textExampleTranslate": "Ему необходимо было найти работу", - "textMeaningTranslate": "Когда что-то необходимо, это чрезвычайно важно и должно быть сделано", - "wordTranslate": "императив" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afda5" - }, - "group": 3, - "page": 25, - "word": "intestines", - "image": "files/26_2310.jpg", - "audio": "files/26_2310.mp3", - "audioMeaning": "files/26_2310_meaning.mp3", - "audioExample": "files/26_2310_example.mp3", - "textMeaning": "Intestines are tubes through which food passes after it leaves the stomach.", - "textExample": "Whatever you eat goes into your intestines.", - "transcription": "[intéstinz]", - "__v": 0, - "textExampleTranslate": "Все, что вы едите, попадает в ваш кишечник", - "textMeaningTranslate": "Кишечник - это трубки, через которые проходит пища после того, как она покидает желудок", - "wordTranslate": "кишка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afda6" - }, - "group": 3, - "page": 25, - "word": "manifest", - "image": "files/26_2311.jpg", - "audio": "files/26_2311.mp3", - "audioMeaning": "files/26_2311_meaning.mp3", - "audioExample": "files/26_2311_example.mp3", - "textMeaning": "To manifest means to make something visible or obvious.", - "textExample": "The joy of the holiday season manifested as bright smiles on the faces of the children.", - "transcription": "[mǽnəfèst]", - "__v": 0, - "textExampleTranslate": "Радость курортного сезона проявляется в ярких улыбках на лицах детей", - "textMeaningTranslate": "Проявить означает сделать что-то видимым или очевидным", - "wordTranslate": "манифест" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afda7" - }, - "group": 3, - "page": 25, - "word": "overcrowded", - "image": "files/26_2312.jpg", - "audio": "files/26_2312.mp3", - "audioMeaning": "files/26_2312_meaning.mp3", - "audioExample": "files/26_2312_example.mp3", - "textMeaning": "When a place is overcrowded, it has too many people or things in it.", - "textExample": "The lobby was overcrowded with people.", - "transcription": "[òuvərkráudid]", - "__v": 0, - "textExampleTranslate": "Вестибюль был переполнен людьми", - "textMeaningTranslate": "Когда место переполнено, в нем слишком много людей или вещей", - "wordTranslate": "переполнена" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afda8" - }, - "group": 3, - "page": 25, - "word": "practitioner", - "image": "files/26_2313.jpg", - "audio": "files/26_2313.mp3", - "audioMeaning": "files/26_2313_meaning.mp3", - "audioExample": "files/26_2313_example.mp3", - "textMeaning": "A practitioner is a doctor.", - "textExample": "She made an appointment with the practitioner to treat her cough.", - "transcription": "[præktíʃənər]", - "__v": 0, - "textExampleTranslate": "Она договорилась о встрече с практикующей, чтобы лечить ее кашель", - "textMeaningTranslate": "Практикующий врач", - "wordTranslate": "практикующий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afda9" - }, - "group": 3, - "page": 25, - "word": "provision", - "image": "files/26_2314.jpg", - "audio": "files/26_2314.mp3", - "audioMeaning": "files/26_2314_meaning.mp3", - "audioExample": "files/26_2314_example.mp3", - "textMeaning": "The provision of something is the act of giving it to people in need or want.", - "textExample": "That department is responsible for the provision of emergency supplies.", - "transcription": "[prəvíʒən]", - "__v": 0, - "textExampleTranslate": "Этот департамент отвечает за предоставление предметов первой необходимости", - "textMeaningTranslate": "Предоставление чего-либо - это акт передачи этого нуждающимся или нуждающимся людям", - "wordTranslate": "обеспечение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdaa" - }, - "group": 3, - "page": 25, - "word": "replenish", - "image": "files/26_2315.jpg", - "audio": "files/26_2315.mp3", - "audioMeaning": "files/26_2315_meaning.mp3", - "audioExample": "files/26_2315_example.mp3", - "textMeaning": "To replenish something means to make it full or complete again.", - "textExample": "We planted nearly one hundred seeds to replenish the garden after the fire.", - "transcription": "[ripléniʃ]", - "__v": 0, - "textExampleTranslate": "Мы посадили около ста семян, чтобы пополнить сад после пожара", - "textMeaningTranslate": "Пополнить что-то означает сделать его полным или завершить снова", - "wordTranslate": "пополнение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdac" - }, - "group": 3, - "page": 25, - "word": "sterile", - "image": "files/26_2317.jpg", - "audio": "files/26_2317.mp3", - "audioMeaning": "files/26_2317_meaning.mp3", - "audioExample": "files/26_2317_example.mp3", - "textMeaning": "When something is sterile, it is completely clean and free from germs.", - "textExample": "The hospital room looked quite sterile.", - "transcription": "[stéril]", - "__v": 0, - "textExampleTranslate": "Больничная палата выглядела довольно стерильной", - "textMeaningTranslate": "Когда что-то стерильно, оно совершенно чистое и не содержит микробов", - "wordTranslate": "стерильные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdab" - }, - "group": 3, - "page": 25, - "word": "reverse", - "image": "files/26_2316.jpg", - "audio": "files/26_2316.mp3", - "audioMeaning": "files/26_2316_meaning.mp3", - "audioExample": "files/26_2316_example.mp3", - "textMeaning": "When a car reverses, it goes backwards.", - "textExample": "We reversed out of the parking place and then drove away.", - "transcription": "[rivə́ːrs]", - "__v": 0, - "textExampleTranslate": "Мы свернули с парковки, а затем уехали", - "textMeaningTranslate": "Когда автомобиль поворачивает задним ходом, он движется задом наперед", - "wordTranslate": "обеспечить регресс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdad" - }, - "group": 3, - "page": 25, - "word": "upgrade", - "image": "files/26_2318.jpg", - "audio": "files/26_2318.mp3", - "audioMeaning": "files/26_2318_meaning.mp3", - "audioExample": "files/26_2318_example.mp3", - "textMeaning": "To upgrade something means to improve it or make it more efficient.", - "textExample": "He upgraded to a real fancy car.", - "transcription": "[ʌ́pgrèid]", - "__v": 0, - "textExampleTranslate": "Он перешел на настоящий модный автомобиль", - "textMeaningTranslate": "Улучшать что-то - значит улучшать или повышать эффективность", - "wordTranslate": "обновить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdae" - }, - "group": 3, - "page": 25, - "word": "viable", - "image": "files/26_2319.jpg", - "audio": "files/26_2319.mp3", - "audioMeaning": "files/26_2319_meaning.mp3", - "audioExample": "files/26_2319_example.mp3", - "textMeaning": "When something is viable, it is capable of doing what it is intended to do.", - "textExample": "Her method of solving the math problem seemed viable.", - "transcription": "[váiəbl]", - "__v": 0, - "textExampleTranslate": "Ее метод решения математической задачи казался жизнеспособным", - "textMeaningTranslate": "Когда что-то жизнеспособно, оно способно делать то, что предназначено", - "wordTranslate": "жизнеспособный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdaf" - }, - "group": 3, - "page": 25, - "word": "voluntary", - "image": "files/26_2320.jpg", - "audio": "files/26_2320.mp3", - "audioMeaning": "files/26_2320_meaning.mp3", - "audioExample": "files/26_2320_example.mp3", - "textMeaning": "When something is voluntary, it is done by choice but is not required.", - "textExample": "Many people attended the voluntary boat safety class.", - "transcription": "[vɑ́ləntèri]", - "__v": 0, - "textExampleTranslate": "Многие люди посещали добровольный класс безопасности лодки", - "textMeaningTranslate": "Когда что-то добровольно, это делается по выбору, но не обязательно", - "wordTranslate": "добровольное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdb1" - }, - "group": 3, - "page": 26, - "word": "Almighty", - "image": "files/27_2322.jpg", - "audio": "files/27_2322.mp3", - "audioMeaning": "files/27_2322_meaning.mp3", - "audioExample": "files/27_2322_example.mp3", - "textMeaning": "The Almighty is a name for a god in a religion.", - "textExample": "Before eating, they thanked the Almighty for their food.", - "transcription": "[ɔːlmáiti]", - "__v": 0, - "textExampleTranslate": "Перед едой они поблагодарили Всевышнего за пищу", - "textMeaningTranslate": "Всемогущий - это имя бога в религии", - "wordTranslate": "всемогущий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdb0" - }, - "group": 3, - "page": 26, - "word": "airway", - "image": "files/27_2321.jpg", - "audio": "files/27_2321.mp3", - "audioMeaning": "files/27_2321_meaning.mp3", - "audioExample": "files/27_2321_example.mp3", - "textMeaning": "An airway is the passage by which air reaches a person’s lungs.", - "textExample": "Since he was sick, mucus would occasionally get stuck in his airway.", - "transcription": "[ɛ́ərwèi]", - "__v": 0, - "textExampleTranslate": "Поскольку он был болен, слизь иногда застревала в его дыхательных путях", - "textMeaningTranslate": "Дыхательные пути - это проход, по которому воздух достигает легких человека", - "wordTranslate": "дыхательные пути" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdb2" - }, - "group": 3, - "page": 26, - "word": "advent", - "image": "files/27_2323.jpg", - "audio": "files/27_2323.mp3", - "audioMeaning": "files/27_2323_meaning.mp3", - "audioExample": "files/27_2323_example.mp3", - "textMeaning": "An advent is the arrival or beginning of an important person, thing, or event.", - "textExample": "During the advent of radio, very few programs actually played music.", - "transcription": "[ǽdvent]", - "__v": 0, - "textExampleTranslate": "Во времена появления радио очень немногие программы играли музыку", - "textMeaningTranslate": "Пришествие - это прибытие или начало важного человека, вещи или события", - "wordTranslate": "наступление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdb3" - }, - "group": 3, - "page": 26, - "word": "cycle", - "image": "files/27_2324.jpg", - "audio": "files/27_2324.mp3", - "audioMeaning": "files/27_2324_meaning.mp3", - "audioExample": "files/27_2324_example.mp3", - "textMeaning": "A cycle is a series of events that go in a circle from the end back to the beginning again.", - "textExample": "They were caught in a cycle of poverty, lack of education, and unemployment.", - "transcription": "[sáikl]", - "__v": 0, - "textExampleTranslate": "Они попали в круговорот нищеты, отсутствия образования и безработицы", - "textMeaningTranslate": "Цикл - это серия событий, которые снова идут по кругу от конца к началу", - "wordTranslate": "цикл" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdb6" - }, - "group": 3, - "page": 26, - "word": "found", - "image": "files/27_2327.jpg", - "audio": "files/27_2327.mp3", - "audioMeaning": "files/27_2327_meaning.mp3", - "audioExample": "files/27_2327_example.mp3", - "textMeaning": "To found something on an idea or principal is to base it on that idea.", - "textExample": "This is founded on the belief that all people are created equal.", - "transcription": "[faund]", - "__v": 0, - "textExampleTranslate": "Это основано на убеждении, что все люди созданы равными", - "textMeaningTranslate": "Находить что-то на основе идеи или принципала - значит основывать это на этой идее", - "wordTranslate": "нашел" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdb4" - }, - "group": 3, - "page": 26, - "word": "definitive", - "image": "files/27_2325.jpg", - "audio": "files/27_2325.mp3", - "audioMeaning": "files/27_2325_meaning.mp3", - "audioExample": "files/27_2325_example.mp3", - "textMeaning": "If something is definitive, then it is the most official.", - "textExample": "This library has the definitive collection of books on ancient Egypt.", - "transcription": "[difínətiv]", - "__v": 0, - "textExampleTranslate": "Эта библиотека имеет исчерпывающую коллекцию книг по древнему Египту", - "textMeaningTranslate": "Если что-то является окончательным, то это самое официальное", - "wordTranslate": "окончательный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdb5" - }, - "group": 3, - "page": 26, - "word": "equate", - "image": "files/27_2326.jpg", - "audio": "files/27_2326.mp3", - "audioMeaning": "files/27_2326_meaning.mp3", - "audioExample": "files/27_2326_example.mp3", - "textMeaning": "To equate one thing with another is to compare them and consider them very similar.", - "textExample": "She equated the man’s messy appearance with a lack of responsibility.", - "transcription": "[ikwéit]", - "__v": 0, - "textExampleTranslate": "Она приравнивала грязную внешность человека к отсутствию ответственности", - "textMeaningTranslate": "Отождествлять одно с другим значит сравнивать их и считать их очень похожими", - "wordTranslate": "приравнять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdb7" - }, - "group": 3, - "page": 26, - "word": "ideology", - "image": "files/27_2328.jpg", - "audio": "files/27_2328.mp3", - "audioMeaning": "files/27_2328_meaning.mp3", - "audioExample": "files/27_2328_example.mp3", - "textMeaning": "An ideology is a system of belief.", - "textExample": "Within the teachers’ ideology, there was a belief in the value of parent participation.", - "transcription": "[àidiάlədʒi]", - "__v": 0, - "textExampleTranslate": "В рамках идеологии учителей существовала вера в ценность участия родителей", - "textMeaningTranslate": "Идеология - это система убеждений", - "wordTranslate": "идеология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdb8" - }, - "group": 3, - "page": 26, - "word": "inhale", - "image": "files/27_2329.jpg", - "audio": "files/27_2329.mp3", - "audioMeaning": "files/27_2329_meaning.mp3", - "audioExample": "files/27_2329_example.mp3", - "textMeaning": "To inhale means to take air or a smell into the lungs.", - "textExample": "The camper inhaled the cool and fresh mountain air and felt relaxed.", - "transcription": "[inhéil]", - "__v": 0, - "textExampleTranslate": "Турист вдыхал прохладный и свежий горный воздух и чувствовал себя расслабленным", - "textMeaningTranslate": "Вдыхать - значит вдыхать воздух или запах в легкие", - "wordTranslate": "вдох" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdb9" - }, - "group": 3, - "page": 26, - "word": "invoke", - "image": "files/27_2330.jpg", - "audio": "files/27_2330.mp3", - "audioMeaning": "files/27_2330_meaning.mp3", - "audioExample": "files/27_2330_example.mp3", - "textMeaning": "To invoke something is to mention it to support an argument or ask for help.", - "textExample": "Before going into battle, the soldier invoked the name of his god for protection.", - "transcription": "[invóuk]", - "__v": 0, - "textExampleTranslate": "Прежде чем идти в бой, солдат призвал имя своего бога для защиты", - "textMeaningTranslate": "Призвать что-либо - это упомянуть, чтобы поддержать аргумент или попросить о помощи", - "wordTranslate": "вызов" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdba" - }, - "group": 3, - "page": 26, - "word": "lunar", - "image": "files/27_2331.jpg", - "audio": "files/27_2331.mp3", - "audioMeaning": "files/27_2331_meaning.mp3", - "audioExample": "files/27_2331_example.mp3", - "textMeaning": "If something is lunar, then it is related to the moon.", - "textExample": "During a lunar eclipse, Earth’s shadow darkens the moon’s surface.", - "transcription": "[lúːnər]", - "__v": 0, - "textExampleTranslate": "Во время лунного затмения тень Земли затемняет поверхность луны", - "textMeaningTranslate": "Если что-то лунное, то это связано с луной", - "wordTranslate": "лунный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdbb" - }, - "group": 3, - "page": 26, - "word": "novelty", - "image": "files/27_2332.jpg", - "audio": "files/27_2332.mp3", - "audioMeaning": "files/27_2332_meaning.mp3", - "audioExample": "files/27_2332_example.mp3", - "textMeaning": "A novelty is something that is new, original, or strange.", - "textExample": "Ice cream was a novelty for him since he rarely had any.", - "transcription": "[nɑ́vəlti]", - "__v": 0, - "textExampleTranslate": "Мороженое было для него новинкой, так как у него редко было что-либо", - "textMeaningTranslate": "Новизна - это что-то новое, оригинальное или странное", - "wordTranslate": "новизна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdbc" - }, - "group": 3, - "page": 26, - "word": "outmoded", - "image": "files/27_2333.jpg", - "audio": "files/27_2333.mp3", - "audioMeaning": "files/27_2333_meaning.mp3", - "audioExample": "files/27_2333_example.mp3", - "textMeaning": "If something is outmoded, then it is no longer in fashion or use.", - "textExample": "Black and white television sets are outmoded.", - "transcription": "[àutmóudid]", - "__v": 0, - "textExampleTranslate": "Черно-белые телевизоры устарели", - "textMeaningTranslate": "Если что-то устарело, то оно уже не в моде и не используется", - "wordTranslate": "устаревшее" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdbd" - }, - "group": 3, - "page": 26, - "word": "personalize", - "image": "files/27_2334.jpg", - "audio": "files/27_2334.mp3", - "audioMeaning": "files/27_2334_meaning.mp3", - "audioExample": "files/27_2334_example.mp3", - "textMeaning": "To personalize something means to design it to meet a person’s unique needs.", - "textExample": "He personalized the woman’s exercises to give her a better workout.", - "transcription": "[pə́ːrsənəlàiz]", - "__v": 0, - "textExampleTranslate": "Он персонализировал упражнения женщины, чтобы дать ей лучшую тренировку", - "textMeaningTranslate": "Персонализировать что-то - значит спроектировать это для удовлетворения уникальных потребностей человека", - "wordTranslate": "персонализировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdbe" - }, - "group": 3, - "page": 26, - "word": "psychiatric", - "image": "files/27_2335.jpg", - "audio": "files/27_2335.mp3", - "audioMeaning": "files/27_2335_meaning.mp3", - "audioExample": "files/27_2335_example.mp3", - "textMeaning": "If something is psychiatric, then it is related to mental illness or its treatment.", - "textExample": "The doctor said the patient might have a psychiatric problem.", - "transcription": "[sàikiǽtrik]", - "__v": 0, - "textExampleTranslate": "Врач сказал, что у пациента может быть психиатрическая проблема", - "textMeaningTranslate": "Если что-то психиатрическое, то это связано с психическим заболеванием или его лечением", - "wordTranslate": "психиатрические" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdbf" - }, - "group": 3, - "page": 26, - "word": "psychiatry", - "image": "files/27_2336.jpg", - "audio": "files/27_2336.mp3", - "audioMeaning": "files/27_2336_meaning.mp3", - "audioExample": "files/27_2336_example.mp3", - "textMeaning": "Psychiatry is the study and treatment of mental illness.", - "textExample": "Studying psychiatry has taught me a lot about mental illness.", - "transcription": "[saikáiətri]", - "__v": 0, - "textExampleTranslate": "Изучение психиатрии многому научило меня в отношении психических заболеваний", - "textMeaningTranslate": "Психиатрия - это изучение и лечение психических заболеваний", - "wordTranslate": "психиатрия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdc0" - }, - "group": 3, - "page": 26, - "word": "reflex", - "image": "files/27_2337.jpg", - "audio": "files/27_2337.mp3", - "audioMeaning": "files/27_2337_meaning.mp3", - "audioExample": "files/27_2337_example.mp3", - "textMeaning": "A reflex is an unconscious action in which a body part responds to an event.", - "textExample": "There was a reflex when the doctor hit his knee with a rubber hammer.", - "transcription": "[ríːfeks]", - "__v": 0, - "textExampleTranslate": "Был рефлекс, когда доктор ударил его коленом резиновым молотком", - "textMeaningTranslate": "Рефлекс - это бессознательное действие, при котором часть тела реагирует на событие", - "wordTranslate": "рефлекс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdc1" - }, - "group": 3, - "page": 26, - "word": "seizure", - "image": "files/27_2338.jpg", - "audio": "files/27_2338.mp3", - "audioMeaning": "files/27_2338_meaning.mp3", - "audioExample": "files/27_2338_example.mp3", - "textMeaning": "A seizure is a sudden condition in which the body loses control and shakes.", - "textExample": "Bright fashing lights can cause seizures in children.", - "transcription": "[síːʒər]", - "__v": 0, - "textExampleTranslate": "Яркие мигающие огни могут вызвать судороги у детей", - "textMeaningTranslate": "Приступ - это внезапное состояние, при котором тело теряет контроль и дрожит", - "wordTranslate": "захват" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdc2" - }, - "group": 3, - "page": 26, - "word": "session", - "image": "files/27_2339.jpg", - "audio": "files/27_2339.mp3", - "audioMeaning": "files/27_2339_meaning.mp3", - "audioExample": "files/27_2339_example.mp3", - "textMeaning": "A session is a meeting at a regular time in order to discuss and solve an issue.", - "textExample": "Every three months, the managers met in a session to discuss regional sales.", - "transcription": "[séʃən]", - "__v": 0, - "textExampleTranslate": "Каждые три месяца руководители встречались на сессии для обсуждения региональных продаж", - "textMeaningTranslate": "Сессия - это встреча в обычное время, чтобы обсудить и решить проблему", - "wordTranslate": "сессии" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdc3" - }, - "group": 3, - "page": 26, - "word": "utensil", - "image": "files/27_2340.jpg", - "audio": "files/27_2340.mp3", - "audioMeaning": "files/27_2340_meaning.mp3", - "audioExample": "files/27_2340_example.mp3", - "textMeaning": "A utensil is a common tool or container.", - "textExample": "It seemed that a fork was the wrong utensil for trying to eat the soup.", - "transcription": "[juːténsəl]", - "__v": 0, - "textExampleTranslate": "Казалось, что вилка была неправильной посудой для того, чтобы есть суп", - "textMeaningTranslate": "Посуда - это обычный инструмент или контейнер", - "wordTranslate": "посуда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdc4" - }, - "group": 3, - "page": 27, - "word": "allocate", - "image": "files/28_2341.jpg", - "audio": "files/28_2341.mp3", - "audioMeaning": "files/28_2341_meaning.mp3", - "audioExample": "files/28_2341_example.mp3", - "textMeaning": "To allocate something means to put it aside for a certain purpose or person.", - "textExample": "The government allocated $100 million to aid the disaster relief effort.", - "transcription": "[ǽləkèit]", - "__v": 0, - "textExampleTranslate": "Правительство выделило 100 миллионов долларов на помощь в ликвидации последствий стихийных бедствий", - "textMeaningTranslate": "Распределить что-либо - значит отложить это для определенной цели или человека", - "wordTranslate": "выделить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdc5" - }, - "group": 3, - "page": 27, - "word": "appetizing", - "image": "files/28_2342.jpg", - "audio": "files/28_2342.mp3", - "audioMeaning": "files/28_2342_meaning.mp3", - "audioExample": "files/28_2342_example.mp3", - "textMeaning": "When food is appetizing, it looks and smells very good.", - "textExample": "The appetizing plate of cookies was gone in half an hour.", - "transcription": "[ǽpitàiziŋ]", - "__v": 0, - "textExampleTranslate": "Аппетитная тарелка печенья пропала за полчаса", - "textMeaningTranslate": "Когда еда аппетитная, она выглядит и пахнет очень хорошо", - "wordTranslate": "аппетитный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdc6" - }, - "group": 3, - "page": 27, - "word": "assign", - "image": "files/28_2343.jpg", - "audio": "files/28_2343.mp3", - "audioMeaning": "files/28_2343_meaning.mp3", - "audioExample": "files/28_2343_example.mp3", - "textMeaning": "When you assign work, you give that work to particular people.", - "textExample": "I was assigned the job of making sure everyone had plenty to drink.", - "transcription": "[əsáin]", - "__v": 0, - "textExampleTranslate": "Мне было поручено убедиться, что у всех было много пить", - "textMeaningTranslate": "Когда вы назначаете работу, вы даете эту работу определенным людям", - "wordTranslate": "назначить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdc7" - }, - "group": 3, - "page": 27, - "word": "cavity", - "image": "files/28_2344.jpg", - "audio": "files/28_2344.mp3", - "audioMeaning": "files/28_2344_meaning.mp3", - "audioExample": "files/28_2344_example.mp3", - "textMeaning": "A cavity is a hole or space in something.", - "textExample": "There was a small cavity in the wall of the cave, where an animal lived.", - "transcription": "[kǽvəti]", - "__v": 0, - "textExampleTranslate": "В стене пещеры, где обитало животное, была небольшая полость", - "textMeaningTranslate": "Полость - это отверстие или пространство в чем-то", - "wordTranslate": "полость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdc8" - }, - "group": 3, - "page": 27, - "word": "clockwise", - "image": "files/28_2345.jpg", - "audio": "files/28_2345.mp3", - "audioMeaning": "files/28_2345_meaning.mp3", - "audioExample": "files/28_2345_example.mp3", - "textMeaning": "If something moves clockwise, it moves in a circle in the same direction as a clock.", - "textExample": "Turn the screw clockwise to tighten it.", - "transcription": "[klɑ́kwàiz]", - "__v": 0, - "textExampleTranslate": "Поверните винт по часовой стрелке, чтобы затянуть его", - "textMeaningTranslate": "Если что-то движется по часовой стрелке, оно движется по кругу в том же направлении, что и часы", - "wordTranslate": "по часовой стрелке" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdc9" - }, - "group": 3, - "page": 27, - "word": "concentric", - "image": "files/28_2346.jpg", - "audio": "files/28_2346.mp3", - "audioMeaning": "files/28_2346_meaning.mp3", - "audioExample": "files/28_2346_example.mp3", - "textMeaning": "When circles or rings are concentric, they have the same center.", - "textExample": "The target was a series of concentric circles.", - "transcription": "[kənséntrik]", - "__v": 0, - "textExampleTranslate": "Целью была серия концентрических кругов", - "textMeaningTranslate": "Когда круги или кольца концентрически, они имеют один и тот же центр", - "wordTranslate": "концентрический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdca" - }, - "group": 3, - "page": 27, - "word": "courtesy", - "image": "files/28_2347.jpg", - "audio": "files/28_2347.mp3", - "audioMeaning": "files/28_2347_meaning.mp3", - "audioExample": "files/28_2347_example.mp3", - "textMeaning": "Courtesy is the excellence of manners or social conduct.", - "textExample": "Jenna always behaves with great courtesy when people visit her home.", - "transcription": "[kɔ́ːrtəsi]", - "__v": 0, - "textExampleTranslate": "Дженна всегда ведет себя очень вежливо, когда люди посещают ее дом", - "textMeaningTranslate": "Вежливость - это превосходство манер или социального поведения", - "wordTranslate": "любезность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdcb" - }, - "group": 3, - "page": 27, - "word": "crisp", - "image": "files/28_2348.jpg", - "audio": "files/28_2348.mp3", - "audioMeaning": "files/28_2348_meaning.mp3", - "audioExample": "files/28_2348_example.mp3", - "textMeaning": "When food is crisp, it is hard or has a hard surface in a way that is pleasant.", - "textExample": "My favorite snack is a bag of crisp, delicious potato chips.", - "transcription": "[krisp]", - "__v": 0, - "textExampleTranslate": "Моя любимая закуска - пакет хрустящих, вкусных картофельных чипсов", - "textMeaningTranslate": "Когда еда свежая, она твердая или имеет твердую поверхность таким образом, что это приятно", - "wordTranslate": "хрустящий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdcc" - }, - "group": 3, - "page": 27, - "word": "discord", - "image": "files/28_2349.jpg", - "audio": "files/28_2349.mp3", - "audioMeaning": "files/28_2349_meaning.mp3", - "audioExample": "files/28_2349_example.mp3", - "textMeaning": "Discord is disagreement or fighting.", - "textExample": "There was much discord between the experts on the talk show.", - "transcription": "[dískɔːrd]", - "__v": 0, - "textExampleTranslate": "Было много разногласий между экспертами ток-шоу", - "textMeaningTranslate": "Разногласия - это несогласие или борьба", - "wordTranslate": "раздор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdcd" - }, - "group": 3, - "page": 27, - "word": "generate", - "image": "files/28_2350.jpg", - "audio": "files/28_2350.mp3", - "audioMeaning": "files/28_2350_meaning.mp3", - "audioExample": "files/28_2350_example.mp3", - "textMeaning": "To generate something means to cause it to develop or begin.", - "textExample": "The mayor promised to generate new jobs and programs to help the poor.", - "transcription": "[ʤénərèit]", - "__v": 0, - "textExampleTranslate": "Мэр пообещал создать новые рабочие места и программы, чтобы помочь бедным", - "textMeaningTranslate": "Сгенерировать что-либо означает заставить его развиваться или начинать", - "wordTranslate": "генерировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdce" - }, - "group": 3, - "page": 27, - "word": "item", - "image": "files/28_2351.jpg", - "audio": "files/28_2351.mp3", - "audioMeaning": "files/28_2351_meaning.mp3", - "audioExample": "files/28_2351_example.mp3", - "textMeaning": "An item is a single separate piece.", - "textExample": "There were some items of clothing found at the crime scene.", - "transcription": "[áitəm]", - "__v": 0, - "textExampleTranslate": "На месте преступления было найдено несколько предметов одежды", - "textMeaningTranslate": "Предмет - это отдельный отдельный предмет", - "wordTranslate": "вещь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdcf" - }, - "group": 3, - "page": 27, - "word": "interchange", - "image": "files/28_2352.jpg", - "audio": "files/28_2352.mp3", - "audioMeaning": "files/28_2352_meaning.mp3", - "audioExample": "files/28_2352_example.mp3", - "textMeaning": "An interchange of ideas between people is a discussion of each person’s idea.", - "textExample": "There was an interchange of ideas between the groups.", - "transcription": "[ìntərtʃéindʒ]", - "__v": 0, - "textExampleTranslate": "Был обмен идеями между группами", - "textMeaningTranslate": "Обмен идеями между людьми - это обсуждение идеи каждого человека", - "wordTranslate": "обмен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdd0" - }, - "group": 3, - "page": 27, - "word": "multicultural", - "image": "files/28_2353.jpg", - "audio": "files/28_2353.mp3", - "audioMeaning": "files/28_2353_meaning.mp3", - "audioExample": "files/28_2353_example.mp3", - "textMeaning": "When something is multicultural, it relates to many different cultures.", - "textExample": "Everyone was welcome to attend the multicultural celebration.", - "transcription": "[mʌltikʌ́ltʃərəl]", - "__v": 0, - "textExampleTranslate": "Приглашаем всех посетить мультикультурный праздник", - "textMeaningTranslate": "Когда что-то мультикультурно, это относится ко многим различным культурам", - "wordTranslate": "мультикультурный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdd1" - }, - "group": 3, - "page": 27, - "word": "omission", - "image": "files/28_2354.jpg", - "audio": "files/28_2354.mp3", - "audioMeaning": "files/28_2354_meaning.mp3", - "audioExample": "files/28_2354_example.mp3", - "textMeaning": "An omission is something that has been left out or not done.", - "textExample": "Mike was upset because of the omission of his name during the ceremony.", - "transcription": "[oumíʃən]", - "__v": 0, - "textExampleTranslate": "Майк был расстроен из-за пропуска его имени во время церемонии", - "textMeaningTranslate": "Пропуск - это то, что было упущено или не сделано", - "wordTranslate": "упущение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdd2" - }, - "group": 3, - "page": 27, - "word": "oversee", - "image": "files/28_2355.jpg", - "audio": "files/28_2355.mp3", - "audioMeaning": "files/28_2355_meaning.mp3", - "audioExample": "files/28_2355_example.mp3", - "textMeaning": "To oversee something means to make sure that it is being done properly.", - "textExample": "His job was to oversee the progress of the construction project.", - "transcription": "[òuvərsíː]", - "__v": 0, - "textExampleTranslate": "Его работа заключалась в том, чтобы контролировать ход строительного проекта", - "textMeaningTranslate": "Наблюдать за чем-то - значит быть уверенным, что это делается правильно", - "wordTranslate": "надзор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdd3" - }, - "group": 3, - "page": 27, - "word": "pierce", - "image": "files/28_2356.jpg", - "audio": "files/28_2356.mp3", - "audioMeaning": "files/28_2356_meaning.mp3", - "audioExample": "files/28_2356_example.mp3", - "textMeaning": "To pierce something means to make a hole in it using a sharp object.", - "textExample": "The arrow pierced the target in the very center.", - "transcription": "[piərs]", - "__v": 0, - "textExampleTranslate": "Стрела пронзила цель в самом центре", - "textMeaningTranslate": "Пробить что-то значит сделать отверстие в нем с помощью острого предмета", - "wordTranslate": "прокалывать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdd4" - }, - "group": 3, - "page": 27, - "word": "select", - "image": "files/28_2357.jpg", - "audio": "files/28_2357.mp3", - "audioMeaning": "files/28_2357_meaning.mp3", - "audioExample": "files/28_2357_example.mp3", - "textMeaning": "When you select something, you carefully choose it.", - "textExample": "They had to select textbooks for each class.", - "transcription": "[silékt]", - "__v": 0, - "textExampleTranslate": "Они должны были выбрать учебники для каждого класса", - "textMeaningTranslate": "Когда вы выбираете что-то, вы тщательно выбираете это", - "wordTranslate": "выбрать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdd5" - }, - "group": 3, - "page": 27, - "word": "structure", - "image": "files/28_2358.jpg", - "audio": "files/28_2358.mp3", - "audioMeaning": "files/28_2358_meaning.mp3", - "audioExample": "files/28_2358_example.mp3", - "textMeaning": "The structure involves the shape and organization of the parts of a building or group.", - "textExample": "There are big differences in family structure in different cultures.", - "transcription": "[strΛkʧər]", - "__v": 0, - "textExampleTranslate": "Существуют большие различия в структуре семьи в разных культурах", - "textMeaningTranslate": "Структура включает в себя форму и организацию частей здания или группы", - "wordTranslate": "структура" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdd6" - }, - "group": 3, - "page": 27, - "word": "visual", - "image": "files/28_2359.jpg", - "audio": "files/28_2359.mp3", - "audioMeaning": "files/28_2359_meaning.mp3", - "audioExample": "files/28_2359_example.mp3", - "textMeaning": "Visual relates to seeing.", - "textExample": "The visual displays were very attractive.", - "transcription": "[víʒuəl]", - "__v": 0, - "textExampleTranslate": "Визуальные дисплеи были очень привлекательными", - "textMeaningTranslate": "Визуальный относится к видению", - "wordTranslate": "визуальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdd7" - }, - "group": 3, - "page": 27, - "word": "wavy", - "image": "files/28_2360.jpg", - "audio": "files/28_2360.mp3", - "audioMeaning": "files/28_2360_meaning.mp3", - "audioExample": "files/28_2360_example.mp3", - "textMeaning": "When something is wavy, it is not straight but has a series of curves.", - "textExample": "The child drew wavy lines all over the piece of paper.", - "transcription": "[wéivi]", - "__v": 0, - "textExampleTranslate": "Ребенок нарисовал волнистые линии на всем листе бумаги", - "textMeaningTranslate": "Когда что-то волнистое, оно не прямое, а имеет ряд кривых", - "wordTranslate": "волнистый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdd8" - }, - "group": 3, - "page": 28, - "word": "conversion", - "image": "files/29_2361.jpg", - "audio": "files/29_2361.mp3", - "audioMeaning": "files/29_2361_meaning.mp3", - "audioExample": "files/29_2361_example.mp3", - "textMeaning": "Conversion is the act of changing something into a different state or form.", - "textExample": "The city discussed the conversion of the parking lot into a skateboard park.", - "transcription": "[kənvə́ːrʒən]", - "__v": 0, - "textExampleTranslate": "В городе обсуждали превращение парковки в скейт-парк", - "textMeaningTranslate": "Конверсия - это акт изменения чего-либо в другое состояние или форму", - "wordTranslate": "преобразование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdd9" - }, - "group": 3, - "page": 28, - "word": "cram", - "image": "files/29_2362.jpg", - "audio": "files/29_2362.mp3", - "audioMeaning": "files/29_2362_meaning.mp3", - "audioExample": "files/29_2362_example.mp3", - "textMeaning": "To cram things means to put them into a place that can barely contain them.", - "textExample": "He crammed all of his shirts into the top drawer of the dresser.", - "transcription": "[kræm]", - "__v": 0, - "textExampleTranslate": "Он втиснул все свои рубашки в верхний ящик комода", - "textMeaningTranslate": "Втиснуть вещи - значит поместить их в место, где их едва хватает", - "wordTranslate": "напихать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdda" - }, - "group": 3, - "page": 28, - "word": "defer", - "image": "files/29_2363.jpg", - "audio": "files/29_2363.mp3", - "audioMeaning": "files/29_2363_meaning.mp3", - "audioExample": "files/29_2363_example.mp3", - "textMeaning": "To defer means to arrange for an action to happen at a later time.", - "textExample": "The girl was very sleepy, so she chose to defer her bath until morning.", - "transcription": "[difə́ːr]", - "__v": 0, - "textExampleTranslate": "Девушка была очень сонной, поэтому она решила отложить ванну до утра", - "textMeaningTranslate": "Отложить - значит организовать действие, которое произойдет позже", - "wordTranslate": "перенести" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afddb" - }, - "group": 3, - "page": 28, - "word": "export", - "image": "files/29_2364.jpg", - "audio": "files/29_2364.mp3", - "audioMeaning": "files/29_2364_meaning.mp3", - "audioExample": "files/29_2364_example.mp3", - "textMeaning": "To export products means to sell them to other countries.", - "textExample": "The United States exports many cereals and grains.", - "transcription": "[ikspɔ́ːrt]", - "__v": 0, - "textExampleTranslate": "Соединенные Штаты экспортируют много зерновых и зерновых", - "textMeaningTranslate": "Экспортировать товары - значит продавать их в другие страны", - "wordTranslate": "экспорт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afddc" - }, - "group": 3, - "page": 28, - "word": "fume", - "image": "files/29_2365.jpg", - "audio": "files/29_2365.mp3", - "audioMeaning": "files/29_2365_meaning.mp3", - "audioExample": "files/29_2365_example.mp3", - "textMeaning": "Fumes are unhealthy smoke and gases that are made by fires or chemicals.", - "textExample": "The engine put unpleasant, black fumes into the air.", - "transcription": "[fjuːm]", - "__v": 0, - "textExampleTranslate": "Двигатель выбрасывает неприятные, черные пары в воздух", - "textMeaningTranslate": "Пары - это нездоровый дым и газы, образующиеся в результате пожара или химических веществ", - "wordTranslate": "дымить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afddd" - }, - "group": 3, - "page": 28, - "word": "habitual", - "image": "files/29_2366.jpg", - "audio": "files/29_2366.mp3", - "audioMeaning": "files/29_2366_meaning.mp3", - "audioExample": "files/29_2366_example.mp3", - "textMeaning": "When something is habitual, it is a behavior that a person usually does or has.", - "textExample": "The man was a habitual liar who was incapable of being honest with anyone.", - "transcription": "[həbítʃuəl]", - "__v": 0, - "textExampleTranslate": "Этот человек был обычным лжецом, который был неспособен быть честным с кем-либо", - "textMeaningTranslate": "Когда что-то является привычным, это поведение, которое человек обычно делает или имеет", - "wordTranslate": "привычный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdde" - }, - "group": 3, - "page": 28, - "word": "justify", - "image": "files/29_2367.jpg", - "audio": "files/29_2367.mp3", - "audioMeaning": "files/29_2367_meaning.mp3", - "audioExample": "files/29_2367_example.mp3", - "textMeaning": "To justify something means to show or prove that it is necessary.", - "textExample": "The government tried to justify its decision to bring the country into a war.", - "transcription": "[dʒʌ́stəfài]", - "__v": 0, - "textExampleTranslate": "Правительство пыталось оправдать свое решение о том, чтобы привести страну к войне", - "textMeaningTranslate": "Обосновать что-либо - значит показать или доказать, что это необходимо", - "wordTranslate": "оправдать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afddf" - }, - "group": 3, - "page": 28, - "word": "notwithstanding", - "image": "files/29_2368.jpg", - "audio": "files/29_2368.mp3", - "audioMeaning": "files/29_2368_meaning.mp3", - "audioExample": "files/29_2368_example.mp3", - "textMeaning": "We use notwithstanding when we want to show that, although something has been done, it is not enough. A similar term is “in spite of”.", - "textExample": "Notwithstanding your objections, we have decided to move forward with the project.", - "transcription": "[nὰtwiðstǽndiŋ]", - "__v": 0, - "textExampleTranslate": "Несмотря на ваши возражения, мы решили продолжить работу над проектом", - "textMeaningTranslate": "Мы используем, несмотря на то, что хотим показать, что, хотя что-то уже сделано, этого недостаточно. Аналогичный термин 'несмотря на'", - "wordTranslate": "несмотря" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afde0" - }, - "group": 3, - "page": 28, - "word": "output", - "image": "files/29_2369.jpg", - "audio": "files/29_2369.mp3", - "audioMeaning": "files/29_2369_meaning.mp3", - "audioExample": "files/29_2369_example.mp3", - "textMeaning": "Output is the amount of something that a person or thing produces.", - "textExample": "The boss hired more workers to increase the factory’s output of products.", - "transcription": "[áutpùt]", - "__v": 0, - "textExampleTranslate": "Босс нанял больше работников для увеличения выпуска продукции на фабрике", - "textMeaningTranslate": "Выход - это количество того, что производит человек или вещь", - "wordTranslate": "вывод" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afde1" - }, - "group": 3, - "page": 28, - "word": "overpopulation", - "image": "files/29_2370.jpg", - "audio": "files/29_2370.mp3", - "audioMeaning": "files/29_2370_meaning.mp3", - "audioExample": "files/29_2370_example.mp3", - "textMeaning": "Overpopulation is the state of having too many people in an area.", - "textExample": "The organization is concerned with the overpopulation of the world.", - "transcription": "[òuvərpɑpjuléi∫ən]", - "__v": 0, - "textExampleTranslate": "Организация обеспокоена перенаселением мира", - "textMeaningTranslate": "Перенаселенность - это состояние, когда в районе слишком много людей", - "wordTranslate": "перенаселение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afde2" - }, - "group": 3, - "page": 28, - "word": "patent", - "image": "files/29_2371.jpg", - "audio": "files/29_2371.mp3", - "audioMeaning": "files/29_2371_meaning.mp3", - "audioExample": "files/29_2371_example.mp3", - "textMeaning": "A patent is a right to be the only person allowed to make or sell a new product.", - "textExample": "He quickly established a patent for his brilliant invention.", - "transcription": "[pǽtənt]", - "__v": 0, - "textExampleTranslate": "Он быстро установил патент на свое блестящее изобретение", - "textMeaningTranslate": "Патент - это право быть единственным лицом, которому разрешено производить или продавать новый продукт", - "wordTranslate": "патент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afde3" - }, - "group": 3, - "page": 28, - "word": "penalize", - "image": "files/29_2372.jpg", - "audio": "files/29_2372.mp3", - "audioMeaning": "files/29_2372_meaning.mp3", - "audioExample": "files/29_2372_example.mp3", - "textMeaning": "To penalize someone means to punish him or her.", - "textExample": "The team was penalized when they broke the rules.", - "transcription": "[píːnəlàiz]", - "__v": 0, - "textExampleTranslate": "Команда была оштрафована, когда они нарушили правила", - "textMeaningTranslate": "Наказать кого-то - значит наказать его или ее", - "wordTranslate": "оштрафовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afde4" - }, - "group": 3, - "page": 28, - "word": "petroleum", - "image": "files/29_2373.jpg", - "audio": "files/29_2373.mp3", - "audioMeaning": "files/29_2373_meaning.mp3", - "audioExample": "files/29_2373_example.mp3", - "textMeaning": "Petroleum is a liquid natural resource from which many fuels are made.", - "textExample": "The petroleum at that factory is used to make gasoline.", - "transcription": "[pitróuliəm]", - "__v": 0, - "textExampleTranslate": "Нефть на этом заводе используется для производства бензина", - "textMeaningTranslate": "Нефть - это жидкий природный ресурс, из которого производится много топлива", - "wordTranslate": "нефть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afde5" - }, - "group": 3, - "page": 28, - "word": "region", - "image": "files/29_2374.jpg", - "audio": "files/29_2374.mp3", - "audioMeaning": "files/29_2374_meaning.mp3", - "audioExample": "files/29_2374_example.mp3", - "textMeaning": "A region is a large area of land usually based on some common feature.", - "textExample": "This is the wheat-growing region of the country.", - "transcription": "[ríːdʒən]", - "__v": 0, - "textExampleTranslate": "Это пшеничный регион страны", - "textMeaningTranslate": "Регион - это большая территория, обычно основанная на некоторой общей особенности", - "wordTranslate": "область" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afde6" - }, - "group": 3, - "page": 28, - "word": "scrap", - "image": "files/29_2375.jpg", - "audio": "files/29_2375.mp3", - "audioMeaning": "files/29_2375_meaning.mp3", - "audioExample": "files/29_2375_example.mp3", - "textMeaning": "A scrap of something is a small amount of it.", - "textExample": "Chris liked to use many scraps of paper when thinking up ideas.", - "transcription": "[skræp]", - "__v": 0, - "textExampleTranslate": "Крис любил использовать много клочков бумаги, придумывая идеи", - "textMeaningTranslate": "Кусок чего-то - это небольшое количество", - "wordTranslate": "лом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afde7" - }, - "group": 3, - "page": 28, - "word": "sector", - "image": "files/29_2376.jpg", - "audio": "files/29_2376.mp3", - "audioMeaning": "files/29_2376_meaning.mp3", - "audioExample": "files/29_2376_example.mp3", - "textMeaning": "A sector is a part of a country’s economy in a specific type of industry.", - "textExample": "We learned about just a few of the factories within the manufacturing sector.", - "transcription": "[séktəːr]", - "__v": 0, - "textExampleTranslate": "Мы узнали о нескольких фабриках в производственном секторе", - "textMeaningTranslate": "Сектор является частью экономики страны в конкретном типе промышленности", - "wordTranslate": "сектор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afde8" - }, - "group": 3, - "page": 28, - "word": "subscribe", - "image": "files/29_2377.jpg", - "audio": "files/29_2377.mp3", - "audioMeaning": "files/29_2377_meaning.mp3", - "audioExample": "files/29_2377_example.mp3", - "textMeaning": "To subscribe to something is to agree with it.", - "textExample": "She subscribed to the view that musical education should be kept in schools.", - "transcription": "[səbskráib]", - "__v": 0, - "textExampleTranslate": "Она согласилась с мнением о том, что музыкальное образование следует сохранять в школах", - "textMeaningTranslate": "Подписаться на что-то - значит согласиться с этим", - "wordTranslate": "подписываться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afde9" - }, - "group": 3, - "page": 28, - "word": "subsist", - "image": "files/29_2378.jpg", - "audio": "files/29_2378.mp3", - "audioMeaning": "files/29_2378_meaning.mp3", - "audioExample": "files/29_2378_example.mp3", - "textMeaning": "To subsist means to have the food, water, and money needed to stay alive.", - "textExample": "Some people are forced to subsist on only a few dollars a month.", - "transcription": "[səbsíst]", - "__v": 0, - "textExampleTranslate": "Некоторые люди вынуждены жить только на несколько долларов в месяц", - "textMeaningTranslate": "Чтобы существовать, нужно иметь еду, воду и деньги, необходимые для выживания", - "wordTranslate": "кормиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdea" - }, - "group": 3, - "page": 28, - "word": "suspend", - "image": "files/29_2379.jpg", - "audio": "files/29_2379.mp3", - "audioMeaning": "files/29_2379_meaning.mp3", - "audioExample": "files/29_2379_example.mp3", - "textMeaning": "To suspend something means to delay or stop it from happening for a while.", - "textExample": "The oil company suspended production until it was sure the factory was safe.", - "transcription": "[səspénd]", - "__v": 0, - "textExampleTranslate": "Нефтяная компания приостановила производство, пока не убедилась, что завод в безопасности", - "textMeaningTranslate": "Приостановить что-либо означает отложить или остановить это на некоторое время", - "wordTranslate": "приостановить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdeb" - }, - "group": 3, - "page": 28, - "word": "synthesis", - "image": "files/29_2380.jpg", - "audio": "files/29_2380.mp3", - "audioMeaning": "files/29_2380_meaning.mp3", - "audioExample": "files/29_2380_example.mp3", - "textMeaning": "A synthesis is a combination of different ideas or styles.", - "textExample": "The band’s music was a synthesis of many different musical genres.", - "transcription": "[sínθəsis]", - "__v": 0, - "textExampleTranslate": "Музыка группы была синтезом многих музыкальных жанров", - "textMeaningTranslate": "Синтез - это сочетание разных идей или стилей", - "wordTranslate": "синтез" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdec" - }, - "group": 3, - "page": 29, - "word": "acrobat", - "image": "files/30_2381.jpg", - "audio": "files/30_2381.mp3", - "audioMeaning": "files/30_2381_meaning.mp3", - "audioExample": "files/30_2381_example.mp3", - "textMeaning": "An acrobat is a person who entertains people by doing amazing physical things.", - "textExample": "There were acrobats at the circus that did impressive and complicated jumps.", - "transcription": "[ǽkrəbæ̀t]", - "__v": 0, - "textExampleTranslate": "В цирке были акробаты, которые делали впечатляющие и сложные прыжки", - "textMeaningTranslate": "Акробат - это человек, который развлекает людей, делая удивительные физические вещи", - "wordTranslate": "акробат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afded" - }, - "group": 3, - "page": 29, - "word": "advocacy", - "image": "files/30_2382.jpg", - "audio": "files/30_2382.mp3", - "audioMeaning": "files/30_2382_meaning.mp3", - "audioExample": "files/30_2382_example.mp3", - "textMeaning": "Advocacy is the act of supporting or recommending something.", - "textExample": "Janine’s strong advocacy for the event made people want to attend.", - "transcription": "[ǽdvəkəsi]", - "__v": 0, - "textExampleTranslate": "Сильная пропаганда Джанин для этого мероприятия заставила людей хотеть присутствовать", - "textMeaningTranslate": "Адвокация - это акт поддержки или рекомендации чего-либо", - "wordTranslate": "пропаганда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdee" - }, - "group": 3, - "page": 29, - "word": "harmonize", - "image": "files/30_2385.jpg", - "audio": "files/30_2385.mp3", - "audioMeaning": "files/30_2385_meaning.mp3", - "audioExample": "files/30_2385_example.mp3", - "textMeaning": "To harmonize means to make different things go well together.", - "textExample": "The sweet and sour favors of the dish harmonized well and tasted great.", - "transcription": "[hɑ́ːrmənàiz]", - "__v": 0, - "textExampleTranslate": "Сладкие и кислые блюда этого блюда гармонично сочетаются и имеют прекрасный вкус", - "textMeaningTranslate": "Гармонизировать - значит сочетать разные вещи", - "wordTranslate": "гармонизировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdef" - }, - "group": 3, - "page": 29, - "word": "fluid", - "image": "files/30_2384.jpg", - "audio": "files/30_2384.mp3", - "audioMeaning": "files/30_2384_meaning.mp3", - "audioExample": "files/30_2384_example.mp3", - "textMeaning": "If something is fuid, it is smooth and moves gracefully.", - "textExample": "Boris was a famous ballet dancer because people admired his fuid movements.", - "transcription": "[fúːid]", - "__v": 0, - "textExampleTranslate": "Борис был известным артистом балета, потому что люди восхищались его энергичными движениями", - "textMeaningTranslate": "Если что-то жидкое, оно гладкое и изящно движется", - "wordTranslate": "жидкость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdf0" - }, - "group": 3, - "page": 29, - "word": "communal", - "image": "files/30_2383.jpg", - "audio": "files/30_2383.mp3", - "audioMeaning": "files/30_2383_meaning.mp3", - "audioExample": "files/30_2383_example.mp3", - "textMeaning": "If something is communal, it involves a group of people.", - "textExample": "On the weekends, Theo and his son picked up trash in the communal park.", - "transcription": "[kəmjúːnl]", - "__v": 0, - "textExampleTranslate": "По выходным Тео и его сын собирали мусор в коммунальном парке", - "textMeaningTranslate": "Если что-то является общим, это включает в себя группу людей", - "wordTranslate": "коммунальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdf1" - }, - "group": 3, - "page": 29, - "word": "industrious", - "image": "files/30_2386.jpg", - "audio": "files/30_2386.mp3", - "audioMeaning": "files/30_2386_meaning.mp3", - "audioExample": "files/30_2386_example.mp3", - "textMeaning": "If someone is industrious, they work hard.", - "textExample": "Dennis was very industrious, so he never had problems finding a job.", - "transcription": "[indʌ́striəs]", - "__v": 0, - "textExampleTranslate": "Денис был очень трудолюбивым, поэтому у него никогда не было проблем с поиском работы", - "textMeaningTranslate": "Если кто-то трудолюбив, он много работает", - "wordTranslate": "трудолюбивый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdf2" - }, - "group": 3, - "page": 29, - "word": "inventive", - "image": "files/30_2387.jpg", - "audio": "files/30_2387.mp3", - "audioMeaning": "files/30_2387_meaning.mp3", - "audioExample": "files/30_2387_example.mp3", - "textMeaning": "When someone is inventive, they are good at creating new things.", - "textExample": "The inventive student built a robot to help her with her chores.", - "transcription": "[invéntiv]", - "__v": 0, - "textExampleTranslate": "Изобретательный студент построил робота, чтобы помочь ей с ее делами", - "textMeaningTranslate": "Когда кто-то изобретателен, он способен создавать новые вещи", - "wordTranslate": "изобретательский" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdf3" - }, - "group": 3, - "page": 29, - "word": "Mandarin", - "image": "files/30_2388.jpg", - "audio": "files/30_2388.mp3", - "audioMeaning": "files/30_2388_meaning.mp3", - "audioExample": "files/30_2388_example.mp3", - "textMeaning": "Mandarin is one of the two main Chinese languages.", - "textExample": "Although John’s parents both spoke Mandarin, he could only speak English.", - "transcription": "[mǽndərin]", - "__v": 0, - "textExampleTranslate": "Хотя родители Джона оба говорили на мандарине, он мог говорить только по-английски", - "textMeaningTranslate": "Мандарин - один из двух основных китайских языков", - "wordTranslate": "мандарин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdf4" - }, - "group": 3, - "page": 29, - "word": "metropolitan", - "image": "files/30_2389.jpg", - "audio": "files/30_2389.mp3", - "audioMeaning": "files/30_2389_meaning.mp3", - "audioExample": "files/30_2389_example.mp3", - "textMeaning": "If something is metropolitan, it relates to a large city.", - "textExample": "After years of living on a farm, Rufu was finally moving to a metropolitan area.", - "transcription": "[mètrəpɑ́litən]", - "__v": 0, - "textExampleTranslate": "После нескольких лет жизни на ферме Руфу наконец переехал в столичный район", - "textMeaningTranslate": "Если что-то столичное, это относится к большому городу", - "wordTranslate": "столичный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdf5" - }, - "group": 3, - "page": 29, - "word": "mimic", - "image": "files/30_2390.jpg", - "audio": "files/30_2390.mp3", - "audioMeaning": "files/30_2390_meaning.mp3", - "audioExample": "files/30_2390_example.mp3", - "textMeaning": "To mimic something means to copy the way it sounds, moves, looks, etc.", - "textExample": "The hunter mimicked a duck’s call and shot the two ducks that called back.", - "transcription": "[mímik]", - "__v": 0, - "textExampleTranslate": "Охотник подражал зову утки и застрелил двух уток, которые перезвонили", - "textMeaningTranslate": "Подражать чему-либо означает копировать то, как оно звучит, двигается, выглядит и т. Д", - "wordTranslate": "имитируют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdf6" - }, - "group": 3, - "page": 29, - "word": "misguided", - "image": "files/30_2391.jpg", - "audio": "files/30_2391.mp3", - "audioMeaning": "files/30_2391_meaning.mp3", - "audioExample": "files/30_2391_example.mp3", - "textMeaning": "When something is misguided, it is based on bad judgment or wrong beliefs.", - "textExample": "The snake bit Molly during her misguided attempt to catch it.", - "transcription": "[misgáidid]", - "__v": 0, - "textExampleTranslate": "Змея укусила Молли во время ее ошибочной попытки поймать ее", - "textMeaningTranslate": "Когда что-то вводится в заблуждение, оно основано на неправильном суждении или неправильных убеждениях", - "wordTranslate": "ошибочный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdf7" - }, - "group": 3, - "page": 29, - "word": "rehearse", - "image": "files/30_2392.jpg", - "audio": "files/30_2392.mp3", - "audioMeaning": "files/30_2392_meaning.mp3", - "audioExample": "files/30_2392_example.mp3", - "textMeaning": "To rehearse means to practice and prepare for a performance in front of people.", - "textExample": "Vick’s band rehearsed all week before their first show.", - "transcription": "[rihə́ːrs]", - "__v": 0, - "textExampleTranslate": "Группа Вика репетировала всю неделю перед своим первым шоу", - "textMeaningTranslate": "Репетировать означает практиковаться и готовиться к выступлению перед людьми", - "wordTranslate": "репетировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdf8" - }, - "group": 3, - "page": 29, - "word": "resourceful", - "image": "files/30_2393.jpg", - "audio": "files/30_2393.mp3", - "audioMeaning": "files/30_2393_meaning.mp3", - "audioExample": "files/30_2393_example.mp3", - "textMeaning": "A resourceful person is clever at using what resources they have.", - "textExample": "Because he was very resourceful, he could make most of the things he needed rather than buying them.", - "transcription": "[risɔ́ːrsfəl] (resource + ful)", - "__v": 0, - "textExampleTranslate": "Поскольку он был очень изобретателен, он мог делать большинство вещей, в которых он нуждался, а не покупать их", - "textMeaningTranslate": "Находчивый человек умен, используя свои ресурсы", - "wordTranslate": "находчивый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdf9" - }, - "group": 3, - "page": 29, - "word": "sensory", - "image": "files/30_2395.jpg", - "audio": "files/30_2395.mp3", - "audioMeaning": "files/30_2395_meaning.mp3", - "audioExample": "files/30_2395_example.mp3", - "textMeaning": "If something is sensory, it is related to the senses.", - "textExample": "Iris and Eric preferred the sensory thrill of watching movies in the theater.", - "transcription": "[sénsəri]", - "__v": 0, - "textExampleTranslate": "Айрис и Эрик предпочитали чувственные ощущения от просмотра фильмов в театре", - "textMeaningTranslate": "Если что-то является сенсорным, оно связано с чувствами", - "wordTranslate": "сенсорный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdfa" - }, - "group": 3, - "page": 29, - "word": "scorn", - "image": "files/30_2394.jpg", - "audio": "files/30_2394.mp3", - "audioMeaning": "files/30_2394_meaning.mp3", - "audioExample": "files/30_2394_example.mp3", - "textMeaning": "To scorn someone means to behave without respect toward them.", - "textExample": "The criminal was scorned by everyone in the community.", - "transcription": "[skɔːrn]", - "__v": 0, - "textExampleTranslate": "Преступник был презрен всеми в обществе", - "textMeaningTranslate": "Презирать кого-то значит вести себя без уважения к ним", - "wordTranslate": "презирать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdfb" - }, - "group": 3, - "page": 29, - "word": "statute", - "image": "files/30_2396.jpg", - "audio": "files/30_2396.mp3", - "audioMeaning": "files/30_2396_meaning.mp3", - "audioExample": "files/30_2396_example.mp3", - "textMeaning": "A statute is a law that is official and has been written down.", - "textExample": "The new statute made it illegal to walk dogs in the park.", - "transcription": "[stǽtʃuːt]", - "__v": 0, - "textExampleTranslate": "Новый закон запретил выгуливать собак в парке", - "textMeaningTranslate": "Закон - это официальный закон, который был записан", - "wordTranslate": "статут" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdfc" - }, - "group": 3, - "page": 29, - "word": "technical", - "image": "files/30_2397.jpg", - "audio": "files/30_2397.mp3", - "audioMeaning": "files/30_2397_meaning.mp3", - "audioExample": "files/30_2397_example.mp3", - "textMeaning": "Technical skill requires good control of technique.", - "textExample": "Her technical skill was perfect.", - "transcription": "[téknikəl]", - "__v": 0, - "textExampleTranslate": "Ее техническое мастерство было идеальным", - "textMeaningTranslate": "Технические навыки требуют хорошего контроля над техникой", - "wordTranslate": "технический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdfd" - }, - "group": 3, - "page": 29, - "word": "veteran", - "image": "files/30_2398.jpg", - "audio": "files/30_2398.mp3", - "audioMeaning": "files/30_2398_meaning.mp3", - "audioExample": "files/30_2398_example.mp3", - "textMeaning": "A veteran is someone who has a lot of experience doing something.", - "textExample": "Hank was the team veteran and had completed more races than anyone else.", - "transcription": "[vétərən]", - "__v": 0, - "textExampleTranslate": "Хэнк был ветераном команды и провел больше гонок, чем кто-либо другой", - "textMeaningTranslate": "Ветеран - это тот, у кого большой опыт, что-то делать", - "wordTranslate": "ветеран" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdfe" - }, - "group": 3, - "page": 29, - "word": "vine", - "image": "files/30_2400.jpg", - "audio": "files/30_2400.mp3", - "audioMeaning": "files/30_2400_meaning.mp3", - "audioExample": "files/30_2400_example.mp3", - "textMeaning": "A vine is a plant that has long, twisting stems and climbs upward.", - "textExample": "The branches of the trees were covered with vines.", - "transcription": "[vain]", - "__v": 0, - "textExampleTranslate": "Ветви деревьев были покрыты лозой", - "textMeaningTranslate": "Виноградная лоза - это растение, которое имеет длинные, извилистые стебли и поднимается вверх", - "wordTranslate": "виноградная лоза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afdff" - }, - "group": 3, - "page": 29, - "word": "villain", - "image": "files/30_2399.jpg", - "audio": "files/30_2399.mp3", - "audioMeaning": "files/30_2399_meaning.mp3", - "audioExample": "files/30_2399_example.mp3", - "textMeaning": "A villain is an evil person who breaks the law or hurts others.", - "textExample": "The villain made of with half of my family’s valuables.", - "transcription": "[vílən]", - "__v": 0, - "textExampleTranslate": "Злодей из половины ценностей моей семьи", - "textMeaningTranslate": "Злодей - это злой человек, который нарушает закон или причиняет боль другим", - "wordTranslate": "злодей" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe00" - }, - "group": 4, - "page": 0, - "word": "aroma", - "image": "files/01_2401.jpg", - "audio": "files/01_2401.mp3", - "audioMeaning": "files/01_2401_meaning.mp3", - "audioExample": "files/01_2401_example.mp3", - "textMeaning": "An aroma is a scent or smell.", - "textExample": "I love the aroma of coffee in the morning.", - "transcription": "[əróumə]", - "__v": 0, - "textExampleTranslate": "Я люблю аромат кофе по утрам", - "textMeaningTranslate": "Аромат - это запах или благоухание", - "wordTranslate": "аромат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe01" - }, - "group": 4, - "page": 0, - "word": "beverage", - "image": "files/01_2402.jpg", - "audio": "files/01_2402.mp3", - "audioMeaning": "files/01_2402_meaning.mp3", - "audioExample": "files/01_2402_example.mp3", - "textMeaning": "A beverage is a drink.", - "textExample": "The waiter brought our beverages first. Then he brought our food.", - "transcription": "[bévəridʒ]", - "__v": 0, - "textExampleTranslate": "Сначала официант принес наши напитки. Затем он принес нашу еду", - "textMeaningTranslate": "Напиток - это то, что пьют", - "wordTranslate": "напиток" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe02" - }, - "group": 4, - "page": 0, - "word": "combine", - "image": "files/01_2404.jpg", - "audio": "files/01_2404.mp3", - "audioMeaning": "files/01_2404_meaning.mp3", - "audioExample": "files/01_2404_example.mp3", - "textMeaning": "To combine is to join together to make a single thing or group.", - "textExample": "Mina combined peanut butter and jelly to make a sandwich.", - "transcription": "[kəmbáin]", - "__v": 0, - "textExampleTranslate": "Мина объединила арахисовое масло и желе, чтобы сделать бутерброд", - "textMeaningTranslate": "Объединить - значит объединиться, чтобы создать одну вещь или группу", - "wordTranslate": "объединить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe04" - }, - "group": 4, - "page": 0, - "word": "condensed", - "image": "files/01_2405.jpg", - "audio": "files/01_2405.mp3", - "audioMeaning": "files/01_2405_meaning.mp3", - "audioExample": "files/01_2405_example.mp3", - "textMeaning": "When a liquid is condensed, it is made thicker.", - "textExample": "One way to make a dessert thick and sweet is to use condensed milk.", - "transcription": "[kəndénst]", - "__v": 0, - "textExampleTranslate": "Один из способов сделать десерт густым и сладким - использовать сгущенное молоко", - "textMeaningTranslate": "Когда жидкость конденсируется, она становится гуще", - "wordTranslate": "сгущенное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe06" - }, - "group": 4, - "page": 0, - "word": "cultivate", - "image": "files/01_2407.jpg", - "audio": "files/01_2407.mp3", - "audioMeaning": "files/01_2407_meaning.mp3", - "audioExample": "files/01_2407_example.mp3", - "textMeaning": "To cultivate plants is to care for them and help them grow.", - "textExample": "A research company is cultivating new kinds of rice to aid poor countries.", - "transcription": "[kʌ́ltəvèit]", - "__v": 0, - "textExampleTranslate": "Исследовательская компания выращивает новые виды риса, чтобы помочь бедным странам", - "textMeaningTranslate": "Выращивать растения - значит заботиться о них и помогать им расти", - "wordTranslate": "культивировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe07" - }, - "group": 4, - "page": 0, - "word": "divine", - "image": "files/01_2408.jpg", - "audio": "files/01_2408.mp3", - "audioMeaning": "files/01_2408_meaning.mp3", - "audioExample": "files/01_2408_example.mp3", - "textMeaning": "When something is divine, it is related to gods.", - "textExample": "Legends say that music was given to humans as a divine gift from the gods.", - "transcription": "[diváin]", - "__v": 0, - "textExampleTranslate": "Легенды говорят, что музыка была дана людям как божественный дар от богов", - "textMeaningTranslate": "Когда что-то божественное, это связано с богами", - "wordTranslate": "божественный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe05" - }, - "group": 4, - "page": 0, - "word": "contemporary", - "image": "files/01_2406.jpg", - "audio": "files/01_2406.mp3", - "audioMeaning": "files/01_2406_meaning.mp3", - "audioExample": "files/01_2406_example.mp3", - "textMeaning": "When something is contemporary, it is related to the present time.", - "textExample": "Contemporary scientists have learned quite a bit about DNA.", - "transcription": "[kəntémpərèri]", - "__v": 0, - "textExampleTranslate": "Современные ученые узнали совсем немного о ДНК", - "textMeaningTranslate": "Когда что-то современно, оно связано с настоящим временем", - "wordTranslate": "современный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe03" - }, - "group": 4, - "page": 0, - "word": "cluster", - "image": "files/01_2403.jpg", - "audio": "files/01_2403.mp3", - "audioMeaning": "files/01_2403_meaning.mp3", - "audioExample": "files/01_2403_example.mp3", - "textMeaning": "A cluster of things is a small group of them placed close together.", - "textExample": "She held a large cluster of grapes in her hand.", - "transcription": "[klʌ́stər]", - "__v": 0, - "textExampleTranslate": "Она держала в руке большую гроздь винограда", - "textMeaningTranslate": "Кластер вещей - это небольшая группа, расположенная близко друг к другу", - "wordTranslate": "кластер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe08" - }, - "group": 4, - "page": 0, - "word": "odor", - "image": "files/01_2410.jpg", - "audio": "files/01_2410.mp3", - "audioMeaning": "files/01_2410_meaning.mp3", - "audioExample": "files/01_2410_example.mp3", - "textMeaning": "An odor is a very distinct smell.", - "textExample": "He knew there was a leak when he noticed the strong odor of natural gas.", - "transcription": "[óudər]", - "__v": 0, - "textExampleTranslate": "Он знал, что произошла утечка, когда заметил сильный запах природного газа", - "textMeaningTranslate": "Запах очень отчетливый запах", - "wordTranslate": "запах" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe0a" - }, - "group": 4, - "page": 0, - "word": "palate", - "image": "files/01_2411.jpg", - "audio": "files/01_2411.mp3", - "audioMeaning": "files/01_2411_meaning.mp3", - "audioExample": "files/01_2411_example.mp3", - "textMeaning": "The palate is the top part of the mouth.", - "textExample": "You can touch your palate with your tongue.", - "transcription": "[pǽlit]", - "__v": 0, - "textExampleTranslate": "Вы можете коснуться своего неба своим языком", - "textMeaningTranslate": "Небо - это верхняя часть рта", - "wordTranslate": "небо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe09" - }, - "group": 4, - "page": 0, - "word": "humid", - "image": "files/01_2409.jpg", - "audio": "files/01_2409.mp3", - "audioMeaning": "files/01_2409_meaning.mp3", - "audioExample": "files/01_2409_example.mp3", - "textMeaning": "When it is humid, there is a lot of water in the air.", - "textExample": "It is very humid inside a sauna.", - "transcription": "[hjúːmid]", - "__v": 0, - "textExampleTranslate": "В сауне очень влажно", - "textMeaningTranslate": "Когда влажно, в воздухе много воды", - "wordTranslate": "влажный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe0c" - }, - "group": 4, - "page": 0, - "word": "plantation", - "image": "files/01_2413.jpg", - "audio": "files/01_2413.mp3", - "audioMeaning": "files/01_2413_meaning.mp3", - "audioExample": "files/01_2413_example.mp3", - "textMeaning": "A plantation is a big farm that only grows certain kinds of crops.", - "textExample": "In the 1800s, there were many cotton plantations in the southern US.", - "transcription": "[plæntéiʃən]", - "__v": 0, - "textExampleTranslate": "В 1800-х годах на юге США было много хлопковых плантаций", - "textMeaningTranslate": "Плантация - это большая ферма, которая выращивает только определенные виды культур", - "wordTranslate": "плантация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe0b" - }, - "group": 4, - "page": 0, - "word": "paradise", - "image": "files/01_2412.jpg", - "audio": "files/01_2412.mp3", - "audioMeaning": "files/01_2412_meaning.mp3", - "audioExample": "files/01_2412_example.mp3", - "textMeaning": "Paradise is the place or condition of happiness where things are perfect.", - "textExample": "My vacation in Hawaii was like being in paradise.", - "transcription": "[pǽrədàis]", - "__v": 0, - "textExampleTranslate": "Мой отпуск на Гавайях был как в раю", - "textMeaningTranslate": "Рай - это место или состояние счастья, где все идеально", - "wordTranslate": "рай" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe0d" - }, - "group": 4, - "page": 0, - "word": "rapid", - "image": "files/01_2414.jpg", - "audio": "files/01_2414.mp3", - "audioMeaning": "files/01_2414_meaning.mp3", - "audioExample": "files/01_2414_example.mp3", - "textMeaning": "When something is rapid, it moves or changes very quickly.", - "textExample": "His mother was surprised by her son’s rapid growth.", - "transcription": "[rǽpid]", - "__v": 0, - "textExampleTranslate": "Его мать была удивлена быстрым ростом ее сына", - "textMeaningTranslate": "Когда что-то быстрое, оно движется или меняется очень быстро", - "wordTranslate": "быстрый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe0f" - }, - "group": 4, - "page": 0, - "word": "soothing", - "image": "files/01_2416.jpg", - "audio": "files/01_2416.mp3", - "audioMeaning": "files/01_2416_meaning.mp3", - "audioExample": "files/01_2416_example.mp3", - "textMeaning": "When something is soothing, it makes you calm or relaxed.", - "textExample": "The soothing music helped the baby fall asleep.", - "transcription": "[súːðiŋ]", - "__v": 0, - "textExampleTranslate": "Успокаивающая музыка помогла ребенку уснуть", - "textMeaningTranslate": "Когда что-то успокаивает, это успокаивает или расслабляет", - "wordTranslate": "успокаивать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe0e" - }, - "group": 4, - "page": 0, - "word": "rate", - "image": "files/01_2415.jpg", - "audio": "files/01_2415.mp3", - "audioMeaning": "files/01_2415_meaning.mp3", - "audioExample": "files/01_2415_example.mp3", - "textMeaning": "A rate is the speed at which something happens.", - "textExample": "Grass tends to grow at a very slow rate.", - "transcription": "[reit]", - "__v": 0, - "textExampleTranslate": "Трава имеет тенденцию расти очень медленно", - "textMeaningTranslate": "Скорость - это скорость, с которой что-то происходит", - "wordTranslate": "ставка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe10" - }, - "group": 4, - "page": 0, - "word": "subtle", - "image": "files/01_2417.jpg", - "audio": "files/01_2417.mp3", - "audioMeaning": "files/01_2417_meaning.mp3", - "audioExample": "files/01_2417_example.mp3", - "textMeaning": "When something is subtle, it is not easy to see or notice.", - "textExample": "The handsome man has a subtle smile.", - "transcription": "[sʌ́tl]", - "__v": 0, - "textExampleTranslate": "У красавца тонкая улыбка", - "textMeaningTranslate": "Когда что-то тонкое, это не так легко увидеть или заметить", - "wordTranslate": "тонкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe11" - }, - "group": 4, - "page": 0, - "word": "texture", - "image": "files/01_2418.jpg", - "audio": "files/01_2418.mp3", - "audioMeaning": "files/01_2418_meaning.mp3", - "audioExample": "files/01_2418_example.mp3", - "textMeaning": "The texture of something is the way its surface looks and feels.", - "textExample": "The texture of a rock found in the water is typically very smooth.", - "transcription": "[téksʧər]", - "__v": 0, - "textExampleTranslate": "Текстура камня, найденного в воде, обычно очень гладкая", - "textMeaningTranslate": "Текстура чего-то - это то, как его поверхность выглядит и ощущается", - "wordTranslate": "текстура" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe12" - }, - "group": 4, - "page": 0, - "word": "toxic", - "image": "files/01_2419.jpg", - "audio": "files/01_2419.mp3", - "audioMeaning": "files/01_2419_meaning.mp3", - "audioExample": "files/01_2419_example.mp3", - "textMeaning": "When something is toxic, it is poisonous and very dangerous.", - "textExample": "Please check the label to see if the product is toxic.", - "transcription": "[tɑ́ksik]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, проверьте этикетку, чтобы увидеть, является ли продукт токсичным", - "textMeaningTranslate": "Когда что-то токсично, оно ядовито и очень опасно", - "wordTranslate": "токсичный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe13" - }, - "group": 4, - "page": 0, - "word": "vary", - "image": "files/01_2420.jpg", - "audio": "files/01_2420.mp3", - "audioMeaning": "files/01_2420_meaning.mp3", - "audioExample": "files/01_2420_example.mp3", - "textMeaning": "To vary means to be different from another thing in size or amount.", - "textExample": "The heights of the people in my class vary by a large amount.", - "transcription": "[vɛə́ri]", - "__v": 0, - "textExampleTranslate": "Высота людей в моем классе сильно варьируется", - "textMeaningTranslate": "Различаться означает отличаться от другой вещи по размеру или количеству", - "wordTranslate": "изменяется" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe14" - }, - "group": 4, - "page": 1, - "word": "admiral", - "image": "files/02_2421.jpg", - "audio": "files/02_2421.mp3", - "audioMeaning": "files/02_2421_meaning.mp3", - "audioExample": "files/02_2421_example.mp3", - "textMeaning": "An admiral is someone who controls many military ships.", - "textExample": "They won the sea battle because of the admiral’s great leadership.", - "transcription": "[ǽdmərəl]", - "__v": 0, - "textExampleTranslate": "Они выиграли морское сражение из-за великого руководства адмирала", - "textMeaningTranslate": "Адмирал - это тот, кто контролирует много военных кораблей", - "wordTranslate": "адмирал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe15" - }, - "group": 4, - "page": 1, - "word": "arc", - "image": "files/02_2422.jpg", - "audio": "files/02_2422.mp3", - "audioMeaning": "files/02_2422_meaning.mp3", - "audioExample": "files/02_2422_example.mp3", - "textMeaning": "An arc is a curved shape.", - "textExample": "A rainbow is an arc of colored bands across the sky.", - "transcription": "[ɑːrk]", - "__v": 0, - "textExampleTranslate": "Радуга - это дуга цветных полос по небу", - "textMeaningTranslate": "Дуга изогнутой формы", - "wordTranslate": "дуга" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe16" - }, - "group": 4, - "page": 1, - "word": "character", - "image": "files/02_2423.jpg", - "audio": "files/02_2423.mp3", - "audioMeaning": "files/02_2423_meaning.mp3", - "audioExample": "files/02_2423_example.mp3", - "textMeaning": "Your character is your personality.", - "textExample": "My sister’s character is fun and very outgoing.", - "transcription": "[kǽriktər]", - "__v": 0, - "textExampleTranslate": "Персонаж моей сестры веселый и общительный", - "textMeaningTranslate": "Ваш персонаж - это ваша личность", - "wordTranslate": "персонаж" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe17" - }, - "group": 4, - "page": 1, - "word": "conscience", - "image": "files/02_2424.jpg", - "audio": "files/02_2424.mp3", - "audioMeaning": "files/02_2424_meaning.mp3", - "audioExample": "files/02_2424_example.mp3", - "textMeaning": "Your conscience is your inner sense of what is right and wrong.", - "textExample": "I recycle everything I can, so my conscience is clear!", - "transcription": "[kɑ́nʃəns]", - "__v": 0, - "textExampleTranslate": "Я перерабатываю все, что могу, поэтому моя совесть чиста!", - "textMeaningTranslate": "Ваша совесть - это ваше внутреннее чувство того, что хорошо и что плохо", - "wordTranslate": "совесть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe18" - }, - "group": 4, - "page": 1, - "word": "escape", - "image": "files/02_2425.jpg", - "audio": "files/02_2425.mp3", - "audioMeaning": "files/02_2425_meaning.mp3", - "audioExample": "files/02_2425_example.mp3", - "textMeaning": "If you escape from a place, you succeed in getting away from it.", - "textExample": "She tried to escape from the building.", - "transcription": "[iskéip]", - "__v": 0, - "textExampleTranslate": "Она пыталась сбежать из здания", - "textMeaningTranslate": "Если вы сбежите с места, вам удастся уйти от него", - "wordTranslate": "побег" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe1a" - }, - "group": 4, - "page": 1, - "word": "flesh", - "image": "files/02_2427.jpg", - "audio": "files/02_2427.mp3", - "audioMeaning": "files/02_2427_meaning.mp3", - "audioExample": "files/02_2427_example.mp3", - "textMeaning": "Flesh is the muscle and fat on your body.", - "textExample": "The zebra’s flesh is covered by black and white skin.", - "transcription": "[fleʃ]", - "__v": 0, - "textExampleTranslate": "Плоть зебры покрыта черно-белой кожей", - "textMeaningTranslate": "Плоть - это мышцы и жир на вашем теле", - "wordTranslate": "плоть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe19" - }, - "group": 4, - "page": 1, - "word": "fiery", - "image": "files/02_2426.jpg", - "audio": "files/02_2426.mp3", - "audioMeaning": "files/02_2426_meaning.mp3", - "audioExample": "files/02_2426_example.mp3", - "textMeaning": "If something is fiery, it is burning strongly.", - "textExample": "The fiery blaze burned all night long.", - "transcription": "[fáiəri]", - "__v": 0, - "textExampleTranslate": "Огненное пламя горело всю ночь", - "textMeaningTranslate": "Если что-то огненное, оно сильно горит", - "wordTranslate": "огненный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe1b" - }, - "group": 4, - "page": 1, - "word": "grapefruit", - "image": "files/02_2428.jpg", - "audio": "files/02_2428.mp3", - "audioMeaning": "files/02_2428_meaning.mp3", - "audioExample": "files/02_2428_example.mp3", - "textMeaning": "A grapefruit is a fruit similar to an orange, but bigger and not as sweet.", - "textExample": "Would you like a grapefruit with your breakfast?", - "transcription": "[gréipfrùːt]", - "__v": 0, - "textExampleTranslate": "Хотели бы вы грейпфрут с завтраком?", - "textMeaningTranslate": "Грейпфрут - это фрукт, похожий на апельсин, но крупнее и не такой сладкий", - "wordTranslate": "грейпфрут" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe1c" - }, - "group": 4, - "page": 1, - "word": "hay", - "image": "files/02_2429.jpg", - "audio": "files/02_2429.mp3", - "audioMeaning": "files/02_2429_meaning.mp3", - "audioExample": "files/02_2429_example.mp3", - "textMeaning": "Hay is dry grass used to feed animals and can be used for different purposes.", - "textExample": "I need to buy some more hay for the horse to eat.", - "transcription": "[hei]", - "__v": 0, - "textExampleTranslate": "Мне нужно купить еще сено для лошади, чтобы поесть", - "textMeaningTranslate": "Сено - это сухая трава, которая используется для кормления животных и может использоваться для различных целей", - "wordTranslate": "сено" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe1d" - }, - "group": 4, - "page": 1, - "word": "horrified", - "image": "files/02_2430.jpg", - "audio": "files/02_2430.mp3", - "audioMeaning": "files/02_2430_meaning.mp3", - "audioExample": "files/02_2430_example.mp3", - "textMeaning": "If you are horrified, you are very shocked and feel upset.", - "textExample": "I was horrified when I read about the old lady who was attacked.", - "transcription": "[hɔ́ːrəfàid]", - "__v": 0, - "textExampleTranslate": "Я пришел в ужас, когда прочитал о старушке, на которую напали", - "textMeaningTranslate": "Если вы в ужасе, вы очень шокированы и расстроены", - "wordTranslate": "ужас" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe1e" - }, - "group": 4, - "page": 1, - "word": "kerosene", - "image": "files/02_2431.jpg", - "audio": "files/02_2431.mp3", - "audioMeaning": "files/02_2431_meaning.mp3", - "audioExample": "files/02_2431_example.mp3", - "textMeaning": "Kerosene is a type of oil used in some lamps and stoves.", - "textExample": "Many people in poor countries cook on kerosene stoves.", - "transcription": "[kérəsìːn]", - "__v": 0, - "textExampleTranslate": "Многие люди в бедных странах готовят на керосиновых печах", - "textMeaningTranslate": "Керосин - это тип масла, используемого в некоторых лампах и печах", - "wordTranslate": "керосин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe1f" - }, - "group": 4, - "page": 1, - "word": "loop", - "image": "files/02_2432.jpg", - "audio": "files/02_2432.mp3", - "audioMeaning": "files/02_2432_meaning.mp3", - "audioExample": "files/02_2432_example.mp3", - "textMeaning": "A loop is a line made into the shape of a circle.", - "textExample": "He made a loop with the rope and placed it over the post.", - "transcription": "[luːp]", - "__v": 0, - "textExampleTranslate": "Он сделал петлю с веревкой и положил ее на столб", - "textMeaningTranslate": "Петля - это линия, выполненная в форме круга", - "wordTranslate": "петля" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe20" - }, - "group": 4, - "page": 1, - "word": "middle", - "image": "files/02_2433.jpg", - "audio": "files/02_2433.mp3", - "audioMeaning": "files/02_2433_meaning.mp3", - "audioExample": "files/02_2433_example.mp3", - "textMeaning": "The middle is nearest the center and with an equal number of things on each side.", - "textExample": "I suddenly woke up in the middle of the night.", - "transcription": "[mídl]", - "__v": 0, - "textExampleTranslate": "Я внезапно проснулся среди ночи", - "textMeaningTranslate": "Середина ближе всего к центру и с равным количеством вещей на каждой стороне", - "wordTranslate": "средний" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe21" - }, - "group": 4, - "page": 1, - "word": "paddle", - "image": "files/02_2434.jpg", - "audio": "files/02_2434.mp3", - "audioMeaning": "files/02_2434_meaning.mp3", - "audioExample": "files/02_2434_example.mp3", - "textMeaning": "A paddle is a piece of wood or plastic that moves a boat across water.", - "textExample": "Put your paddle in the water and pull hard to make the boat move.", - "transcription": "[pǽdl]", - "__v": 0, - "textExampleTranslate": "Положи весло в воду и потяни, чтобы лодка двигалась", - "textMeaningTranslate": "Весло - это кусок дерева или пластика, который перемещает лодку по воде", - "wordTranslate": "весло" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe22" - }, - "group": 4, - "page": 1, - "word": "sour", - "image": "files/02_2435.jpg", - "audio": "files/02_2435.mp3", - "audioMeaning": "files/02_2435_meaning.mp3", - "audioExample": "files/02_2435_example.mp3", - "textMeaning": "When something is sour, it has a sharp and unpleasant taste.", - "textExample": "I don’t like lemons because I think they are too sour.", - "transcription": "[sáuəːr]", - "__v": 0, - "textExampleTranslate": "Я не люблю лимоны, потому что я думаю, что они слишком кислые", - "textMeaningTranslate": "Когда что-то кислое, оно имеет острый и неприятный вкус", - "wordTranslate": "кислый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe23" - }, - "group": 4, - "page": 1, - "word": "stake", - "image": "files/02_2436.jpg", - "audio": "files/02_2436.mp3", - "audioMeaning": "files/02_2436_meaning.mp3", - "audioExample": "files/02_2436_example.mp3", - "textMeaning": "A stake is a small, sharp piece of wood or metal that is put into the ground.", - "textExample": "We marked our property by placing stakes into the ground.", - "transcription": "[steik]", - "__v": 0, - "textExampleTranslate": "Мы пометили нашу собственность, поставив колья в землю", - "textMeaningTranslate": "Кол - это маленький, острый кусок дерева или металла, который помещают в землю", - "wordTranslate": "доля" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe24" - }, - "group": 4, - "page": 1, - "word": "steward", - "image": "files/02_2437.jpg", - "audio": "files/02_2437.mp3", - "audioMeaning": "files/02_2437_meaning.mp3", - "audioExample": "files/02_2437_example.mp3", - "textMeaning": "A steward is a person like a waiter who serves food on planes and ships.", - "textExample": "The steward is bringing some tea.", - "transcription": "[stjúːərd]", - "__v": 0, - "textExampleTranslate": "Стюард приносит чай", - "textMeaningTranslate": "Стюард - это человек, похожий на официанта, который подает еду на самолетах и кораблях", - "wordTranslate": "стюард" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe25" - }, - "group": 4, - "page": 1, - "word": "string", - "image": "files/02_2438.jpg", - "audio": "files/02_2438.mp3", - "audioMeaning": "files/02_2438_meaning.mp3", - "audioExample": "files/02_2438_example.mp3", - "textMeaning": "String is a thin piece of fabric or rope.", - "textExample": "I found a large ball of string.", - "transcription": "[striŋ]", - "__v": 0, - "textExampleTranslate": "Я нашел большой клубок ниток", - "textMeaningTranslate": "Строка - это тонкий кусок ткани или веревки", - "wordTranslate": "строка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe26" - }, - "group": 4, - "page": 1, - "word": "thorn", - "image": "files/02_2439.jpg", - "audio": "files/02_2439.mp3", - "audioMeaning": "files/02_2439_meaning.mp3", - "audioExample": "files/02_2439_example.mp3", - "textMeaning": "A thorn is a sharp part of a plant.", - "textExample": "Be careful of the thorns when you pick up the roses!", - "transcription": "[θɔːrn]", - "__v": 0, - "textExampleTranslate": "Будь осторожен с шипами, когда собираешь розы!", - "textMeaningTranslate": "Шип - острая часть растения", - "wordTranslate": "колючка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe27" - }, - "group": 4, - "page": 1, - "word": "wreck", - "image": "files/02_2440.jpg", - "audio": "files/02_2440.mp3", - "audioMeaning": "files/02_2440_meaning.mp3", - "audioExample": "files/02_2440_example.mp3", - "textMeaning": "To wreck something means to destroy or ruin it.", - "textExample": "The teenagers wrecked the house for no reason at all.", - "transcription": "[rek]", - "__v": 0, - "textExampleTranslate": "Подростки разрушили дом без всякой причины", - "textMeaningTranslate": "Разрушить что-либо означает уничтожить или разрушить это", - "wordTranslate": "крушение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe28" - }, - "group": 4, - "page": 2, - "word": "admonish", - "image": "files/03_2441.jpg", - "audio": "files/03_2441.mp3", - "audioMeaning": "files/03_2441_meaning.mp3", - "audioExample": "files/03_2441_example.mp3", - "textMeaning": "To admonish someone is to tell them you disapprove of their behavior.", - "textExample": "The teacher admonished Mark because he was chewing gum in class.", - "transcription": "[ædmɑ́niʃ]", - "__v": 0, - "textExampleTranslate": "Учитель предупредил Марка, потому что он жевал жвачку в классе", - "textMeaningTranslate": "Упрекать кого-то - значит говорить им, что вы не одобряете их поведение", - "wordTranslate": "наставлять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe29" - }, - "group": 4, - "page": 2, - "word": "audible", - "image": "files/03_2442.jpg", - "audio": "files/03_2442.mp3", - "audioMeaning": "files/03_2442_meaning.mp3", - "audioExample": "files/03_2442_example.mp3", - "textMeaning": "If something is audible, then it is able to be heard.", - "textExample": "The sound of the drums was audible from miles away.", - "transcription": "[ɔ́ːdəbl]", - "__v": 0, - "textExampleTranslate": "Звук барабанов был слышен издалека", - "textMeaningTranslate": "Если что-то слышно, то это можно услышать", - "wordTranslate": "слышимый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe2a" - }, - "group": 4, - "page": 2, - "word": "awesome", - "image": "files/03_2443.jpg", - "audio": "files/03_2443.mp3", - "audioMeaning": "files/03_2443_meaning.mp3", - "audioExample": "files/03_2443_example.mp3", - "textMeaning": "If things or people are awesome, they are impressive or frightening.", - "textExample": "The huge military plane was an awesome sight.", - "transcription": "[ɔ́ːsəm]", - "__v": 0, - "textExampleTranslate": "Огромный военный самолет был потрясающим зрелищем", - "textMeaningTranslate": "Если вещи или люди потрясающие, они впечатляющие или пугающие", - "wordTranslate": "классно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe2b" - }, - "group": 4, - "page": 2, - "word": "beware", - "image": "files/03_2444.jpg", - "audio": "files/03_2444.mp3", - "audioMeaning": "files/03_2444_meaning.mp3", - "audioExample": "files/03_2444_example.mp3", - "textMeaning": "To beware means to be careful of something or someone that is dangerous.", - "textExample": "You should beware of driving fast on wet roads.", - "transcription": "[biwɛ́ər]", - "__v": 0, - "textExampleTranslate": "Вам следует остерегаться быстрой езды по мокрым дорогам", - "textMeaningTranslate": "Остерегаться означает быть осторожным с чем-то или с кем-то опасным", - "wordTranslate": "берегись" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe2c" - }, - "group": 4, - "page": 2, - "word": "brag", - "image": "files/03_2445.jpg", - "audio": "files/03_2445.mp3", - "audioMeaning": "files/03_2445_meaning.mp3", - "audioExample": "files/03_2445_example.mp3", - "textMeaning": "To brag means to talk of one’s abilities or achievements in a proud way.", - "textExample": "He had strong muscles and bragged about them to the entire class.", - "transcription": "[bræg]", - "__v": 0, - "textExampleTranslate": "У него были сильные мускулы и они хвастались им всем классом", - "textMeaningTranslate": "Хвастаться значит говорить о своих способностях или достижениях с гордостью", - "wordTranslate": "хвастовство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe2d" - }, - "group": 4, - "page": 2, - "word": "conscious", - "image": "files/03_2446.jpg", - "audio": "files/03_2446.mp3", - "audioMeaning": "files/03_2446_meaning.mp3", - "audioExample": "files/03_2446_example.mp3", - "textMeaning": "If someone is conscious of something, then they are aware of it.", - "textExample": "The new student was conscious of the other students staring at her.", - "transcription": "[kɑ́nʃəs]", - "__v": 0, - "textExampleTranslate": "Новая ученица сознавала, что другие ученики смотрят на нее", - "textMeaningTranslate": "Если кто-то осознает что-то, значит, он осознает это", - "wordTranslate": "сознательный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe2e" - }, - "group": 4, - "page": 2, - "word": "disagree", - "image": "files/03_2447.jpg", - "audio": "files/03_2447.mp3", - "audioMeaning": "files/03_2447_meaning.mp3", - "audioExample": "files/03_2447_example.mp3", - "textMeaning": "To disagree with someone means to have a different opinion from them.", - "textExample": "The lawyers disagreed about the best way to settle the case.", - "transcription": "[dìsəgríː]", - "__v": 0, - "textExampleTranslate": "Адвокаты не пришли к единому мнению о том, как лучше уладить дело", - "textMeaningTranslate": "Не соглашаться с кем-то - значит иметь другое мнение от него", - "wordTranslate": "не согласен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe2f" - }, - "group": 4, - "page": 2, - "word": "eventual", - "image": "files/03_2449.jpg", - "audio": "files/03_2449.mp3", - "audioMeaning": "files/03_2449_meaning.mp3", - "audioExample": "files/03_2449_example.mp3", - "textMeaning": "If something is eventual, it will happen at the end of a series of events.", - "textExample": "The constant training and planning led the team to an eventual victory.", - "transcription": "[ivéntʃuəl]", - "__v": 0, - "textExampleTranslate": "Постоянные тренировки и планирование привели команду к возможной победе", - "textMeaningTranslate": "Если что-то возможно, это произойдет в конце серии событий", - "wordTranslate": "возможный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe30" - }, - "group": 4, - "page": 2, - "word": "echo", - "image": "files/03_2448.jpg", - "audio": "files/03_2448.mp3", - "audioMeaning": "files/03_2448_meaning.mp3", - "audioExample": "files/03_2448_example.mp3", - "textMeaning": "To echo means that a sound repeats itself because it bounced off an object.", - "textExample": "The child yelled over the canyon, and the sound echoed off the wall.", - "transcription": "[ékou]", - "__v": 0, - "textExampleTranslate": "Ребенок закричал над каньоном, и звук отразился от стены", - "textMeaningTranslate": "Эхо означает, что звук повторяется, потому что он отскакивает от объекта", - "wordTranslate": "эхо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe31" - }, - "group": 4, - "page": 2, - "word": "hint", - "image": "files/03_2450.jpg", - "audio": "files/03_2450.mp3", - "audioMeaning": "files/03_2450_meaning.mp3", - "audioExample": "files/03_2450_example.mp3", - "textMeaning": "A hint is information that suggests something will happen or is true.", - "textExample": "I quietly passed on a hint to my sister about the test.", - "transcription": "[hint]", - "__v": 0, - "textExampleTranslate": "Я спокойно передал намек моей сестре о тесте", - "textMeaningTranslate": "Подсказка - это информация, которая предполагает, что что-то случится или будет правдой", - "wordTranslate": "намек" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe32" - }, - "group": 4, - "page": 2, - "word": "idiot", - "image": "files/03_2451.jpg", - "audio": "files/03_2451.mp3", - "audioMeaning": "files/03_2451_meaning.mp3", - "audioExample": "files/03_2451_example.mp3", - "textMeaning": "An idiot is a person who is not smart or who has done something silly.", - "textExample": "Because he got lost in the forest, the man felt like an idiot.", - "transcription": "[ídiət]", - "__v": 0, - "textExampleTranslate": "Потому что он потерялся в лесу, человек чувствовал себя идиотом", - "textMeaningTranslate": "Идиот - это человек, который не умён или сделал что-то глупое", - "wordTranslate": "идиот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe33" - }, - "group": 4, - "page": 2, - "word": "immense", - "image": "files/03_2452.jpg", - "audio": "files/03_2452.mp3", - "audioMeaning": "files/03_2452_meaning.mp3", - "audioExample": "files/03_2452_example.mp3", - "textMeaning": "If something is immense, it is very large.", - "textExample": "An immense amount of money was needed to buy such a large boat.", - "transcription": "[iméns]", - "__v": 0, - "textExampleTranslate": "Чтобы купить такую большую лодку, потребовалось огромное количество денег", - "textMeaningTranslate": "Если что-то огромное, оно очень большое", - "wordTranslate": "огромный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe34" - }, - "group": 4, - "page": 2, - "word": "indirect", - "image": "files/03_2453.jpg", - "audio": "files/03_2453.mp3", - "audioMeaning": "files/03_2453_meaning.mp3", - "audioExample": "files/03_2453_example.mp3", - "textMeaning": "If something is indirect, then it is not the easiest or straightest way.", - "textExample": "He chose to take the most indirect route to the coast.", - "transcription": "[ìndərékt]", - "__v": 0, - "textExampleTranslate": "Он выбрал самый непрямой маршрут к побережью", - "textMeaningTranslate": "Если что-то косвенное, то это не самый простой или прямой путь", - "wordTranslate": "косвенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe35" - }, - "group": 4, - "page": 2, - "word": "option", - "image": "files/03_2454.jpg", - "audio": "files/03_2454.mp3", - "audioMeaning": "files/03_2454_meaning.mp3", - "audioExample": "files/03_2454_example.mp3", - "textMeaning": "An option is a choice between two or more things.", - "textExample": "The children were given the option of three houses to pick from.", - "transcription": "[άpʃən]", - "__v": 0, - "textExampleTranslate": "Детям был предоставлен выбор из трех домов на выбор", - "textMeaningTranslate": "Опция - это выбор между двумя или более вещами", - "wordTranslate": "вариант" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe36" - }, - "group": 4, - "page": 2, - "word": "pastime", - "image": "files/03_2455.jpg", - "audio": "files/03_2455.mp3", - "audioMeaning": "files/03_2455_meaning.mp3", - "audioExample": "files/03_2455_example.mp3", - "textMeaning": "A pastime is an activity that you do often for fun.", - "textExample": "In the US, baseball is considered a national pastime.", - "transcription": "[pǽstàim]", - "__v": 0, - "textExampleTranslate": "В США бейсбол считается национальным времяпрепровождением", - "textMeaningTranslate": "Времяпрепровождение - это занятие, которое вы часто делаете для развлечения", - "wordTranslate": "времяпрепровождение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe37" - }, - "group": 4, - "page": 2, - "word": "perfect", - "image": "files/03_2456.jpg", - "audio": "files/03_2456.mp3", - "audioMeaning": "files/03_2456_meaning.mp3", - "audioExample": "files/03_2456_example.mp3", - "textMeaning": "If something is perfect, then it is without any mistakes.", - "textExample": "She got all the questions right, so her score was perfect.", - "transcription": "[pə́ːrfkt]", - "__v": 0, - "textExampleTranslate": "Она правильно ответила на все вопросы, поэтому ее оценка была идеальной", - "textMeaningTranslate": "Если что-то идеально, то без ошибок", - "wordTranslate": "идеально" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe38" - }, - "group": 4, - "page": 2, - "word": "pinpoint", - "image": "files/03_2457.jpg", - "audio": "files/03_2457.mp3", - "audioMeaning": "files/03_2457_meaning.mp3", - "audioExample": "files/03_2457_example.mp3", - "textMeaning": "To pinpoint something means to locate it exactly.", - "textExample": "The navigation system in my car is able to pinpoint my exact location.", - "transcription": "[pínpɔ̀int]", - "__v": 0, - "textExampleTranslate": "Навигационная система в моей машине способна точно определить мое точное местоположение", - "textMeaningTranslate": "Определить что-либо означает точно определить это", - "wordTranslate": "точечный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe39" - }, - "group": 4, - "page": 2, - "word": "switch", - "image": "files/03_2458.jpg", - "audio": "files/03_2458.mp3", - "audioMeaning": "files/03_2458_meaning.mp3", - "audioExample": "files/03_2458_example.mp3", - "textMeaning": "To switch means to change something to something else.", - "textExample": "Mom switched the TV station from the news to her favorite show.", - "transcription": "[swiʧ]", - "__v": 0, - "textExampleTranslate": "Мама переключила телеканал с новостей на свое любимое шоу", - "textMeaningTranslate": "Переключить означает изменить что-то на что-то другое", - "wordTranslate": "переключатель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe3a" - }, - "group": 4, - "page": 2, - "word": "thorough", - "image": "files/03_2459.jpg", - "audio": "files/03_2459.mp3", - "audioMeaning": "files/03_2459_meaning.mp3", - "audioExample": "files/03_2459_example.mp3", - "textMeaning": "If something is thorough, it is complete or done carefully.", - "textExample": "Tina did a thorough job of cleaning the stains out of the carpet.", - "transcription": "[θə́ːrou]", - "__v": 0, - "textExampleTranslate": "Тина тщательно очистила пятна от ковра", - "textMeaningTranslate": "Если что-то основательно, оно завершено или сделано тщательно", - "wordTranslate": "кап" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe3b" - }, - "group": 4, - "page": 2, - "word": "torment", - "image": "files/03_2460.jpg", - "audio": "files/03_2460.mp3", - "audioMeaning": "files/03_2460_meaning.mp3", - "audioExample": "files/03_2460_example.mp3", - "textMeaning": "To torment someone means to cause them to suffer on purpose.", - "textExample": "She tormented her little brother by taking his favorite toy.", - "transcription": "[tɔːrmént]", - "__v": 0, - "textExampleTranslate": "Она мучила своего младшего брата, забирая его любимую игрушку", - "textMeaningTranslate": "Мучить кого-то значит преднамеренно страдать", - "wordTranslate": "мучение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe3d" - }, - "group": 4, - "page": 3, - "word": "agony", - "image": "files/04_2462.jpg", - "audio": "files/04_2462.mp3", - "audioMeaning": "files/04_2462_meaning.mp3", - "audioExample": "files/04_2462_example.mp3", - "textMeaning": "Agony is severe pain or suffering.", - "textExample": "The boy yelled in agony when the puppy bit him.", - "transcription": "[ǽgəni]", - "__v": 0, - "textExampleTranslate": "Мальчик кричал в агонии, когда щенок укусил его", - "textMeaningTranslate": "Агония - это сильная боль или страдание", - "wordTranslate": "агония" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe3c" - }, - "group": 4, - "page": 3, - "word": "abrupt", - "image": "files/04_2461.jpg", - "audio": "files/04_2461.mp3", - "audioMeaning": "files/04_2461_meaning.mp3", - "audioExample": "files/04_2461_example.mp3", - "textMeaning": "If something is abrupt, it is sudden or unexpected.", - "textExample": "When the dancer fell down on her back, the ballet came to an abrupt stop.", - "transcription": "[əbrΛpt]", - "__v": 0, - "textExampleTranslate": "Когда танцовщица упала на спину, балет резко остановился", - "textMeaningTranslate": "Если что-то внезапное, внезапное или неожиданное", - "wordTranslate": "крутой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe3e" - }, - "group": 4, - "page": 3, - "word": "assassin", - "image": "files/04_2463.jpg", - "audio": "files/04_2463.mp3", - "audioMeaning": "files/04_2463_meaning.mp3", - "audioExample": "files/04_2463_example.mp3", - "textMeaning": "An assassin is someone who murders an important person.", - "textExample": "An assassin killed Martin Luther King on April 4, 1968.", - "transcription": "[əsǽsn]", - "__v": 0, - "textExampleTranslate": "Убийца убил Мартина Лютера Кинга 4 апреля 1968 года", - "textMeaningTranslate": "Убийца - это тот, кто убивает важного человека", - "wordTranslate": "ассасин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe3f" - }, - "group": 4, - "page": 3, - "word": "beard", - "image": "files/04_2464.jpg", - "audio": "files/04_2464.mp3", - "audioMeaning": "files/04_2464_meaning.mp3", - "audioExample": "files/04_2464_example.mp3", - "textMeaning": "A beard is hair that grows on a man’s chin and cheeks.", - "textExample": "The farmer had a long beard, as white as snow.", - "transcription": "[biərd]", - "__v": 0, - "textExampleTranslate": "У фермера была длинная борода, белая, как снег", - "textMeaningTranslate": "Борода - это волосы, которые растут на подбородке и щеках человека", - "wordTranslate": "борода" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe40" - }, - "group": 4, - "page": 3, - "word": "beast", - "image": "files/04_2465.jpg", - "audio": "files/04_2465.mp3", - "audioMeaning": "files/04_2465_meaning.mp3", - "audioExample": "files/04_2465_example.mp3", - "textMeaning": "A beast is a large and dangerous animal.", - "textExample": "Tanzania is home to many famous beasts, such as lions, leopards, and hyenas.", - "transcription": "[biːst]", - "__v": 0, - "textExampleTranslate": "Танзания является домом для многих известных зверей, таких как львы, леопарды и гиены", - "textMeaningTranslate": "Зверь - это большое и опасное животное", - "wordTranslate": "зверь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe41" - }, - "group": 4, - "page": 3, - "word": "chapel", - "image": "files/04_2466.jpg", - "audio": "files/04_2466.mp3", - "audioMeaning": "files/04_2466_meaning.mp3", - "audioExample": "files/04_2466_example.mp3", - "textMeaning": "A chapel is a building where people go to pray and worship God.", - "textExample": "We were married in a small wedding chapel in Las Vegas.", - "transcription": "[ʧǽpəl]", - "__v": 0, - "textExampleTranslate": "Мы поженились в маленькой свадебной часовне в Лас-Вегасе", - "textMeaningTranslate": "Часовня - это здание, куда люди ходят молиться и поклоняться Богу", - "wordTranslate": "часовня" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe42" - }, - "group": 4, - "page": 3, - "word": "commentator", - "image": "files/04_2467.jpg", - "audio": "files/04_2467.mp3", - "audioMeaning": "files/04_2467_meaning.mp3", - "audioExample": "files/04_2467_example.mp3", - "textMeaning": "A commentator is a person who gives opinions or describes something, often on TV or the radio.", - "textExample": "According to many commentators, this winter has been one of the coldest in the last century.", - "transcription": "[kάməntèitər]", - "__v": 0, - "textExampleTranslate": "По мнению многих комментаторов, эта зима была одной из самых холодных в прошлом веке", - "textMeaningTranslate": "Комментатор - это человек, который высказывает мнение или описывает что-то, часто по телевизору или радио", - "wordTranslate": "комментатор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe43" - }, - "group": 4, - "page": 3, - "word": "con", - "image": "files/04_2468.jpg", - "audio": "files/04_2468.mp3", - "audioMeaning": "files/04_2468_meaning.mp3", - "audioExample": "files/04_2468_example.mp3", - "textMeaning": "To con someone is to trick that person into doing something or giving up money.", - "textExample": "It was unfair of the fortune teller to con me out of 500 dollars.", - "transcription": "[kan]", - "__v": 0, - "textExampleTranslate": "Это было несправедливо по отношению к гадалке, чтобы выманивать у меня 500 долларов", - "textMeaningTranslate": "Обмануть кого-то - это обманом заставить человека сделать что-то или отказаться от денег", - "wordTranslate": "против" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe44" - }, - "group": 4, - "page": 3, - "word": "consensus", - "image": "files/04_2469.jpg", - "audio": "files/04_2469.mp3", - "audioMeaning": "files/04_2469_meaning.mp3", - "audioExample": "files/04_2469_example.mp3", - "textMeaning": "A consensus is a general agreement among a group of people.", - "textExample": "The consensus among the children was that ghosts exist.", - "transcription": "[kənsénsəs]", - "__v": 0, - "textExampleTranslate": "Все дети согласились с тем, что призраки существуют", - "textMeaningTranslate": "Консенсус - это общее соглашение между группами людей", - "wordTranslate": "консенсус" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe45" - }, - "group": 4, - "page": 3, - "word": "conspiracy", - "image": "files/04_2470.jpg", - "audio": "files/04_2470.mp3", - "audioMeaning": "files/04_2470_meaning.mp3", - "audioExample": "files/04_2470_example.mp3", - "textMeaning": "A conspiracy is a secret plan that two or more people make together to do something harmful or illegal.", - "textExample": "The businessman thought there was a conspiracy among his coworkers to get him fired.", - "transcription": "[kənspírəsi]", - "__v": 0, - "textExampleTranslate": "Бизнесмен думал, что среди его коллег был заговор с целью уволить его", - "textMeaningTranslate": "Заговор - это секретный план, который два или более человека составляют вместе, чтобы сделать что-то вредное или незаконное", - "wordTranslate": "заговор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe46" - }, - "group": 4, - "page": 3, - "word": "coup", - "image": "files/04_2471.jpg", - "audio": "files/04_2471.mp3", - "audioMeaning": "files/04_2471_meaning.mp3", - "audioExample": "files/04_2471_example.mp3", - "textMeaning": "A coup is an uprising in which people try to overthrow the government.", - "textExample": "At the end of the 18th century, Napoleon Bonaparte staged a coup to overthrow a group that had control of France.", - "transcription": "[kuː]", - "__v": 0, - "textExampleTranslate": "В конце 18-го века Наполеон Бонапарт устроил переворот, чтобы свергнуть группу, которая контролировала Францию", - "textMeaningTranslate": "Переворот - это восстание, в котором люди пытаются свергнуть правительство", - "wordTranslate": "переворот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe47" - }, - "group": 4, - "page": 3, - "word": "cynical", - "image": "files/04_2472.jpg", - "audio": "files/04_2472.mp3", - "audioMeaning": "files/04_2472_meaning.mp3", - "audioExample": "files/04_2472_example.mp3", - "textMeaning": "To be cynical is to be unwilling to believe that people have good intentions.", - "textExample": "The man became cynical after being lied to many times.", - "transcription": "[sínikəl]", - "__v": 0, - "textExampleTranslate": "Человек стал циничным после того, как его много раз обманули", - "textMeaningTranslate": "Быть циничным - значит не желать верить, что у людей есть благие намерения", - "wordTranslate": "циничным" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe48" - }, - "group": 4, - "page": 3, - "word": "exclaim", - "image": "files/04_2474.jpg", - "audio": "files/04_2474.mp3", - "audioMeaning": "files/04_2474_meaning.mp3", - "audioExample": "files/04_2474_example.mp3", - "textMeaning": "To exclaim something is to say it loudly, suddenly, and excitedly.", - "textExample": "The singer interrupted the applause to exclaim his thanks after his performance.", - "transcription": "[ikskléim]", - "__v": 0, - "textExampleTranslate": "Певец прервал аплодисменты, чтобы выразить свою благодарность после выступления", - "textMeaningTranslate": "Воскликнуть что-то - это сказать это громко, внезапно и взволнованно", - "wordTranslate": "воскликнуть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe49" - }, - "group": 4, - "page": 3, - "word": "dome", - "image": "files/04_2473.jpg", - "audio": "files/04_2473.mp3", - "audioMeaning": "files/04_2473_meaning.mp3", - "audioExample": "files/04_2473_example.mp3", - "textMeaning": "A dome is a curved roof of a building.", - "textExample": "I looked up at the dome to admire its beauty.", - "transcription": "[doum]", - "__v": 0, - "textExampleTranslate": "Я посмотрел на купол, чтобы полюбоваться его красотой", - "textMeaningTranslate": "Купол - это изогнутая крыша здания", - "wordTranslate": "купол" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe4a" - }, - "group": 4, - "page": 3, - "word": "forum", - "image": "files/04_2475.jpg", - "audio": "files/04_2475.mp3", - "audioMeaning": "files/04_2475_meaning.mp3", - "audioExample": "files/04_2475_example.mp3", - "textMeaning": "A forum is an open public place in which meetings are held.", - "textExample": "The scientist shared her research at a special forum in the city.", - "transcription": "[fɔ́ːrəm]", - "__v": 0, - "textExampleTranslate": "Ученый поделился своими исследованиями на специальном форуме в городе", - "textMeaningTranslate": "Форум - это открытое общественное место, в котором проводятся встречи", - "wordTranslate": "форум" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe4b" - }, - "group": 4, - "page": 3, - "word": "glamour", - "image": "files/04_2476.jpg", - "audio": "files/04_2476.mp3", - "audioMeaning": "files/04_2476_meaning.mp3", - "audioExample": "files/04_2476_example.mp3", - "textMeaning": "Glamour is a quality relating to riches, wealth, and beauty.", - "textExample": "The young woman showed of her glamour during the photo shoot.", - "transcription": "[glǽmər]", - "__v": 0, - "textExampleTranslate": "Молодая женщина показала свой гламур во время фотосессии", - "textMeaningTranslate": "Гламур - это качество, относящееся к богатству, богатству и красоте", - "wordTranslate": "гламур" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe4c" - }, - "group": 4, - "page": 3, - "word": "harass", - "image": "files/04_2477.jpg", - "audio": "files/04_2477.mp3", - "audioMeaning": "files/04_2477_meaning.mp3", - "audioExample": "files/04_2477_example.mp3", - "textMeaning": "To harass someone is to bother or attack them repeatedly.", - "textExample": "The young girl would often harass her baby brother.", - "transcription": "[hərǽs]", - "__v": 0, - "textExampleTranslate": "Молодая девушка часто изводила своего младшего брата", - "textMeaningTranslate": "Приставать к кому-либо - значит беспокоить или нападать на него неоднократно", - "wordTranslate": "харассы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe4e" - }, - "group": 4, - "page": 3, - "word": "inflame", - "image": "files/04_2479.jpg", - "audio": "files/04_2479.mp3", - "audioMeaning": "files/04_2479_meaning.mp3", - "audioExample": "files/04_2479_example.mp3", - "textMeaning": "To infame something is to provoke or intensify it.", - "textExample": "The tax increase will infame the public’s frustration with the government.", - "transcription": "[infléim]", - "__v": 0, - "textExampleTranslate": "Повышение налога вызовет недовольство общественности правительством", - "textMeaningTranslate": "Подделать что-то - это спровоцировать или усилить это", - "wordTranslate": "воспаляются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe4d" - }, - "group": 4, - "page": 3, - "word": "illuminate", - "image": "files/04_2478.jpg", - "audio": "files/04_2478.mp3", - "audioMeaning": "files/04_2478_meaning.mp3", - "audioExample": "files/04_2478_example.mp3", - "textMeaning": "If you illuminate something, you shine light on or brighten it.", - "textExample": "In order to illuminate the stage, the crew turned on the spotlight.", - "transcription": "[ilúːmənèit]", - "__v": 0, - "textExampleTranslate": "Чтобы осветить сцену, экипаж включил прожектор", - "textMeaningTranslate": "Если вы что-то освещаете, вы освещаете или осветляете это", - "wordTranslate": "освещать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe4f" - }, - "group": 4, - "page": 3, - "word": "melody", - "image": "files/04_2480.jpg", - "audio": "files/04_2480.mp3", - "audioMeaning": "files/04_2480_meaning.mp3", - "audioExample": "files/04_2480_example.mp3", - "textMeaning": "A melody is a series of musical notes that form the main part of a song.", - "textExample": "I had the melody of the song stuck in my head all day.", - "transcription": "[mélədi]", - "__v": 0, - "textExampleTranslate": "Мелодия песни застряла в моей голове весь день", - "textMeaningTranslate": "Мелодия - это серия музыкальных нот, которые составляют основную часть песни", - "wordTranslate": "мелодия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe50" - }, - "group": 4, - "page": 4, - "word": "awhile", - "image": "files/05_2481.jpg", - "audio": "files/05_2481.mp3", - "audioMeaning": "files/05_2481_meaning.mp3", - "audioExample": "files/05_2481_example.mp3", - "textMeaning": "If you do something awhile, you do it for a short time.", - "textExample": "Wait here awhile, and I’ll bring some tea.", - "transcription": "[əhwáil]", - "__v": 0, - "textExampleTranslate": "Подождите здесь некоторое время, и я принесу немного чая", - "textMeaningTranslate": "Если вы делаете что-то некоторое время, вы делаете это в течение короткого времени", - "wordTranslate": "какое-то время" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe51" - }, - "group": 4, - "page": 4, - "word": "faint", - "image": "files/05_2486.jpg", - "audio": "files/05_2486.mp3", - "audioMeaning": "files/05_2486_meaning.mp3", - "audioExample": "files/05_2486_example.mp3", - "textMeaning": "To faint means to go unconscious and fall down.", - "textExample": "Carol fainted because she hadn’t eaten in over a day.", - "transcription": "[feint]", - "__v": 0, - "textExampleTranslate": "Кэрол упала в обморок, потому что она не ела в течение дня", - "textMeaningTranslate": "Упасть в обморок означает потерять сознание и упасть", - "wordTranslate": "слабый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe52" - }, - "group": 4, - "page": 4, - "word": "cyberspace", - "image": "files/05_2482.jpg", - "audio": "files/05_2482.mp3", - "audioMeaning": "files/05_2482_meaning.mp3", - "audioExample": "files/05_2482_example.mp3", - "textMeaning": "Cyberspace is the imaginary place on the Internet where activities occur.", - "textExample": "I didn’t receive your email. It probably got lost in cyberspace.", - "transcription": "[sáibərspèis]", - "__v": 0, - "textExampleTranslate": "Я не получил ваше письмо. Возможно, оно потерялось в киберпространстве", - "textMeaningTranslate": "Киберпространство - это воображаемое место в Интернете, где происходят мероприятия", - "wordTranslate": "киберпространство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe53" - }, - "group": 4, - "page": 4, - "word": "evaluate", - "image": "files/05_2485.jpg", - "audio": "files/05_2485.mp3", - "audioMeaning": "files/05_2485_meaning.mp3", - "audioExample": "files/05_2485_example.mp3", - "textMeaning": "To evaluate something means to study it, so a decision can be made.", - "textExample": "Jo and Ken evaluated the plan and agreed that it would work.", - "transcription": "[ivǽljuèit]", - "__v": 0, - "textExampleTranslate": "Джо и Кен оценили план и согласились, что он будет работать", - "textMeaningTranslate": "Оценивать что-то - значит изучать это, чтобы можно было принять решение", - "wordTranslate": "оценивать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe54" - }, - "group": 4, - "page": 4, - "word": "essay", - "image": "files/05_2484.jpg", - "audio": "files/05_2484.mp3", - "audioMeaning": "files/05_2484_meaning.mp3", - "audioExample": "files/05_2484_example.mp3", - "textMeaning": "An essay is a short piece of writing on a certain subject.", - "textExample": "She had to write a two-page essay for her English class.", - "transcription": "[ései]", - "__v": 0, - "textExampleTranslate": "Она должна была написать эссе на две страницы для своего урока английского языка", - "textMeaningTranslate": "Эссе - это небольшая статья по определенной теме", - "wordTranslate": "сочинение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe55" - }, - "group": 4, - "page": 4, - "word": "edit", - "image": "files/05_2483.jpg", - "audio": "files/05_2483.mp3", - "audioMeaning": "files/05_2483_meaning.mp3", - "audioExample": "files/05_2483_example.mp3", - "textMeaning": "To edit means to correct a piece of writing so that it is suitable to be published.", - "textExample": "She asked her brother to edit her paper before she submitted it to her teacher.", - "transcription": "[édit]", - "__v": 0, - "textExampleTranslate": "Она попросила своего брата отредактировать ее статью, прежде чем она представит ее своему учителю", - "textMeaningTranslate": "Редактировать - значит исправлять текст, чтобы его можно было опубликовать", - "wordTranslate": "редактировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe56" - }, - "group": 4, - "page": 4, - "word": "global", - "image": "files/05_2487.jpg", - "audio": "files/05_2487.mp3", - "audioMeaning": "files/05_2487_meaning.mp3", - "audioExample": "files/05_2487_example.mp3", - "textMeaning": "If something is global, it happens all around the world.", - "textExample": "Pollution is a global problem.", - "transcription": "[glóubəl]", - "__v": 0, - "textExampleTranslate": "Загрязнение - глобальная проблема", - "textMeaningTranslate": "Если что-то носит глобальный характер, это происходит по всему миру", - "wordTranslate": "глобальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe57" - }, - "group": 4, - "page": 4, - "word": "highlight", - "image": "files/05_2489.jpg", - "audio": "files/05_2489.mp3", - "audioMeaning": "files/05_2489_meaning.mp3", - "audioExample": "files/05_2489_example.mp3", - "textMeaning": "To highlight something means to mark it with a color so that it is easy to see.", - "textExample": "I read my vocabulary list and highlighted the most difficult words.", - "transcription": "[háilàit]", - "__v": 0, - "textExampleTranslate": "Я прочитал свой словарный список и выделил самые сложные слова", - "textMeaningTranslate": "Чтобы выделить что-то, нужно отметить это цветом, чтобы его было легко увидеть", - "wordTranslate": "выделить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe58" - }, - "group": 4, - "page": 4, - "word": "ignorant", - "image": "files/05_2490.jpg", - "audio": "files/05_2490.mp3", - "audioMeaning": "files/05_2490_meaning.mp3", - "audioExample": "files/05_2490_example.mp3", - "textMeaning": "If someone is ignorant about something, they have no knowledge about it.", - "textExample": "I’m a bit ignorant about his theories. Can you explain them to me?", - "transcription": "[ígnərənt]", - "__v": 0, - "textExampleTranslate": "Я немного не знаю о его теориях. Вы можете мне их объяснить?", - "textMeaningTranslate": "Если кто-то не знает о чем-то, он не знает об этом", - "wordTranslate": "невежественный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe59" - }, - "group": 4, - "page": 4, - "word": "index", - "image": "files/05_2491.jpg", - "audio": "files/05_2491.mp3", - "audioMeaning": "files/05_2491_meaning.mp3", - "audioExample": "files/05_2491_example.mp3", - "textMeaning": "An index is a list of words at the end of a book that gives information.", - "textExample": "If you look in the index, you’ll find the right page number.", - "transcription": "[índeks]", - "__v": 0, - "textExampleTranslate": "Если вы посмотрите в индекс, вы найдете правильный номер страницы", - "textMeaningTranslate": "Индекс - это список слов в конце книги, который дает информацию", - "wordTranslate": "индекс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe5a" - }, - "group": 4, - "page": 4, - "word": "gymnasium", - "image": "files/05_2488.jpg", - "audio": "files/05_2488.mp3", - "audioMeaning": "files/05_2488_meaning.mp3", - "audioExample": "files/05_2488_example.mp3", - "textMeaning": "A gymnasium is a building with equipment that you can use to get exercise.", - "textExample": "When I go to the gymnasium, I use the treadmill for twenty minutes.", - "transcription": "[ʤimnéiziəm]", - "__v": 0, - "textExampleTranslate": "Когда я иду в гимназию, я использую беговую дорожку в течение двадцати минут", - "textMeaningTranslate": "Гимназия - это здание с оборудованием, которое вы можете использовать для выполнения упражнений", - "wordTranslate": "гимназия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe5b" - }, - "group": 4, - "page": 4, - "word": "lecture", - "image": "files/05_2492.jpg", - "audio": "files/05_2492.mp3", - "audioMeaning": "files/05_2492_meaning.mp3", - "audioExample": "files/05_2492_example.mp3", - "textMeaning": "A lecture is a long, educational speech.", - "textExample": "His lecture on world hunger was very informative.", - "transcription": "[lékʧər]", - "__v": 0, - "textExampleTranslate": "Его лекция о голоде в мире была очень информативной", - "textMeaningTranslate": "Лекция длинная, образовательная речь", - "wordTranslate": "лекция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe5c" - }, - "group": 4, - "page": 4, - "word": "moral", - "image": "files/05_2493.jpg", - "audio": "files/05_2493.mp3", - "audioMeaning": "files/05_2493_meaning.mp3", - "audioExample": "files/05_2493_example.mp3", - "textMeaning": "A moral is a message at the end of a story that teaches you something.", - "textExample": "At the end of the story, the mother explained the moral to her children.", - "transcription": "[mɔ́ːrəl]", - "__v": 0, - "textExampleTranslate": "В конце истории мать объяснила мораль своим детям", - "textMeaningTranslate": "Мораль - это послание в конце истории, которая вас чему-то учит", - "wordTranslate": "моральный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe5d" - }, - "group": 4, - "page": 4, - "word": "private", - "image": "files/05_2495.jpg", - "audio": "files/05_2495.mp3", - "audioMeaning": "files/05_2495_meaning.mp3", - "audioExample": "files/05_2495_example.mp3", - "textMeaning": "If something is private, it is only used by one person or group.", - "textExample": "Don’t look at my diary! It’s private!", - "transcription": "[práivit]", - "__v": 0, - "textExampleTranslate": "Не смотри на мой дневник! Это личное!", - "textMeaningTranslate": "Если что-то является частным, оно используется только одним человеком или группой", - "wordTranslate": "частный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe5e" - }, - "group": 4, - "page": 4, - "word": "operate", - "image": "files/05_2494.jpg", - "audio": "files/05_2494.mp3", - "audioMeaning": "files/05_2494_meaning.mp3", - "audioExample": "files/05_2494_example.mp3", - "textMeaning": "To operate means to work or function.", - "textExample": "I’m sorry, but the trains are not operating today.", - "transcription": "[ɑ́pərèit]", - "__v": 0, - "textExampleTranslate": "Извините, но поезда не работают сегодня", - "textMeaningTranslate": "Управлять означает работать или функционировать", - "wordTranslate": "работать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe5f" - }, - "group": 4, - "page": 4, - "word": "recent", - "image": "files/05_2496.jpg", - "audio": "files/05_2496.mp3", - "audioMeaning": "files/05_2496_meaning.mp3", - "audioExample": "files/05_2496_example.mp3", - "textMeaning": "When something is recent, it happened a short time ago.", - "textExample": "I did not know what had caused his recent behavior.", - "transcription": "[ríːsənt]", - "__v": 0, - "textExampleTranslate": "Я не знал, что послужило причиной его недавнего поведения", - "textMeaningTranslate": "Когда что-то недавнее, это случилось совсем недавно", - "wordTranslate": "недавнее" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe60" - }, - "group": 4, - "page": 4, - "word": "resolution", - "image": "files/05_2497.jpg", - "audio": "files/05_2497.mp3", - "audioMeaning": "files/05_2497_meaning.mp3", - "audioExample": "files/05_2497_example.mp3", - "textMeaning": "A resolution is a personal decision.", - "textExample": "At New Year, I made a list of resolutions to help me have a better year.", - "transcription": "[rèzəlúːʃən]", - "__v": 0, - "textExampleTranslate": "На Новый год я составил список резолюций, которые помогут мне провести лучший год", - "textMeaningTranslate": "Решение - это личное решение", - "wordTranslate": "разрешающая способность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe61" - }, - "group": 4, - "page": 4, - "word": "semester", - "image": "files/05_2498.jpg", - "audio": "files/05_2498.mp3", - "audioMeaning": "files/05_2498_meaning.mp3", - "audioExample": "files/05_2498_example.mp3", - "textMeaning": "A semester is a portion of a school year.", - "textExample": "Jack is in his second semester of college.", - "transcription": "[siméstər]", - "__v": 0, - "textExampleTranslate": "Джек в своем втором семестре колледжа", - "textMeaningTranslate": "Семестр - это часть учебного года", - "wordTranslate": "семестр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe62" - }, - "group": 4, - "page": 5, - "word": "accustom", - "image": "files/06_2501.jpg", - "audio": "files/06_2501.mp3", - "audioMeaning": "files/06_2501_meaning.mp3", - "audioExample": "files/06_2501_example.mp3", - "textMeaning": "To accustom oneself to something is to get used to it.", - "textExample": "I find it difficult to accustom myself to new time zones when I travel around the world.", - "transcription": "[əkΛstəm]", - "__v": 0, - "textExampleTranslate": "Мне трудно привыкать к новым часовым поясам, когда я путешествую по миру", - "textMeaningTranslate": "Привыкнуть к чему-либо - значит привыкнуть к этому", - "wordTranslate": "приучают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe63" - }, - "group": 4, - "page": 4, - "word": "typewritten", - "image": "files/05_2499.jpg", - "audio": "files/05_2499.mp3", - "audioMeaning": "files/05_2499_meaning.mp3", - "audioExample": "files/05_2499_example.mp3", - "textMeaning": "If something is typewritten, it is written on a computer or typewriter.", - "textExample": "This is an important, formal project and must be typewritten.", - "transcription": "[táiprìtn]", - "__v": 0, - "textExampleTranslate": "Это важный, формальный проект и должен быть напечатан", - "textMeaningTranslate": "Если что-то пишется на машинке, оно написано на компьютере или на машинке", - "wordTranslate": "машинописный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe64" - }, - "group": 4, - "page": 4, - "word": "weird", - "image": "files/05_2500.jpg", - "audio": "files/05_2500.mp3", - "audioMeaning": "files/05_2500_meaning.mp3", - "audioExample": "files/05_2500_example.mp3", - "textMeaning": "When something is weird, it is very strange.", - "textExample": "My best friend’s dad is a bit weird.", - "transcription": "[wiəːrd]", - "__v": 0, - "textExampleTranslate": "Папа моего лучшего друга немного странный", - "textMeaningTranslate": "Когда что-то странное, это очень странно", - "wordTranslate": "странно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe67" - }, - "group": 4, - "page": 5, - "word": "articulate", - "image": "files/06_2504.jpg", - "audio": "files/06_2504.mp3", - "audioMeaning": "files/06_2504_meaning.mp3", - "audioExample": "files/06_2504_example.mp3", - "textMeaning": "If someone is articulate, he or she has the ability to express ideas clearly and effectively.", - "textExample": "Alfred’s friends loved talking to him because he was so articulate and intelligent.", - "transcription": "[aːrtíkjulət]", - "__v": 0, - "textExampleTranslate": "Друзья Альфреда любили разговаривать с ним, потому что он был очень умным и умным", - "textMeaningTranslate": "Если кто-то говорит четко, он или она имеет возможность четко и эффективно выражать свои мысли", - "wordTranslate": "красноречивый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe68" - }, - "group": 4, - "page": 5, - "word": "buzz", - "image": "files/06_2505.jpg", - "audio": "files/06_2505.mp3", - "audioMeaning": "files/06_2505_meaning.mp3", - "audioExample": "files/06_2505_example.mp3", - "textMeaning": "To buzz means to show excitement about something.", - "textExample": "Seoul buzzes from dawn till dusk.", - "transcription": "[bʌz]", - "__v": 0, - "textExampleTranslate": "Сеул гудит от рассвета до заката", - "textMeaningTranslate": "Гудеть значит показывать волнение по поводу чего-либо", - "wordTranslate": "шум" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe66" - }, - "group": 4, - "page": 5, - "word": "arouse", - "image": "files/06_2503.jpg", - "audio": "files/06_2503.mp3", - "audioMeaning": "files/06_2503_meaning.mp3", - "audioExample": "files/06_2503_example.mp3", - "textMeaning": "To arouse means to awaken interest or attention in someone.", - "textExample": "The politician’s words were meant to arouse the protestors’ anger.", - "transcription": "[əráuz]", - "__v": 0, - "textExampleTranslate": "Слова политика должны были вызвать гнев протестующих", - "textMeaningTranslate": "Пробудить - значит пробудить интерес или внимание к кому-либо", - "wordTranslate": "будить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe65" - }, - "group": 4, - "page": 5, - "word": "alpha", - "image": "files/06_2502.jpg", - "audio": "files/06_2502.mp3", - "audioMeaning": "files/06_2502_meaning.mp3", - "audioExample": "files/06_2502_example.mp3", - "textMeaning": "The alpha member of a group is the most dominant or has the highest rank.", - "textExample": "The largest lion was the alpha male of the pack.", - "transcription": "[ǽlfə]", - "__v": 0, - "textExampleTranslate": "Самый большой лев был альфа-самцом стаи", - "textMeaningTranslate": "Альфа-член группы является наиболее доминирующим или имеет самый высокий ранг", - "wordTranslate": "альфа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe69" - }, - "group": 4, - "page": 5, - "word": "clash", - "image": "files/06_2506.jpg", - "audio": "files/06_2506.mp3", - "audioMeaning": "files/06_2506_meaning.mp3", - "audioExample": "files/06_2506_example.mp3", - "textMeaning": "To clash means to fight or argue over something.", - "textExample": "The sisters often clash over the right way to do things.", - "transcription": "[klæʃ]", - "__v": 0, - "textExampleTranslate": "Сестры часто сталкиваются из-за правильного способа делать вещи", - "textMeaningTranslate": "Столкнуться - значит бороться или спорить за что-то", - "wordTranslate": "столкновение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe6a" - }, - "group": 4, - "page": 5, - "word": "classification", - "image": "files/06_2507.jpg", - "audio": "files/06_2507.mp3", - "audioMeaning": "files/06_2507_meaning.mp3", - "audioExample": "files/06_2507_example.mp3", - "textMeaning": "Classification means putting things into categories or groups that have things in common.", - "textExample": "According to scientific classification, a duck-billed platypus is an egg-laying mammal.", - "transcription": "[klӕsəfikéiʃən]", - "__v": 0, - "textExampleTranslate": "В соответствии с научной классификацией утконос - это млекопитающее, откладывающее яйца", - "textMeaningTranslate": "Классификация означает распределение вещей по категориям или группам, которые имеют общие черты", - "wordTranslate": "классификация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe6d" - }, - "group": 4, - "page": 5, - "word": "comprehend", - "image": "files/06_2510.jpg", - "audio": "files/06_2510.mp3", - "audioMeaning": "files/06_2510_meaning.mp3", - "audioExample": "files/06_2510_example.mp3", - "textMeaning": "To comprehend something means to understand it.", - "textExample": "The player could not comprehend why he lost the game.", - "transcription": "[kὰmprihénd]", - "__v": 0, - "textExampleTranslate": "Игрок не мог понять, почему он проиграл", - "textMeaningTranslate": "Понять что-то - значит понять это", - "wordTranslate": "постигать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe6c" - }, - "group": 4, - "page": 5, - "word": "compliance", - "image": "files/06_2509.jpg", - "audio": "files/06_2509.mp3", - "audioMeaning": "files/06_2509_meaning.mp3", - "audioExample": "files/06_2509_example.mp3", - "textMeaning": "Compliance is the act of following a rule or doing what you are supposed to do.", - "textExample": "The bratty child never shows compliance with her mother’s rules.", - "transcription": "[kəmpláiəns]", - "__v": 0, - "textExampleTranslate": "Слабый ребенок никогда не демонстрирует соблюдения правил своей матери", - "textMeaningTranslate": "Соблюдение - это следование правилу или выполнение того, что вы должны делать", - "wordTranslate": "соблюдение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe6b" - }, - "group": 4, - "page": 5, - "word": "cling", - "image": "files/06_2508.jpg", - "audio": "files/06_2508.mp3", - "audioMeaning": "files/06_2508_meaning.mp3", - "audioExample": "files/06_2508_example.mp3", - "textMeaning": "To cling to something means to hold onto it tightly.", - "textExample": "A mother sloth will cling tightly to her baby in the treetops.", - "transcription": "[kliŋ]", - "__v": 0, - "textExampleTranslate": "Мать ленивец будет крепко держаться за своего ребенка на верхушках деревьев", - "textMeaningTranslate": "Привязываться к чему-либо - значит крепко держаться за него", - "wordTranslate": "цепляться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe6e" - }, - "group": 4, - "page": 5, - "word": "congregate", - "image": "files/06_2511.jpg", - "audio": "files/06_2511.mp3", - "audioMeaning": "files/06_2511_meaning.mp3", - "audioExample": "files/06_2511_example.mp3", - "textMeaning": "To congregate means to gather in one place.", - "textExample": "Seeing a group of birds congregate in the sky is an awesome sight.", - "transcription": "[kάŋgrigèit]", - "__v": 0, - "textExampleTranslate": "Видеть группу птиц, собирающихся в небе, - это потрясающее зрелище", - "textMeaningTranslate": "Собрать значит собрать в одном месте", - "wordTranslate": "скопления людей" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe6f" - }, - "group": 4, - "page": 5, - "word": "custody", - "image": "files/06_2512.jpg", - "audio": "files/06_2512.mp3", - "audioMeaning": "files/06_2512_meaning.mp3", - "audioExample": "files/06_2512_example.mp3", - "textMeaning": "Custody is the right to take care of someone or something.", - "textExample": "The prisoners were put in the custody of the jailers.", - "transcription": "[kΛstədi]", - "__v": 0, - "textExampleTranslate": "Заключенные были помещены под стражу тюремщиков", - "textMeaningTranslate": "Опека - это право заботиться о ком-то или о чем-то", - "wordTranslate": "опека" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe71" - }, - "group": 4, - "page": 5, - "word": "embody", - "image": "files/06_2514.jpg", - "audio": "files/06_2514.mp3", - "audioMeaning": "files/06_2514_meaning.mp3", - "audioExample": "files/06_2514_example.mp3", - "textMeaning": "To embody means to symbolize or represent something.", - "textExample": "Mother Teresa was said to embody goodness and kindness.", - "transcription": "[imbάdi]", - "__v": 0, - "textExampleTranslate": "Говорят, что мать Тереза олицетворяет добро и доброту", - "textMeaningTranslate": "Воплощать означает символизировать или представлять что-то", - "wordTranslate": "воплощают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe72" - }, - "group": 4, - "page": 5, - "word": "empirical", - "image": "files/06_2515.jpg", - "audio": "files/06_2515.mp3", - "audioMeaning": "files/06_2515_meaning.mp3", - "audioExample": "files/06_2515_example.mp3", - "textMeaning": "Empirical means involving scientific proof and evidence.", - "textExample": "Scientists must always find empirical evidence in their work.", - "transcription": "[impírikəl]", - "__v": 0, - "textExampleTranslate": "Ученые всегда должны находить эмпирические доказательства в своей работе", - "textMeaningTranslate": "Эмпирические средства, включающие научные доказательства и доказательства", - "wordTranslate": "эмпирический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe70" - }, - "group": 4, - "page": 5, - "word": "disperse", - "image": "files/06_2513.jpg", - "audio": "files/06_2513.mp3", - "audioMeaning": "files/06_2513_meaning.mp3", - "audioExample": "files/06_2513_example.mp3", - "textMeaning": "To disperse means to scatter everywhere.", - "textExample": "I watched the people disperse in all directions to avoid the charging bull.", - "transcription": "[dispə́ːrs]", - "__v": 0, - "textExampleTranslate": "Я наблюдал, как люди расходятся во всех направлениях, чтобы избежать атакующего быка", - "textMeaningTranslate": "Разогнать - значит разбросать повсюду", - "wordTranslate": "рассеивать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe73" - }, - "group": 4, - "page": 5, - "word": "exclusion", - "image": "files/06_2516.jpg", - "audio": "files/06_2516.mp3", - "audioMeaning": "files/06_2516_meaning.mp3", - "audioExample": "files/06_2516_example.mp3", - "textMeaning": "Exclusion is the act of keeping someone out of a group.", - "textExample": "People gathered together to protest the exclusion of immigrants from our country.", - "transcription": "[iksklúːʒən]", - "__v": 0, - "textExampleTranslate": "Люди собрались вместе, чтобы протестовать против исключения иммигрантов из нашей страны", - "textMeaningTranslate": "Исключение - это акт удержания кого-то в группе", - "wordTranslate": "исключение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe74" - }, - "group": 4, - "page": 5, - "word": "flock", - "image": "files/06_2517.jpg", - "audio": "files/06_2517.mp3", - "audioMeaning": "files/06_2517_meaning.mp3", - "audioExample": "files/06_2517_example.mp3", - "textMeaning": "To fock means to gather in one place.", - "textExample": "Groups of birds will fock to the river in the spring.", - "transcription": "[fak]", - "__v": 0, - "textExampleTranslate": "Группы птиц будут стекаются к реке весной", - "textMeaningTranslate": "Забить - значит собраться в одном месте", - "wordTranslate": "стадо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe75" - }, - "group": 4, - "page": 5, - "word": "graze", - "image": "files/06_2518.jpg", - "audio": "files/06_2518.mp3", - "audioMeaning": "files/06_2518_meaning.mp3", - "audioExample": "files/06_2518_example.mp3", - "textMeaning": "When animals graze, they feed on plants.", - "textExample": "The sheep and goats like to graze on the grass outside the village.", - "transcription": "[greiz]", - "__v": 0, - "textExampleTranslate": "Овцы и козы любят пастись на траве за пределами деревни", - "textMeaningTranslate": "Когда животные пасутся, они питаются растениями", - "wordTranslate": "пасут" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe77" - }, - "group": 4, - "page": 5, - "word": "jungle", - "image": "files/06_2520.jpg", - "audio": "files/06_2520.mp3", - "audioMeaning": "files/06_2520_meaning.mp3", - "audioExample": "files/06_2520_example.mp3", - "textMeaning": "A jungle is a type of forest in a warm, rainy tropical area, where trees and plants grow very close together.", - "textExample": "Many kinds of animals, including birds, reptiles, and even elephants live in a jungle.", - "transcription": "[dʒΛŋgl]", - "__v": 0, - "textExampleTranslate": "Многие виды животных, в том числе птицы, рептилии и даже слоны живут в джунглях", - "textMeaningTranslate": "Джунгли - это тип леса в теплой дождливой тропической зоне, где деревья и растения растут очень близко друг к другу", - "wordTranslate": "джунгли" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe76" - }, - "group": 4, - "page": 5, - "word": "intelligent", - "image": "files/06_2519.jpg", - "audio": "files/06_2519.mp3", - "audioMeaning": "files/06_2519_meaning.mp3", - "audioExample": "files/06_2519_example.mp3", - "textMeaning": "If someone is intelligent, they are very smart.", - "textExample": "The intelligent student graduated from high school with the highest marks in his class.", - "transcription": "[intélədʒənt]", - "__v": 0, - "textExampleTranslate": "Умный студент окончил среднюю школу с самыми высокими оценками в своем классе", - "textMeaningTranslate": "Если кто-то умный, он очень умный", - "wordTranslate": "умный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe78" - }, - "group": 4, - "page": 6, - "word": "account", - "image": "files/07_2521.jpg", - "audio": "files/07_2521.mp3", - "audioMeaning": "files/07_2521_meaning.mp3", - "audioExample": "files/07_2521_example.mp3", - "textMeaning": "An account with a bank is an arrangement to keep one’s money there.", - "textExample": "After I paid for the new car, my bank account was nearly empty.", - "transcription": "[əkáunt]", - "__v": 0, - "textExampleTranslate": "После того, как я заплатил за новую машину, мой банковский счет был почти пуст", - "textMeaningTranslate": "Счет в банке - это договоренность хранить там свои деньги", - "wordTranslate": "счет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe79" - }, - "group": 4, - "page": 6, - "word": "architect", - "image": "files/07_2522.jpg", - "audio": "files/07_2522.mp3", - "audioMeaning": "files/07_2522_meaning.mp3", - "audioExample": "files/07_2522_example.mp3", - "textMeaning": "An architect is a person who designs buildings.", - "textExample": "The plans for building the new home were drawn by a famous architect.", - "transcription": "[ɑ́ːrkitèkt]", - "__v": 0, - "textExampleTranslate": "Планы строительства нового дома были нарисованы известным архитектором", - "textMeaningTranslate": "Архитектор - это человек, который проектирует здания", - "wordTranslate": "архитектор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe7a" - }, - "group": 4, - "page": 6, - "word": "conceal", - "image": "files/07_2523.jpg", - "audio": "files/07_2523.mp3", - "audioMeaning": "files/07_2523_meaning.mp3", - "audioExample": "files/07_2523_example.mp3", - "textMeaning": "To conceal something means to hide it.", - "textExample": "You should conceal your money so no one can take it from you.", - "transcription": "[kənsíːl]", - "__v": 0, - "textExampleTranslate": "Вы должны скрыть свои деньги, чтобы никто не мог забрать их у вас", - "textMeaningTranslate": "Спрятать что-то значит спрятать это", - "wordTranslate": "таить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe7b" - }, - "group": 4, - "page": 6, - "word": "crime", - "image": "files/07_2524.jpg", - "audio": "files/07_2524.mp3", - "audioMeaning": "files/07_2524_meaning.mp3", - "audioExample": "files/07_2524_example.mp3", - "textMeaning": "If someone commits a crime, he or she does something bad that can be punished by law.", - "textExample": "Police quickly arrived at the scene of the crime.", - "transcription": "[kraim]", - "__v": 0, - "textExampleTranslate": "Полиция быстро прибыла на место преступления", - "textMeaningTranslate": "Если кто-то совершает преступление, он или она совершает что-то плохое, что может быть наказано по закону", - "wordTranslate": "преступление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe7c" - }, - "group": 4, - "page": 6, - "word": "deed", - "image": "files/07_2525.jpg", - "audio": "files/07_2525.mp3", - "audioMeaning": "files/07_2525_meaning.mp3", - "audioExample": "files/07_2525_example.mp3", - "textMeaning": "A deed is a certificate that proves that someone owns something.", - "textExample": "When she bought the car, she was given a deed to show the car was hers.", - "transcription": "[diːd]", - "__v": 0, - "textExampleTranslate": "Когда она купила машину, ей дали свидетельство о том, что машина принадлежит ей", - "textMeaningTranslate": "Акт - это сертификат, который доказывает, что кто-то что-то владеет", - "wordTranslate": "дело" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe7d" - }, - "group": 4, - "page": 6, - "word": "gratitude", - "image": "files/07_2526.jpg", - "audio": "files/07_2526.mp3", - "audioMeaning": "files/07_2526_meaning.mp3", - "audioExample": "files/07_2526_example.mp3", - "textMeaning": "Gratitude is a feeling of being thankful.", - "textExample": "The kids showed Aunt Tess much gratitude for visiting them.", - "transcription": "[grǽtətjùːd]", - "__v": 0, - "textExampleTranslate": "Дети выразили тетю Тесс большую благодарность за то, что посетили их", - "textMeaningTranslate": "Благодарность - это чувство благодарности", - "wordTranslate": "благодарность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe7e" - }, - "group": 4, - "page": 6, - "word": "habitat", - "image": "files/07_2527.jpg", - "audio": "files/07_2527.mp3", - "audioMeaning": "files/07_2527_meaning.mp3", - "audioExample": "files/07_2527_example.mp3", - "textMeaning": "A habitat is the natural home of animals or plants.", - "textExample": "Frogs are often found in a wet habitat, such as near a lake, river, or pond.", - "transcription": "[hǽbətæ̀t]", - "__v": 0, - "textExampleTranslate": "Лягушки часто встречаются во влажной среде обитания, например, рядом с озером, рекой или прудом", - "textMeaningTranslate": "Среда обитания - естественный дом животных или растений", - "wordTranslate": "место обитания" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe7f" - }, - "group": 4, - "page": 6, - "word": "intervene", - "image": "files/07_2528.jpg", - "audio": "files/07_2528.mp3", - "audioMeaning": "files/07_2528_meaning.mp3", - "audioExample": "files/07_2528_example.mp3", - "textMeaning": "To intervene means to help stop a problem between two people or groups.", - "textExample": "The students argued until the teacher intervened.", - "transcription": "[ìntərvíːn]", - "__v": 0, - "textExampleTranslate": "Студенты спорили, пока учитель не вмешался", - "textMeaningTranslate": "Вмешаться - значит помочь остановить проблему между двумя людьми или группами", - "wordTranslate": "вмешиваться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe80" - }, - "group": 4, - "page": 6, - "word": "landmark", - "image": "files/07_2529.jpg", - "audio": "files/07_2529.mp3", - "audioMeaning": "files/07_2529_meaning.mp3", - "audioExample": "files/07_2529_example.mp3", - "textMeaning": "A landmark is an object that helps people find or remember a location.", - "textExample": "The tall tree was used as a landmark for people to find the road to the inn.", - "transcription": "[lǽndmὰːrk]", - "__v": 0, - "textExampleTranslate": "Высокое дерево использовалось в качестве ориентира для людей, чтобы найти дорогу к гостинице", - "textMeaningTranslate": "Ориентир - это объект, который помогает людям найти или запомнить местоположение", - "wordTranslate": "веха" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe81" - }, - "group": 4, - "page": 6, - "word": "legal", - "image": "files/07_2530.jpg", - "audio": "files/07_2530.mp3", - "audioMeaning": "files/07_2530_meaning.mp3", - "audioExample": "files/07_2530_example.mp3", - "textMeaning": "If something is legal, it is related to the law or allowed by the law.", - "textExample": "It was not legal for him to drive until he was 18 years old.", - "transcription": "[líːgəl]", - "__v": 0, - "textExampleTranslate": "Он не имел права водить машину, пока ему не исполнилось 18 лет", - "textMeaningTranslate": "Если что-то является законным, это связано с законом или разрешено законом", - "wordTranslate": "легальные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe82" - }, - "group": 4, - "page": 6, - "word": "memorable", - "image": "files/07_2531.jpg", - "audio": "files/07_2531.mp3", - "audioMeaning": "files/07_2531_meaning.mp3", - "audioExample": "files/07_2531_example.mp3", - "textMeaning": "If something is memorable, then it is remembered for a special reason.", - "textExample": "The party was memorable; people were still talking about it years later.", - "transcription": "[mémərəbl]", - "__v": 0, - "textExampleTranslate": "Вечеринка была незабываемой; люди все еще говорили об этом много лет спустя", - "textMeaningTranslate": "Если что-то запоминающееся, то это вспоминают по особой причине", - "wordTranslate": "памятный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe83" - }, - "group": 4, - "page": 6, - "word": "oblige", - "image": "files/07_2532.jpg", - "audio": "files/07_2532.mp3", - "audioMeaning": "files/07_2532_meaning.mp3", - "audioExample": "files/07_2532_example.mp3", - "textMeaning": "To oblige someone means to require them to do something.", - "textExample": "If I wanted to have playtime, I was obliged to clean my room once a week.", - "transcription": "[əbláidʒ]", - "__v": 0, - "textExampleTranslate": "Если бы я хотел играть, я должен был убирать свою комнату раз в неделю", - "textMeaningTranslate": "Обязать кого-либо означает требовать от него что-то сделать", - "wordTranslate": "обязать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe84" - }, - "group": 4, - "page": 6, - "word": "offense", - "image": "files/07_2533.jpg", - "audio": "files/07_2533.mp3", - "audioMeaning": "files/07_2533_meaning.mp3", - "audioExample": "files/07_2533_example.mp3", - "textMeaning": "An offense is an action that breaks the law and requires punishment.", - "textExample": "He was put in jail for two days for the offense.", - "transcription": "[əféns]", - "__v": 0, - "textExampleTranslate": "Он был заключен в тюрьму на два дня за преступление", - "textMeaningTranslate": "Преступление - это действие, которое нарушает закон и требует наказания", - "wordTranslate": "преступление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe85" - }, - "group": 4, - "page": 6, - "word": "proclaim", - "image": "files/07_2534.jpg", - "audio": "files/07_2534.mp3", - "audioMeaning": "files/07_2534_meaning.mp3", - "audioExample": "files/07_2534_example.mp3", - "textMeaning": "To proclaim something means to say it in public.", - "textExample": "The army general proclaimed that the war was won.", - "transcription": "[proukléim]", - "__v": 0, - "textExampleTranslate": "Генерал армии объявил, что война выиграна", - "textMeaningTranslate": "Провозглашать что-то - значит говорить это публично", - "wordTranslate": "провозглашать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe86" - }, - "group": 4, - "page": 6, - "word": "rally", - "image": "files/07_2535.jpg", - "audio": "files/07_2535.mp3", - "audioMeaning": "files/07_2535_meaning.mp3", - "audioExample": "files/07_2535_example.mp3", - "textMeaning": "A rally is a large public meeting in order to support something.", - "textExample": "The school had a rally in the gym to support the basketball team.", - "transcription": "[rǽli]", - "__v": 0, - "textExampleTranslate": "У школы был митинг в спортзале для поддержки баскетбольной команды", - "textMeaningTranslate": "Митинг - это большое публичное собрание, чтобы что-то поддержать", - "wordTranslate": "ралли" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe87" - }, - "group": 4, - "page": 6, - "word": "resolve", - "image": "files/07_2536.jpg", - "audio": "files/07_2536.mp3", - "audioMeaning": "files/07_2536_meaning.mp3", - "audioExample": "files/07_2536_example.mp3", - "textMeaning": "To resolve something means to find a solution.", - "textExample": "She resolved the problem with her children by giving them both a toy.", - "transcription": "[rizɑ́lv]", - "__v": 0, - "textExampleTranslate": "Она решила проблему со своими детьми, дав им обоим игрушку", - "textMeaningTranslate": "Разрешить что-то - значит найти решение", - "wordTranslate": "разрешить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe88" - }, - "group": 4, - "page": 6, - "word": "resource", - "image": "files/07_2537.jpg", - "audio": "files/07_2537.mp3", - "audioMeaning": "files/07_2537_meaning.mp3", - "audioExample": "files/07_2537_example.mp3", - "textMeaning": "Resources are a person’s or country’s money and materials that they can use.", - "textExample": "The poor man didn’t have the resources to feed himself.", - "transcription": "[ríːsɔːrs]", - "__v": 0, - "textExampleTranslate": "У бедного человека не было ресурсов, чтобы прокормить себя", - "textMeaningTranslate": "Ресурсы - это деньги и материалы человека или страны, которые они могут использовать", - "wordTranslate": "ресурс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe89" - }, - "group": 4, - "page": 6, - "word": "sentence", - "image": "files/07_2538.jpg", - "audio": "files/07_2538.mp3", - "audioMeaning": "files/07_2538_meaning.mp3", - "audioExample": "files/07_2538_example.mp3", - "textMeaning": "A sentence is punishment given to someone who didn’t follow the law.", - "textExample": "The sentence for stealing a car is much worse than for stealing candy.", - "transcription": "[séntəns]", - "__v": 0, - "textExampleTranslate": "Приговор за угон автомобиля намного хуже, чем за угон конфет", - "textMeaningTranslate": "Приговор - это наказание, данное тому, кто не следует закону", - "wordTranslate": "приговор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe8a" - }, - "group": 4, - "page": 6, - "word": "volunteer", - "image": "files/07_2539.jpg", - "audio": "files/07_2539.mp3", - "audioMeaning": "files/07_2539_meaning.mp3", - "audioExample": "files/07_2539_example.mp3", - "textMeaning": "To volunteer means to offer to do something for free.", - "textExample": "Many people volunteered to help the adults learn to read.", - "transcription": "[vὰləntíər]", - "__v": 0, - "textExampleTranslate": "Многие вызвались помочь взрослым научиться читать", - "textMeaningTranslate": "Добровольно означает предлагать сделать что-то бесплатно", - "wordTranslate": "доброволец" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe8b" - }, - "group": 4, - "page": 6, - "word": "witness", - "image": "files/07_2540.jpg", - "audio": "files/07_2540.mp3", - "audioMeaning": "files/07_2540_meaning.mp3", - "audioExample": "files/07_2540_example.mp3", - "textMeaning": "A witness is someone who sees or hears a crime or accident happen.", - "textExample": "The woman was the only witness of the horrible crime.", - "transcription": "[wítnis]", - "__v": 0, - "textExampleTranslate": "Женщина была единственным свидетелем ужасного преступления", - "textMeaningTranslate": "Свидетель - это тот, кто видит или слышит преступление или несчастный случай", - "wordTranslate": "свидетель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe8c" - }, - "group": 4, - "page": 7, - "word": "access", - "image": "files/08_2541.jpg", - "audio": "files/08_2541.mp3", - "audioMeaning": "files/08_2541_meaning.mp3", - "audioExample": "files/08_2541_example.mp3", - "textMeaning": "Access is the right to enter or use something.", - "textExample": "The manager was the only person with access to the password.", - "transcription": "[ǽkses]", - "__v": 0, - "textExampleTranslate": "Менеджер был единственным человеком, имеющим доступ к паролю", - "textMeaningTranslate": "Доступ - это право вводить или использовать что-либо", - "wordTranslate": "доступ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe8d" - }, - "group": 4, - "page": 7, - "word": "conduct", - "image": "files/08_2542.jpg", - "audio": "files/08_2542.mp3", - "audioMeaning": "files/08_2542_meaning.mp3", - "audioExample": "files/08_2542_example.mp3", - "textMeaning": "Conduct is the way that someone acts.", - "textExample": "She was punished for her bad conduct.", - "transcription": "[kɑ́ndʌkt]", - "__v": 0, - "textExampleTranslate": "Она была наказана за плохое поведение", - "textMeaningTranslate": "Поведение - это способ, которым кто-то действует", - "wordTranslate": "поведение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe8e" - }, - "group": 4, - "page": 7, - "word": "constant", - "image": "files/08_2543.jpg", - "audio": "files/08_2543.mp3", - "audioMeaning": "files/08_2543_meaning.mp3", - "audioExample": "files/08_2543_example.mp3", - "textMeaning": "When an event or action is constant, it happens a lot or all of the time.", - "textExample": "The television at home is in constant use.", - "transcription": "[kɑ́nstənt]", - "__v": 0, - "textExampleTranslate": "Телевидение дома постоянно используется", - "textMeaningTranslate": "Когда событие или действие является постоянным, это происходит много или все время", - "wordTranslate": "константа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe8f" - }, - "group": 4, - "page": 7, - "word": "crack", - "image": "files/08_2544.jpg", - "audio": "files/08_2544.mp3", - "audioMeaning": "files/08_2544_meaning.mp3", - "audioExample": "files/08_2544_example.mp3", - "textMeaning": "A crack is a narrow space between the parts of something broken.", - "textExample": "The old window was covered with cracks.", - "transcription": "[kræk]", - "__v": 0, - "textExampleTranslate": "Старое окно было покрыто трещинами", - "textMeaningTranslate": "Трещина - это узкое пространство между частями чего-то сломанного", - "wordTranslate": "трещины" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe90" - }, - "group": 4, - "page": 7, - "word": "device", - "image": "files/08_2545.jpg", - "audio": "files/08_2545.mp3", - "audioMeaning": "files/08_2545_meaning.mp3", - "audioExample": "files/08_2545_example.mp3", - "textMeaning": "A device is an object or a machine.", - "textExample": "A thermometer is a device that tells temperature.", - "transcription": "[diváis]", - "__v": 0, - "textExampleTranslate": "Термометр - это устройство, которое сообщает температуру", - "textMeaningTranslate": "Устройство - это объект или машина", - "wordTranslate": "устройство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe91" - }, - "group": 4, - "page": 7, - "word": "enclose", - "image": "files/08_2546.jpg", - "audio": "files/08_2546.mp3", - "audioMeaning": "files/08_2546_meaning.mp3", - "audioExample": "files/08_2546_example.mp3", - "textMeaning": "To enclose something is to contain it.", - "textExample": "The cows in the field were enclosed by a fence.", - "transcription": "[inklóuz]", - "__v": 0, - "textExampleTranslate": "Коровы в поле были огорожены забором", - "textMeaningTranslate": "Вложить что-то - значит содержать это", - "wordTranslate": "вложить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe92" - }, - "group": 4, - "page": 7, - "word": "grip", - "image": "files/08_2547.jpg", - "audio": "files/08_2547.mp3", - "audioMeaning": "files/08_2547_meaning.mp3", - "audioExample": "files/08_2547_example.mp3", - "textMeaning": "To grip something is to hold it very tightly.", - "textExample": "I was scared, so I gripped my older sister’s hand.", - "transcription": "[grip]", - "__v": 0, - "textExampleTranslate": "Я был напуган, поэтому я схватил руку моей старшей сестры", - "textMeaningTranslate": "Захватить что-то - значит держать это очень крепко", - "wordTranslate": "рукоятка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe93" - }, - "group": 4, - "page": 7, - "word": "halt", - "image": "files/08_2548.jpg", - "audio": "files/08_2548.mp3", - "audioMeaning": "files/08_2548_meaning.mp3", - "audioExample": "files/08_2548_example.mp3", - "textMeaning": "To halt is to stop moving.", - "textExample": "The criminal halted when he saw the police coming.", - "transcription": "[hɔːlt]", - "__v": 0, - "textExampleTranslate": "Преступник остановился, когда увидел, как идет полиция", - "textMeaningTranslate": "Остановить - значит перестать двигаться", - "wordTranslate": "хромать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe94" - }, - "group": 4, - "page": 7, - "word": "impending", - "image": "files/08_2549.jpg", - "audio": "files/08_2549.mp3", - "audioMeaning": "files/08_2549_meaning.mp3", - "audioExample": "files/08_2549_example.mp3", - "textMeaning": "If something is impending, it is going to happen soon.", - "textExample": "The student was nervous about her impending test.", - "transcription": "[impéndiŋ]", - "__v": 0, - "textExampleTranslate": "Студент нервничал по поводу ее предстоящего теста", - "textMeaningTranslate": "Если что-то надвигается, это скоро случится", - "wordTranslate": "надвигающийся" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe95" - }, - "group": 4, - "page": 7, - "word": "influence", - "image": "files/08_2550.jpg", - "audio": "files/08_2550.mp3", - "audioMeaning": "files/08_2550_meaning.mp3", - "audioExample": "files/08_2550_example.mp3", - "textMeaning": "To influence someone or something is to have an effect on them.", - "textExample": "My friend influenced my decision to attend Terrance University.", - "transcription": "[ínfuəns]", - "__v": 0, - "textExampleTranslate": "Мой друг повлиял на мое решение учиться в университете Терранс", - "textMeaningTranslate": "Влиять на кого-то или что-то значит влиять на них", - "wordTranslate": "оказывать влияние" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe96" - }, - "group": 4, - "page": 7, - "word": "law", - "image": "files/08_2551.jpg", - "audio": "files/08_2551.mp3", - "audioMeaning": "files/08_2551_meaning.mp3", - "audioExample": "files/08_2551_example.mp3", - "textMeaning": "A law is a rule made by the legislative body.", - "textExample": "The students learned about different laws during social studies class.", - "transcription": "[lɔː]", - "__v": 0, - "textExampleTranslate": "Студенты узнали о различных законах на уроках обществознания", - "textMeaningTranslate": "Закон - это норма законодательного органа", - "wordTranslate": "закон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe97" - }, - "group": 4, - "page": 7, - "word": "mode", - "image": "files/08_2552.jpg", - "audio": "files/08_2552.mp3", - "audioMeaning": "files/08_2552_meaning.mp3", - "audioExample": "files/08_2552_example.mp3", - "textMeaning": "A mode is a setting or condition on a machine.", - "textExample": "Melissa turned the TV to quiet mode while she talked on the phone.", - "transcription": "[moud]", - "__v": 0, - "textExampleTranslate": "Мелисса переключила телевизор в тихий режим, пока говорила по телефону", - "textMeaningTranslate": "Режим - это настройка или условие на машине", - "wordTranslate": "режим" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe98" - }, - "group": 4, - "page": 7, - "word": "perspire", - "image": "files/08_2553.jpg", - "audio": "files/08_2553.mp3", - "audioMeaning": "files/08_2553_meaning.mp3", - "audioExample": "files/08_2553_example.mp3", - "textMeaning": "To perspire means to sweat.", - "textExample": "I usually perspire a lot when I am at athletics practice.", - "transcription": "[pərspáiər]", - "__v": 0, - "textExampleTranslate": "Я обычно сильно потею, когда занимаюсь легкой атлетикой", - "textMeaningTranslate": "Потеть значит потеть", - "wordTranslate": "потеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe99" - }, - "group": 4, - "page": 7, - "word": "replace", - "image": "files/08_2554.jpg", - "audio": "files/08_2554.mp3", - "audioMeaning": "files/08_2554_meaning.mp3", - "audioExample": "files/08_2554_example.mp3", - "textMeaning": "To replace something is to put it in the place of something else.", - "textExample": "I replaced the tire on my car because it was flat.", - "transcription": "[ripléis]", - "__v": 0, - "textExampleTranslate": "Я заменил шину на моей машине, потому что она была плоской", - "textMeaningTranslate": "Заменить что-то - значит поставить это вместо чего-то другого", - "wordTranslate": "заменить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe9a" - }, - "group": 4, - "page": 7, - "word": "snap", - "image": "files/08_2555.jpg", - "audio": "files/08_2555.mp3", - "audioMeaning": "files/08_2555_meaning.mp3", - "audioExample": "files/08_2555_example.mp3", - "textMeaning": "To snap something means to break it suddenly, which can cause a loud noise.", - "textExample": "I took the drumstick and snapped it with my hands.", - "transcription": "[snæp]", - "__v": 0, - "textExampleTranslate": "Я взял голень и защелкнул его руками", - "textMeaningTranslate": "Взломать что-то значит внезапно сломать, что может вызвать громкий шум", - "wordTranslate": "щелчок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe9b" - }, - "group": 4, - "page": 7, - "word": "sly", - "image": "files/08_2556.jpg", - "audio": "files/08_2556.mp3", - "audioMeaning": "files/08_2556_meaning.mp3", - "audioExample": "files/08_2556_example.mp3", - "textMeaning": "If a person or animal is sly, they are sneaky or good at tricking people.", - "textExample": "The sly fox stole the eggs from the nest.", - "transcription": "[slai]", - "__v": 0, - "textExampleTranslate": "Хитрая лиса украла яйца из гнезда", - "textMeaningTranslate": "Если человек или животное хитрые, они подлые или умные обманывают людей", - "wordTranslate": "втихаря" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe9c" - }, - "group": 4, - "page": 7, - "word": "tend", - "image": "files/08_2557.jpg", - "audio": "files/08_2557.mp3", - "audioMeaning": "files/08_2557_meaning.mp3", - "audioExample": "files/08_2557_example.mp3", - "textMeaning": "To tend to do something is to be likely to do it or to do it often.", - "textExample": "My mom tends to buy me the perfect gift each Christmas.", - "transcription": "[tend]", - "__v": 0, - "textExampleTranslate": "Моя мама покупает мне идеальный подарок каждое Рождество", - "textMeaningTranslate": "Быть склонным к тому, чтобы что-то делать, значит быть способным делать это часто или делать это часто", - "wordTranslate": "как правило" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe9d" - }, - "group": 4, - "page": 7, - "word": "valid", - "image": "files/08_2558.jpg", - "audio": "files/08_2558.mp3", - "audioMeaning": "files/08_2558_meaning.mp3", - "audioExample": "files/08_2558_example.mp3", - "textMeaning": "When something is valid, it is correct or based on good reasoning.", - "textExample": "The expert’s opinion on the subject was more valid than others.", - "transcription": "[vǽlid]", - "__v": 0, - "textExampleTranslate": "Мнение эксперта по этому вопросу было более обоснованным, чем у других", - "textMeaningTranslate": "Когда что-то действительно, это правильно или основано на здравом рассуждении", - "wordTranslate": "действительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe9e" - }, - "group": 4, - "page": 7, - "word": "version", - "image": "files/08_2559.jpg", - "audio": "files/08_2559.mp3", - "audioMeaning": "files/08_2559_meaning.mp3", - "audioExample": "files/08_2559_example.mp3", - "textMeaning": "A version is an account of something that differs slightly from the original.", - "textExample": "She read the students British version of the Chinese fairy tale.", - "transcription": "[və́ːrʒən]", - "__v": 0, - "textExampleTranslate": "Она читала студентам британскую версию китайской сказки", - "textMeaningTranslate": "Версия - это отчет о чем-то, что немного отличается от оригинала", - "wordTranslate": "версия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afe9f" - }, - "group": 4, - "page": 7, - "word": "whatsoever", - "image": "files/08_2560.jpg", - "audio": "files/08_2560.mp3", - "audioMeaning": "files/08_2560_meaning.mp3", - "audioExample": "files/08_2560_example.mp3", - "textMeaning": "You use whatsoever after a noun to emphasize that there is nothing of that thing.", - "textExample": "The boy had no idea whatsoever how to finish the story.", - "transcription": "[wὰtsouévər]", - "__v": 0, - "textExampleTranslate": "Мальчик понятия не имел, как закончить историю", - "textMeaningTranslate": "Вы используете что угодно после существительного, чтобы подчеркнуть, что ничего этого нет", - "wordTranslate": "вообще" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afea0" - }, - "group": 4, - "page": 8, - "word": "alongside", - "image": "files/09_2561.jpg", - "audio": "files/09_2561.mp3", - "audioMeaning": "files/09_2561_meaning.mp3", - "audioExample": "files/09_2561_example.mp3", - "textMeaning": "If something is alongside another thing, then it is next to it.", - "textExample": "We work alongside each other in the office.", - "transcription": "[əlɔːŋsáid]", - "__v": 0, - "textExampleTranslate": "Мы работаем вместе в офисе", - "textMeaningTranslate": "Если что-то находится рядом с другим, то оно рядом с ним", - "wordTranslate": "ряд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afea1" - }, - "group": 4, - "page": 8, - "word": "appetite", - "image": "files/09_2562.jpg", - "audio": "files/09_2562.mp3", - "audioMeaning": "files/09_2562_meaning.mp3", - "audioExample": "files/09_2562_example.mp3", - "textMeaning": "Your appetite is your hunger for food.", - "textExample": "Tom has a big appetite. He eats all the time.", - "transcription": "[ǽpitàit]", - "__v": 0, - "textExampleTranslate": "У Тома большой аппетит. Он все время ест", - "textMeaningTranslate": "Твой аппетит - твой голод к еде", - "wordTranslate": "аппетит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afea2" - }, - "group": 4, - "page": 8, - "word": "assist", - "image": "files/09_2563.jpg", - "audio": "files/09_2563.mp3", - "audioMeaning": "files/09_2563_meaning.mp3", - "audioExample": "files/09_2563_example.mp3", - "textMeaning": "To assist someone is to help them.", - "textExample": "Andrew assisted me with my homework.", - "transcription": "[əsíst]", - "__v": 0, - "textExampleTranslate": "Андрей помог мне с домашним заданием", - "textMeaningTranslate": "Помочь кому-то - значит помочь ему", - "wordTranslate": "помощь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afea3" - }, - "group": 4, - "page": 8, - "word": "breeze", - "image": "files/09_2564.jpg", - "audio": "files/09_2564.mp3", - "audioMeaning": "files/09_2564_meaning.mp3", - "audioExample": "files/09_2564_example.mp3", - "textMeaning": "A breeze is a soft wind.", - "textExample": "The breeze caused the leaves to fall off the tree.", - "transcription": "[briːz]", - "__v": 0, - "textExampleTranslate": "Ветер заставил листья упасть с дерева", - "textMeaningTranslate": "Ветер - это мягкий ветер", - "wordTranslate": "ветер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afea4" - }, - "group": 4, - "page": 8, - "word": "defy", - "image": "files/09_2565.jpg", - "audio": "files/09_2565.mp3", - "audioMeaning": "files/09_2565_meaning.mp3", - "audioExample": "files/09_2565_example.mp3", - "textMeaning": "To defy someone is to work against them or refuse to do what they say.", - "textExample": "The students got into trouble for defying their teacher’s rules.", - "transcription": "[difái]", - "__v": 0, - "textExampleTranslate": "Студенты попали в беду из-за несоблюдения правил своего учителя", - "textMeaningTranslate": "Бросить вызов кому-либо - значит работать против него или отказаться от того, что он говорит", - "wordTranslate": "бросить вызов" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afea5" - }, - "group": 4, - "page": 8, - "word": "display", - "image": "files/09_2566.jpg", - "audio": "files/09_2566.mp3", - "audioMeaning": "files/09_2566_meaning.mp3", - "audioExample": "files/09_2566_example.mp3", - "textMeaning": "To display something is to show it, especially by putting it in a certain place.", - "textExample": "The museum displayed many wonderful paintings.", - "transcription": "[displéi]", - "__v": 0, - "textExampleTranslate": "В музее выставлено много замечательных картин", - "textMeaningTranslate": "Показывать что-то - значит показывать это, особенно помещая это в определенное место", - "wordTranslate": "дисплей" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afea6" - }, - "group": 4, - "page": 8, - "word": "efficient", - "image": "files/09_2567.jpg", - "audio": "files/09_2567.mp3", - "audioMeaning": "files/09_2567_meaning.mp3", - "audioExample": "files/09_2567_example.mp3", - "textMeaning": "If something or someone is efficient, they do not waste energy.", - "textExample": "My car is very efficient. I rarely have to buy gas.", - "transcription": "[ifíʃənt]", - "__v": 0, - "textExampleTranslate": "Моя машина очень эффективна. Мне редко приходится покупать газ", - "textMeaningTranslate": "Если что-то или кто-то эффективен, они не тратят энергию", - "wordTranslate": "эффективный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afea7" - }, - "group": 4, - "page": 8, - "word": "feeble", - "image": "files/09_2568.jpg", - "audio": "files/09_2568.mp3", - "audioMeaning": "files/09_2568_meaning.mp3", - "audioExample": "files/09_2568_example.mp3", - "textMeaning": "If someone is feeble, they are small or weak.", - "textExample": "The boy was too feeble to carry the object very far.", - "transcription": "[fíːbəl]", - "__v": 0, - "textExampleTranslate": "Мальчик был слишком слаб, чтобы нести предмет очень далеко", - "textMeaningTranslate": "Если кто-то слабый, он маленький или слабый", - "wordTranslate": "слабый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afea8" - }, - "group": 4, - "page": 8, - "word": "forgive", - "image": "files/09_2569.jpg", - "audio": "files/09_2569.mp3", - "audioMeaning": "files/09_2569_meaning.mp3", - "audioExample": "files/09_2569_example.mp3", - "textMeaning": "To forgive someone is to stop being angry with them.", - "textExample": "Sandra forgave Peter after he said he was sorry.", - "transcription": "[fərgív]", - "__v": 0, - "textExampleTranslate": "Сандра простила Петра после того, как он сказал, что сожалел", - "textMeaningTranslate": "Простить кого-то - значит перестать злиться на него", - "wordTranslate": "прости" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeaa" - }, - "group": 4, - "page": 8, - "word": "majestic", - "image": "files/09_2571.jpg", - "audio": "files/09_2571.mp3", - "audioMeaning": "files/09_2571_meaning.mp3", - "audioExample": "files/09_2571_example.mp3", - "textMeaning": "If something is majestic, it is large and impressive.", - "textExample": "The rich people lived in a big, majestic house.", - "transcription": "[mədʒéstik]", - "__v": 0, - "textExampleTranslate": "Богатые люди жили в большом, величественном доме", - "textMeaningTranslate": "Если что-то величественное, оно большое и впечатляющее", - "wordTranslate": "величественный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afea9" - }, - "group": 4, - "page": 8, - "word": "lively", - "image": "files/09_2570.jpg", - "audio": "files/09_2570.mp3", - "audioMeaning": "files/09_2570_meaning.mp3", - "audioExample": "files/09_2570_example.mp3", - "textMeaning": "If someone is lively, they have a lot of energy.", - "textExample": "Jennifer is very lively: she’s always running and playing.", - "transcription": "[láivli]", - "__v": 0, - "textExampleTranslate": "Дженнифер очень живая: она всегда бегает и играет", - "textMeaningTranslate": "Если кто-то живой, у него много энергии", - "wordTranslate": "оживленный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeab" - }, - "group": 4, - "page": 8, - "word": "nor", - "image": "files/09_2572.jpg", - "audio": "files/09_2572.mp3", - "audioMeaning": "files/09_2572_meaning.mp3", - "audioExample": "files/09_2572_example.mp3", - "textMeaning": "You use nor to connect two negative ideas.", - "textExample": "I eat neither apples nor oranges. I don’t like either one.", - "transcription": "[nɔːr]", - "__v": 0, - "textExampleTranslate": "Я не ем ни яблок, ни апельсинов. Мне не нравится ни один", - "textMeaningTranslate": "Вы используете ни для соединения двух негативных идей", - "wordTranslate": "ни" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeac" - }, - "group": 4, - "page": 8, - "word": "outraged", - "image": "files/09_2573.jpg", - "audio": "files/09_2573.mp3", - "audioMeaning": "files/09_2573_meaning.mp3", - "audioExample": "files/09_2573_example.mp3", - "textMeaning": "If someone is outraged, they are very angry.", - "textExample": "My father was outraged when he saw that I had crashed his car.", - "transcription": "[áutrèidʒ]", - "__v": 0, - "textExampleTranslate": "Мой отец был возмущен, когда увидел, что я разбил его машину", - "textMeaningTranslate": "Если кто-то возмущен, он очень зол", - "wordTranslate": "возмущен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afead" - }, - "group": 4, - "page": 8, - "word": "pessimistic", - "image": "files/09_2574.jpg", - "audio": "files/09_2574.mp3", - "audioMeaning": "files/09_2574_meaning.mp3", - "audioExample": "files/09_2574_example.mp3", - "textMeaning": "If someone is pessimistic, they believe that the worst will happen.", - "textExample": "John is pessimistic. He always thinks something bad will happen.", - "transcription": "[pèsəmístik]", - "__v": 0, - "textExampleTranslate": "Джон пессимистичен. Он всегда думает, что случится что-то плохое", - "textMeaningTranslate": "Если кто-то пессимистичен, они верят, что случится худшее", - "wordTranslate": "пессимистический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeae" - }, - "group": 4, - "page": 8, - "word": "relationship", - "image": "files/09_2575.jpg", - "audio": "files/09_2575.mp3", - "audioMeaning": "files/09_2575_meaning.mp3", - "audioExample": "files/09_2575_example.mp3", - "textMeaning": "The relationship between two or more people is the way in which they behave toward each other.", - "textExample": "The teacher was proud of her good relationship with the students.", - "transcription": "[riléiʃənʃip]", - "__v": 0, - "textExampleTranslate": "Учитель гордился ее хорошими отношениями со студентами", - "textMeaningTranslate": "Отношения между двумя или более людьми - это то, как они ведут себя по отношению друг к другу", - "wordTranslate": "отношения" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeaf" - }, - "group": 4, - "page": 8, - "word": "slap", - "image": "files/09_2576.jpg", - "audio": "files/09_2576.mp3", - "audioMeaning": "files/09_2576_meaning.mp3", - "audioExample": "files/09_2576_example.mp3", - "textMeaning": "To slap someone means to hit them with the palm of the hand.", - "textExample": "Out of anger, Helen slapped Eunice on the face.", - "transcription": "[slæp]", - "__v": 0, - "textExampleTranslate": "Из гнева Хлен ударила Юнис по лицу", - "textMeaningTranslate": "Бить кого-то - значит бить его ладонью", - "wordTranslate": "пощечина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeb0" - }, - "group": 4, - "page": 8, - "word": "smash", - "image": "files/09_2577.jpg", - "audio": "files/09_2577.mp3", - "audioMeaning": "files/09_2577_meaning.mp3", - "audioExample": "files/09_2577_example.mp3", - "textMeaning": "To smash something is to break it into many small pieces.", - "textExample": "Jacob smashed the window with a rock.", - "transcription": "[smæʃ]", - "__v": 0, - "textExampleTranslate": "Джейкоб разбил окно камнем", - "textMeaningTranslate": "Разбить что-то значит разбить его на множество маленьких кусочков", - "wordTranslate": "разбить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeb1" - }, - "group": 4, - "page": 8, - "word": "successful", - "image": "files/09_2578.jpg", - "audio": "files/09_2578.mp3", - "audioMeaning": "files/09_2578_meaning.mp3", - "audioExample": "files/09_2578_example.mp3", - "textMeaning": "Someone who is successful achieves what they intended to achieve.", - "textExample": "My father is a successful businessman.", - "transcription": "[səksésfəl]", - "__v": 0, - "textExampleTranslate": "Мой отец - успешный бизнесмен", - "textMeaningTranslate": "Тот, кто успешен, достигает того, чего хотел достичь", - "wordTranslate": "успешный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeb2" - }, - "group": 4, - "page": 8, - "word": "wage", - "image": "files/09_2579.jpg", - "audio": "files/09_2579.mp3", - "audioMeaning": "files/09_2579_meaning.mp3", - "audioExample": "files/09_2579_example.mp3", - "textMeaning": "A wage is the money that a person gets for doing a job.", - "textExample": "The wages I receive from my job are really great!", - "transcription": "[weidʒ]", - "__v": 0, - "textExampleTranslate": "Заработная плата, которую я получаю от моей работы, действительно велика!", - "textMeaningTranslate": "Заработная плата - это деньги, которые человек получает за работу", - "wordTranslate": "заработная плата" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeb3" - }, - "group": 4, - "page": 8, - "word": "whereas", - "image": "files/09_2580.jpg", - "audio": "files/09_2580.mp3", - "audioMeaning": "files/09_2580_meaning.mp3", - "audioExample": "files/09_2580_example.mp3", - "textMeaning": "You use whereas to show how two things are different.", - "textExample": "My sister loves horror movies, whereas I prefer comedies.", - "transcription": "[hwεərǽz]", - "__v": 0, - "textExampleTranslate": "Моя сестра любит фильмы ужасов, а я предпочитаю комедии", - "textMeaningTranslate": "Вы используете тогда, чтобы показать, как две вещи разные", - "wordTranslate": "в то время как" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeb4" - }, - "group": 4, - "page": 9, - "word": "animate", - "image": "files/10_2581.jpg", - "audio": "files/10_2581.mp3", - "audioMeaning": "files/10_2581_meaning.mp3", - "audioExample": "files/10_2581_example.mp3", - "textMeaning": "When something is animate, it has life.", - "textExample": "Rocks and machines are not animate things.", - "transcription": "[ǽnəmèit]", - "__v": 0, - "textExampleTranslate": "Камни и машины не одушевлены", - "textMeaningTranslate": "Когда что-то одушевлено, у него есть жизнь", - "wordTranslate": "живой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeb5" - }, - "group": 4, - "page": 9, - "word": "classify", - "image": "files/10_2582.jpg", - "audio": "files/10_2582.mp3", - "audioMeaning": "files/10_2582_meaning.mp3", - "audioExample": "files/10_2582_example.mp3", - "textMeaning": "To classify things is to put them into groups based on their type.", - "textExample": "The biologist classified the plant as a completely new species.", - "transcription": "[klǽsəfài]", - "__v": 0, - "textExampleTranslate": "Биолог классифицировал растение как совершенно новый вид", - "textMeaningTranslate": "Классифицировать вещи - значит разбивать их на группы по типу", - "wordTranslate": "классифицировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeb6" - }, - "group": 4, - "page": 9, - "word": "decade", - "image": "files/10_2586.jpg", - "audio": "files/10_2586.mp3", - "audioMeaning": "files/10_2586_meaning.mp3", - "audioExample": "files/10_2586_example.mp3", - "textMeaning": "A decade is a period of ten years.", - "textExample": "She celebrated her three decades of work with the company.", - "transcription": "[dékeid]", - "__v": 0, - "textExampleTranslate": "Она отметила три десятилетия работы с компанией", - "textMeaningTranslate": "Десятилетие - это десять лет", - "wordTranslate": "десятилетие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeb7" - }, - "group": 4, - "page": 9, - "word": "concede", - "image": "files/10_2583.jpg", - "audio": "files/10_2583.mp3", - "audioMeaning": "files/10_2583_meaning.mp3", - "audioExample": "files/10_2583_example.mp3", - "textMeaning": "To concede is to admit against your wish that something is true.", - "textExample": "The student conceded that he had cheated on the test.", - "transcription": "[kənsíːd]", - "__v": 0, - "textExampleTranslate": "Студент признал, что он обманул тест", - "textMeaningTranslate": "Признать - значит признать против твоего желания, что что-то верно", - "wordTranslate": "уступить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeb8" - }, - "group": 4, - "page": 9, - "word": "diagram", - "image": "files/10_2587.jpg", - "audio": "files/10_2587.mp3", - "audioMeaning": "files/10_2587_meaning.mp3", - "audioExample": "files/10_2587_example.mp3", - "textMeaning": "A diagram is a simple drawing that explains what something is or how it works.", - "textExample": "By following the diagram, I was able to put the desk together.", - "transcription": "[dáiəgræ̀m]", - "__v": 0, - "textExampleTranslate": "Следуя схеме, я смог собрать стол", - "textMeaningTranslate": "Диаграмма - это простой рисунок, который объясняет, что что-то такое или как оно работает", - "wordTranslate": "схема" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeb9" - }, - "group": 4, - "page": 9, - "word": "concept", - "image": "files/10_2584.jpg", - "audio": "files/10_2584.mp3", - "audioMeaning": "files/10_2584_meaning.mp3", - "audioExample": "files/10_2584_example.mp3", - "textMeaning": "A concept is an idea about something.", - "textExample": "I learned some concepts about molecules before working in the science lab.", - "transcription": "[kɑ́nsept]", - "__v": 0, - "textExampleTranslate": "Я изучил некоторые понятия о молекулах, прежде чем работать в научной лаборатории", - "textMeaningTranslate": "Концепция - это идея о чем-то", - "wordTranslate": "концепция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeba" - }, - "group": 4, - "page": 9, - "word": "construct", - "image": "files/10_2585.jpg", - "audio": "files/10_2585.mp3", - "audioMeaning": "files/10_2585_meaning.mp3", - "audioExample": "files/10_2585_example.mp3", - "textMeaning": "To construct something means to make or build it.", - "textExample": "The men used wood and metal to construct a house.", - "transcription": "[kənstrʌ́kt]", - "__v": 0, - "textExampleTranslate": "Мужчины использовали дерево и металл, чтобы построить дом", - "textMeaningTranslate": "Построить что-то значит сделать или построить это", - "wordTranslate": "конструкт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afebb" - }, - "group": 4, - "page": 9, - "word": "ferry", - "image": "files/10_2588.jpg", - "audio": "files/10_2588.mp3", - "audioMeaning": "files/10_2588_meaning.mp3", - "audioExample": "files/10_2588_example.mp3", - "textMeaning": "A ferry is a boat that carries passengers over short distances.", - "textExample": "The ferry took the people across the lake.", - "transcription": "[féri]", - "__v": 0, - "textExampleTranslate": "Паром переправил людей через озеро", - "textMeaningTranslate": "Паром - это лодка, которая перевозит пассажиров на короткие расстояния", - "wordTranslate": "паром" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afebc" - }, - "group": 4, - "page": 9, - "word": "isolate", - "image": "files/10_2590.jpg", - "audio": "files/10_2590.mp3", - "audioMeaning": "files/10_2590_meaning.mp3", - "audioExample": "files/10_2590_example.mp3", - "textMeaning": "To isolate is to separate one person or thing from a group.", - "textExample": "The teacher isolated the bad child from the class before talking with her.", - "transcription": "[áisəlèit]", - "__v": 0, - "textExampleTranslate": "Учитель изолировал плохого ребенка от класса, прежде чем говорить с ней", - "textMeaningTranslate": "Изолировать - значит отделить одного человека или вещь от группы", - "wordTranslate": "изолят" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afebd" - }, - "group": 4, - "page": 9, - "word": "handy", - "image": "files/10_2589.jpg", - "audio": "files/10_2589.mp3", - "audioMeaning": "files/10_2589_meaning.mp3", - "audioExample": "files/10_2589_example.mp3", - "textMeaning": "If something is handy, it is useful.", - "textExample": "An eraser is handy if you make a lot of mistakes.", - "transcription": "[hǽndi]", - "__v": 0, - "textExampleTranslate": "Ластик удобен, если вы делаете много ошибок", - "textMeaningTranslate": "Если что-то удобно, это полезно", - "wordTranslate": "под рукой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afebe" - }, - "group": 4, - "page": 9, - "word": "longing", - "image": "files/10_2591.jpg", - "audio": "files/10_2591.mp3", - "audioMeaning": "files/10_2591_meaning.mp3", - "audioExample": "files/10_2591_example.mp3", - "textMeaning": "A longing is a strong feeling of wanting.", - "textExample": "Since he skipped breakfast, he had a longing for food all morning.", - "transcription": "[lɔ́ːŋiŋ]", - "__v": 0, - "textExampleTranslate": "Так как он пропустил завтрак, он жаждал еды все утро", - "textMeaningTranslate": "Тоска - это сильное чувство желания", - "wordTranslate": "тоска" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afebf" - }, - "group": 4, - "page": 9, - "word": "numerous", - "image": "files/10_2592.jpg", - "audio": "files/10_2592.mp3", - "audioMeaning": "files/10_2592_meaning.mp3", - "audioExample": "files/10_2592_example.mp3", - "textMeaning": "If something is numerous, there are many of those things.", - "textExample": "It was hard to drive fast since there were numerous holes in the road.", - "transcription": "[njúːmərəs]", - "__v": 0, - "textExampleTranslate": "Было трудно ехать быстро, потому что на дороге было много ям", - "textMeaningTranslate": "Если что-то много, таких вещей много", - "wordTranslate": "многочисленные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afec0" - }, - "group": 4, - "page": 9, - "word": "particle", - "image": "files/10_2593.jpg", - "audio": "files/10_2593.mp3", - "audioMeaning": "files/10_2593_meaning.mp3", - "audioExample": "files/10_2593_example.mp3", - "textMeaning": "A particle is a very small piece of something.", - "textExample": "The bottles of wine were covered in a layer of dust particles.", - "transcription": "[pɑ́ːrtikl]", - "__v": 0, - "textExampleTranslate": "Бутылки вина были покрыты слоем частиц пыли", - "textMeaningTranslate": "Частица - это очень маленький кусочек чего-то", - "wordTranslate": "частица" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afec1" - }, - "group": 4, - "page": 9, - "word": "plea", - "image": "files/10_2594.jpg", - "audio": "files/10_2594.mp3", - "audioMeaning": "files/10_2594_meaning.mp3", - "audioExample": "files/10_2594_example.mp3", - "textMeaning": "A plea is a request that is urgent or emotional.", - "textExample": "The poor, hungry man made a plea for food.", - "transcription": "[pliː]", - "__v": 0, - "textExampleTranslate": "Бедный, голодный человек обратился с просьбой о еде", - "textMeaningTranslate": "Просьба - это просьба, которая является срочной или эмоциональной", - "wordTranslate": "мольба" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afec2" - }, - "group": 4, - "page": 9, - "word": "refrain", - "image": "files/10_2595.jpg", - "audio": "files/10_2595.mp3", - "audioMeaning": "files/10_2595_meaning.mp3", - "audioExample": "files/10_2595_example.mp3", - "textMeaning": "To refrain from something is to avoid doing it.", - "textExample": "The doctor asked Mary to refrain from eating fast food as part of her diet.", - "transcription": "[rifréin]", - "__v": 0, - "textExampleTranslate": "Доктор попросил Мэри воздержаться от употребления фаст-фуда как части ее диеты", - "textMeaningTranslate": "Воздерживаться от чего-либо - значит избегать этого", - "wordTranslate": "воздерживаться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afec3" - }, - "group": 4, - "page": 9, - "word": "review", - "image": "files/10_2596.jpg", - "audio": "files/10_2596.mp3", - "audioMeaning": "files/10_2596_meaning.mp3", - "audioExample": "files/10_2596_example.mp3", - "textMeaning": "A review of something is a formal inspection of it by people in authority.", - "textExample": "The government ordered a careful review of the economic situation.", - "transcription": "[rivjúː]", - "__v": 0, - "textExampleTranslate": "Правительство распорядилось провести тщательный анализ экономической ситуации", - "textMeaningTranslate": "Проверка чего-либо - это официальная проверка со стороны людей, находящихся во власти", - "wordTranslate": "рассмотрение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afec4" - }, - "group": 4, - "page": 9, - "word": "sophisticated", - "image": "files/10_2597.jpg", - "audio": "files/10_2597.mp3", - "audioMeaning": "files/10_2597_meaning.mp3", - "audioExample": "files/10_2597_example.mp3", - "textMeaning": "If someone is sophisticated, they know many things about the world.", - "textExample": "Jake is one of the most sophisticated people I’ve ever met.", - "transcription": "[səfístəkèitid]", - "__v": 0, - "textExampleTranslate": "Джейк - один из самых искушенных людей, которых я когда-либо встречал", - "textMeaningTranslate": "Если кто-то искушенный, он знает много вещей о мире", - "wordTranslate": "сложные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afec5" - }, - "group": 4, - "page": 9, - "word": "surrender", - "image": "files/10_2598.jpg", - "audio": "files/10_2598.mp3", - "audioMeaning": "files/10_2598_meaning.mp3", - "audioExample": "files/10_2598_example.mp3", - "textMeaning": "To surrender something is to give it up.", - "textExample": "The thief surrendered the money to the police when he was caught.", - "transcription": "[səréndər]", - "__v": 0, - "textExampleTranslate": "Вор сдал деньги полиции, когда его поймали", - "textMeaningTranslate": "Сдать что-то - значит бросить это", - "wordTranslate": "сдача" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afec6" - }, - "group": 4, - "page": 9, - "word": "upright", - "image": "files/10_2599.jpg", - "audio": "files/10_2599.mp3", - "audioMeaning": "files/10_2599_meaning.mp3", - "audioExample": "files/10_2599_example.mp3", - "textMeaning": "If something is upright, it is standing up straight.", - "textExample": "Meerkats can’t walk like humans, but they can stand upright.", - "transcription": "[ʌ́pràit]", - "__v": 0, - "textExampleTranslate": "Сурикаты не могут ходить как люди, но они могут стоять прямо", - "textMeaningTranslate": "Если что-то в вертикальном положении, оно стоит прямо", - "wordTranslate": "вертикально" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afec7" - }, - "group": 4, - "page": 9, - "word": "worthwhile", - "image": "files/10_2600.jpg", - "audio": "files/10_2600.mp3", - "audioMeaning": "files/10_2600_meaning.mp3", - "audioExample": "files/10_2600_example.mp3", - "textMeaning": "If something is worthwhile, it is important or useful.", - "textExample": "On his visit to Canada, he realized studying English was worthwhile.", - "transcription": "[wə́ːrɵhwáil]", - "__v": 0, - "textExampleTranslate": "Во время своего визита в Канаду он понял, что изучение английского стоит того", - "textMeaningTranslate": "Если что-то стоит, это важно или полезно", - "wordTranslate": "стоит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afecc" - }, - "group": 4, - "page": 10, - "word": "bravery", - "image": "files/11_2605.jpg", - "audio": "files/11_2605.mp3", - "audioMeaning": "files/11_2605_meaning.mp3", - "audioExample": "files/11_2605_example.mp3", - "textMeaning": "Bravery is brave behavior.", - "textExample": "The books commended the general’s bravery.", - "transcription": "[bréivəri]", - "__v": 0, - "textExampleTranslate": "Книги высоко оценили храбрость генерала", - "textMeaningTranslate": "Храбрость - это храброе поведение", - "wordTranslate": "храбрость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afec8" - }, - "group": 4, - "page": 10, - "word": "applause", - "image": "files/11_2602.jpg", - "audio": "files/11_2602.mp3", - "audioMeaning": "files/11_2602_meaning.mp3", - "audioExample": "files/11_2602_example.mp3", - "textMeaning": "Applause is the noise made when people clap their hands to show approval.", - "textExample": "At the end of his speech, everyone burst into loud applause.", - "transcription": "[əplɔ́ːz]", - "__v": 0, - "textExampleTranslate": "В конце своей речи все разразились громкими аплодисментами", - "textMeaningTranslate": "Аплодисменты - это шум, когда люди хлопают в ладоши, чтобы показать одобрение", - "wordTranslate": "аплодисменты" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeca" - }, - "group": 4, - "page": 10, - "word": "armed", - "image": "files/11_2603.jpg", - "audio": "files/11_2603.mp3", - "audioMeaning": "files/11_2603_meaning.mp3", - "audioExample": "files/11_2603_example.mp3", - "textMeaning": "If you are armed, you are carrying a weapon.", - "textExample": "The robber was armed with a gun.", - "transcription": "[aːrmd]", - "__v": 0, - "textExampleTranslate": "Грабитель был вооружен пистолетом", - "textMeaningTranslate": "Если вы вооружены, у вас есть оружие", - "wordTranslate": "вооружившись" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afec9" - }, - "group": 4, - "page": 10, - "word": "alliance", - "image": "files/11_2601.jpg", - "audio": "files/11_2601.mp3", - "audioMeaning": "files/11_2601_meaning.mp3", - "audioExample": "files/11_2601_example.mp3", - "textMeaning": "An alliance is a group of people who work together.", - "textExample": "The junior executives formed an alliance with each other.", - "transcription": "[əláiəns]", - "__v": 0, - "textExampleTranslate": "Младшие руководители заключили союз друг с другом", - "textMeaningTranslate": "Альянс - это группа людей, которые работают вместе", - "wordTranslate": "альянс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afecb" - }, - "group": 4, - "page": 10, - "word": "authoritative", - "image": "files/11_2604.jpg", - "audio": "files/11_2604.mp3", - "audioMeaning": "files/11_2604_meaning.mp3", - "audioExample": "files/11_2604_example.mp3", - "textMeaning": "If something is authoritative, it uses the best information available.", - "textExample": "This book is an authoritative source on ancient Egypt’s Queen Nefertiti.", - "transcription": "[əθɔ́ːrətèitiv]", - "__v": 0, - "textExampleTranslate": "Эта книга является авторитетным источником о царице Древнего Египта Нефертити", - "textMeaningTranslate": "Если что-то является авторитетным, оно использует лучшую доступную информацию", - "wordTranslate": "авторитетный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afecf" - }, - "group": 4, - "page": 10, - "word": "defense", - "image": "files/11_2608.jpg", - "audio": "files/11_2608.mp3", - "audioMeaning": "files/11_2608_meaning.mp3", - "audioExample": "files/11_2608_example.mp3", - "textMeaning": "A defense is something that is done to protect another thing.", - "textExample": "The air force works in defense of its country.", - "transcription": "[diféns]", - "__v": 0, - "textExampleTranslate": "Военно-воздушные силы работают в защиту своей страны", - "textMeaningTranslate": "Защита - это то, что делается для защиты другого", - "wordTranslate": "оборона" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afece" - }, - "group": 4, - "page": 10, - "word": "ceremony", - "image": "files/11_2606.jpg", - "audio": "files/11_2606.mp3", - "audioMeaning": "files/11_2606_meaning.mp3", - "audioExample": "files/11_2606_example.mp3", - "textMeaning": "A ceremony is an event that happens on special occasions.", - "textExample": "Tom and Amy’s marriage ceremony is in June.", - "transcription": "[sérəmòuni]", - "__v": 0, - "textExampleTranslate": "Церемония бракосочетания Тома и Эми в июне", - "textMeaningTranslate": "Церемония - это событие, которое происходит в особых случаях", - "wordTranslate": "церемония" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afecd" - }, - "group": 4, - "page": 10, - "word": "culture", - "image": "files/11_2607.jpg", - "audio": "files/11_2607.mp3", - "audioMeaning": "files/11_2607_meaning.mp3", - "audioExample": "files/11_2607_example.mp3", - "textMeaning": "Culture is the music, art, and writings of a certain place or group of people.", - "textExample": "Ancient Mexican culture is renowned for its architecture.", - "transcription": "[kʌ́ltʃər]", - "__v": 0, - "textExampleTranslate": "Древняя мексиканская культура славится своей архитектурой", - "textMeaningTranslate": "Культура - это музыка, искусство и произведения определенного места или группы людей", - "wordTranslate": "культура" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afed0" - }, - "group": 4, - "page": 10, - "word": "detail", - "image": "files/11_2609.jpg", - "audio": "files/11_2609.mp3", - "audioMeaning": "files/11_2609_meaning.mp3", - "audioExample": "files/11_2609_example.mp3", - "textMeaning": "A detail is a small piece of information.", - "textExample": "Jane told Ben all the details of her trip to China.", - "transcription": "[díːteil]", - "__v": 0, - "textExampleTranslate": "Джейн рассказала Бену все детали своей поездки в Китай", - "textMeaningTranslate": "Деталь - это маленький кусочек информации", - "wordTranslate": "деталь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afed1" - }, - "group": 4, - "page": 10, - "word": "diverse", - "image": "files/11_2610.jpg", - "audio": "files/11_2610.mp3", - "audioMeaning": "files/11_2610_meaning.mp3", - "audioExample": "files/11_2610_example.mp3", - "textMeaning": "When a group of things is diverse, it is made up of a wide variety of things.", - "textExample": "Big cities have diverse populations with people of different races and ages.", - "transcription": "[divə́ːrs]", - "__v": 0, - "textExampleTranslate": "В больших городах много людей разных рас и возрастов", - "textMeaningTranslate": "Когда группа вещей разнообразна, она состоит из самых разных вещей", - "wordTranslate": "разнообразны" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afed4" - }, - "group": 4, - "page": 10, - "word": "exception", - "image": "files/11_2613.jpg", - "audio": "files/11_2613.mp3", - "audioMeaning": "files/11_2613_meaning.mp3", - "audioExample": "files/11_2613_example.mp3", - "textMeaning": "An exception is someone or something not conforming to a rule.", - "textExample": "Most students thought the test was hard, but Tim was the exception.", - "transcription": "[iksépʃən]", - "__v": 0, - "textExampleTranslate": "Большинство студентов думали, что испытание было трудным, но Тим был исключением", - "textMeaningTranslate": "Исключением является кто-то или что-то, не соответствующее правилу", - "wordTranslate": "исключение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afed3" - }, - "group": 4, - "page": 10, - "word": "equip", - "image": "files/11_2612.jpg", - "audio": "files/11_2612.mp3", - "audioMeaning": "files/11_2612_meaning.mp3", - "audioExample": "files/11_2612_example.mp3", - "textMeaning": "To equip someone is to give them the things needed to do something.", - "textExample": "Steve was equipped with the tools needed to do the job.", - "transcription": "[ikwíp]", - "__v": 0, - "textExampleTranslate": "Стив был оснащен инструментами, необходимыми для работы", - "textMeaningTranslate": "Оборудовать кого-то - значит дать ему вещи, необходимые для чего-то", - "wordTranslate": "вооружить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afed2" - }, - "group": 4, - "page": 10, - "word": "enchant", - "image": "files/11_2611.jpg", - "audio": "files/11_2611.mp3", - "audioMeaning": "files/11_2611_meaning.mp3", - "audioExample": "files/11_2611_example.mp3", - "textMeaning": "To enchant someone is to make them feel very interested or happy.", - "textExample": "The beautiful woman enchanted everybody in the room.", - "transcription": "[intʃǽnt]", - "__v": 0, - "textExampleTranslate": "Красивая женщина очаровала всех в комнате", - "textMeaningTranslate": "Зачаровывать кого-то - значит чувствовать себя очень заинтересованным или счастливым", - "wordTranslate": "заточка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afed6" - }, - "group": 4, - "page": 10, - "word": "impact", - "image": "files/11_2615.jpg", - "audio": "files/11_2615.mp3", - "audioMeaning": "files/11_2615_meaning.mp3", - "audioExample": "files/11_2615_example.mp3", - "textMeaning": "An impact is the effect someone or something has.", - "textExample": "My grandmother had a great impact on my life.", - "transcription": "[ímpækt]", - "__v": 0, - "textExampleTranslate": "Моя бабушка оказала большое влияние на мою жизнь", - "textMeaningTranslate": "Воздействие - это эффект, который кто-то или что-то имеет", - "wordTranslate": "влияние" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afed5" - }, - "group": 4, - "page": 10, - "word": "genre", - "image": "files/11_2614.jpg", - "audio": "files/11_2614.mp3", - "audioMeaning": "files/11_2614_meaning.mp3", - "audioExample": "files/11_2614_example.mp3", - "textMeaning": "A genre is a type of literature, art, or music characterized by its style.", - "textExample": "She is considered a master in the comedy genre.", - "transcription": "[ʒάːnrə]", - "__v": 0, - "textExampleTranslate": "Она считается мастером в жанре комедии", - "textMeaningTranslate": "Жанр - это тип литературы, искусства или музыки, характеризующийся своим стилем", - "wordTranslate": "жанр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afed7" - }, - "group": 4, - "page": 10, - "word": "lure", - "image": "files/11_2616.jpg", - "audio": "files/11_2616.mp3", - "audioMeaning": "files/11_2616_meaning.mp3", - "audioExample": "files/11_2616_example.mp3", - "textMeaning": "To lure someone is to convince them to do something by using a trick.", - "textExample": "The store lures people in with big signs that say “Sale!”", - "transcription": "[luər]", - "__v": 0, - "textExampleTranslate": "Магазин завлекает людей большими знаками с надписью 'Распродажа!'", - "textMeaningTranslate": "Приманить кого-то - значит убедить его сделать что-то, используя хитрость", - "wordTranslate": "приманка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afed8" - }, - "group": 4, - "page": 10, - "word": "obstacle", - "image": "files/11_2617.jpg", - "audio": "files/11_2617.mp3", - "audioMeaning": "files/11_2617_meaning.mp3", - "audioExample": "files/11_2617_example.mp3", - "textMeaning": "An obstacle is an object or a problem that stops you from doing something.", - "textExample": "Climbing over the giant rock was the biggest obstacle for the hikers.", - "transcription": "[ɑ́bstəkəl]", - "__v": 0, - "textExampleTranslate": "Восхождение на гигантскую скалу было самым большим препятствием для туристов", - "textMeaningTranslate": "Препятствием является объект или проблема, которая мешает вам что-то делать", - "wordTranslate": "препятствие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afed9" - }, - "group": 4, - "page": 10, - "word": "shelter", - "image": "files/11_2618.jpg", - "audio": "files/11_2618.mp3", - "audioMeaning": "files/11_2618_meaning.mp3", - "audioExample": "files/11_2618_example.mp3", - "textMeaning": "A shelter is a place to go that is safe from danger or bad weather.", - "textExample": "The frog took shelter from the storm in a nearby hold.", - "transcription": "[ʃéltər]", - "__v": 0, - "textExampleTranslate": "Лягушка укрылась от шторма в соседнем трюме", - "textMeaningTranslate": "Убежище - это безопасное место от опасностей или плохой погоды", - "wordTranslate": "приют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afedb" - }, - "group": 4, - "page": 10, - "word": "vain", - "image": "files/11_2620.jpg", - "audio": "files/11_2620.mp3", - "audioMeaning": "files/11_2620_meaning.mp3", - "audioExample": "files/11_2620_example.mp3", - "textMeaning": "If people are vain, they are only concerned with how they look.", - "textExample": "Rebecca is so vain that she looks at herself in every mirror.", - "transcription": "[vein]", - "__v": 0, - "textExampleTranslate": "Ребекка настолько тщеславна, что смотрит на себя в каждое зеркало", - "textMeaningTranslate": "Если люди тщеславны, их интересует только то, как они выглядят", - "wordTranslate": "напрасно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeda" - }, - "group": 4, - "page": 10, - "word": "supply", - "image": "files/11_2619.jpg", - "audio": "files/11_2619.mp3", - "audioMeaning": "files/11_2619_meaning.mp3", - "audioExample": "files/11_2619_example.mp3", - "textMeaning": "To supply something means to give people what they need or want.", - "textExample": "The water heater supplied the house with warm water.", - "transcription": "[səplái]", - "__v": 0, - "textExampleTranslate": "Водонагреватель обеспечил дом теплой водой", - "textMeaningTranslate": "Предоставлять что-то - значит давать людям то, что им нужно или что они хотят", - "wordTranslate": "поставка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afedc" - }, - "group": 4, - "page": 11, - "word": "alternative", - "image": "files/12_2621.jpg", - "audio": "files/12_2621.mp3", - "audioMeaning": "files/12_2621_meaning.mp3", - "audioExample": "files/12_2621_example.mp3", - "textMeaning": "An alternative is something that you can choose instead of your first choice.", - "textExample": "Her first plan to make extra money seemed weak, so she chose an alternative.", - "transcription": "[ɔːltə́ːrnətiv]", - "__v": 0, - "textExampleTranslate": "Ее первый план заработать дополнительные деньги казался слабым, поэтому она выбрала альтернативу", - "textMeaningTranslate": "Альтернатива - это то, что вы можете выбрать вместо своего первого выбора", - "wordTranslate": "альтернатива" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afede" - }, - "group": 4, - "page": 11, - "word": "belly", - "image": "files/12_2623.jpg", - "audio": "files/12_2623.mp3", - "audioMeaning": "files/12_2623_meaning.mp3", - "audioExample": "files/12_2623_example.mp3", - "textMeaning": "The belly is the stomach of a person or animal.", - "textExample": "His belly was full because he had eaten a lot of food.", - "transcription": "[béli]", - "__v": 0, - "textExampleTranslate": "Его живот был полон, потому что он съел много еды", - "textMeaningTranslate": "Живот - это желудок человека или животного", - "wordTranslate": "живот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afee0" - }, - "group": 4, - "page": 11, - "word": "blow", - "image": "files/12_2625.jpg", - "audio": "files/12_2625.mp3", - "audioMeaning": "files/12_2625_meaning.mp3", - "audioExample": "files/12_2625_example.mp3", - "textMeaning": "To blow means to move air or move something through the air, as in the wind.", - "textExample": "The wind is blowing very hard today. We should stay inside.", - "transcription": "[blou]", - "__v": 0, - "textExampleTranslate": "Сегодня дует очень сильный ветер. Мы должны оставаться внутри", - "textMeaningTranslate": "Дуть - значит двигать воздух или перемещать что-то по воздуху, как на ветру", - "wordTranslate": "дуть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afedf" - }, - "group": 4, - "page": 11, - "word": "bid", - "image": "files/12_2624.jpg", - "audio": "files/12_2624.mp3", - "audioMeaning": "files/12_2624_meaning.mp3", - "audioExample": "files/12_2624_example.mp3", - "textMeaning": "A bid to do something is an attempt to do it.", - "textExample": "He made a bid to become the university’s next president.", - "transcription": "[bid]", - "__v": 0, - "textExampleTranslate": "Он сделал ставку, чтобы стать следующим президентом университета", - "textMeaningTranslate": "Предложение сделать что-то - это попытка сделать это", - "wordTranslate": "ставки" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afedd" - }, - "group": 4, - "page": 11, - "word": "avenue", - "image": "files/12_2622.jpg", - "audio": "files/12_2622.mp3", - "audioMeaning": "files/12_2622_meaning.mp3", - "audioExample": "files/12_2622_example.mp3", - "textMeaning": "An avenue is a road, often a large one with buildings on each side.", - "textExample": "Drive down this avenue and then turn left to get to the park.", - "transcription": "[ǽvənjùː]", - "__v": 0, - "textExampleTranslate": "Ехать по этой аллее, а затем повернуть налево, чтобы добраться до парка", - "textMeaningTranslate": "Проспект - это дорога, часто большая, со зданиями по бокам", - "wordTranslate": "проспект" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afee1" - }, - "group": 4, - "page": 11, - "word": "conflict", - "image": "files/12_2626.jpg", - "audio": "files/12_2626.mp3", - "audioMeaning": "files/12_2626_meaning.mp3", - "audioExample": "files/12_2626_example.mp3", - "textMeaning": "A conflict is a fight between different people or groups.", - "textExample": "The two nations had a conflict over which one could use the water in the river.", - "transcription": "[kɑ́nflikt]", - "__v": 0, - "textExampleTranslate": "У двух народов был конфликт, из-за которого можно было использовать воду в реке", - "textMeaningTranslate": "Конфликт - это борьба между разными людьми или группами", - "wordTranslate": "конфликт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afee2" - }, - "group": 4, - "page": 11, - "word": "continent", - "image": "files/12_2627.jpg", - "audio": "files/12_2627.mp3", - "audioMeaning": "files/12_2627_meaning.mp3", - "audioExample": "files/12_2627_example.mp3", - "textMeaning": "A continent is one of the seven large areas of land on the Earth.", - "textExample": "Asia is the largest continent.", - "transcription": "[kɑ́ntənənt]", - "__v": 0, - "textExampleTranslate": "Азия - самый большой континент", - "textMeaningTranslate": "Континент - это одна из семи больших областей земли на Земле", - "wordTranslate": "континент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afee3" - }, - "group": 4, - "page": 11, - "word": "current", - "image": "files/12_2628.jpg", - "audio": "files/12_2628.mp3", - "audioMeaning": "files/12_2628_meaning.mp3", - "audioExample": "files/12_2628_example.mp3", - "textMeaning": "A current is a steady and constant flow of air or water in a river or ocean.", - "textExample": "The ocean currents took the ship far off into the sea.", - "transcription": "[kə́ːrənt]", - "__v": 0, - "textExampleTranslate": "Океанские течения унесли корабль далеко в море", - "textMeaningTranslate": "Течение - это постоянный и постоянный поток воздуха или воды в реке или океане", - "wordTranslate": "текущий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afee4" - }, - "group": 4, - "page": 11, - "word": "disrespect", - "image": "files/12_2629.jpg", - "audio": "files/12_2629.mp3", - "audioMeaning": "files/12_2629_meaning.mp3", - "audioExample": "files/12_2629_example.mp3", - "textMeaning": "Disrespect is rudeness or behavior that shows a lack of respect.", - "textExample": "He showed disrespect by arguing with his boss during a meeting.", - "transcription": "[dìsrispékt]", - "__v": 0, - "textExampleTranslate": "Он проявил неуважение, поспорив со своим боссом во время встречи", - "textMeaningTranslate": "Неуважение - это грубость или поведение, которое свидетельствует о неуважении", - "wordTranslate": "неуважение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afee5" - }, - "group": 4, - "page": 11, - "word": "enthusiasm", - "image": "files/12_2630.jpg", - "audio": "files/12_2630.mp3", - "audioMeaning": "files/12_2630_meaning.mp3", - "audioExample": "files/12_2630_example.mp3", - "textMeaning": "Enthusiasm is a very strong good feeling about something.", - "textExample": "The crowd showed their enthusiasm for the soccer team by cheering loudly.", - "transcription": "[inθúːziӕzm]", - "__v": 0, - "textExampleTranslate": "Толпа продемонстрировала свой энтузиазм по поводу футбольной команды, громко подбадривая", - "textMeaningTranslate": "Энтузиазм - это очень сильное хорошее чувство о чем-то", - "wordTranslate": "энтузиазм" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afee6" - }, - "group": 4, - "page": 11, - "word": "harsh", - "image": "files/12_2631.jpg", - "audio": "files/12_2631.mp3", - "audioMeaning": "files/12_2631_meaning.mp3", - "audioExample": "files/12_2631_example.mp3", - "textMeaning": "When something is harsh, it is very unpleasant.", - "textExample": "The desert can be a very harsh environment.", - "transcription": "[haːrʃ]", - "__v": 0, - "textExampleTranslate": "Пустыня может быть очень суровой окружающей средой", - "textMeaningTranslate": "Когда что-то грубо, это очень неприятно", - "wordTranslate": "жесткий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afee7" - }, - "group": 4, - "page": 11, - "word": "lean", - "image": "files/12_2632.jpg", - "audio": "files/12_2632.mp3", - "audioMeaning": "files/12_2632_meaning.mp3", - "audioExample": "files/12_2632_example.mp3", - "textMeaning": "To lean is to bend in a particular direction.", - "textExample": "The woman leaned against the counter because she was tired.", - "transcription": "[liːn]", - "__v": 0, - "textExampleTranslate": "Женщина прислонилась к стойке, потому что устала", - "textMeaningTranslate": "Наклониться - значит согнуться в определенном направлении", - "wordTranslate": "худой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeea" - }, - "group": 4, - "page": 11, - "word": "muscle", - "image": "files/12_2635.jpg", - "audio": "files/12_2635.mp3", - "audioMeaning": "files/12_2635_meaning.mp3", - "audioExample": "files/12_2635_example.mp3", - "textMeaning": "Muscle is a mass of tissue attached to bone that helps you move.", - "textExample": "She went to the gym in order to make her muscles stronger.", - "transcription": "[mʌ́səl]", - "__v": 0, - "textExampleTranslate": "Она пошла в спортзал, чтобы сделать ее мышцы сильнее", - "textMeaningTranslate": "Мышца - это масса ткани, прикрепленная к кости, которая помогает вам двигаться", - "wordTranslate": "мышцы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afee8" - }, - "group": 4, - "page": 11, - "word": "meantime", - "image": "files/12_2633.jpg", - "audio": "files/12_2633.mp3", - "audioMeaning": "files/12_2633_meaning.mp3", - "audioExample": "files/12_2633_example.mp3", - "textMeaning": "The meantime is the time between two events.", - "textExample": "Ted began setting the table. In the meantime, I began preparing the food.", - "transcription": "[míːntàim]", - "__v": 0, - "textExampleTranslate": "Тед начал накрывать на стол. Тем временем я начал готовить еду", - "textMeaningTranslate": "Между тем время между двумя событиями", - "wordTranslate": "то время" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afee9" - }, - "group": 4, - "page": 11, - "word": "mischief", - "image": "files/12_2634.jpg", - "audio": "files/12_2634.mp3", - "audioMeaning": "files/12_2634_meaning.mp3", - "audioExample": "files/12_2634_example.mp3", - "textMeaning": "Mischief is behavior that is meant to trick or cause trouble for people.", - "textExample": "Ben was up to mischief when he persuaded Ken to paint his face.", - "transcription": "[místʃif]", - "__v": 0, - "textExampleTranslate": "Бен был в беде, когда убедил Кена нарисовать лицо", - "textMeaningTranslate": "Беда - это поведение, которое предназначено, чтобы обмануть или причинить людям неприятности", - "wordTranslate": "зло" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeeb" - }, - "group": 4, - "page": 11, - "word": "rescue", - "image": "files/12_2636.jpg", - "audio": "files/12_2636.mp3", - "audioMeaning": "files/12_2636_meaning.mp3", - "audioExample": "files/12_2636_example.mp3", - "textMeaning": "To rescue someone means to remove them from danger.", - "textExample": "The firefighter rescued the man from the burning building.", - "transcription": "[réskjuː]", - "__v": 0, - "textExampleTranslate": "Пожарный спас человека из горящего здания", - "textMeaningTranslate": "Спасти кого-то - значит вывести его из опасности", - "wordTranslate": "спасение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeec" - }, - "group": 4, - "page": 11, - "word": "succession", - "image": "files/12_2637.jpg", - "audio": "files/12_2637.mp3", - "audioMeaning": "files/12_2637_meaning.mp3", - "audioExample": "files/12_2637_example.mp3", - "textMeaning": "A succession is a number of things that follow one after the other.", - "textExample": "The student said the letters of the alphabet in succession.", - "transcription": "[səkséʃən]", - "__v": 0, - "textExampleTranslate": "Студент сказал буквы алфавита подряд", - "textMeaningTranslate": "Правопреемство - это ряд вещей, которые следуют одна за другой", - "wordTranslate": "преемственность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeed" - }, - "group": 4, - "page": 11, - "word": "timid", - "image": "files/12_2639.jpg", - "audio": "files/12_2639.mp3", - "audioMeaning": "files/12_2639_meaning.mp3", - "audioExample": "files/12_2639_example.mp3", - "textMeaning": "If someone is timid, they are afraid, shy, or nervous.", - "textExample": "The timid child hides behind her mother whenever she sees a stranger.", - "transcription": "[tímid]", - "__v": 0, - "textExampleTranslate": "Робкий ребенок прячется за своей матерью всякий раз, когда она видит незнакомца", - "textMeaningTranslate": "Если кто-то робкий, он боится, застенчив или нервничает", - "wordTranslate": "робкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeef" - }, - "group": 4, - "page": 11, - "word": "violence", - "image": "files/12_2640.jpg", - "audio": "files/12_2640.mp3", - "audioMeaning": "files/12_2640_meaning.mp3", - "audioExample": "files/12_2640_example.mp3", - "textMeaning": "Violence is forceful action that is meant to injure or kill people.", - "textExample": "The boy hit his brother in an act of violence.", - "transcription": "[váiələns]", - "__v": 0, - "textExampleTranslate": "Мальчик ударил своего брата в акте насилия", - "textMeaningTranslate": "Насилие - это насильственное действие, которое предназначено для того, чтобы ранить или убивать людей", - "wordTranslate": "насилие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeee" - }, - "group": 4, - "page": 11, - "word": "terrain", - "image": "files/12_2638.jpg", - "audio": "files/12_2638.mp3", - "audioMeaning": "files/12_2638_meaning.mp3", - "audioExample": "files/12_2638_example.mp3", - "textMeaning": "The terrain is the land and all of its physical features or parts.", - "textExample": "The terrain below was rocky and full of hills.", - "transcription": "[təréin]", - "__v": 0, - "textExampleTranslate": "Рельеф внизу был каменистым и полным холмов", - "textMeaningTranslate": "Местность - это земля и все ее физические особенности или части", - "wordTranslate": "ландшафт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afef0" - }, - "group": 4, - "page": 12, - "word": "affect", - "image": "files/13_2641.jpg", - "audio": "files/13_2641.mp3", - "audioMeaning": "files/13_2641_meaning.mp3", - "audioExample": "files/13_2641_example.mp3", - "textMeaning": "To affect someone or something is to have an influence over them.", - "textExample": "The student’s poor attitude affected the other students in the class.", - "transcription": "[əfékt]", - "__v": 0, - "textExampleTranslate": "Плохое отношение ученика сказалось на других учениках в классе", - "textMeaningTranslate": "Влиять на кого-то или что-то значит влиять на них", - "wordTranslate": "аффект" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afef1" - }, - "group": 4, - "page": 12, - "word": "autograph", - "image": "files/13_2642.jpg", - "audio": "files/13_2642.mp3", - "audioMeaning": "files/13_2642_meaning.mp3", - "audioExample": "files/13_2642_example.mp3", - "textMeaning": "An autograph is the written name of a famous person.", - "textExample": "Everybody wanted the movie star’s autograph.", - "transcription": "[ɔ́ːtəgræ̀f]", - "__v": 0, - "textExampleTranslate": "Все хотели автограф кинозвезды", - "textMeaningTranslate": "Автограф - это написанное имя известного человека", - "wordTranslate": "автограф" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afef2" - }, - "group": 4, - "page": 12, - "word": "bead", - "image": "files/13_2643.jpg", - "audio": "files/13_2643.mp3", - "audioMeaning": "files/13_2643_meaning.mp3", - "audioExample": "files/13_2643_example.mp3", - "textMeaning": "A bead is a drop of liquid.", - "textExample": "Beads of water collected on the outside of the glass.", - "transcription": "[biːd]", - "__v": 0, - "textExampleTranslate": "Капли воды, собранные на внешней стороне стекла", - "textMeaningTranslate": "Бусинка - это капля жидкости", - "wordTranslate": "шарик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afef3" - }, - "group": 4, - "page": 12, - "word": "brew", - "image": "files/13_2644.jpg", - "audio": "files/13_2644.mp3", - "audioMeaning": "files/13_2644_meaning.mp3", - "audioExample": "files/13_2644_example.mp3", - "textMeaning": "To brew coffee or tea means to pour hot water over it.", - "textExample": "Please brew a fresh pot of coffee.", - "transcription": "[bruː]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, заварите свежий горшок кофе", - "textMeaningTranslate": "Заваривать кофе или чай - значит поливать их горячей водой", - "wordTranslate": "заварить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afef4" - }, - "group": 4, - "page": 12, - "word": "charm", - "image": "files/13_2645.jpg", - "audio": "files/13_2645.mp3", - "audioMeaning": "files/13_2645_meaning.mp3", - "audioExample": "files/13_2645_example.mp3", - "textMeaning": "To charm someone is to please them with your personality.", - "textExample": "Gail charmed everyone with her humorous stories.", - "transcription": "[ʧaːrm]", - "__v": 0, - "textExampleTranslate": "Гейл очаровала всех своими юмористическими историями", - "textMeaningTranslate": "Обаять кого-то - значит порадовать его своей индивидуальностью", - "wordTranslate": "очарование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afef5" - }, - "group": 4, - "page": 12, - "word": "destiny", - "image": "files/13_2646.jpg", - "audio": "files/13_2646.mp3", - "audioMeaning": "files/13_2646_meaning.mp3", - "audioExample": "files/13_2646_example.mp3", - "textMeaning": "A destiny is all the things that happen or will happen to a person in their life.", - "textExample": "It was his destiny to become a great singer.", - "transcription": "[déstəni]", - "__v": 0, - "textExampleTranslate": "Это была его судьба - стать великим певцом", - "textMeaningTranslate": "Судьба - это все, что случается или случится с человеком в его жизни", - "wordTranslate": "судьба" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afef6" - }, - "group": 4, - "page": 12, - "word": "equipment", - "image": "files/13_2647.jpg", - "audio": "files/13_2647.mp3", - "audioMeaning": "files/13_2647_meaning.mp3", - "audioExample": "files/13_2647_example.mp3", - "textMeaning": "Equipment consists of the things which are used for a specific purpose.", - "textExample": "The factory produces a wide range of high-tech equipment.", - "transcription": "[ikwípmənt]", - "__v": 0, - "textExampleTranslate": "Завод производит широкий спектр высокотехнологичного оборудования", - "textMeaningTranslate": "Оборудование состоит из вещей, которые используются для определенной цели", - "wordTranslate": "оборудование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afef7" - }, - "group": 4, - "page": 12, - "word": "horn", - "image": "files/13_2648.jpg", - "audio": "files/13_2648.mp3", - "audioMeaning": "files/13_2648_meaning.mp3", - "audioExample": "files/13_2648_example.mp3", - "textMeaning": "A horn is a device that makes a loud noise.", - "textExample": "The boy honked his horn as he rode his bicycle past the house.", - "transcription": "[hɔːrn]", - "__v": 0, - "textExampleTranslate": "Мальчик гудел, когда ехал на велосипеде мимо дома", - "textMeaningTranslate": "Рог - это устройство, которое издает громкий шум", - "wordTranslate": "рог" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afef8" - }, - "group": 4, - "page": 12, - "word": "irritable", - "image": "files/13_2649.jpg", - "audio": "files/13_2649.mp3", - "audioMeaning": "files/13_2649_meaning.mp3", - "audioExample": "files/13_2649_example.mp3", - "textMeaning": "When someone is irritable, they become annoyed or angry very easily.", - "textExample": "She is irritable when she doesn’t get enough sleep.", - "transcription": "[írətəbl]", - "__v": 0, - "textExampleTranslate": "Она раздражительна, когда не высыпается", - "textMeaningTranslate": "Когда кто-то раздражителен, он очень легко раздражается или злится", - "wordTranslate": "раздраженный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afef9" - }, - "group": 4, - "page": 12, - "word": "lag", - "image": "files/13_2650.jpg", - "audio": "files/13_2650.mp3", - "audioMeaning": "files/13_2650_meaning.mp3", - "audioExample": "files/13_2650_example.mp3", - "textMeaning": "To lag behind is to move slowly behind other moving objects.", - "textExample": "The girl on rollerblades lagged behind the little girl on the bicycle.", - "transcription": "[læg]", - "__v": 0, - "textExampleTranslate": "Девушка на роликах отстала от маленькой девочки на велосипеде", - "textMeaningTranslate": "Отстать - значит медленно двигаться за другими движущимися объектами", - "wordTranslate": "лаг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afefa" - }, - "group": 4, - "page": 12, - "word": "nightmare", - "image": "files/13_2651.jpg", - "audio": "files/13_2651.mp3", - "audioMeaning": "files/13_2651_meaning.mp3", - "audioExample": "files/13_2651_example.mp3", - "textMeaning": "A nightmare is a bad or scary dream.", - "textExample": "The girl was scared to go back to sleep because she had had a nightmare.", - "transcription": "[náitmεər]", - "__v": 0, - "textExampleTranslate": "Девушке было страшно снова спать, потому что ей снился кошмар", - "textMeaningTranslate": "Кошмар - плохой или страшный сон", - "wordTranslate": "кошмарный сон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afefb" - }, - "group": 4, - "page": 12, - "word": "nutritious", - "image": "files/13_2652.jpg", - "audio": "files/13_2652.mp3", - "audioMeaning": "files/13_2652_meaning.mp3", - "audioExample": "files/13_2652_example.mp3", - "textMeaning": "When something is nutritious, it helps the body stay healthy.", - "textExample": "Mangoes are one of the most nutritious fruits in the world.", - "transcription": "[njuːtríʃəs]", - "__v": 0, - "textExampleTranslate": "Манго - один из самых питательных фруктов в мире", - "textMeaningTranslate": "Когда что-то питательное, это помогает организму оставаться здоровым", - "wordTranslate": "питательный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afefc" - }, - "group": 4, - "page": 12, - "word": "protein", - "image": "files/13_2653.jpg", - "audio": "files/13_2653.mp3", - "audioMeaning": "files/13_2653_meaning.mp3", - "audioExample": "files/13_2653_example.mp3", - "textMeaning": "Protein is a substance that is necessary for the body to grow and be strong.", - "textExample": "Fish and beef are good sources of protein.", - "transcription": "[próutiːn]", - "__v": 0, - "textExampleTranslate": "Рыба и говядина - хорошие источники белка", - "textMeaningTranslate": "Белок - это вещество, необходимое для роста и укрепления организма", - "wordTranslate": "белок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afefd" - }, - "group": 4, - "page": 12, - "word": "signature", - "image": "files/13_2654.jpg", - "audio": "files/13_2654.mp3", - "audioMeaning": "files/13_2654_meaning.mp3", - "audioExample": "files/13_2654_example.mp3", - "textMeaning": "A signature is your name, when you write it in your own way.", - "textExample": "I put my signature at the end of the letter.", - "transcription": "[sígnətʃər]", - "__v": 0, - "textExampleTranslate": "Я поставил свою подпись в конце письма", - "textMeaningTranslate": "Подпись - это ваше имя, когда вы пишете по-своему", - "wordTranslate": "подпись" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afefe" - }, - "group": 4, - "page": 12, - "word": "stuff", - "image": "files/13_2655.jpg", - "audio": "files/13_2655.mp3", - "audioMeaning": "files/13_2655_meaning.mp3", - "audioExample": "files/13_2655_example.mp3", - "textMeaning": "Stuff is a word used to refer to things without mentioning the things by name.", - "textExample": "We gave a lot of stuff to the charity.", - "transcription": "[stʌf]", - "__v": 0, - "textExampleTranslate": "Мы много чего дарили на благотворительность", - "textMeaningTranslate": "Материал - это слово, используемое для обозначения вещей без упоминания вещей по имени", - "wordTranslate": "материал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afeff" - }, - "group": 4, - "page": 12, - "word": "subconscious", - "image": "files/13_2656.jpg", - "audio": "files/13_2656.mp3", - "audioMeaning": "files/13_2656_meaning.mp3", - "audioExample": "files/13_2656_example.mp3", - "textMeaning": "When something is subconscious, it is done without thinking about it.", - "textExample": "Breathing is one of the subconscious things that the body does.", - "transcription": "[sʌbkɑ́nʃəs]", - "__v": 0, - "textExampleTranslate": "Дыхание - это одна из подсознательных вещей, которые делает тело", - "textMeaningTranslate": "Когда что-то подсознательно, это делается, не задумываясь об этом", - "wordTranslate": "подсознание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff00" - }, - "group": 4, - "page": 12, - "word": "van", - "image": "files/13_2657.jpg", - "audio": "files/13_2657.mp3", - "audioMeaning": "files/13_2657_meaning.mp3", - "audioExample": "files/13_2657_example.mp3", - "textMeaning": "A van is a vehicle that is used for carrying things. It is smaller than a truck.", - "textExample": "The delivery company uses large vans to deliver packages.", - "transcription": "[væn]", - "__v": 0, - "textExampleTranslate": "Компания доставки использует большие фургоны для доставки посылок", - "textMeaningTranslate": "Фургон - это транспортное средство, которое используется для перевозки вещей. Он меньше грузовика", - "wordTranslate": "ван" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff01" - }, - "group": 4, - "page": 12, - "word": "warn", - "image": "files/13_2658.jpg", - "audio": "files/13_2658.mp3", - "audioMeaning": "files/13_2658_meaning.mp3", - "audioExample": "files/13_2658_example.mp3", - "textMeaning": "To warn someone is to make them know of possible danger in the future.", - "textExample": "The lifeguard warned people to stay away from the rough ocean.", - "transcription": "[wɔːrn]", - "__v": 0, - "textExampleTranslate": "Спасатель предупредил людей держаться подальше от бурного океана", - "textMeaningTranslate": "Предупредить кого-либо - это дать ему понять о возможной опасности в будущем", - "wordTranslate": "предупредить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff02" - }, - "group": 4, - "page": 12, - "word": "workout", - "image": "files/13_2659.jpg", - "audio": "files/13_2659.mp3", - "audioMeaning": "files/13_2659_meaning.mp3", - "audioExample": "files/13_2659_example.mp3", - "textMeaning": "A workout is an exercise routine that helps improve health.", - "textExample": "She doesn’t do her workout on the weekends.", - "transcription": "[wə́ːrkàut]", - "__v": 0, - "textExampleTranslate": "Она не занимается спортом по выходным", - "textMeaningTranslate": "Тренировка - это упражнение, которое помогает улучшить здоровье", - "wordTranslate": "разрабатывать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff03" - }, - "group": 4, - "page": 12, - "word": "zoom", - "image": "files/13_2660.jpg", - "audio": "files/13_2660.mp3", - "audioMeaning": "files/13_2660_meaning.mp3", - "audioExample": "files/13_2660_example.mp3", - "textMeaning": "To zoom is to move quickly.", - "textExample": "The cars zoomed along the road.", - "transcription": "[zuːm]", - "__v": 0, - "textExampleTranslate": "Машины проезжали по дороге", - "textMeaningTranslate": "Увеличить - значит двигаться быстро", - "wordTranslate": "увеличить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff04" - }, - "group": 4, - "page": 13, - "word": "brick", - "image": "files/14_2661.jpg", - "audio": "files/14_2661.mp3", - "audioMeaning": "files/14_2661_meaning.mp3", - "audioExample": "files/14_2661_example.mp3", - "textMeaning": "A brick is a block of hard clay that is used for building things, such as walls.", - "textExample": "There were several bricks scattered on the ground.", - "transcription": "[brik]", - "__v": 0, - "textExampleTranslate": "На земле было разбросано несколько кирпичей", - "textMeaningTranslate": "Кирпич - это блок из твердой глины, который используется для строительства таких вещей, как стены", - "wordTranslate": "кирпич" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff05" - }, - "group": 4, - "page": 13, - "word": "crumble", - "image": "files/14_2662.jpg", - "audio": "files/14_2662.mp3", - "audioMeaning": "files/14_2662_meaning.mp3", - "audioExample": "files/14_2662_example.mp3", - "textMeaning": "To crumble means to break or fall apart into small pieces.", - "textExample": "The old house’s walls crumbled into a pile of rock and wood.", - "transcription": "[krʌ́mbl]", - "__v": 0, - "textExampleTranslate": "Стены старого дома рассыпались на груду камней и дерева", - "textMeaningTranslate": "Разрушить означает разбить или развалиться на мелкие кусочки", - "wordTranslate": "покрошить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff06" - }, - "group": 4, - "page": 13, - "word": "dough", - "image": "files/14_2663.jpg", - "audio": "files/14_2663.mp3", - "audioMeaning": "files/14_2663_meaning.mp3", - "audioExample": "files/14_2663_example.mp3", - "textMeaning": "Dough is a mixture of four and water that becomes bread when baked.", - "textExample": "I made heart-shaped cookies from the dough.", - "transcription": "[dou]", - "__v": 0, - "textExampleTranslate": "Я сделал печенье в форме сердца из теста", - "textMeaningTranslate": "Тесто представляет собой смесь из четырех и воды, которая превращается в хлеб при выпечке", - "wordTranslate": "тесто" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff07" - }, - "group": 4, - "page": 13, - "word": "express", - "image": "files/14_2664.jpg", - "audio": "files/14_2664.mp3", - "audioMeaning": "files/14_2664_meaning.mp3", - "audioExample": "files/14_2664_example.mp3", - "textMeaning": "To express a feeling or idea means to show others how one thinks or feels.", - "textExample": "The nurse expressed her sympathy for the sick patient.", - "transcription": "[iksprés]", - "__v": 0, - "textExampleTranslate": "Медсестра выразила сочувствие больному пациенту", - "textMeaningTranslate": "Выразить чувство или идею - значит показать другим, как человек думает или чувствует", - "wordTranslate": "экспресс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff08" - }, - "group": 4, - "page": 13, - "word": "fist", - "image": "files/14_2665.jpg", - "audio": "files/14_2665.mp3", - "audioMeaning": "files/14_2665_meaning.mp3", - "audioExample": "files/14_2665_example.mp3", - "textMeaning": "A fist is a hand with fingers bent in toward the palm.", - "textExample": "The bully made a fist and threatened to hit the small boy.", - "transcription": "[físt]", - "__v": 0, - "textExampleTranslate": "Хулиган сжал кулак и пригрозил ударить маленького мальчика", - "textMeaningTranslate": "Кулак - это рука с пальцами, согнутыми к ладони", - "wordTranslate": "кулак" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff09" - }, - "group": 4, - "page": 13, - "word": "flexible", - "image": "files/14_2666.jpg", - "audio": "files/14_2666.mp3", - "audioMeaning": "files/14_2666_meaning.mp3", - "audioExample": "files/14_2666_example.mp3", - "textMeaning": "If something is flexible, then it can bend easily without breaking.", - "textExample": "The tree branch was so flexible it could be bent into a circle and not break.", - "transcription": "[fléksəbəl]", - "__v": 0, - "textExampleTranslate": "Ветвь дерева была настолько гибкой, что ее можно было согнуть в круг и не сломать", - "textMeaningTranslate": "Если что-то гибкое, то оно может легко сгибаться, не ломаясь", - "wordTranslate": "гибкий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff0a" - }, - "group": 4, - "page": 13, - "word": "flush", - "image": "files/14_2667.jpg", - "audio": "files/14_2667.mp3", - "audioMeaning": "files/14_2667_meaning.mp3", - "audioExample": "files/14_2667_example.mp3", - "textMeaning": "To flush means the face becomes red due to heat, illness, or emotion.", - "textExample": "After the long race, the runner’s face was flushed.", - "transcription": "[flʌʃ]", - "__v": 0, - "textExampleTranslate": "После долгой гонки лицо бегуна вспыхнуло", - "textMeaningTranslate": "Промыть означает, что лицо становится красным из-за жары, болезни или эмоций", - "wordTranslate": "промывать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff0b" - }, - "group": 4, - "page": 13, - "word": "injure", - "image": "files/14_2668.jpg", - "audio": "files/14_2668.mp3", - "audioMeaning": "files/14_2668_meaning.mp3", - "audioExample": "files/14_2668_example.mp3", - "textMeaning": "To injure someone means to damage a part of their body.", - "textExample": "The car crash injured two people.", - "transcription": "[índʒər]", - "__v": 0, - "textExampleTranslate": "В автокатастрофе пострадали два человека", - "textMeaningTranslate": "Ранить кого-либо - значит повредить часть его тела", - "wordTranslate": "травмировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff0c" - }, - "group": 4, - "page": 13, - "word": "lump", - "image": "files/14_2669.jpg", - "audio": "files/14_2669.mp3", - "audioMeaning": "files/14_2669_meaning.mp3", - "audioExample": "files/14_2669_example.mp3", - "textMeaning": "A lump is a small piece of something that is solid.", - "textExample": "The artist took a lump of clay and turned it into a beautiful pot.", - "transcription": "[lʌmp]", - "__v": 0, - "textExampleTranslate": "Художник взял кусок глины и превратил его в красивый горшок", - "textMeaningTranslate": "Комок это маленький кусочек чего-то твердого", - "wordTranslate": "комок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff0d" - }, - "group": 4, - "page": 13, - "word": "mixture", - "image": "files/14_2670.jpg", - "audio": "files/14_2670.mp3", - "audioMeaning": "files/14_2670_meaning.mp3", - "audioExample": "files/14_2670_example.mp3", - "textMeaning": "A mixture is something that is made by mixing other things together.", - "textExample": "The walls were built using a mixture of water, rock, and dirt.", - "transcription": "[míkstʃəːr]", - "__v": 0, - "textExampleTranslate": "Стены были построены с использованием смеси воды, камня и грязи", - "textMeaningTranslate": "Смесь - это то, что получается смешиванием других вещей", - "wordTranslate": "смесь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff0e" - }, - "group": 4, - "page": 13, - "word": "reconcile", - "image": "files/14_2671.jpg", - "audio": "files/14_2671.mp3", - "audioMeaning": "files/14_2671_meaning.mp3", - "audioExample": "files/14_2671_example.mp3", - "textMeaning": "To reconcile means to return to a friendly relationship.", - "textExample": "After arguing, the two friends were reconciled with each other.", - "transcription": "[rékənsàil]", - "__v": 0, - "textExampleTranslate": "После ссоры двое друзей помирились друг с другом", - "textMeaningTranslate": "Примирить - значит вернуться к дружеским отношениям", - "wordTranslate": "примириться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff0f" - }, - "group": 4, - "page": 13, - "word": "ruin", - "image": "files/14_2672.jpg", - "audio": "files/14_2672.mp3", - "audioMeaning": "files/14_2672_meaning.mp3", - "audioExample": "files/14_2672_example.mp3", - "textMeaning": "To ruin something means to harm or damage it greatly.", - "textExample": "Our walk in the park was ruined by the sudden rain.", - "transcription": "[rúːin]", - "__v": 0, - "textExampleTranslate": "Наша прогулка в парке была разрушена внезапным дождем", - "textMeaningTranslate": "Разрушить что-то - значит навредить или сильно повредить", - "wordTranslate": "разруха" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff10" - }, - "group": 4, - "page": 13, - "word": "shatter", - "image": "files/14_2673.jpg", - "audio": "files/14_2673.mp3", - "audioMeaning": "files/14_2673_meaning.mp3", - "audioExample": "files/14_2673_example.mp3", - "textMeaning": "To shatter something means to break it suddenly into many tiny pieces.", - "textExample": "When the ball hit the window, the glass shattered.", - "transcription": "[ʃǽtər]", - "__v": 0, - "textExampleTranslate": "Когда мяч попал в окно, стекло разбилось", - "textMeaningTranslate": "Разбить что-то значит разбить это внезапно на множество крошечных кусочков", - "wordTranslate": "разбиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff11" - }, - "group": 4, - "page": 13, - "word": "shutter", - "image": "files/14_2674.jpg", - "audio": "files/14_2674.mp3", - "audioMeaning": "files/14_2674_meaning.mp3", - "audioExample": "files/14_2674_example.mp3", - "textMeaning": "Shutters are wooden or metal covers in front of a window.", - "textExample": "Mr. Smith closed the shutters every night to make his bedroom dark.", - "transcription": "[ʃʌ́təːr]", - "__v": 0, - "textExampleTranslate": "Мистер Смит закрывал ставни каждую ночь, чтобы в его спальне было темно", - "textMeaningTranslate": "Ставни деревянные или металлические крышки перед окном", - "wordTranslate": "затвор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff12" - }, - "group": 4, - "page": 13, - "word": "slight", - "image": "files/14_2676.jpg", - "audio": "files/14_2676.mp3", - "audioMeaning": "files/14_2676_meaning.mp3", - "audioExample": "files/14_2676_example.mp3", - "textMeaning": "If something is slight, then it is small or minor.", - "textExample": "There was only a slight change in the little boy’s height.", - "transcription": "[slait]", - "__v": 0, - "textExampleTranslate": "Произошло лишь небольшое изменение роста маленького мальчика", - "textMeaningTranslate": "Если что-то незначительное, то оно маленькое или незначительное", - "wordTranslate": "легкое" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff13" - }, - "group": 4, - "page": 13, - "word": "sift", - "image": "files/14_2675.jpg", - "audio": "files/14_2675.mp3", - "audioMeaning": "files/14_2675_meaning.mp3", - "audioExample": "files/14_2675_example.mp3", - "textMeaning": "To sift something means to remove all the large pieces.", - "textExample": "The baker sifted the four into a large bowl.", - "transcription": "[sift]", - "__v": 0, - "textExampleTranslate": "Пекарь просеял четверых в большую миску", - "textMeaningTranslate": "Просеять что-то означает удалить все большие куски", - "wordTranslate": "просеять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff14" - }, - "group": 4, - "page": 13, - "word": "sparkle", - "image": "files/14_2677.jpg", - "audio": "files/14_2677.mp3", - "audioMeaning": "files/14_2677_meaning.mp3", - "audioExample": "files/14_2677_example.mp3", - "textMeaning": "To sparkle means to shine brightly with quick fashes of light.", - "textExample": "The stars sparkled in the winter night’s sky.", - "transcription": "[spɑ́ːrkəl]", - "__v": 0, - "textExampleTranslate": "Звезды сверкали в небе зимней ночи", - "textMeaningTranslate": "Блистать - значит ярко сиять быстрыми вспышками света", - "wordTranslate": "искорка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff15" - }, - "group": 4, - "page": 13, - "word": "sprinkle", - "image": "files/14_2678.jpg", - "audio": "files/14_2678.mp3", - "audioMeaning": "files/14_2678_meaning.mp3", - "audioExample": "files/14_2678_example.mp3", - "textMeaning": "To sprinkle means to scatter something all over something else.", - "textExample": "He sprinkled the pasta with salt and black pepper.", - "transcription": "[spríŋkəl]", - "__v": 0, - "textExampleTranslate": "Он посыпал макароны солью и черным перцем", - "textMeaningTranslate": "Посыпать - значит разбросать что-то по всему другому", - "wordTranslate": "посыпать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff16" - }, - "group": 4, - "page": 13, - "word": "stale", - "image": "files/14_2679.jpg", - "audio": "files/14_2679.mp3", - "audioMeaning": "files/14_2679_meaning.mp3", - "audioExample": "files/14_2679_example.mp3", - "textMeaning": "If food is stale, then it is not fresh but dry, hard, and not good to eat.", - "textExample": "The cookies sat on the table so long that they became stale.", - "transcription": "[steil]", - "__v": 0, - "textExampleTranslate": "Печенье сидело на столе так долго, что стало несвежим", - "textMeaningTranslate": "Если еда несвежая, то она не свежая, а сухая, твердая и не очень вкусная", - "wordTranslate": "черствый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff17" - }, - "group": 4, - "page": 13, - "word": "utter", - "image": "files/14_2680.jpg", - "audio": "files/14_2680.mp3", - "audioMeaning": "files/14_2680_meaning.mp3", - "audioExample": "files/14_2680_example.mp3", - "textMeaning": "To utter a word or a sound means to say it.", - "textExample": "The lost boy was so scared that he could barely utter a single word.", - "transcription": "[ʌ́tər]", - "__v": 0, - "textExampleTranslate": "Потерянный мальчик был так напуган, что едва мог произнести ни слова", - "textMeaningTranslate": "Произнести слово или звук - значит сказать это", - "wordTranslate": "выговорить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff18" - }, - "group": 4, - "page": 14, - "word": "although", - "image": "files/15_2681.jpg", - "audio": "files/15_2681.mp3", - "audioMeaning": "files/15_2681_meaning.mp3", - "audioExample": "files/15_2681_example.mp3", - "textMeaning": "You use although to say that one thing is contrasted by another.", - "textExample": "Although she was late, her friends gave her a warm welcome.", - "transcription": "[ɔːlðóu]", - "__v": 0, - "textExampleTranslate": "Хотя она опоздала, ее друзья оказали ей теплый прием", - "textMeaningTranslate": "Хотя вы говорите, что одно противопоставлено другому", - "wordTranslate": "хотя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff19" - }, - "group": 4, - "page": 14, - "word": "apply", - "image": "files/15_2682.jpg", - "audio": "files/15_2682.mp3", - "audioMeaning": "files/15_2682_meaning.mp3", - "audioExample": "files/15_2682_example.mp3", - "textMeaning": "To apply something means to put it on.", - "textExample": "She always applies makeup to her face before going outside.", - "transcription": "[əplái]", - "__v": 0, - "textExampleTranslate": "Она всегда наносит макияж на лицо перед выходом на улицу", - "textMeaningTranslate": "Применять что-то означает надевать это", - "wordTranslate": "применять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff1a" - }, - "group": 4, - "page": 14, - "word": "await", - "image": "files/15_2683.jpg", - "audio": "files/15_2683.mp3", - "audioMeaning": "files/15_2683_meaning.mp3", - "audioExample": "files/15_2683_example.mp3", - "textMeaning": "To await something means to wait for it.", - "textExample": "The players awaited the referee’s decision.", - "transcription": "[əwéit]", - "__v": 0, - "textExampleTranslate": "Игроки ждали решения судьи", - "textMeaningTranslate": "Ждать чего-то - значит ждать этого", - "wordTranslate": "ждите" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff1b" - }, - "group": 4, - "page": 14, - "word": "climate", - "image": "files/15_2685.jpg", - "audio": "files/15_2685.mp3", - "audioMeaning": "files/15_2685_meaning.mp3", - "audioExample": "files/15_2685_example.mp3", - "textMeaning": "A climate is the usual weather in a place.", - "textExample": "The climate in the desert is very hot.", - "transcription": "[kláimit]", - "__v": 0, - "textExampleTranslate": "Климат в пустыне очень жаркий", - "textMeaningTranslate": "Климат - это обычная погода на месте", - "wordTranslate": "климат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff1c" - }, - "group": 4, - "page": 14, - "word": "due", - "image": "files/15_2688.jpg", - "audio": "files/15_2688.mp3", - "audioMeaning": "files/15_2688_meaning.mp3", - "audioExample": "files/15_2688_example.mp3", - "textMeaning": "When something is due, it is expected to happen or be done at that time.", - "textExample": "The papers were due on the 19th.", - "transcription": "[djuː]", - "__v": 0, - "textExampleTranslate": "Бумаги должны были быть 19-го", - "textMeaningTranslate": "Когда что-то должно быть, ожидается, что это произойдет или будет сделано в то время", - "wordTranslate": "в связи" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff1d" - }, - "group": 4, - "page": 14, - "word": "confuse", - "image": "files/15_2687.jpg", - "audio": "files/15_2687.mp3", - "audioMeaning": "files/15_2687_meaning.mp3", - "audioExample": "files/15_2687_example.mp3", - "textMeaning": "To confuse someone means to make them feel like they are unsure.", - "textExample": "The sign confused the traveler because it pointed in two directions.", - "transcription": "[kənfjúːz]", - "__v": 0, - "textExampleTranslate": "Знак смутил путешественника, потому что он указывал в двух направлениях", - "textMeaningTranslate": "Путать кого-то - значит заставить его чувствовать, что он не уверен", - "wordTranslate": "запутывать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff1e" - }, - "group": 4, - "page": 14, - "word": "complain", - "image": "files/15_2686.jpg", - "audio": "files/15_2686.mp3", - "audioMeaning": "files/15_2686_meaning.mp3", - "audioExample": "files/15_2686_example.mp3", - "textMeaning": "When you complain, you say that you are unhappy about something.", - "textExample": "The workers complained that they were being treated unfairly.", - "transcription": "[kəmpléin]", - "__v": 0, - "textExampleTranslate": "Рабочие жаловались на несправедливое обращение с ними", - "textMeaningTranslate": "Когда вы жалуетесь, вы говорите, что вы чем-то недовольны", - "wordTranslate": "пожаловаться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff1f" - }, - "group": 4, - "page": 14, - "word": "beloved", - "image": "files/15_2684.jpg", - "audio": "files/15_2684.mp3", - "audioMeaning": "files/15_2684_meaning.mp3", - "audioExample": "files/15_2684_example.mp3", - "textMeaning": "When something is beloved, it is very special and you like it very much.", - "textExample": "The boy took a nap next to his beloved cat.", - "transcription": "[bilʌ́vid]", - "__v": 0, - "textExampleTranslate": "Мальчик вздремнул рядом со своим любимым котом", - "textMeaningTranslate": "Когда что-то любимое, это очень особенное, и тебе это очень нравится", - "wordTranslate": "любимый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff20" - }, - "group": 4, - "page": 14, - "word": "establish", - "image": "files/15_2689.jpg", - "audio": "files/15_2689.mp3", - "audioMeaning": "files/15_2689_meaning.mp3", - "audioExample": "files/15_2689_example.mp3", - "textMeaning": "To establish something means to create it.", - "textExample": "He wanted to establish a club for people to help the Earth.", - "transcription": "[istǽbliʃ]", - "__v": 0, - "textExampleTranslate": "Он хотел создать клуб для людей, чтобы помочь Земле", - "textMeaningTranslate": "Установить что-то значит создать", - "wordTranslate": "установить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff21" - }, - "group": 4, - "page": 14, - "word": "leash", - "image": "files/15_2691.jpg", - "audio": "files/15_2691.mp3", - "audioMeaning": "files/15_2691_meaning.mp3", - "audioExample": "files/15_2691_example.mp3", - "textMeaning": "A leash is a rope or chain that is used to lead an animal.", - "textExample": "Dogs must wear a leash to keep them from running away.", - "transcription": "[liːʃ]", - "__v": 0, - "textExampleTranslate": "Собаки должны носить поводок, чтобы они не убегали", - "textMeaningTranslate": "Поводок - это веревка или цепь, которая используется, чтобы вести животное", - "wordTranslate": "поводок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff22" - }, - "group": 4, - "page": 14, - "word": "mature", - "image": "files/15_2692.jpg", - "audio": "files/15_2692.mp3", - "audioMeaning": "files/15_2692_meaning.mp3", - "audioExample": "files/15_2692_example.mp3", - "textMeaning": "To mature means to grow up to become an adult.", - "textExample": "When they matured, they became as tall as their parents.", - "transcription": "[mətjúəːr]", - "__v": 0, - "textExampleTranslate": "Когда они повзрослели, они стали такими же высокими, как их родители", - "textMeaningTranslate": "Зрелость означает взрослеть, чтобы стать взрослым", - "wordTranslate": "зрелый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff23" - }, - "group": 4, - "page": 14, - "word": "furnace", - "image": "files/15_2690.jpg", - "audio": "files/15_2690.mp3", - "audioMeaning": "files/15_2690_meaning.mp3", - "audioExample": "files/15_2690_example.mp3", - "textMeaning": "A furnace is a place where heat is made.", - "textExample": "Mr. Jones came to fix the furnace.", - "transcription": "[fə́ːrnis]", - "__v": 0, - "textExampleTranslate": "Мистер Джонс пришел починить печь", - "textMeaningTranslate": "Печь - это место, где производится тепло", - "wordTranslate": "печь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff24" - }, - "group": 4, - "page": 14, - "word": "measure", - "image": "files/15_2693.jpg", - "audio": "files/15_2693.mp3", - "audioMeaning": "files/15_2693_meaning.mp3", - "audioExample": "files/15_2693_example.mp3", - "textMeaning": "To measure something means to find out the quality, value, or effect of it.", - "textExample": "The scientists carefully measured the amount of chemicals in the tubes.", - "transcription": "[méʒəːr]", - "__v": 0, - "textExampleTranslate": "Ученые тщательно измерили количество химических веществ в пробирках", - "textMeaningTranslate": "Измерить что-то - значит узнать качество, ценность или эффект этого", - "wordTranslate": "измерить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff25" - }, - "group": 4, - "page": 14, - "word": "midst", - "image": "files/15_2694.jpg", - "audio": "files/15_2694.mp3", - "audioMeaning": "files/15_2694_meaning.mp3", - "audioExample": "files/15_2694_example.mp3", - "textMeaning": "The midst of something is the middle of it.", - "textExample": "She was in the midst of cleaning when the telephone rang.", - "transcription": "[midst]", - "__v": 0, - "textExampleTranslate": "Она была посреди уборки, когда зазвонил телефон", - "textMeaningTranslate": "Середина чего-то - это середина этого", - "wordTranslate": "середина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff26" - }, - "group": 4, - "page": 14, - "word": "misery", - "image": "files/15_2695.jpg", - "audio": "files/15_2695.mp3", - "audioMeaning": "files/15_2695_meaning.mp3", - "audioExample": "files/15_2695_example.mp3", - "textMeaning": "Misery is extreme suffering.", - "textExample": "There was a lot of misery after Sam lost his dog.", - "transcription": "[mízəri]", - "__v": 0, - "textExampleTranslate": "После того, как Сэм потерял свою собаку, было много страданий", - "textMeaningTranslate": "Страдание - это крайнее страдание", - "wordTranslate": "страдание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff27" - }, - "group": 4, - "page": 14, - "word": "powerless", - "image": "files/15_2696.jpg", - "audio": "files/15_2696.mp3", - "audioMeaning": "files/15_2696_meaning.mp3", - "audioExample": "files/15_2696_example.mp3", - "textMeaning": "Powerless means without power or authority.", - "textExample": "I fear my father is powerless now.", - "transcription": "[páuərlis]", - "__v": 0, - "textExampleTranslate": "Боюсь, мой отец сейчас бессилен", - "textMeaningTranslate": "Бессильный значит без власти или власти", - "wordTranslate": "бессильна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff28" - }, - "group": 4, - "page": 14, - "word": "research", - "image": "files/15_2698.jpg", - "audio": "files/15_2698.mp3", - "audioMeaning": "files/15_2698_meaning.mp3", - "audioExample": "files/15_2698_example.mp3", - "textMeaning": "Research is close and careful study to discover new things.", - "textExample": "Scientists did a lot of research on the subject of blood type.", - "transcription": "[risə́ːrtʃ]", - "__v": 0, - "textExampleTranslate": "Ученые провели много исследований на тему группы крови", - "textMeaningTranslate": "Исследования - это тщательное и тщательное изучение, чтобы открывать новые вещи", - "wordTranslate": "исследование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff29" - }, - "group": 4, - "page": 14, - "word": "prior", - "image": "files/15_2697.jpg", - "audio": "files/15_2697.mp3", - "audioMeaning": "files/15_2697_meaning.mp3", - "audioExample": "files/15_2697_example.mp3", - "textMeaning": "When something happened prior to something else, it happened earlier.", - "textExample": "Ron had to wait since he arrived prior to the scheduled meeting time.", - "transcription": "[práiər]", - "__v": 0, - "textExampleTranslate": "Рону пришлось ждать, так как он прибыл до запланированного времени встречи", - "textMeaningTranslate": "Когда что-то случилось до чего-то еще, это случилось раньше", - "wordTranslate": "до" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff2a" - }, - "group": 4, - "page": 14, - "word": "spaceship", - "image": "files/15_2699.jpg", - "audio": "files/15_2699.mp3", - "audioMeaning": "files/15_2699_meaning.mp3", - "audioExample": "files/15_2699_example.mp3", - "textMeaning": "A spaceship is a craft designed for spaceflight.", - "textExample": "Many people want to travel into space by spaceship.", - "transcription": "[spéisʃip]", - "__v": 0, - "textExampleTranslate": "Многие люди хотят путешествовать в космос на космическом корабле", - "textMeaningTranslate": "Космический корабль - это корабль, предназначенный для космического полета", - "wordTranslate": "космический корабль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff2b" - }, - "group": 4, - "page": 14, - "word": "variety", - "image": "files/15_2700.jpg", - "audio": "files/15_2700.mp3", - "audioMeaning": "files/15_2700_meaning.mp3", - "audioExample": "files/15_2700_example.mp3", - "textMeaning": "A variety of something is a group of many different kinds of it.", - "textExample": "There are a variety of flowers at the shop.", - "transcription": "[vəráiəti]", - "__v": 0, - "textExampleTranslate": "В магазине есть множество цветов", - "textMeaningTranslate": "Разнообразие чего-либо - это группа разных видов", - "wordTranslate": "разнообразие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff2d" - }, - "group": 4, - "page": 15, - "word": "bruise", - "image": "files/16_2703.jpg", - "audio": "files/16_2703.mp3", - "audioMeaning": "files/16_2703_meaning.mp3", - "audioExample": "files/16_2703_example.mp3", - "textMeaning": "A bruise is a dark mark caused by being hit by something.", - "textExample": "She got a bruise on her knee from falling down.", - "transcription": "[bruːz]", - "__v": 0, - "textExampleTranslate": "У нее синяк на колене от падения", - "textMeaningTranslate": "Синяк - это темная отметка, вызванная попаданием чего-то", - "wordTranslate": "синяк" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff2f" - }, - "group": 4, - "page": 15, - "word": "custom", - "image": "files/16_2704.jpg", - "audio": "files/16_2704.mp3", - "audioMeaning": "files/16_2704_meaning.mp3", - "audioExample": "files/16_2704_example.mp3", - "textMeaning": "A custom is a way of doing things that has been the same for a long time.", - "textExample": "It is a custom that the bride and groom have the first dance.", - "transcription": "[kʌ́stəm]", - "__v": 0, - "textExampleTranslate": "Это традиция, что жених и невеста устраивают первый танец", - "textMeaningTranslate": "Обычай - это способ делать вещи, которые долгое время были одинаковыми", - "wordTranslate": "обычай" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff2c" - }, - "group": 4, - "page": 15, - "word": "altogether", - "image": "files/16_2701.jpg", - "audio": "files/16_2701.mp3", - "audioMeaning": "files/16_2701_meaning.mp3", - "audioExample": "files/16_2701_example.mp3", - "textMeaning": "If something happens altogether, it happens completely.", - "textExample": "The company stopped using sugar altogether in its food.", - "transcription": "[ɔ̀ːltəgéðər]", - "__v": 0, - "textExampleTranslate": "Компания перестала использовать сахар в пищу", - "textMeaningTranslate": "Если что-то происходит вообще, это происходит полностью", - "wordTranslate": "в целом" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff2e" - }, - "group": 4, - "page": 15, - "word": "bind", - "image": "files/16_2702.jpg", - "audio": "files/16_2702.mp3", - "audioMeaning": "files/16_2702_meaning.mp3", - "audioExample": "files/16_2702_example.mp3", - "textMeaning": "To bind people is to make them feel united together.", - "textExample": "The victims of the flood were bound by their need to help each other.", - "transcription": "[baind]", - "__v": 0, - "textExampleTranslate": "Жертвы наводнения были связаны своей необходимостью помогать друг другу", - "textMeaningTranslate": "Связывать людей - значит объединять их", - "wordTranslate": "связывать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff30" - }, - "group": 4, - "page": 15, - "word": "disobedient", - "image": "files/16_2705.jpg", - "audio": "files/16_2705.mp3", - "audioMeaning": "files/16_2705_meaning.mp3", - "audioExample": "files/16_2705_example.mp3", - "textMeaning": "When someone is disobedient, they do not follow the rules or instructions.", - "textExample": "The disobedient children didn’t listen to their mother and had an accident.", - "transcription": "[dìsəbíːdiənt]", - "__v": 0, - "textExampleTranslate": "Непослушные дети не слушали свою мать и попали в аварию", - "textMeaningTranslate": "Когда кто-то непослушен, он не следует правилам или инструкциям", - "wordTranslate": "непослушный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff31" - }, - "group": 4, - "page": 15, - "word": "foresee", - "image": "files/16_2706.jpg", - "audio": "files/16_2706.mp3", - "audioMeaning": "files/16_2706_meaning.mp3", - "audioExample": "files/16_2706_example.mp3", - "textMeaning": "To foresee something is to know about it before it happens.", - "textExample": "The teacher didn’t foresee any problems with his large class.", - "transcription": "[fɔːrsíː]", - "__v": 0, - "textExampleTranslate": "Учитель не предвидел никаких проблем со своим большим классом", - "textMeaningTranslate": "Предвидеть что-то значит знать об этом до того, как это произойдет", - "wordTranslate": "предвидеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff32" - }, - "group": 4, - "page": 15, - "word": "hoop", - "image": "files/16_2708.jpg", - "audio": "files/16_2708.mp3", - "audioMeaning": "files/16_2708_meaning.mp3", - "audioExample": "files/16_2708_example.mp3", - "textMeaning": "A hoop is a ring that is made of plastic, metal, or wood.", - "textExample": "The boys tried to toss the ball through the basketball hoop.", - "transcription": "[huːp]", - "__v": 0, - "textExampleTranslate": "Ребята пытались бросить мяч через баскетбольное кольцо", - "textMeaningTranslate": "Обруч - это кольцо из пластика, металла или дерева", - "wordTranslate": "обруч" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff35" - }, - "group": 4, - "page": 15, - "word": "negative", - "image": "files/16_2710.jpg", - "audio": "files/16_2710.mp3", - "audioMeaning": "files/16_2710_meaning.mp3", - "audioExample": "files/16_2710_example.mp3", - "textMeaning": "When something is negative, it is unpleasant or sad.", - "textExample": "She doesn’t like to say negative things about her friends.", - "transcription": "[négətiv]", - "__v": 0, - "textExampleTranslate": "Она не любит говорить негативно о своих друзьях", - "textMeaningTranslate": "Когда что-то негативно, это неприятно или грустно", - "wordTranslate": "негативный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff34" - }, - "group": 4, - "page": 15, - "word": "misfortune", - "image": "files/16_2709.jpg", - "audio": "files/16_2709.mp3", - "audioMeaning": "files/16_2709_meaning.mp3", - "audioExample": "files/16_2709_example.mp3", - "textMeaning": "Misfortune is bad luck or an unlucky event.", - "textExample": "His family helped him when he encountered misfortune.", - "transcription": "[misfɔ́ːrtʃən]", - "__v": 0, - "textExampleTranslate": "Его семья помогла ему, когда он столкнулся с несчастьем", - "textMeaningTranslate": "Несчастье - это неудача или несчастливое событие", - "wordTranslate": "несчастье" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff33" - }, - "group": 4, - "page": 15, - "word": "glimpse", - "image": "files/16_2707.jpg", - "audio": "files/16_2707.mp3", - "audioMeaning": "files/16_2707_meaning.mp3", - "audioExample": "files/16_2707_example.mp3", - "textMeaning": "To glimpse something is to see it for a short time.", - "textExample": "She glimpsed outside the window as the plane was about to land.", - "transcription": "[glimps]", - "__v": 0, - "textExampleTranslate": "Она мельком увидела за окном, когда самолет собирался приземлиться", - "textMeaningTranslate": "Чтобы увидеть что-то - значит увидеть это на короткое время", - "wordTranslate": "проблеск" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff36" - }, - "group": 4, - "page": 15, - "word": "per", - "image": "files/16_2711.jpg", - "audio": "files/16_2711.mp3", - "audioMeaning": "files/16_2711_meaning.mp3", - "audioExample": "files/16_2711_example.mp3", - "textMeaning": "Per is used to mean “each” when giving a price, size, or amount.", - "textExample": "It costs eight dollars per person to watch the baseball game.", - "transcription": "[pər]", - "__v": 0, - "textExampleTranslate": "Бейсбол стоит восемь долларов на человека", - "textMeaningTranslate": "'Per' используется для обозначения 'каждый' при указании цены, размера или суммы", - "wordTranslate": "за" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff38" - }, - "group": 4, - "page": 15, - "word": "rip", - "image": "files/16_2713.jpg", - "audio": "files/16_2713.mp3", - "audioMeaning": "files/16_2713_meaning.mp3", - "audioExample": "files/16_2713_example.mp3", - "textMeaning": "To rip something means to pull it apart.", - "textExample": "She ripped the paper in half by accident.", - "transcription": "[rip]", - "__v": 0, - "textExampleTranslate": "Она случайно порвала газету пополам", - "textMeaningTranslate": "Разорвать что-то - значит разорвать это на части", - "wordTranslate": "покойся с миром" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff37" - }, - "group": 4, - "page": 15, - "word": "plead", - "image": "files/16_2712.jpg", - "audio": "files/16_2712.mp3", - "audioMeaning": "files/16_2712_meaning.mp3", - "audioExample": "files/16_2712_example.mp3", - "textMeaning": "To plead is to ask for something you want very badly.", - "textExample": "He pleaded for his parents to let him go to the soccer game.", - "transcription": "[pliːd]", - "__v": 0, - "textExampleTranslate": "Он умолял своих родителей отпустить его на футбольный матч", - "textMeaningTranslate": "Просить - значит просить что-то, чего ты очень хочешь", - "wordTranslate": "умолять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff39" - }, - "group": 4, - "page": 15, - "word": "sake", - "image": "files/16_2714.jpg", - "audio": "files/16_2714.mp3", - "audioMeaning": "files/16_2714_meaning.mp3", - "audioExample": "files/16_2714_example.mp3", - "textMeaning": "The sake of something is the reason for doing it.", - "textExample": "The parents worked hard for their children’s sake.", - "transcription": "[seik]", - "__v": 0, - "textExampleTranslate": "Родители усердно трудились ради своих детей", - "textMeaningTranslate": "Ради чего-то есть причина для этого", - "wordTranslate": "ради" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff3a" - }, - "group": 4, - "page": 15, - "word": "scrape", - "image": "files/16_2715.jpg", - "audio": "files/16_2715.mp3", - "audioMeaning": "files/16_2715_meaning.mp3", - "audioExample": "files/16_2715_example.mp3", - "textMeaning": "To scrape something is to rub it very hard with something sharp.", - "textExample": "I accidentally scraped the paint of the side of the car.", - "transcription": "[skreip]", - "__v": 0, - "textExampleTranslate": "Я случайно поцарапал краску боковой части машины", - "textMeaningTranslate": "Соскоблить что-то - это очень сильно потереть чем-нибудь острым", - "wordTranslate": "скрип" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff3b" - }, - "group": 4, - "page": 15, - "word": "source", - "image": "files/16_2716.jpg", - "audio": "files/16_2716.mp3", - "audioMeaning": "files/16_2716_meaning.mp3", - "audioExample": "files/16_2716_example.mp3", - "textMeaning": "A source of something is the place that it comes from.", - "textExample": "The river was the source of drinking water for the village.", - "transcription": "[sɔːrs]", - "__v": 0, - "textExampleTranslate": "Река была источником питьевой воды для села", - "textMeaningTranslate": "Источником чего-то является место, откуда оно исходит", - "wordTranslate": "источник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff3c" - }, - "group": 4, - "page": 15, - "word": "stern", - "image": "files/16_2717.jpg", - "audio": "files/16_2717.mp3", - "audioMeaning": "files/16_2717_meaning.mp3", - "audioExample": "files/16_2717_example.mp3", - "textMeaning": "When somebody is stern, they are very serious.", - "textExample": "The stern teacher didn’t allow the students to speak during class.", - "transcription": "[stəːrn]", - "__v": 0, - "textExampleTranslate": "Строгий учитель не позволял ученикам говорить во время занятий", - "textMeaningTranslate": "Когда кто-то строгий, он очень серьезный", - "wordTranslate": "корма" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff3e" - }, - "group": 4, - "page": 15, - "word": "thump", - "image": "files/16_2719.jpg", - "audio": "files/16_2719.mp3", - "audioMeaning": "files/16_2719_meaning.mp3", - "audioExample": "files/16_2719_example.mp3", - "textMeaning": "A thump is the sound of a heavy object hitting something.", - "textExample": "They heard the thump when the bowling ball hit the floor.", - "transcription": "[θʌmp]", - "__v": 0, - "textExampleTranslate": "Они услышали стук, когда шар для боулинга упал на пол", - "textMeaningTranslate": "Удар - это звук удара тяжелого предмета о чем-то", - "wordTranslate": "бухать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff3d" - }, - "group": 4, - "page": 15, - "word": "stitch", - "image": "files/16_2718.jpg", - "audio": "files/16_2718.mp3", - "audioMeaning": "files/16_2718_meaning.mp3", - "audioExample": "files/16_2718_example.mp3", - "textMeaning": "To stitch is to use a needle and thread to join pieces of cloth together.", - "textExample": "My grandmother stitched the pieces together to make a big blanket.", - "transcription": "[stitʃ]", - "__v": 0, - "textExampleTranslate": "Моя бабушка сшила кусочки вместе, чтобы сделать большое одеяло", - "textMeaningTranslate": "Чтобы сшить это использовать иглу и нить, чтобы соединить кусочки ткани вместе", - "wordTranslate": "сшить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff3f" - }, - "group": 4, - "page": 15, - "word": "vehement", - "image": "files/16_2720.jpg", - "audio": "files/16_2720.mp3", - "audioMeaning": "files/16_2720_meaning.mp3", - "audioExample": "files/16_2720_example.mp3", - "textMeaning": "When somebody is vehement, they are angry and emotional.", - "textExample": "Gina was vehement when she found out that Liz was bad in school.", - "transcription": "[víːəmənt]", - "__v": 0, - "textExampleTranslate": "Джина была в ярости, когда узнала, что Лиз в школе плохо", - "textMeaningTranslate": "Когда кто-то страдает, он злой и эмоциональный", - "wordTranslate": "неистовый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff40" - }, - "group": 4, - "page": 16, - "word": "ailing", - "image": "files/17_2721.jpg", - "audio": "files/17_2721.mp3", - "audioMeaning": "files/17_2721_meaning.mp3", - "audioExample": "files/17_2721_example.mp3", - "textMeaning": "If something is ailing, it is sickly or not doing well.", - "textExample": "Antonio’s ailing health caused his head to hurt.", - "transcription": "[éiliŋ]", - "__v": 0, - "textExampleTranslate": "Больное здоровье Антонио заставило его голову болеть", - "textMeaningTranslate": "Если что-то болит, это плохо или плохо", - "wordTranslate": "больной" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff41" - }, - "group": 4, - "page": 16, - "word": "alike", - "image": "files/17_2722.jpg", - "audio": "files/17_2722.mp3", - "audioMeaning": "files/17_2722_meaning.mp3", - "audioExample": "files/17_2722_example.mp3", - "textMeaning": "If two people or things are alike, they are similar to each other.", - "textExample": "The brothers looked so much alike that it was impossible to tell one from the other.", - "transcription": "[əláik]", - "__v": 0, - "textExampleTranslate": "Братья выглядели так одинаково, что невозможно отличить одно от другого", - "textMeaningTranslate": "Если два человека или вещи похожи, они похожи друг на друга", - "wordTranslate": "так" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff42" - }, - "group": 4, - "page": 16, - "word": "appall", - "image": "files/17_2723.jpg", - "audio": "files/17_2723.mp3", - "audioMeaning": "files/17_2723_meaning.mp3", - "audioExample": "files/17_2723_example.mp3", - "textMeaning": "To appall means to disgust someone.", - "textExample": "Minerva was appalled when she read the email from her enemy.", - "transcription": "[əpɔ́ːl]", - "__v": 0, - "textExampleTranslate": "Минерва была потрясена, когда прочитала письмо от своего врага", - "textMeaningTranslate": "Ужасно значит отвращать кого-то", - "wordTranslate": "потрясать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff43" - }, - "group": 4, - "page": 16, - "word": "bathe", - "image": "files/17_2724.jpg", - "audio": "files/17_2724.mp3", - "audioMeaning": "files/17_2724_meaning.mp3", - "audioExample": "files/17_2724_example.mp3", - "textMeaning": "To bathe means to wash oneself with water.", - "textExample": "The mermaid bathed herself in the ocean.", - "transcription": "[beið]", - "__v": 0, - "textExampleTranslate": "Русалка купалась в океане", - "textMeaningTranslate": "Купаться - значит мыться водой", - "wordTranslate": "купать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff44" - }, - "group": 4, - "page": 16, - "word": "bounds", - "image": "files/17_2725.jpg", - "audio": "files/17_2725.mp3", - "audioMeaning": "files/17_2725_meaning.mp3", - "audioExample": "files/17_2725_example.mp3", - "textMeaning": "Bounds is the area in a game in which plays are legal.", - "textExample": "If your ball lands outside the lines, it’s out of bounds.", - "transcription": "[báundz]", - "__v": 0, - "textExampleTranslate": "Если ваш мяч приземляется за пределы линии, это выходит за пределы", - "textMeaningTranslate": "Границы - это область игры, в которой игры разрешены", - "wordTranslate": "граница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff45" - }, - "group": 4, - "page": 16, - "word": "critique", - "image": "files/17_2726.jpg", - "audio": "files/17_2726.mp3", - "audioMeaning": "files/17_2726_meaning.mp3", - "audioExample": "files/17_2726_example.mp3", - "textMeaning": "To critique means express an opinion about the good and the bad parts of something.", - "textExample": "My job is to critique the food at various restaurants.", - "transcription": "[kritíːk]", - "__v": 0, - "textExampleTranslate": "Моя работа - критиковать еду в разных ресторанах", - "textMeaningTranslate": "Критика означает выражать мнение о хороших и плохих сторонах чего-либо", - "wordTranslate": "критика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff46" - }, - "group": 4, - "page": 16, - "word": "demography", - "image": "files/17_2727.jpg", - "audio": "files/17_2727.mp3", - "audioMeaning": "files/17_2727_meaning.mp3", - "audioExample": "files/17_2727_example.mp3", - "textMeaning": "Demography is the study of people and populations.", - "textExample": "If you study demography, you’ll see huge population growth in some areas of the world.", - "transcription": "[dimάgrəf]", - "__v": 0, - "textExampleTranslate": "Если вы изучаете демографию, вы увидите огромный рост населения в некоторых регионах мира", - "textMeaningTranslate": "Демография - это изучение людей и населения", - "wordTranslate": "демография" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff47" - }, - "group": 4, - "page": 16, - "word": "diagnosis", - "image": "files/17_2728.jpg", - "audio": "files/17_2728.mp3", - "audioMeaning": "files/17_2728_meaning.mp3", - "audioExample": "files/17_2728_example.mp3", - "textMeaning": "A diagnosis is a doctor’s decision about the cause of an illness.", - "textExample": "The vet’s diagnosis was that our dog had a broken leg.", - "transcription": "[dàiəgnóusis]", - "__v": 0, - "textExampleTranslate": "Диагноз ветеринара состоял в том, что у нашей собаки была сломана нога", - "textMeaningTranslate": "Диагноз - это решение врача о причине болезни", - "wordTranslate": "диагноз" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff48" - }, - "group": 4, - "page": 16, - "word": "dip", - "image": "files/17_2729.jpg", - "audio": "files/17_2729.mp3", - "audioMeaning": "files/17_2729_meaning.mp3", - "audioExample": "files/17_2729_example.mp3", - "textMeaning": "A dip is a decline or a worsening in condition.", - "textExample": "The economy experienced a dip in the 1930s, leading many workers to lose their jobs.", - "transcription": "[dip]", - "__v": 0, - "textExampleTranslate": "В 1930-х годах экономика переживала спад, в результате чего многие рабочие потеряли работу", - "textMeaningTranslate": "Падение - это ухудшение или ухудшение состояния", - "wordTranslate": "провал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff49" - }, - "group": 4, - "page": 16, - "word": "distress", - "image": "files/17_2730.jpg", - "audio": "files/17_2730.mp3", - "audioMeaning": "files/17_2730_meaning.mp3", - "audioExample": "files/17_2730_example.mp3", - "textMeaning": "Distress is a feeling of sadness and anxiousness.", - "textExample": "We were in great distress when our home was destroyed during the last hurricane.", - "transcription": "[distrés]", - "__v": 0, - "textExampleTranslate": "Мы были в бедственном положении, когда наш дом был разрушен во время последнего урагана", - "textMeaningTranslate": "Бедствие - это чувство грусти и тревоги", - "wordTranslate": "горе" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff4a" - }, - "group": 4, - "page": 16, - "word": "fever", - "image": "files/17_2731.jpg", - "audio": "files/17_2731.mp3", - "audioMeaning": "files/17_2731_meaning.mp3", - "audioExample": "files/17_2731_example.mp3", - "textMeaning": "A fever is when a body’s temperature is higher than normal.", - "textExample": "He had to miss school because he was sick with a fever.", - "transcription": "[fíːvər]", - "__v": 0, - "textExampleTranslate": "Ему пришлось пропустить школу, потому что он был болен лихорадкой", - "textMeaningTranslate": "Лихорадка - это когда температура тела выше нормальной", - "wordTranslate": "высокая температура" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff4b" - }, - "group": 4, - "page": 16, - "word": "grim", - "image": "files/17_2732.jpg", - "audio": "files/17_2732.mp3", - "audioMeaning": "files/17_2732_meaning.mp3", - "audioExample": "files/17_2732_example.mp3", - "textMeaning": "Something that is grim is worrying, serious, and scary.", - "textExample": "The boy made the grim discovery that he had accidentally deleted his homework.", - "transcription": "[grim]", - "__v": 0, - "textExampleTranslate": "Мальчик сделал мрачное открытие, что он случайно удалил свою домашнюю работу", - "textMeaningTranslate": "Что-то мрачное - это тревожно, серьезно и страшно", - "wordTranslate": "мрачная" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff4c" - }, - "group": 4, - "page": 16, - "word": "gut", - "image": "files/17_2733.jpg", - "audio": "files/17_2733.mp3", - "audioMeaning": "files/17_2733_meaning.mp3", - "audioExample": "files/17_2733_example.mp3", - "textMeaning": "Someone’s gut is their intestines, where food is processed after leaving the stomach.", - "textExample": "Thousands of bacteria live in your gut and help you digest food.", - "transcription": "[gʌt]", - "__v": 0, - "textExampleTranslate": "Тысячи бактерий живут в вашем кишечнике и помогают вам переваривать пищу", - "textMeaningTranslate": "Чья-то кишка - это кишечник, где пища перерабатывается после того, как она покидает желудок", - "wordTranslate": "кишка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff4d" - }, - "group": 4, - "page": 16, - "word": "helmet", - "image": "files/17_2734.jpg", - "audio": "files/17_2734.mp3", - "audioMeaning": "files/17_2734_meaning.mp3", - "audioExample": "files/17_2734_example.mp3", - "textMeaning": "A helmet is a type of hard hat that protects your head.", - "textExample": "When exploring underground caves, it is important to always wear a helmet.", - "transcription": "[hélmit]", - "__v": 0, - "textExampleTranslate": "При изучении подземных пещер важно всегда носить шлем", - "textMeaningTranslate": "Шлем - это тип каски, которая защищает вашу голову", - "wordTranslate": "шлем" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff4e" - }, - "group": 4, - "page": 16, - "word": "herb", - "image": "files/17_2735.jpg", - "audio": "files/17_2735.mp3", - "audioMeaning": "files/17_2735_meaning.mp3", - "audioExample": "files/17_2735_example.mp3", - "textMeaning": "An herb is a plant used for cooking or medicine.", - "textExample": "I couldn’t decide which herb I wanted to buy at the market.", - "transcription": "[əːrb]", - "__v": 0, - "textExampleTranslate": "Я не мог решить, какую траву я хотел купить на рынке", - "textMeaningTranslate": "Трава - это растение, используемое для приготовления пищи или медицины", - "wordTranslate": "трава" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff4f" - }, - "group": 4, - "page": 16, - "word": "militant", - "image": "files/17_2736.jpg", - "audio": "files/17_2736.mp3", - "audioMeaning": "files/17_2736_meaning.mp3", - "audioExample": "files/17_2736_example.mp3", - "textMeaning": "If someone is militant, they are angry and aggressive, and willing to fight easily.", - "textExample": "The woman delivered an angry, militant speech on the floor of the legislature.", - "transcription": "[mílətənt]", - "__v": 0, - "textExampleTranslate": "Женщина произнесла гневную воинственную речь на полу законодательного органа", - "textMeaningTranslate": "Если кто-то воинствующий, он злой и агрессивный и готов легко сражаться", - "wordTranslate": "боевик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff50" - }, - "group": 4, - "page": 16, - "word": "miracle", - "image": "files/17_2737.jpg", - "audio": "files/17_2737.mp3", - "audioMeaning": "files/17_2737_meaning.mp3", - "audioExample": "files/17_2737_example.mp3", - "textMeaning": "A miracle is an unexpected blessing which seems almost impossible, like a gift from heaven.", - "textExample": "A miracle happened when Rosalita won over 60 million dollars in the lottery.", - "transcription": "[mírəkl]", - "__v": 0, - "textExampleTranslate": "Чудо произошло, когда Розалита выиграла в лотерее более 60 миллионов долларов", - "textMeaningTranslate": "Чудо - это неожиданное благословение, которое кажется почти невозможным, как дар с небес", - "wordTranslate": "чудо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff51" - }, - "group": 4, - "page": 16, - "word": "mourn", - "image": "files/17_2738.jpg", - "audio": "files/17_2738.mp3", - "audioMeaning": "files/17_2738_meaning.mp3", - "audioExample": "files/17_2738_example.mp3", - "textMeaning": "To mourn means to show or feel great sadness when you lose someone.", - "textExample": "The entire family mourned their grandfather’s death together.", - "transcription": "[mɔːrn]", - "__v": 0, - "textExampleTranslate": "Вся семья оплакивала смерть деда вместе", - "textMeaningTranslate": "Скорбеть значит показать или почувствовать великую грусть, когда ты кого-то теряешь", - "wordTranslate": "оплакивать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff52" - }, - "group": 4, - "page": 16, - "word": "nonsense", - "image": "files/17_2739.jpg", - "audio": "files/17_2739.mp3", - "audioMeaning": "files/17_2739_meaning.mp3", - "audioExample": "files/17_2739_example.mp3", - "textMeaning": "Nonsense are words or ideas that are silly or foolish.", - "textExample": "The baby was talking nonsense into the phone.", - "transcription": "[nάnsens]", - "__v": 0, - "textExampleTranslate": "Ребенок говорил глупости в телефон", - "textMeaningTranslate": "Глупости - это глупые или глупые слова или идеи", - "wordTranslate": "бред какой то" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff53" - }, - "group": 4, - "page": 16, - "word": "physician", - "image": "files/17_2740.jpg", - "audio": "files/17_2740.mp3", - "audioMeaning": "files/17_2740_meaning.mp3", - "audioExample": "files/17_2740_example.mp3", - "textMeaning": "A physician is a doctor.", - "textExample": "The physician was a friendly man who did his best with all of his patients.", - "transcription": "[fizíʃən]", - "__v": 0, - "textExampleTranslate": "Врач был дружелюбным человеком, который делал все возможное со всеми своими пациентами", - "textMeaningTranslate": "Врач есть доктор", - "wordTranslate": "врач" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff54" - }, - "group": 4, - "page": 17, - "word": "accent", - "image": "files/18_2741.jpg", - "audio": "files/18_2741.mp3", - "audioMeaning": "files/18_2741_meaning.mp3", - "audioExample": "files/18_2741_example.mp3", - "textMeaning": "An accent is a certain way of speaking that shows where a person is from.", - "textExample": "The new teacher’s accent was clearly a German one.", - "transcription": "[ǽksent]", - "__v": 0, - "textExampleTranslate": "Акцент нового учителя был явно немецкий", - "textMeaningTranslate": "Акцент - это определенный способ говорить, который показывает, откуда человек", - "wordTranslate": "акцент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff55" - }, - "group": 4, - "page": 17, - "word": "barber", - "image": "files/18_2742.jpg", - "audio": "files/18_2742.mp3", - "audioMeaning": "files/18_2742_meaning.mp3", - "audioExample": "files/18_2742_example.mp3", - "textMeaning": "A barber is a person whose job is to cut men’s hair.", - "textExample": "My hair is getting much too long. I’d better go to the barber’s shop.", - "transcription": "[bɑ́ːrbər]", - "__v": 0, - "textExampleTranslate": "Мои волосы становятся слишком длинными. Я лучше пойду в парикмахерскую", - "textMeaningTranslate": "Парикмахер - это человек, чья работа заключается в стрижке мужских волос", - "wordTranslate": "цирюльник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff56" - }, - "group": 4, - "page": 17, - "word": "basement", - "image": "files/18_2743.jpg", - "audio": "files/18_2743.mp3", - "audioMeaning": "files/18_2743_meaning.mp3", - "audioExample": "files/18_2743_example.mp3", - "textMeaning": "A basement of a house or building is a room that is built underground.", - "textExample": "They turned their basement into a game room.", - "transcription": "[béismənt]", - "__v": 0, - "textExampleTranslate": "Они превратили свой подвал в игровую комнату", - "textMeaningTranslate": "Подвал дома или здания - это комната, построенная под землей", - "wordTranslate": "подвал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff57" - }, - "group": 4, - "page": 17, - "word": "blank", - "image": "files/18_2744.jpg", - "audio": "files/18_2744.mp3", - "audioMeaning": "files/18_2744_meaning.mp3", - "audioExample": "files/18_2744_example.mp3", - "textMeaning": "When something is blank, it does not have anything on it.", - "textExample": "She got a blank piece of paper to draw on.", - "transcription": "[blæŋk]", - "__v": 0, - "textExampleTranslate": "У нее есть чистый лист бумаги, на котором можно рисовать", - "textMeaningTranslate": "Когда что-то пустое, на нем ничего нет", - "wordTranslate": "пустой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff58" - }, - "group": 4, - "page": 17, - "word": "blink", - "image": "files/18_2745.jpg", - "audio": "files/18_2745.mp3", - "audioMeaning": "files/18_2745_meaning.mp3", - "audioExample": "files/18_2745_example.mp3", - "textMeaning": "To blink means to shut the eyes and quickly open them again.", - "textExample": "I blinked many times so that my eyes could adjust to the bright light.", - "transcription": "[bliŋk]", - "__v": 0, - "textExampleTranslate": "Я моргнул много раз, чтобы мои глаза могли приспособиться к яркому свету", - "textMeaningTranslate": "Моргать - значит закрыть глаза и быстро открыть их снова", - "wordTranslate": "мерцание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff59" - }, - "group": 4, - "page": 17, - "word": "choir", - "image": "files/18_2746.jpg", - "audio": "files/18_2746.mp3", - "audioMeaning": "files/18_2746_meaning.mp3", - "audioExample": "files/18_2746_example.mp3", - "textMeaning": "A choir is a group of people who sing together.", - "textExample": "He had choir practice every day after school.", - "transcription": "[kwaiər]", - "__v": 0, - "textExampleTranslate": "У него была хоровая практика каждый день после школы", - "textMeaningTranslate": "Хор - это группа людей, которые поют вместе", - "wordTranslate": "хор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff5a" - }, - "group": 4, - "page": 17, - "word": "comic", - "image": "files/18_2747.jpg", - "audio": "files/18_2747.mp3", - "audioMeaning": "files/18_2747_meaning.mp3", - "audioExample": "files/18_2747_example.mp3", - "textMeaning": "When something is comic, it is funny.", - "textExample": "The comic actor was famous for his jokes.", - "transcription": "[kɑ́mik]", - "__v": 0, - "textExampleTranslate": "Актер комиксов прославился своими шутками", - "textMeaningTranslate": "Когда что-то комично, это смешно", - "wordTranslate": "комик" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff5b" - }, - "group": 4, - "page": 17, - "word": "complicate", - "image": "files/18_2748.jpg", - "audio": "files/18_2748.mp3", - "audioMeaning": "files/18_2748_meaning.mp3", - "audioExample": "files/18_2748_example.mp3", - "textMeaning": "To complicate something means to make it harder than necessary.", - "textExample": "The bad weather complicated finishing the job quickly.", - "transcription": "[kάmpləkèit]", - "__v": 0, - "textExampleTranslate": "Плохая погода усложнила быстрое завершение работы", - "textMeaningTranslate": "Чтобы усложнить что-то, значит сделать это сложнее, чем необходимо", - "wordTranslate": "усложнять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff5c" - }, - "group": 4, - "page": 17, - "word": "decline", - "image": "files/18_2749.jpg", - "audio": "files/18_2749.mp3", - "audioMeaning": "files/18_2749_meaning.mp3", - "audioExample": "files/18_2749_example.mp3", - "textMeaning": "To decline an offer or invitation means to say no to it.", - "textExample": "She declined his offer to pay for her dinner.", - "transcription": "[dikláin]", - "__v": 0, - "textExampleTranslate": "Она отклонила его предложение оплатить ее ужин", - "textMeaningTranslate": "Отклонить предложение или приглашение означает отказаться от него", - "wordTranslate": "спад" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff5d" - }, - "group": 4, - "page": 17, - "word": "errand", - "image": "files/18_2750.jpg", - "audio": "files/18_2750.mp3", - "audioMeaning": "files/18_2750_meaning.mp3", - "audioExample": "files/18_2750_example.mp3", - "textMeaning": "An errand is a trip taken to do a specific activity.", - "textExample": "He couldn’t go to practice because he had several errands to do.", - "transcription": "[érənd]", - "__v": 0, - "textExampleTranslate": "Он не мог пойти на тренировку, потому что у него было несколько поручений", - "textMeaningTranslate": "Поручение - это поездка, предпринятая для выполнения определенной деятельности", - "wordTranslate": "побегушках" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff5e" - }, - "group": 4, - "page": 17, - "word": "glove", - "image": "files/18_2751.jpg", - "audio": "files/18_2751.mp3", - "audioMeaning": "files/18_2751_meaning.mp3", - "audioExample": "files/18_2751_example.mp3", - "textMeaning": "A glove is a piece of clothing that covers your fingers and hand.", - "textExample": "When it gets cold, I always put on a pair of gloves.", - "transcription": "[glʌv]", - "__v": 0, - "textExampleTranslate": "Когда становится холодно, я всегда надеваю перчатки", - "textMeaningTranslate": "Перчатка - это предмет одежды, который закрывает ваши пальцы и руку", - "wordTranslate": "перчатка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff5f" - }, - "group": 4, - "page": 17, - "word": "hermit", - "image": "files/18_2752.jpg", - "audio": "files/18_2752.mp3", - "audioMeaning": "files/18_2752_meaning.mp3", - "audioExample": "files/18_2752_example.mp3", - "textMeaning": "A hermit is one who lives alone and does not spend time with others.", - "textExample": "The hermit lived a simple life in a small cave in the forest.", - "transcription": "[hə́ːrmit]", - "__v": 0, - "textExampleTranslate": "Отшельник жил простой жизнью в маленькой пещере в лесу", - "textMeaningTranslate": "Отшельник - это тот, кто живет один и не проводит время с другими", - "wordTranslate": "отшельник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff60" - }, - "group": 4, - "page": 17, - "word": "justly", - "image": "files/18_2753.jpg", - "audio": "files/18_2753.mp3", - "audioMeaning": "files/18_2753_meaning.mp3", - "audioExample": "files/18_2753_example.mp3", - "textMeaning": "If something is done justly, then it is fair.", - "textExample": "We justly decided to give the prize to him.", - "transcription": "[dʒʌ́stli]", - "__v": 0, - "textExampleTranslate": "Мы справедливо решили дать ему приз", - "textMeaningTranslate": "Если что-то сделано справедливо, то это справедливо", - "wordTranslate": "справедливо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff61" - }, - "group": 4, - "page": 17, - "word": "leather", - "image": "files/18_2754.jpg", - "audio": "files/18_2754.mp3", - "audioMeaning": "files/18_2754_meaning.mp3", - "audioExample": "files/18_2754_example.mp3", - "textMeaning": "Leather is a material made from animal skin that is used to make clothing.", - "textExample": "He got a new leather jacket for his birthday.", - "transcription": "[léðəːr]", - "__v": 0, - "textExampleTranslate": "Он получил новую кожаную куртку на день рождения", - "textMeaningTranslate": "Кожа - это материал из кожи животных, который используется для изготовления одежды", - "wordTranslate": "кожа" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff62" - }, - "group": 4, - "page": 17, - "word": "ponder", - "image": "files/18_2755.jpg", - "audio": "files/18_2755.mp3", - "audioMeaning": "files/18_2755_meaning.mp3", - "audioExample": "files/18_2755_example.mp3", - "textMeaning": "To ponder something is to think about it carefully.", - "textExample": "She sat in the park and pondered her problem.", - "transcription": "[pάndər]", - "__v": 0, - "textExampleTranslate": "Она сидела в парке и обдумывала свою проблему", - "textMeaningTranslate": "Обдумать что-то - значит тщательно обдумать", - "wordTranslate": "вдумайтесь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff63" - }, - "group": 4, - "page": 17, - "word": "reserve", - "image": "files/18_2756.jpg", - "audio": "files/18_2756.mp3", - "audioMeaning": "files/18_2756_meaning.mp3", - "audioExample": "files/18_2756_example.mp3", - "textMeaning": "To reserve something means to keep it for a certain person or time.", - "textExample": "He reserved a table at the busy restaurant.", - "transcription": "[rizə́ːrv]", - "__v": 0, - "textExampleTranslate": "Он зарезервировал столик в оживленном ресторане", - "textMeaningTranslate": "Зарезервировать что-то означает сохранить это для определенного человека или времени", - "wordTranslate": "резерв" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff64" - }, - "group": 4, - "page": 17, - "word": "script", - "image": "files/18_2757.jpg", - "audio": "files/18_2757.mp3", - "audioMeaning": "files/18_2757_meaning.mp3", - "audioExample": "files/18_2757_example.mp3", - "textMeaning": "A script is the words of a film or play.", - "textExample": "He read the script of the play three times.", - "transcription": "[skript]", - "__v": 0, - "textExampleTranslate": "Он прочитал сценарий пьесы три раза", - "textMeaningTranslate": "Сценарий - это слова фильма или пьесы", - "wordTranslate": "сценарий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff65" - }, - "group": 4, - "page": 17, - "word": "search", - "image": "files/18_2758.jpg", - "audio": "files/18_2758.mp3", - "audioMeaning": "files/18_2758_meaning.mp3", - "audioExample": "files/18_2758_example.mp3", - "textMeaning": "To search for something or someone means to look for them carefully.", - "textExample": "I searched the newspaper for a new job.", - "transcription": "[səːrtʃ]", - "__v": 0, - "textExampleTranslate": "Я искал в газете новую работу", - "textMeaningTranslate": "Искать что-то или кого-то означает искать их внимательно", - "wordTranslate": "поиск" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff66" - }, - "group": 4, - "page": 17, - "word": "slam", - "image": "files/18_2759.jpg", - "audio": "files/18_2759.mp3", - "audioMeaning": "files/18_2759_meaning.mp3", - "audioExample": "files/18_2759_example.mp3", - "textMeaning": "To slam is to close something hard.", - "textExample": "She slammed the book shut after she finished reading it.", - "transcription": "[slæm]", - "__v": 0, - "textExampleTranslate": "Она захлопнула книгу после того, как закончила читать", - "textMeaningTranslate": "Хлопнуть - значит закрыть что-то крепкое", - "wordTranslate": "хлопать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff67" - }, - "group": 4, - "page": 17, - "word": "staircase", - "image": "files/18_2760.jpg", - "audio": "files/18_2760.mp3", - "audioMeaning": "files/18_2760_meaning.mp3", - "audioExample": "files/18_2760_example.mp3", - "textMeaning": "A staircase is a set of stairs found inside a building.", - "textExample": "The staircase leads directly into the kitchen.", - "transcription": "[stɛ́ərkèis]", - "__v": 0, - "textExampleTranslate": "Лестница ведет прямо на кухню", - "textMeaningTranslate": "Лестница - это лестница внутри здания", - "wordTranslate": "лестница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff68" - }, - "group": 4, - "page": 18, - "word": "afflicted", - "image": "files/19_2761.jpg", - "audio": "files/19_2761.mp3", - "audioMeaning": "files/19_2761_meaning.mp3", - "audioExample": "files/19_2761_example.mp3", - "textMeaning": "Afflicted means to suffer physically or mentally.", - "textExample": "He was afflicted by pain in his right arm.", - "transcription": "[əflíktid]", - "__v": 0, - "textExampleTranslate": "Он страдал от боли в правой руке", - "textMeaningTranslate": "Страдать значит страдать физически или умственно", - "wordTranslate": "страдает" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff69" - }, - "group": 4, - "page": 18, - "word": "aisle", - "image": "files/19_2762.jpg", - "audio": "files/19_2762.mp3", - "audioMeaning": "files/19_2762_meaning.mp3", - "audioExample": "files/19_2762_example.mp3", - "textMeaning": "An aisle is a space between two things that people use to walk.", - "textExample": "They were told to clear the aisle because the plane was about to land.", - "transcription": "[ail]", - "__v": 0, - "textExampleTranslate": "Им сказали очистить проход, потому что самолет собирался приземлиться", - "textMeaningTranslate": "Проход - это пространство между двумя вещами, по которым люди ходят", - "wordTranslate": "проход" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff6a" - }, - "group": 4, - "page": 18, - "word": "atmosphere", - "image": "files/19_2763.jpg", - "audio": "files/19_2763.mp3", - "audioMeaning": "files/19_2763_meaning.mp3", - "audioExample": "files/19_2763_example.mp3", - "textMeaning": "The atmosphere is the air around the Earth where weather conditions form.", - "textExample": "Scientists worry that harmful substances are hurting the atmosphere.", - "transcription": "[ǽtməsfìər]", - "__v": 0, - "textExampleTranslate": "Ученые опасаются, что вредные вещества наносят вред атмосфере", - "textMeaningTranslate": "Атмосфера - это воздух вокруг Земли, где формируются погодные условия", - "wordTranslate": "атмосфера" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff6b" - }, - "group": 4, - "page": 18, - "word": "author", - "image": "files/19_2764.jpg", - "audio": "files/19_2764.mp3", - "audioMeaning": "files/19_2764_meaning.mp3", - "audioExample": "files/19_2764_example.mp3", - "textMeaning": "An author is a person who wrote a certain piece of writing.", - "textExample": "The author was hard at work on his next novel.", - "transcription": "[ɔ́ːθər]", - "__v": 0, - "textExampleTranslate": "Автор усердно работал над своим следующим романом", - "textMeaningTranslate": "Автор - это человек, который написал определенное произведение", - "wordTranslate": "автор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff6c" - }, - "group": 4, - "page": 18, - "word": "breakdown", - "image": "files/19_2765.jpg", - "audio": "files/19_2765.mp3", - "audioMeaning": "files/19_2765_meaning.mp3", - "audioExample": "files/19_2765_example.mp3", - "textMeaning": "A breakdown is a failure to work correctly.", - "textExample": "Her car had a breakdown, and she wasn’t sure how to fix it.", - "transcription": "[bréikdàun]", - "__v": 0, - "textExampleTranslate": "У ее машины произошла поломка, и она не знала, как ее починить", - "textMeaningTranslate": "Авария - это сбой в работе", - "wordTranslate": "сломать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff6d" - }, - "group": 4, - "page": 18, - "word": "cargo", - "image": "files/19_2766.jpg", - "audio": "files/19_2766.mp3", - "audioMeaning": "files/19_2766_meaning.mp3", - "audioExample": "files/19_2766_example.mp3", - "textMeaning": "Cargo is the items carried by a ship or an airplane.", - "textExample": "The cargo of the ship got wet when it started raining.", - "transcription": "[kɑ́ːrgou]", - "__v": 0, - "textExampleTranslate": "Груз корабля промок, когда начался дождь", - "textMeaningTranslate": "Груз - это вещи, перевозимые на корабле или самолете", - "wordTranslate": "груз" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff6e" - }, - "group": 4, - "page": 18, - "word": "chapter", - "image": "files/19_2767.jpg", - "audio": "files/19_2767.mp3", - "audioMeaning": "files/19_2767_meaning.mp3", - "audioExample": "files/19_2767_example.mp3", - "textMeaning": "A chapter is a part of a book that usually has a number or a title.", - "textExample": "The first chapter of a book usually introduces the main character of a story.", - "transcription": "[ʧǽptər]", - "__v": 0, - "textExampleTranslate": "Первая глава книги обычно представляет главного героя истории", - "textMeaningTranslate": "Глава - это часть книги, которая обычно имеет номер или название", - "wordTranslate": "глава" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff6f" - }, - "group": 4, - "page": 18, - "word": "connect", - "image": "files/19_2768.jpg", - "audio": "files/19_2768.mp3", - "audioMeaning": "files/19_2768_meaning.mp3", - "audioExample": "files/19_2768_example.mp3", - "textMeaning": "To connect two things means to join them together.", - "textExample": "I connected the mouse to my laptop computer.", - "transcription": "[kənékt]", - "__v": 0, - "textExampleTranslate": "Я подключил мышь к своему ноутбуку", - "textMeaningTranslate": "Соединить две вещи - значит соединить их вместе", - "wordTranslate": "подключиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff71" - }, - "group": 4, - "page": 18, - "word": "flip", - "image": "files/19_2770.jpg", - "audio": "files/19_2770.mp3", - "audioMeaning": "files/19_2770_meaning.mp3", - "audioExample": "files/19_2770_example.mp3", - "textMeaning": "To flip means to press a switch quickly to turn it on or off.", - "textExample": "To turn on the lights, just flip this switch.", - "transcription": "[flip]", - "__v": 0, - "textExampleTranslate": "Чтобы включить свет, просто включите этот переключатель", - "textMeaningTranslate": "Перевернуть означает быстро нажать выключатель, чтобы включить или выключить его", - "wordTranslate": "кувырок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff70" - }, - "group": 4, - "page": 18, - "word": "etc.", - "image": "files/19_2769.jpg", - "audio": "files/19_2769.mp3", - "audioMeaning": "files/19_2769_meaning.mp3", - "audioExample": "files/19_2769_example.mp3", - "textMeaning": "Etc. is short for “etcetera.” It is used to refer to other unspecified objects.", - "textExample": "She was going to bring treats to the party: cookies, muffins, cake, etc.", - "transcription": "[etsétərə]", - "__v": 0, - "textExampleTranslate": "Она собиралась принести на вечеринку угощения: печенье, кексы, пирожные и т. Д", - "textMeaningTranslate": "'И т.д.' - это сокращение от 'и так далее'. Онo используется для ссылки на другие неуказанные объекты ", - "wordTranslate": "так далее" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff72" - }, - "group": 4, - "page": 18, - "word": "idle", - "image": "files/19_2771.jpg", - "audio": "files/19_2771.mp3", - "audioMeaning": "files/19_2771_meaning.mp3", - "audioExample": "files/19_2771_example.mp3", - "textMeaning": "If you are idle, you are not doing anything.", - "textExample": "She read a book to keep from being idle.", - "transcription": "[áidl]", - "__v": 0, - "textExampleTranslate": "Она прочитала книгу, чтобы не сидеть сложа руки", - "textMeaningTranslate": "Если вы бездействуете, вы ничего не делаете", - "wordTranslate": "холостой ход" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff73" - }, - "group": 4, - "page": 18, - "word": "notify", - "image": "files/19_2772.jpg", - "audio": "files/19_2772.mp3", - "audioMeaning": "files/19_2772_meaning.mp3", - "audioExample": "files/19_2772_example.mp3", - "textMeaning": "To notify someone of something is to tell them about it.", - "textExample": "The teacher notified us about a change to our assignment.", - "transcription": "[nóutəfài]", - "__v": 0, - "textExampleTranslate": "Учитель уведомил нас об изменении нашего задания", - "textMeaningTranslate": "Уведомить кого-то о чем-то, значит сказать ему об этом", - "wordTranslate": "уведомлять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff74" - }, - "group": 4, - "page": 18, - "word": "pea", - "image": "files/19_2773.jpg", - "audio": "files/19_2773.mp3", - "audioMeaning": "files/19_2773_meaning.mp3", - "audioExample": "files/19_2773_example.mp3", - "textMeaning": "Peas are a vegetable that is small, round, and green.", - "textExample": "His favorite food was peas.", - "transcription": "[piː]", - "__v": 0, - "textExampleTranslate": "Его любимой едой был горох", - "textMeaningTranslate": "Горох - это маленький, круглый и зеленый овощ", - "wordTranslate": "гороховый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff76" - }, - "group": 4, - "page": 18, - "word": "retain", - "image": "files/19_2775.jpg", - "audio": "files/19_2775.mp3", - "audioMeaning": "files/19_2775_meaning.mp3", - "audioExample": "files/19_2775_example.mp3", - "textMeaning": "To retain something is to keep it.", - "textExample": "Even by the afternoon, the day had retained the morning’s freshness.", - "transcription": "[ritéin]", - "__v": 0, - "textExampleTranslate": "Даже к полудню день сохранил утреннюю свежесть", - "textMeaningTranslate": "Сохранить что-то - значит сохранить", - "wordTranslate": "сохранить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff75" - }, - "group": 4, - "page": 18, - "word": "raisin", - "image": "files/19_2774.jpg", - "audio": "files/19_2774.mp3", - "audioMeaning": "files/19_2774_meaning.mp3", - "audioExample": "files/19_2774_example.mp3", - "textMeaning": "A raisin is a dried grape.", - "textExample": "Raisins are one of my favorite snacks.", - "transcription": "[réizn]", - "__v": 0, - "textExampleTranslate": "Изюм - одна из моих любимых закусок", - "textMeaningTranslate": "Изюм - это высушенный виноград", - "wordTranslate": "изюм" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff77" - }, - "group": 4, - "page": 18, - "word": "state", - "image": "files/19_2776.jpg", - "audio": "files/19_2776.mp3", - "audioMeaning": "files/19_2776_meaning.mp3", - "audioExample": "files/19_2776_example.mp3", - "textMeaning": "To state something means to say it in a definite way.", - "textExample": "The president stated his opinion about the world’s health concerns.", - "transcription": "[steit]", - "__v": 0, - "textExampleTranslate": "Президент высказал свое мнение о проблемах здравоохранения в мире", - "textMeaningTranslate": "Заявить что-то означает сказать это определенным образом", - "wordTranslate": "штат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff78" - }, - "group": 4, - "page": 18, - "word": "tray", - "image": "files/19_2777.jpg", - "audio": "files/19_2777.mp3", - "audioMeaning": "files/19_2777_meaning.mp3", - "audioExample": "files/19_2777_example.mp3", - "textMeaning": "A tray is a fat plate used to hold food.", - "textExample": "The waiter brought our food on a tray.", - "transcription": "[trei]", - "__v": 0, - "textExampleTranslate": "Официант принес нашу еду на подносе", - "textMeaningTranslate": "Поднос - это толстая тарелка, используемая для хранения пищи", - "wordTranslate": "лоток" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff79" - }, - "group": 4, - "page": 18, - "word": "unfortunate", - "image": "files/19_2778.jpg", - "audio": "files/19_2778.mp3", - "audioMeaning": "files/19_2778_meaning.mp3", - "audioExample": "files/19_2778_example.mp3", - "textMeaning": "If something is unfortunate, it is bad or unlucky.", - "textExample": "It was unfortunate that Dave’s team lost, but he still had fun.", - "transcription": "[ʌ̀nfɔ́ːrtʃənit]", - "__v": 0, - "textExampleTranslate": "К сожалению, команда Дэйва проиграла, но он все еще веселился", - "textMeaningTranslate": "Если что-то неудачно, это плохо или не повезло", - "wordTranslate": "к сожалению" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff7a" - }, - "group": 4, - "page": 18, - "word": "vivid", - "image": "files/19_2779.jpg", - "audio": "files/19_2779.mp3", - "audioMeaning": "files/19_2779_meaning.mp3", - "audioExample": "files/19_2779_example.mp3", - "textMeaning": "When something is vivid, it is bright and colorful.", - "textExample": "The figures in the painting were vivid.", - "transcription": "[vívid]", - "__v": 0, - "textExampleTranslate": "Фигуры на картине были яркими", - "textMeaningTranslate": "Когда что-то яркое, оно яркое и красочное", - "wordTranslate": "яркий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff7b" - }, - "group": 4, - "page": 18, - "word": "vomit", - "image": "files/19_2780.jpg", - "audio": "files/19_2780.mp3", - "audioMeaning": "files/19_2780_meaning.mp3", - "audioExample": "files/19_2780_example.mp3", - "textMeaning": "To vomit means to have food come up from one’s stomach.", - "textExample": "It is common for women to vomit when they are pregnant.", - "transcription": "[vɑ́mit]", - "__v": 0, - "textExampleTranslate": "У женщин часто бывает рвота, когда они беременны", - "textMeaningTranslate": "Рвота означает, что пища поднимается из желудка", - "wordTranslate": "рвота" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff7c" - }, - "group": 4, - "page": 19, - "word": "ambition", - "image": "files/20_2781.jpg", - "audio": "files/20_2781.mp3", - "audioMeaning": "files/20_2781_meaning.mp3", - "audioExample": "files/20_2781_example.mp3", - "textMeaning": "Ambition is the desire to succeed and to become the best at something.", - "textExample": "His great ambition led him to try to climb the mountain alone.", - "transcription": "[æmbíʃən]", - "__v": 0, - "textExampleTranslate": "Его великие амбиции заставили его попытаться подняться на гору в одиночку", - "textMeaningTranslate": "Амбиция - это желание преуспеть и стать чем-то лучшим", - "wordTranslate": "амбиция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff7d" - }, - "group": 4, - "page": 19, - "word": "ambulance", - "image": "files/20_2782.jpg", - "audio": "files/20_2782.mp3", - "audioMeaning": "files/20_2782_meaning.mp3", - "audioExample": "files/20_2782_example.mp3", - "textMeaning": "An ambulance is a vehicle that transports people in a medical emergency.", - "textExample": "The ambulance sped through the street to get to the accident.", - "transcription": "[ǽmbjuləns]", - "__v": 0, - "textExampleTranslate": "Скорая помощь неслась через улицу, чтобы попасть в аварию", - "textMeaningTranslate": "Скорая помощь - это транспортное средство, которое перевозит людей в экстренной медицинской ситуации", - "wordTranslate": "скорая помощь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff7e" - }, - "group": 4, - "page": 19, - "word": "ankle", - "image": "files/20_2783.jpg", - "audio": "files/20_2783.mp3", - "audioMeaning": "files/20_2783_meaning.mp3", - "audioExample": "files/20_2783_example.mp3", - "textMeaning": "An ankle connects your leg to your foot.", - "textExample": "The man hurt his ankle while jogging in the park.", - "transcription": "[ǽŋkl]", - "__v": 0, - "textExampleTranslate": "Человек повредил лодыжку во время пробежки в парке", - "textMeaningTranslate": "Лодыжка соединяет вашу ногу с вашей ногой", - "wordTranslate": "лодыжка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff7f" - }, - "group": 4, - "page": 19, - "word": "cabin", - "image": "files/20_2784.jpg", - "audio": "files/20_2784.mp3", - "audioMeaning": "files/20_2784_meaning.mp3", - "audioExample": "files/20_2784_example.mp3", - "textMeaning": "A cabin is a small wooden house in a forest or camping area.", - "textExample": "The man reached the mountain cabin after a long day of hiking along the river.", - "transcription": "[kǽbin]", - "__v": 0, - "textExampleTranslate": "Человек достиг горной хижины после долгого дня походов по реке", - "textMeaningTranslate": "Хижина - это небольшой деревянный домик в лесу или кемпинге", - "wordTranslate": "салон самолета" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff80" - }, - "group": 4, - "page": 19, - "word": "cave", - "image": "files/20_2787.jpg", - "audio": "files/20_2787.mp3", - "audioMeaning": "files/20_2787_meaning.mp3", - "audioExample": "files/20_2787_example.mp3", - "textMeaning": "A cave is an open space or hole underground or inside a mountain or cliff.", - "textExample": "A crystal blue lake could be found in the underground cave.", - "transcription": "[keiv]", - "__v": 0, - "textExampleTranslate": "В подземной пещере можно найти кристально голубое озеро", - "textMeaningTranslate": "Пещера - это открытое пространство или яма под землей или внутри горы или скалы", - "wordTranslate": "пещера" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff81" - }, - "group": 4, - "page": 19, - "word": "calendar", - "image": "files/20_2785.jpg", - "audio": "files/20_2785.mp3", - "audioMeaning": "files/20_2785_meaning.mp3", - "audioExample": "files/20_2785_example.mp3", - "textMeaning": "A calendar is a chart that shows the days, weeks, and months of a year.", - "textExample": "Marco used an online calendar to keep track of his schedule.", - "transcription": "[kǽləndər]", - "__v": 0, - "textExampleTranslate": "Марко использовал онлайн-календарь, чтобы следить за своим расписанием", - "textMeaningTranslate": "Календарь - это график, который показывает дни, недели и месяцы года", - "wordTranslate": "календарь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff82" - }, - "group": 4, - "page": 19, - "word": "contingent", - "image": "files/20_2789.jpg", - "audio": "files/20_2789.mp3", - "audioMeaning": "files/20_2789_meaning.mp3", - "audioExample": "files/20_2789_example.mp3", - "textMeaning": "A contingent is a set of people that are part of a larger group.", - "textExample": "The movie star stood in front of an entire contingent of photographers.", - "transcription": "[kəntíndʒənt]", - "__v": 0, - "textExampleTranslate": "Кинозвезда стояла перед целым контингентом фотографов", - "textMeaningTranslate": "Контингент - это группа людей, которые входят в большую группу", - "wordTranslate": "контингент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff83" - }, - "group": 4, - "page": 19, - "word": "calorie", - "image": "files/20_2786.jpg", - "audio": "files/20_2786.mp3", - "audioMeaning": "files/20_2786_meaning.mp3", - "audioExample": "files/20_2786_example.mp3", - "textMeaning": "A calorie is a unit of heat used to measure how much energy a food will produce.", - "textExample": "My sister is on a low-calorie diet for fitness training.", - "transcription": "[kǽləri]", - "__v": 0, - "textExampleTranslate": "Моя сестра на низкокалорийной диете для фитнеса", - "textMeaningTranslate": "Калорийность - это единица измерения тепла, используемая для измерения количества энергии, выделяемой пищей", - "wordTranslate": "калории" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff84" - }, - "group": 4, - "page": 19, - "word": "constantly", - "image": "files/20_2788.jpg", - "audio": "files/20_2788.mp3", - "audioMeaning": "files/20_2788_meaning.mp3", - "audioExample": "files/20_2788_example.mp3", - "textMeaning": "Constantly means doing something on a continuous basis.", - "textExample": "He was constantly checking his watch to see if he was late.", - "transcription": "[kάnstəntli]", - "__v": 0, - "textExampleTranslate": "Он постоянно проверял свои часы, чтобы увидеть, не опоздал ли", - "textMeaningTranslate": "Постоянно означает делать что-то на постоянной основе", - "wordTranslate": "постоянно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff85" - }, - "group": 4, - "page": 19, - "word": "deadline", - "image": "files/20_2790.jpg", - "audio": "files/20_2790.mp3", - "audioMeaning": "files/20_2790_meaning.mp3", - "audioExample": "files/20_2790_example.mp3", - "textMeaning": "A deadline is the time by which you need to have something completed.", - "textExample": "Marius had a short deadline in which to finish his report.", - "transcription": "[dedlàin]", - "__v": 0, - "textExampleTranslate": "У Мариуса был короткий срок, чтобы закончить свой доклад", - "textMeaningTranslate": "Крайний срок - это время, когда вам нужно что-то завершить", - "wordTranslate": "крайний срок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff86" - }, - "group": 4, - "page": 19, - "word": "flank", - "image": "files/20_2792.jpg", - "audio": "files/20_2792.mp3", - "audioMeaning": "files/20_2792_meaning.mp3", - "audioExample": "files/20_2792_example.mp3", - "textMeaning": "To flank is to be positioned at the side of something or someone.", - "textExample": "The mayor entered the room flanked by her advisers.", - "transcription": "[flæŋk]", - "__v": 0, - "textExampleTranslate": "Мэр вошел в комнату в окружении своих советников", - "textMeaningTranslate": "С фланга - значит быть на стороне чего-то или кого-то", - "wordTranslate": "обрамляют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff87" - }, - "group": 4, - "page": 19, - "word": "exert", - "image": "files/20_2791.jpg", - "audio": "files/20_2791.mp3", - "audioMeaning": "files/20_2791_meaning.mp3", - "audioExample": "files/20_2791_example.mp3", - "textMeaning": "To exert means to use strength or ability to do something.", - "textExample": "You exert a lot of energy when you lift weights.", - "transcription": "[igzə́ːrt]", - "__v": 0, - "textExampleTranslate": "Вы тратите много энергии, когда поднимаете вес", - "textMeaningTranslate": "Оказывать - значит использовать силу или способность что-то делать", - "wordTranslate": "напрягать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff88" - }, - "group": 4, - "page": 19, - "word": "fond", - "image": "files/20_2793.jpg", - "audio": "files/20_2793.mp3", - "audioMeaning": "files/20_2793_meaning.mp3", - "audioExample": "files/20_2793_example.mp3", - "textMeaning": "To be fond of something means to cherish or like it.", - "textExample": "The mother cow was very fond of her lovely little calf.", - "transcription": "[fand]", - "__v": 0, - "textExampleTranslate": "Мать-корова очень любила своего милого маленького теленка", - "textMeaningTranslate": "Любить что-то значит беречь или любить", - "wordTranslate": "любят" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff89" - }, - "group": 4, - "page": 19, - "word": "forbid", - "image": "files/20_2794.jpg", - "audio": "files/20_2794.mp3", - "audioMeaning": "files/20_2794_meaning.mp3", - "audioExample": "files/20_2794_example.mp3", - "textMeaning": "To forbid means to order someone not to do something.", - "textExample": "After Robert used his crayons on the wall, his mother wanted to forbid him from using them at all!", - "transcription": "[fərbíd]", - "__v": 0, - "textExampleTranslate": "После того, как Роберт использовал свои карандаши на стене, его мать хотела запретить ему использовать их вообще!", - "textMeaningTranslate": "Запрещать - значит приказывать кому-то ничего не делать", - "wordTranslate": "запретить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff8a" - }, - "group": 4, - "page": 19, - "word": "haul", - "image": "files/20_2795.jpg", - "audio": "files/20_2795.mp3", - "audioMeaning": "files/20_2795_meaning.mp3", - "audioExample": "files/20_2795_example.mp3", - "textMeaning": "To haul something means to carry it from place to place.", - "textExample": "The porter said he’d haul our suitcases up to our hotel room.", - "transcription": "[hɔːl]", - "__v": 0, - "textExampleTranslate": "Швейцар сказал, что он отвезет наши чемоданы в наш гостиничный номер", - "textMeaningTranslate": "Переносить что-то значит нести это с места на место", - "wordTranslate": "перетаскивание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff8b" - }, - "group": 4, - "page": 19, - "word": "impair", - "image": "files/20_2796.jpg", - "audio": "files/20_2796.mp3", - "audioMeaning": "files/20_2796_meaning.mp3", - "audioExample": "files/20_2796_example.mp3", - "textMeaning": "To impair something means to make it weaker or worse.", - "textExample": "Regularly eating too much can impair your health.", - "transcription": "[impέər]", - "__v": 0, - "textExampleTranslate": "Регулярное употребление слишком большого количества пищи может нанести вред вашему здоровью", - "textMeaningTranslate": "Повредить что-то значит сделать его слабее или хуже", - "wordTranslate": "ухудшает" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff8c" - }, - "group": 4, - "page": 19, - "word": "impatient", - "image": "files/20_2797.jpg", - "audio": "files/20_2797.mp3", - "audioMeaning": "files/20_2797_meaning.mp3", - "audioExample": "files/20_2797_example.mp3", - "textMeaning": "To be impatient means to get angry or anxious when something takes too much time.", - "textExample": "The impatient teacher could not control the students in her classroom.", - "transcription": "[impéiʃənt]", - "__v": 0, - "textExampleTranslate": "Нетерпеливый учитель не мог контролировать учеников в своем классе", - "textMeaningTranslate": "Быть нетерпеливым означает злиться или беспокоиться, когда что-то занимает слишком много времени", - "wordTranslate": "нетерпеливый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff8d" - }, - "group": 4, - "page": 19, - "word": "mid", - "image": "files/20_2798.jpg", - "audio": "files/20_2798.mp3", - "audioMeaning": "files/20_2798_meaning.mp3", - "audioExample": "files/20_2798_example.mp3", - "textMeaning": "Mid means in the middle or center of something.", - "textExample": "Cassandra fell asleep mid-movie.", - "transcription": "[mid]", - "__v": 0, - "textExampleTranslate": "Кассандра уснула в середине фильма", - "textMeaningTranslate": "Середина означает середину или центр чего-либо", - "wordTranslate": "середина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff8e" - }, - "group": 4, - "page": 19, - "word": "nutrition", - "image": "files/20_2799.jpg", - "audio": "files/20_2799.mp3", - "audioMeaning": "files/20_2799_meaning.mp3", - "audioExample": "files/20_2799_example.mp3", - "textMeaning": "Nutrition is the process of eating the right kind of food in order to stay healthy.", - "textExample": "The mother always made sure that her baby had good nutrition.", - "transcription": "[njuːtríʃən]", - "__v": 0, - "textExampleTranslate": "Мать всегда следила за тем, чтобы ее ребенок хорошо питался", - "textMeaningTranslate": "Питание - это процесс правильного питания, чтобы оставаться здоровым", - "wordTranslate": "питание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff8f" - }, - "group": 4, - "page": 19, - "word": "optimist", - "image": "files/20_2800.jpg", - "audio": "files/20_2800.mp3", - "audioMeaning": "files/20_2800_meaning.mp3", - "audioExample": "files/20_2800_example.mp3", - "textMeaning": "An optimist is someone who has a lot of hope and always sees the bright side of things.", - "textExample": "Joe was an optimist, so he believed he would get the job that he wanted.", - "transcription": "[άptəmist]", - "__v": 0, - "textExampleTranslate": "Джо был оптимистом, поэтому он верил, что получит работу, которую хотел", - "textMeaningTranslate": "Оптимист - это тот, кто имеет много надежд и всегда видит светлую сторону вещей", - "wordTranslate": "оптимист" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff90" - }, - "group": 4, - "page": 20, - "word": "background", - "image": "files/21_2801.jpg", - "audio": "files/21_2801.mp3", - "audioMeaning": "files/21_2801_meaning.mp3", - "audioExample": "files/21_2801_example.mp3", - "textMeaning": "A background is a person’s education, family, and experience.", - "textExample": "The new teacher had a background in science and math.", - "transcription": "[bǽkgràund]", - "__v": 0, - "textExampleTranslate": "Новый учитель имел опыт работы в науке и математике", - "textMeaningTranslate": "Фон - это образование, семья и опыт человека", - "wordTranslate": "фон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff95" - }, - "group": 4, - "page": 20, - "word": "folklore", - "image": "files/21_2806.jpg", - "audio": "files/21_2806.mp3", - "audioMeaning": "files/21_2806_meaning.mp3", - "audioExample": "files/21_2806_example.mp3", - "textMeaning": "Folklore is the collection of beliefs and stories of a culture.", - "textExample": "India’s folklore has stories about great warriors written in long poems.", - "transcription": "[fóuklɔ̀ːr]", - "__v": 0, - "textExampleTranslate": "В фольклоре Индии есть истории о великих воинах, написанные в длинных стихах", - "textMeaningTranslate": "Фольклор - это собрание верований и историй культуры", - "wordTranslate": "фольклор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff94" - }, - "group": 4, - "page": 20, - "word": "disease", - "image": "files/21_2805.jpg", - "audio": "files/21_2805.mp3", - "audioMeaning": "files/21_2805_meaning.mp3", - "audioExample": "files/21_2805_example.mp3", - "textMeaning": "A disease is an illness that causes specific problems.", - "textExample": "He had a disease that caused him to lose his hearing.", - "transcription": "[dizíːz]", - "__v": 0, - "textExampleTranslate": "У него было заболевание, которое заставило его потерять слух", - "textMeaningTranslate": "Болезнь - это болезнь, которая вызывает определенные проблемы", - "wordTranslate": "болезнь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff92" - }, - "group": 4, - "page": 20, - "word": "chronicle", - "image": "files/21_2803.jpg", - "audio": "files/21_2803.mp3", - "audioMeaning": "files/21_2803_meaning.mp3", - "audioExample": "files/21_2803_example.mp3", - "textMeaning": "To chronicle an event means to record it.", - "textExample": "The daily newspaper chronicles local and world events.", - "transcription": "[krɑ́nikl]", - "__v": 0, - "textExampleTranslate": "Ежедневная газета ведет хронику местных и мировых событий", - "textMeaningTranslate": "Записать в журнал событие означает записать его", - "wordTranslate": "летопись" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff93" - }, - "group": 4, - "page": 20, - "word": "copper", - "image": "files/21_2804.jpg", - "audio": "files/21_2804.mp3", - "audioMeaning": "files/21_2804_meaning.mp3", - "audioExample": "files/21_2804_example.mp3", - "textMeaning": "Copper is a red-brown metal often used in electric wire and pipes.", - "textExample": "Ancient hunters melted copper to make knives and spears.", - "transcription": "[kɑ́pər]", - "__v": 0, - "textExampleTranslate": "Древние охотники плавили медь для изготовления ножей и копий", - "textMeaningTranslate": "Медь - это красно-коричневый металл, часто используемый в электрических проводах и трубах", - "wordTranslate": "медь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff91" - }, - "group": 4, - "page": 20, - "word": "bait", - "image": "files/21_2802.jpg", - "audio": "files/21_2802.mp3", - "audioMeaning": "files/21_2802_meaning.mp3", - "audioExample": "files/21_2802_example.mp3", - "textMeaning": "Bait is something used to trick a person or thing to do something.", - "textExample": "The best bait for catching fish is a big, fat worm.", - "transcription": "[beit]", - "__v": 0, - "textExampleTranslate": "Лучшая приманка для ловли рыбы - большой жирный червь", - "textMeaningTranslate": "Приманка - это то, что обманывает человека или вещь, чтобы что-то сделать", - "wordTranslate": "приманка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff96" - }, - "group": 4, - "page": 20, - "word": "infect", - "image": "files/21_2807.jpg", - "audio": "files/21_2807.mp3", - "audioMeaning": "files/21_2807_meaning.mp3", - "audioExample": "files/21_2807_example.mp3", - "textMeaning": "To infect someone means to give them an illness.", - "textExample": "The common cold infects hundreds of millions of people each year.", - "transcription": "[infékt]", - "__v": 0, - "textExampleTranslate": "Простуда заражает сотни миллионов людей каждый год", - "textMeaningTranslate": "Заразить кого-то - значит дать ему болезнь", - "wordTranslate": "заразить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff98" - }, - "group": 4, - "page": 20, - "word": "literature", - "image": "files/21_2809.jpg", - "audio": "files/21_2809.mp3", - "audioMeaning": "files/21_2809_meaning.mp3", - "audioExample": "files/21_2809_example.mp3", - "textMeaning": "Literature is books, plays, and poetry.", - "textExample": "Early American literature covers the poetry and stories from 1500 to 1800.", - "transcription": "[lítərətʃər]", - "__v": 0, - "textExampleTranslate": "Ранняя американская литература охватывает поэзию и рассказы с 1500 по 1800 год", - "textMeaningTranslate": "Литература - это книги, пьесы и поэзия", - "wordTranslate": "литература" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff97" - }, - "group": 4, - "page": 20, - "word": "itch", - "image": "files/21_2808.jpg", - "audio": "files/21_2808.mp3", - "audioMeaning": "files/21_2808_meaning.mp3", - "audioExample": "files/21_2808_example.mp3", - "textMeaning": "To itch means to have an unpleasant feeling that you want to scratch.", - "textExample": "The rough fabric in his shirt made his neck itch.", - "transcription": "[itʃ]", - "__v": 0, - "textExampleTranslate": "Грубая ткань в его рубашке заставила его шею зудеть", - "textMeaningTranslate": "Зудеть значит иметь неприятное ощущение, что хочешь поцарапать", - "wordTranslate": "зуд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff99" - }, - "group": 4, - "page": 20, - "word": "millennium", - "image": "files/21_2810.jpg", - "audio": "files/21_2810.mp3", - "audioMeaning": "files/21_2810_meaning.mp3", - "audioExample": "files/21_2810_example.mp3", - "textMeaning": "A millennium is 1000 years.", - "textExample": "Stonehenge is believed to have been built about five millennia ago.", - "transcription": "[miléniəm]", - "__v": 0, - "textExampleTranslate": "Стоунхендж, как полагают, был построен около пяти тысячелетий назад", - "textMeaningTranslate": "Тысячелетие - 1000 лет", - "wordTranslate": "тысячелетие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff9a" - }, - "group": 4, - "page": 20, - "word": "myth", - "image": "files/21_2811.jpg", - "audio": "files/21_2811.mp3", - "audioMeaning": "files/21_2811_meaning.mp3", - "audioExample": "files/21_2811_example.mp3", - "textMeaning": "A myth is a traditional story that explains a culture’s history and beliefs.", - "textExample": "In Greece, there was a myth about a woman who had snakes for hair.", - "transcription": "[miθ]", - "__v": 0, - "textExampleTranslate": "В Греции был миф о женщине, у которой были змеи для волос", - "textMeaningTranslate": "Миф - это традиционная история, которая объясняет историю и убеждения культуры", - "wordTranslate": "миф" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff9b" - }, - "group": 4, - "page": 20, - "word": "promote", - "image": "files/21_2812.jpg", - "audio": "files/21_2812.mp3", - "audioMeaning": "files/21_2812_meaning.mp3", - "audioExample": "files/21_2812_example.mp3", - "textMeaning": "To promote someone means to raise them to a higher position or rank.", - "textExample": "After two years at the company, she was promoted to manager.", - "transcription": "[prəmóut]", - "__v": 0, - "textExampleTranslate": "После двух лет работы в компании ее повысили до менеджера", - "textMeaningTranslate": "Продвинуть кого-либо означает поднять его на более высокую должность или звание", - "wordTranslate": "содействовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff9d" - }, - "group": 4, - "page": 20, - "word": "religion", - "image": "files/21_2814.jpg", - "audio": "files/21_2814.mp3", - "audioMeaning": "files/21_2814_meaning.mp3", - "audioExample": "files/21_2814_example.mp3", - "textMeaning": "A religion is a belief in a god or gods.", - "textExample": "Their religion taught that people should forgive their enemies.", - "transcription": "[rilídʒən]", - "__v": 0, - "textExampleTranslate": "Их религия учит, что люди должны прощать своих врагов", - "textMeaningTranslate": "Религия - это вера в бога или богов", - "wordTranslate": "религия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff9c" - }, - "group": 4, - "page": 20, - "word": "relate", - "image": "files/21_2813.jpg", - "audio": "files/21_2813.mp3", - "audioMeaning": "files/21_2813_meaning.mp3", - "audioExample": "files/21_2813_example.mp3", - "textMeaning": "To relate to something means to have a connection with it.", - "textExample": "A company’s plan usually relates to how much profit it can make.", - "transcription": "[riléit]", - "__v": 0, - "textExampleTranslate": "План компании обычно связан с тем, сколько прибыли она может получить", - "textMeaningTranslate": "Относиться к чему-либо - значит иметь с ним связь", - "wordTranslate": "иметь отношение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff9f" - }, - "group": 4, - "page": 20, - "word": "teller", - "image": "files/21_2816.jpg", - "audio": "files/21_2816.mp3", - "audioMeaning": "files/21_2816_meaning.mp3", - "audioExample": "files/21_2816_example.mp3", - "textMeaning": "A teller is a person who works with a bank’s customers.", - "textExample": "The teller at the bank helped Kelly put money into a savings account.", - "transcription": "[téləːr]", - "__v": 0, - "textExampleTranslate": "Кассир в банке помог Келли положить деньги на сберегательный счет", - "textMeaningTranslate": "Кассир - это человек, который работает с клиентами банка", - "wordTranslate": "кассир" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21aff9e" - }, - "group": 4, - "page": 20, - "word": "sum", - "image": "files/21_2815.jpg", - "audio": "files/21_2815.mp3", - "audioMeaning": "files/21_2815_meaning.mp3", - "audioExample": "files/21_2815_example.mp3", - "textMeaning": "A sum is a specific amount of money.", - "textExample": "He calculated the numbers to see what the sum of his bills would be.", - "transcription": "[sʌm]", - "__v": 0, - "textExampleTranslate": "Он рассчитал числа, чтобы увидеть, какова будет сумма его счетов", - "textMeaningTranslate": "Сумма - это определенная сумма денег", - "wordTranslate": "подводить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affa0" - }, - "group": 4, - "page": 20, - "word": "trustworthy", - "image": "files/21_2817.jpg", - "audio": "files/21_2817.mp3", - "audioMeaning": "files/21_2817_meaning.mp3", - "audioExample": "files/21_2817_example.mp3", - "textMeaning": "If someone is trustworthy, they are honest and truthful.", - "textExample": "Mary is one of the most trustworthy people I’ve ever met.", - "transcription": "[trʌ́stwə̀ːrði]", - "__v": 0, - "textExampleTranslate": "Мария - один из самых надежных людей, которых я когда-либо встречал", - "textMeaningTranslate": "Если кто-то заслуживает доверия, он честен и правдив", - "wordTranslate": "заслуживающий доверия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affa1" - }, - "group": 4, - "page": 20, - "word": "update", - "image": "files/21_2818.jpg", - "audio": "files/21_2818.mp3", - "audioMeaning": "files/21_2818_meaning.mp3", - "audioExample": "files/21_2818_example.mp3", - "textMeaning": "To update something means to make it more modern.", - "textExample": "We need to update the programs on our computers.", - "transcription": "[ʌpdéit]", - "__v": 0, - "textExampleTranslate": "Нам нужно обновить программы на наших компьютерах", - "textMeaningTranslate": "Обновлять что-то - значит делать это более современным", - "wordTranslate": "обновить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affa2" - }, - "group": 4, - "page": 20, - "word": "vein", - "image": "files/21_2819.jpg", - "audio": "files/21_2819.mp3", - "audioMeaning": "files/21_2819_meaning.mp3", - "audioExample": "files/21_2819_example.mp3", - "textMeaning": "A vein is a tube in the body that carries blood toward the heart.", - "textExample": "The blue veins in my hand are just under my skin.", - "transcription": "[vein]", - "__v": 0, - "textExampleTranslate": "Синие вены в моей руке просто под моей кожей", - "textMeaningTranslate": "Вена - это труба в организме, которая несет кровь к сердцу", - "wordTranslate": "вена" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affa3" - }, - "group": 4, - "page": 20, - "word": "venom", - "image": "files/21_2820.jpg", - "audio": "files/21_2820.mp3", - "audioMeaning": "files/21_2820_meaning.mp3", - "audioExample": "files/21_2820_example.mp3", - "textMeaning": "Venom is a poisonous substance that comes from animals or plants.", - "textExample": "A snake’s venom can be used to cure the illnesses it creates.", - "transcription": "[vénəm]", - "__v": 0, - "textExampleTranslate": "Яд змеи может быть использован для лечения болезней, которые она создает", - "textMeaningTranslate": "Яд - это ядовитое вещество, которое исходит от животных или растений", - "wordTranslate": "яд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affa4" - }, - "group": 4, - "page": 21, - "word": "charity", - "image": "files/22_2821.jpg", - "audio": "files/22_2821.mp3", - "audioMeaning": "files/22_2821_meaning.mp3", - "audioExample": "files/22_2821_example.mp3", - "textMeaning": "Charity is an act of giving help, usually money, to those who need it.", - "textExample": "Thanks to his friends’ charity, he had enough money to pay the rent.", - "transcription": "[tʃǽrəti]", - "__v": 0, - "textExampleTranslate": "Благодаря благотворительности его друзей у него было достаточно денег, чтобы заплатить за квартиру", - "textMeaningTranslate": "Благотворительность - это акт оказания помощи, обычно денег, тем, кто в ней нуждается", - "wordTranslate": "благотворительность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affa5" - }, - "group": 4, - "page": 21, - "word": "commerce", - "image": "files/22_2822.jpg", - "audio": "files/22_2822.mp3", - "audioMeaning": "files/22_2822_meaning.mp3", - "audioExample": "files/22_2822_example.mp3", - "textMeaning": "Commerce is the activity of buying and selling things.", - "textExample": "The new shopping mall increased the commerce in that section of town.", - "transcription": "[kɑ́mərs]", - "__v": 0, - "textExampleTranslate": "Новый торговый центр увеличил торговлю в этом районе города", - "textMeaningTranslate": "Торговля - это деятельность по покупке и продаже вещей", - "wordTranslate": "коммерция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affa6" - }, - "group": 4, - "page": 21, - "word": "condemn", - "image": "files/22_2823.jpg", - "audio": "files/22_2823.mp3", - "audioMeaning": "files/22_2823_meaning.mp3", - "audioExample": "files/22_2823_example.mp3", - "textMeaning": "To condemn someone means to give them a specific punishment.", - "textExample": "The judge condemned the criminal to five years in prison.", - "transcription": "[kəndém]", - "__v": 0, - "textExampleTranslate": "Судья осудил преступника на пять лет тюрьмы", - "textMeaningTranslate": "Осудить кого-либо - значит назначить ему конкретное наказание", - "wordTranslate": "осудить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affa7" - }, - "group": 4, - "page": 21, - "word": "cozy", - "image": "files/22_2824.jpg", - "audio": "files/22_2824.mp3", - "audioMeaning": "files/22_2824_meaning.mp3", - "audioExample": "files/22_2824_example.mp3", - "textMeaning": "If something is cozy, then it is comfortable, warm, and relaxing.", - "textExample": "The thick blanket made the bed very cozy.", - "transcription": "[kóuzi]", - "__v": 0, - "textExampleTranslate": "Толстое одеяло сделало кровать очень уютной", - "textMeaningTranslate": "Если что-то уютно, то комфортно, тепло и расслабляюще", - "wordTranslate": "уютный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affa8" - }, - "group": 4, - "page": 21, - "word": "deplete", - "image": "files/22_2825.jpg", - "audio": "files/22_2825.mp3", - "audioMeaning": "files/22_2825_meaning.mp3", - "audioExample": "files/22_2825_example.mp3", - "textMeaning": "To deplete an amount of something means to use all of it up.", - "textExample": "All the driving he was doing was depleting his car’s fuel supply.", - "transcription": "[diplíːt]", - "__v": 0, - "textExampleTranslate": "Все, что он делал за рулем, истощало запас топлива в его машине", - "textMeaningTranslate": "Истощить количество чего-либо означает использовать все это", - "wordTranslate": "истощению" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affa9" - }, - "group": 4, - "page": 21, - "word": "economy", - "image": "files/22_2826.jpg", - "audio": "files/22_2826.mp3", - "audioMeaning": "files/22_2826_meaning.mp3", - "audioExample": "files/22_2826_example.mp3", - "textMeaning": "An economy is the money and businesses of a country or region.", - "textExample": "The factory was good for the economy because it brought jobs to the area.", - "transcription": "[ikɑ́nəmi]", - "__v": 0, - "textExampleTranslate": "Завод был хорош для экономики, потому что он приносил рабочие места в область", - "textMeaningTranslate": "Экономика - это деньги и бизнес страны или региона", - "wordTranslate": "экономика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affaa" - }, - "group": 4, - "page": 21, - "word": "empire", - "image": "files/22_2827.jpg", - "audio": "files/22_2827.mp3", - "audioMeaning": "files/22_2827_meaning.mp3", - "audioExample": "files/22_2827_example.mp3", - "textMeaning": "An empire is a large group of countries ruled by an emperor or empress.", - "textExample": "The emperor built roads to make travel easier throughout the empire.", - "transcription": "[émpaiər]", - "__v": 0, - "textExampleTranslate": "Император строил дороги, чтобы облегчить путешествие по всей империи", - "textMeaningTranslate": "Империя - это большая группа стран, управляемых императором или императрицей", - "wordTranslate": "империя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affab" - }, - "group": 4, - "page": 21, - "word": "goods", - "image": "files/22_2828.jpg", - "audio": "files/22_2828.mp3", - "audioMeaning": "files/22_2828_meaning.mp3", - "audioExample": "files/22_2828_example.mp3", - "textMeaning": "Goods are anything that can be bought or sold.", - "textExample": "Shoes, hats, dresses, and purses were the goods she wanted to buy.", - "transcription": "[gudz]", - "__v": 0, - "textExampleTranslate": "Обувь, шляпы, платья и кошельки были тем товаром, который она хотела купить", - "textMeaningTranslate": "Товары - это все, что можно купить или продать", - "wordTranslate": "груз" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affac" - }, - "group": 4, - "page": 21, - "word": "heed", - "image": "files/22_2829.jpg", - "audio": "files/22_2829.mp3", - "audioMeaning": "files/22_2829_meaning.mp3", - "audioExample": "files/22_2829_example.mp3", - "textMeaning": "To heed something means to obey or follow it.", - "textExample": "You should heed the advice on the sign and not drive so fast.", - "transcription": "[hiːd]", - "__v": 0, - "textExampleTranslate": "Вы должны прислушаться к советам на знаке и не ездить так быстро", - "textMeaningTranslate": "Прислушиваться к чему-либо - значит подчиняться или следовать этому", - "wordTranslate": "берегись" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affad" - }, - "group": 4, - "page": 21, - "word": "hitchhike", - "image": "files/22_2830.jpg", - "audio": "files/22_2830.mp3", - "audioMeaning": "files/22_2830_meaning.mp3", - "audioExample": "files/22_2830_example.mp3", - "textMeaning": "To hitchhike means to travel by asking for rides from passing vehicles.", - "textExample": "She didn’t have a car, so she hitchhiked several miles to her brother’s home.", - "transcription": "[hítʃhàik]", - "__v": 0, - "textExampleTranslate": "У нее не было машины, поэтому она путешествовала автостопом несколько миль до дома своего брата", - "textMeaningTranslate": "Путешествовать автостопом значит путешествовать, прося поездки от проезжающих транспортных средств", - "wordTranslate": "автостоп" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affae" - }, - "group": 4, - "page": 21, - "word": "mock", - "image": "files/22_2831.jpg", - "audio": "files/22_2831.mp3", - "audioMeaning": "files/22_2831_meaning.mp3", - "audioExample": "files/22_2831_example.mp3", - "textMeaning": "To mock someone means to tease them in a cruel way.", - "textExample": "The girls mocked Nancy because she was a new student.", - "transcription": "[mɑk]", - "__v": 0, - "textExampleTranslate": "Девочки издевались над Нэнси, потому что она была новой ученицей", - "textMeaningTranslate": "Издеваться над кем-то - значит жестоко дразнить его", - "wordTranslate": "издеваться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affaf" - }, - "group": 4, - "page": 21, - "word": "neutral", - "image": "files/22_2832.jpg", - "audio": "files/22_2832.mp3", - "audioMeaning": "files/22_2832_meaning.mp3", - "audioExample": "files/22_2832_example.mp3", - "textMeaning": "If someone is neutral, then they do not help either of the two fighting sides.", - "textExample": "The girl’s friend remained neutral while the couple was arguing.", - "transcription": "[njúːtrəl]", - "__v": 0, - "textExampleTranslate": "Подруга девушки оставалась нейтральной, пока пара спорила", - "textMeaningTranslate": "Если кто-то нейтрален, то они не помогают ни одной из двух воюющих сторон", - "wordTranslate": "нейтральный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affb0" - }, - "group": 4, - "page": 21, - "word": "persecute", - "image": "files/22_2833.jpg", - "audio": "files/22_2833.mp3", - "audioMeaning": "files/22_2833_meaning.mp3", - "audioExample": "files/22_2833_example.mp3", - "textMeaning": "To persecute means to treat someone badly.", - "textExample": "Dan felt persecuted because he was smaller than the other boys at school.", - "transcription": "[pə́ːrsikjùːt]", - "__v": 0, - "textExampleTranslate": "Дэн чувствовал себя преследуемым, потому что он был меньше, чем другие мальчики в школе", - "textMeaningTranslate": "Преследовать - значит плохо относиться к кому-либо", - "wordTranslate": "преследуют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affb1" - }, - "group": 4, - "page": 21, - "word": "pity", - "image": "files/22_2834.jpg", - "audio": "files/22_2834.mp3", - "audioMeaning": "files/22_2834_meaning.mp3", - "audioExample": "files/22_2834_example.mp3", - "textMeaning": "Pity is the feeling of sadness and kindness for those who are suffering.", - "textExample": "Because she had pity for the lost boy, she helped him find his parents.", - "transcription": "[píti]", - "__v": 0, - "textExampleTranslate": "Поскольку ей было жалко погибшего мальчика, она помогла ему найти его родителей", - "textMeaningTranslate": "Жалость - это чувство грусти и доброты к тем, кто страдает", - "wordTranslate": "жаль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affb2" - }, - "group": 4, - "page": 21, - "word": "reduce", - "image": "files/22_2835.jpg", - "audio": "files/22_2835.mp3", - "audioMeaning": "files/22_2835_meaning.mp3", - "audioExample": "files/22_2835_example.mp3", - "textMeaning": "To reduce something means to make it smaller in size or fewer in number.", - "textExample": "When the store reduced its prices, people wanted to shop there.", - "transcription": "[ridjúːs]", - "__v": 0, - "textExampleTranslate": "Когда магазин снизил цены, люди захотели делать там покупки", - "textMeaningTranslate": "Уменьшить что-то - значит сделать его меньше или меньше по размеру", - "wordTranslate": "уменьшить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affb3" - }, - "group": 4, - "page": 21, - "word": "scribe", - "image": "files/22_2836.jpg", - "audio": "files/22_2836.mp3", - "audioMeaning": "files/22_2836_meaning.mp3", - "audioExample": "files/22_2836_example.mp3", - "textMeaning": "A scribe was a person whose job was to copy written works.", - "textExample": "In ancient Egypt, scribes recorded important events.", - "transcription": "[skraib]", - "__v": 0, - "textExampleTranslate": "В древнем Египте писцы записывали важные события", - "textMeaningTranslate": "Писец был человеком, задачей которого было копировать письменные работы", - "wordTranslate": "писец" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affb4" - }, - "group": 4, - "page": 21, - "word": "temper", - "image": "files/22_2837.jpg", - "audio": "files/22_2837.mp3", - "audioMeaning": "files/22_2837_meaning.mp3", - "audioExample": "files/22_2837_example.mp3", - "textMeaning": "A temper is someone’s mood or a chance that they might get angry.", - "textExample": "She has a temper. Even the slightest mistakes make her angry.", - "transcription": "[témpər]", - "__v": 0, - "textExampleTranslate": "У нее вспыльчивый характер. Даже малейшие ошибки делают ее злой", - "textMeaningTranslate": "Характер - это чье-то настроение или шанс, что они могут рассердиться", - "wordTranslate": "характер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affb5" - }, - "group": 4, - "page": 21, - "word": "throne", - "image": "files/22_2838.jpg", - "audio": "files/22_2838.mp3", - "audioMeaning": "files/22_2838_meaning.mp3", - "audioExample": "files/22_2838_example.mp3", - "textMeaning": "A throne is the special chair in which a ruler sits.", - "textExample": "Nobody except the king and queen sat in the thrones in the great hall.", - "transcription": "[θroun]", - "__v": 0, - "textExampleTranslate": "Никто, кроме короля и королевы, не сидел на престолах в большом зале", - "textMeaningTranslate": "Трон - это особый стул, на котором сидит правитель", - "wordTranslate": "трон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affb6" - }, - "group": 4, - "page": 21, - "word": "unity", - "image": "files/22_2839.jpg", - "audio": "files/22_2839.mp3", - "audioMeaning": "files/22_2839_meaning.mp3", - "audioExample": "files/22_2839_example.mp3", - "textMeaning": "Unity is the state of people working together for a certain purpose.", - "textExample": "The project was finished early thanks to the unity of the workers.", - "transcription": "[júːnəti]", - "__v": 0, - "textExampleTranslate": "Проект был завершен досрочно благодаря единству рабочих", - "textMeaningTranslate": "Единство - это состояние людей, работающих вместе для определенной цели", - "wordTranslate": "единство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affb7" - }, - "group": 4, - "page": 21, - "word": "victor", - "image": "files/22_2840.jpg", - "audio": "files/22_2840.mp3", - "audioMeaning": "files/22_2840_meaning.mp3", - "audioExample": "files/22_2840_example.mp3", - "textMeaning": "A victor is a group or person that wins in a contest.", - "textExample": "At the end of the game, the blue team were the victors.", - "transcription": "[víktər]", - "__v": 0, - "textExampleTranslate": "В конце игры синие команды были победителями", - "textMeaningTranslate": "Победитель - это группа или человек, который побеждает в конкурсе", - "wordTranslate": "виктор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affb8" - }, - "group": 4, - "page": 22, - "word": "accurate", - "image": "files/23_2841.jpg", - "audio": "files/23_2841.mp3", - "audioMeaning": "files/23_2841_meaning.mp3", - "audioExample": "files/23_2841_example.mp3", - "textMeaning": "If something is accurate, it is completely correct.", - "textExample": "The story in the newspaper wasn’t very accurate.", - "transcription": "[ǽkjurət]", - "__v": 0, - "textExampleTranslate": "История в газете была не очень точной", - "textMeaningTranslate": "Если что-то верно, это совершенно правильно", - "wordTranslate": "точный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affb9" - }, - "group": 4, - "page": 22, - "word": "analyze", - "image": "files/23_2842.jpg", - "audio": "files/23_2842.mp3", - "audioMeaning": "files/23_2842_meaning.mp3", - "audioExample": "files/23_2842_example.mp3", - "textMeaning": "To analyze something is to study it.", - "textExample": "The scientist will analyze the blood sample.", - "transcription": "[ǽnəlàiz]", - "__v": 0, - "textExampleTranslate": "Ученый будет анализировать образец крови", - "textMeaningTranslate": "Анализировать что-то значит изучать это", - "wordTranslate": "анализ" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affba" - }, - "group": 4, - "page": 22, - "word": "asteroid", - "image": "files/23_2843.jpg", - "audio": "files/23_2843.mp3", - "audioMeaning": "files/23_2843_meaning.mp3", - "audioExample": "files/23_2843_example.mp3", - "textMeaning": "An asteroid is a giant rock from outer space.", - "textExample": "In 1908, a giant asteroid hit Siberia.", - "transcription": "[ǽstərɔ̀id]", - "__v": 0, - "textExampleTranslate": "В 1908 году гигантский астероид ударил по Сибири", - "textMeaningTranslate": "Астероид - это гигантская скала из космоса", - "wordTranslate": "астероид" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affbb" - }, - "group": 4, - "page": 22, - "word": "controversy", - "image": "files/23_2844.jpg", - "audio": "files/23_2844.mp3", - "audioMeaning": "files/23_2844_meaning.mp3", - "audioExample": "files/23_2844_example.mp3", - "textMeaning": "A controversy is a dispute about something that affects many people.", - "textExample": "There has been a lot of controversy over the judge’s decision.", - "transcription": "[kɑ́ntrəvə̀ːrsi]", - "__v": 0, - "textExampleTranslate": "Было много противоречий по поводу решения судьи", - "textMeaningTranslate": "Спор - это спор о том, что затрагивает многих людей", - "wordTranslate": "спор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affbc" - }, - "group": 4, - "page": 22, - "word": "evolve", - "image": "files/23_2845.jpg", - "audio": "files/23_2845.mp3", - "audioMeaning": "files/23_2845_meaning.mp3", - "audioExample": "files/23_2845_example.mp3", - "textMeaning": "To evolve is to change over time.", - "textExample": "Many people think that humans evolved from animals.", - "transcription": "[ivɑ́lv]", - "__v": 0, - "textExampleTranslate": "Многие люди думают, что люди произошли от животных", - "textMeaningTranslate": "Развиваться значит меняться со временем", - "wordTranslate": "эволюционировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affbd" - }, - "group": 4, - "page": 22, - "word": "factor", - "image": "files/23_2846.jpg", - "audio": "files/23_2846.mp3", - "audioMeaning": "files/23_2846_meaning.mp3", - "audioExample": "files/23_2846_example.mp3", - "textMeaning": "A factor is something that has an effect on the way another thing happens.", - "textExample": "Smoking is the main factor that causes lung cancer.", - "transcription": "[fǽktər]", - "__v": 0, - "textExampleTranslate": "Курение является основным фактором, вызывающим рак легких", - "textMeaningTranslate": "Фактор - это то, что влияет на то, как происходит другое", - "wordTranslate": "фактор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affbe" - }, - "group": 4, - "page": 22, - "word": "genetic", - "image": "files/23_2847.jpg", - "audio": "files/23_2847.mp3", - "audioMeaning": "files/23_2847_meaning.mp3", - "audioExample": "files/23_2847_example.mp3", - "textMeaning": "If something is genetic, it is related to the genes in one’s body.", - "textExample": "The color of one’s eyes is genetic.", - "transcription": "[dʒənétik]", - "__v": 0, - "textExampleTranslate": "Цвет глаз генетический", - "textMeaningTranslate": "Если что-то генетическое, это связано с генами в теле", - "wordTranslate": "генетический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affbf" - }, - "group": 4, - "page": 22, - "word": "genome", - "image": "files/23_2848.jpg", - "audio": "files/23_2848.mp3", - "audioMeaning": "files/23_2848_meaning.mp3", - "audioExample": "files/23_2848_example.mp3", - "textMeaning": "A genome is the collection of all the genes in a living thing.", - "textExample": "Understanding the human genome may help cure many diseases.", - "transcription": "[dʒíːnoum]", - "__v": 0, - "textExampleTranslate": "Понимание генома человека может помочь в лечении многих заболеваний", - "textMeaningTranslate": "Геном - это совокупность всех генов живого существа", - "wordTranslate": "геном" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affc0" - }, - "group": 4, - "page": 22, - "word": "identical", - "image": "files/23_2849.jpg", - "audio": "files/23_2849.mp3", - "audioMeaning": "files/23_2849_meaning.mp3", - "audioExample": "files/23_2849_example.mp3", - "textMeaning": "To be identical is to be the same as someone or something else.", - "textExample": "James and John are identical twins.", - "transcription": "[aidéntikəl]", - "__v": 0, - "textExampleTranslate": "Джеймс и Джон - идентичные близнецы", - "textMeaningTranslate": "Быть идентичным - значит быть таким же, как кто-то или что-то еще", - "wordTranslate": "идентичны" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affc1" - }, - "group": 4, - "page": 22, - "word": "majority", - "image": "files/23_2851.jpg", - "audio": "files/23_2851.mp3", - "audioMeaning": "files/23_2851_meaning.mp3", - "audioExample": "files/23_2851_example.mp3", - "textMeaning": "A majority of something is more than half of the people or things in that group.", - "textExample": "A majority of the people voted for Tom Smith in the election.", - "transcription": "[mədʒɔ́ːrəti]", - "__v": 0, - "textExampleTranslate": "Большинство людей проголосовали за Тома Смита на выборах", - "textMeaningTranslate": "Большинство - это более половины людей или вещей в этой группе", - "wordTranslate": "большинство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affc2" - }, - "group": 4, - "page": 22, - "word": "intellectual", - "image": "files/23_2850.jpg", - "audio": "files/23_2850.mp3", - "audioMeaning": "files/23_2850_meaning.mp3", - "audioExample": "files/23_2850_example.mp3", - "textMeaning": "An intellectual is a very smart person.", - "textExample": "We’ve always considered my Uncle Max to be the intellectual of the family.", - "transcription": "[ìntəlékʧuəl]", - "__v": 0, - "textExampleTranslate": "Мы всегда считали моего дядю Макса интеллектуалом семьи", - "textMeaningTranslate": "Интеллигент очень умный человек", - "wordTranslate": "интеллектуальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affc3" - }, - "group": 4, - "page": 22, - "word": "mammal", - "image": "files/23_2852.jpg", - "audio": "files/23_2852.mp3", - "audioMeaning": "files/23_2852_meaning.mp3", - "audioExample": "files/23_2852_example.mp3", - "textMeaning": "A mammal is an animal that usually has hair and is not born from an egg.", - "textExample": "Even though they live in water, whales are actually mammals.", - "transcription": "[mǽməl]", - "__v": 0, - "textExampleTranslate": "Несмотря на то, что они живут в воде, киты на самом деле являются млекопитающими", - "textMeaningTranslate": "Млекопитающее - это животное, которое обычно имеет волосы и не рождается из яйца", - "wordTranslate": "млекопитающее" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affc4" - }, - "group": 4, - "page": 22, - "word": "multiply", - "image": "files/23_2853.jpg", - "audio": "files/23_2853.mp3", - "audioMeaning": "files/23_2853_meaning.mp3", - "audioExample": "files/23_2853_example.mp3", - "textMeaning": "To multiply is to increase in number.", - "textExample": "In the past year, the number of people at work has multiplied by ten percent.", - "transcription": "[mΛltəplài]", - "__v": 0, - "textExampleTranslate": "В прошлом году количество людей на работе увеличилось на десять процентов", - "textMeaningTranslate": "Умножить - значит увеличить число", - "wordTranslate": "размножаются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affc5" - }, - "group": 4, - "page": 22, - "word": "offspring", - "image": "files/23_2854.jpg", - "audio": "files/23_2854.mp3", - "audioMeaning": "files/23_2854_meaning.mp3", - "audioExample": "files/23_2854_example.mp3", - "textMeaning": "Offspring are the children of a person or the babies of an animal.", - "textExample": "The dog’s offspring had the same color of fur as she did.", - "transcription": "[ɔ́ːfsprìŋ]", - "__v": 0, - "textExampleTranslate": "У потомства собаки был такой же цвет меха, как и у нее", - "textMeaningTranslate": "Потомки - это дети человека или дети животных", - "wordTranslate": "потомство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affc6" - }, - "group": 4, - "page": 22, - "word": "pesticide", - "image": "files/23_2855.jpg", - "audio": "files/23_2855.mp3", - "audioMeaning": "files/23_2855_meaning.mp3", - "audioExample": "files/23_2855_example.mp3", - "textMeaning": "A pesticide is a substance used to kill insects.", - "textExample": "The farmer sprayed his crops with a pesticide to keep bugs away.", - "transcription": "[péstisàid]", - "__v": 0, - "textExampleTranslate": "Фермер опрыскивал свои посевы пестицидом, чтобы не допустить появления жуков", - "textMeaningTranslate": "Пестицид - это вещество, используемое для уничтожения насекомых", - "wordTranslate": "пестицид" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affc7" - }, - "group": 4, - "page": 22, - "word": "regulate", - "image": "files/23_2856.jpg", - "audio": "files/23_2856.mp3", - "audioMeaning": "files/23_2856_meaning.mp3", - "audioExample": "files/23_2856_example.mp3", - "textMeaning": "To regulate something is to control how it happens.", - "textExample": "The bank regulates how much money people can borrow.", - "transcription": "[régjulèit]", - "__v": 0, - "textExampleTranslate": "Банк регулирует, сколько денег люди могут одолжить", - "textMeaningTranslate": "Регулировать что-то значит контролировать то, как это происходит", - "wordTranslate": "регулировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affc8" - }, - "group": 4, - "page": 22, - "word": "reinforce", - "image": "files/23_2857.jpg", - "audio": "files/23_2857.mp3", - "audioMeaning": "files/23_2857_meaning.mp3", - "audioExample": "files/23_2857_example.mp3", - "textMeaning": "To reinforce something is to make it stronger.", - "textExample": "Peter reinforced his opinion with information from a book.", - "transcription": "[rìːinfɔ́ːrs]", - "__v": 0, - "textExampleTranslate": "Петр подкрепил свое мнение информацией из книги", - "textMeaningTranslate": "Усилить что-то значит сделать его сильнее", - "wordTranslate": "усилить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affc9" - }, - "group": 4, - "page": 22, - "word": "stricken", - "image": "files/23_2858.jpg", - "audio": "files/23_2858.mp3", - "audioMeaning": "files/23_2858_meaning.mp3", - "audioExample": "files/23_2858_example.mp3", - "textMeaning": "If someone or something is stricken by a disease or problem, they are badly affected by it.", - "textExample": "The pilot landed the stricken airplane with difficulty.", - "transcription": "[stríkən]", - "__v": 0, - "textExampleTranslate": "Пилот с трудом приземлился на пораженный самолет", - "textMeaningTranslate": "Если кто-то или что-то поражено болезнью или проблемой, это сильно влияет на него", - "wordTranslate": "пострадавший" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affca" - }, - "group": 4, - "page": 22, - "word": "vast", - "image": "files/23_2859.jpg", - "audio": "files/23_2859.mp3", - "audioMeaning": "files/23_2859_meaning.mp3", - "audioExample": "files/23_2859_example.mp3", - "textMeaning": "If something is vast, it is very large.", - "textExample": "The wealthy man bought a vast amount of land in the countryside.", - "transcription": "[væst]", - "__v": 0, - "textExampleTranslate": "Богатый человек купил огромное количество земли в сельской местности", - "textMeaningTranslate": "Если что-то обширно, оно очень большое", - "wordTranslate": "подавляющее" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affcb" - }, - "group": 4, - "page": 22, - "word": "vegetarian", - "image": "files/23_2860.jpg", - "audio": "files/23_2860.mp3", - "audioMeaning": "files/23_2860_meaning.mp3", - "audioExample": "files/23_2860_example.mp3", - "textMeaning": "A vegetarian is someone who does not eat any meat products.", - "textExample": "I became a vegetarian because I don’t like the taste of meat.", - "transcription": "[vèdʒətέəriən]", - "__v": 0, - "textExampleTranslate": "Я стал вегетарианцем, потому что мне не нравится вкус мяса", - "textMeaningTranslate": "Вегетарианец - это тот, кто не ест мясных продуктов", - "wordTranslate": "вегетарианец" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affcc" - }, - "group": 4, - "page": 23, - "word": "bowl", - "image": "files/24_2861.jpg", - "audio": "files/24_2861.mp3", - "audioMeaning": "files/24_2861_meaning.mp3", - "audioExample": "files/24_2861_example.mp3", - "textMeaning": "A bowl is a dish with a round deep shape.", - "textExample": "I put the fruit in the fruit bowl.", - "transcription": "[boul]", - "__v": 0, - "textExampleTranslate": "Я положил фрукты в вазу с фруктами", - "textMeaningTranslate": "Чаша - это блюдо круглой глубокой формы", - "wordTranslate": "миска" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affcd" - }, - "group": 4, - "page": 23, - "word": "cooking", - "image": "files/24_2862.jpg", - "audio": "files/24_2862.mp3", - "audioMeaning": "files/24_2862_meaning.mp3", - "audioExample": "files/24_2862_example.mp3", - "textMeaning": "Cooking food involves making it ready to eat.", - "textExample": "I really enjoy cooking, especially Italian food.", - "transcription": "[kúkiŋ]", - "__v": 0, - "textExampleTranslate": "Мне очень нравится готовить, особенно итальянская еда", - "textMeaningTranslate": "Приготовление пищи включает приготовление пищи", - "wordTranslate": "приготовление еды" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affce" - }, - "group": 4, - "page": 23, - "word": "dense", - "image": "files/24_2863.jpg", - "audio": "files/24_2863.mp3", - "audioMeaning": "files/24_2863_meaning.mp3", - "audioExample": "files/24_2863_example.mp3", - "textMeaning": "If something is dense, it has a lot of things close together.", - "textExample": "I easily became lost in the dense forest.", - "transcription": "[dens]", - "__v": 0, - "textExampleTranslate": "Я легко заблудился в густом лесу", - "textMeaningTranslate": "Если что-то плотное, у него много вещей близко друг к другу", - "wordTranslate": "плотный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affcf" - }, - "group": 4, - "page": 23, - "word": "dignity", - "image": "files/24_2864.jpg", - "audio": "files/24_2864.mp3", - "audioMeaning": "files/24_2864_meaning.mp3", - "audioExample": "files/24_2864_example.mp3", - "textMeaning": "Dignity is the ability to be calm and worthy of respect.", - "textExample": "When his company went out of business, he faced it with dignity.", - "transcription": "[dígnəti]", - "__v": 0, - "textExampleTranslate": "Когда его компания обанкротилась, он столкнулся с этим с достоинством", - "textMeaningTranslate": "Достоинство - это умение быть спокойным и достойным уважения", - "wordTranslate": "достоинство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affd0" - }, - "group": 4, - "page": 23, - "word": "dominate", - "image": "files/24_2865.jpg", - "audio": "files/24_2865.mp3", - "audioMeaning": "files/24_2865_meaning.mp3", - "audioExample": "files/24_2865_example.mp3", - "textMeaning": "To dominate someone or something is to control them.", - "textExample": "The loud man dominated the conversation.", - "transcription": "[dɑ́mənèit]", - "__v": 0, - "textExampleTranslate": "Громкий человек доминировал в разговоре", - "textMeaningTranslate": "Доминировать над кем-то или чем-то - значит контролировать их", - "wordTranslate": "доминировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affd1" - }, - "group": 4, - "page": 23, - "word": "hostile", - "image": "files/24_2867.jpg", - "audio": "files/24_2867.mp3", - "audioMeaning": "files/24_2867_meaning.mp3", - "audioExample": "files/24_2867_example.mp3", - "textMeaning": "If someone is hostile, they are angry and unfriendly.", - "textExample": "We were happy to move away from our hostile neighbor.", - "transcription": "[hɑ́stil]", - "__v": 0, - "textExampleTranslate": "Мы были рады отойти от нашего враждебного соседа", - "textMeaningTranslate": "Если кто-то враждебен, он злой и недружелюбный", - "wordTranslate": "враждебное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affd2" - }, - "group": 4, - "page": 23, - "word": "earthen", - "image": "files/24_2866.jpg", - "audio": "files/24_2866.mp3", - "audioMeaning": "files/24_2866_meaning.mp3", - "audioExample": "files/24_2866_example.mp3", - "textMeaning": "If something is earthen, it is made of clay.", - "textExample": "The house’s roof was made of earthen tiles.", - "transcription": "[ə́ːrθən]", - "__v": 0, - "textExampleTranslate": "Крыша дома была сделана из земляной черепицы", - "textMeaningTranslate": "Если что-то земляное, то оно сделано из глины", - "wordTranslate": "земляной" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affd3" - }, - "group": 4, - "page": 23, - "word": "incorrect", - "image": "files/24_2868.jpg", - "audio": "files/24_2868.mp3", - "audioMeaning": "files/24_2868_meaning.mp3", - "audioExample": "files/24_2868_example.mp3", - "textMeaning": "If something is incorrect, it is wrong.", - "textExample": "Your answer is incorrect. You need to correct it.", - "transcription": "[ìnkərékt]", - "__v": 0, - "textExampleTranslate": "Ваш ответ неверный. Вы должны исправить это", - "textMeaningTranslate": "Если что-то не так, это неправильно", - "wordTranslate": "неправильно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affd4" - }, - "group": 4, - "page": 23, - "word": "intake", - "image": "files/24_2869.jpg", - "audio": "files/24_2869.mp3", - "audioMeaning": "files/24_2869_meaning.mp3", - "audioExample": "files/24_2869_example.mp3", - "textMeaning": "Your intake of food is the amount of food you take into your body.", - "textExample": "The doctor said I needed to increase my intake of fruits and vegetables.", - "transcription": "[íntèik]", - "__v": 0, - "textExampleTranslate": "Доктор сказал, что мне нужно увеличить потребление фруктов и овощей", - "textMeaningTranslate": "Потребление пищи - это количество пищи, которое вы принимаете в организм", - "wordTranslate": "потребление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affd5" - }, - "group": 4, - "page": 23, - "word": "likewise", - "image": "files/24_2870.jpg", - "audio": "files/24_2870.mp3", - "audioMeaning": "files/24_2870_meaning.mp3", - "audioExample": "files/24_2870_example.mp3", - "textMeaning": "If someone does something likewise, they do the same thing as someone else.", - "textExample": "If Joe is not going to school so he can go swimming, I want to do likewise.", - "transcription": "[láikwàiz]", - "__v": 0, - "textExampleTranslate": "Если Джо не ходит в школу, чтобы он мог плавать, я хочу поступить так же", - "textMeaningTranslate": "Если кто-то делает то же самое, он делает то же самое, что и кто-то другой", - "wordTranslate": "также" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affd6" - }, - "group": 4, - "page": 23, - "word": "medication", - "image": "files/24_2872.jpg", - "audio": "files/24_2872.mp3", - "audioMeaning": "files/24_2872_meaning.mp3", - "audioExample": "files/24_2872_example.mp3", - "textMeaning": "Medication is medicine or drugs given to people who are sick.", - "textExample": "The doctor gave me medication to treat my illness.", - "transcription": "[mèdəkéiʃən]", - "__v": 0, - "textExampleTranslate": "Доктор дал мне лекарство от моей болезни", - "textMeaningTranslate": "Лекарство - это лекарство или лекарства, которые даются больным людям", - "wordTranslate": "медикамент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affd7" - }, - "group": 4, - "page": 23, - "word": "machine", - "image": "files/24_2871.jpg", - "audio": "files/24_2871.mp3", - "audioMeaning": "files/24_2871_meaning.mp3", - "audioExample": "files/24_2871_example.mp3", - "textMeaning": "A machine is made by people and does work for us.", - "textExample": "The machine was broken.", - "transcription": "[məʃíːn]", - "__v": 0, - "textExampleTranslate": "Машина сломалась", - "textMeaningTranslate": "Машина сделана людьми и работает на нас", - "wordTranslate": "машина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affd8" - }, - "group": 4, - "page": 23, - "word": "obscure", - "image": "files/24_2873.jpg", - "audio": "files/24_2873.mp3", - "audioMeaning": "files/24_2873_meaning.mp3", - "audioExample": "files/24_2873_example.mp3", - "textMeaning": "If something is obscure, it is not well known.", - "textExample": "The old man travels the world in search of obscure books.", - "transcription": "[əbskjúər]", - "__v": 0, - "textExampleTranslate": "Старик путешествует по миру в поисках малоизвестных книг", - "textMeaningTranslate": "Если что-то неясно, это не очень хорошо известно", - "wordTranslate": "затемнить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affd9" - }, - "group": 4, - "page": 23, - "word": "oppress", - "image": "files/24_2874.jpg", - "audio": "files/24_2874.mp3", - "audioMeaning": "files/24_2874_meaning.mp3", - "audioExample": "files/24_2874_example.mp3", - "textMeaning": "To oppress someone means to rule over them in a cruel and unfair way.", - "textExample": "Free speech had been oppressed in his country.", - "transcription": "[əprés]", - "__v": 0, - "textExampleTranslate": "Свобода слова была угнетена в его стране", - "textMeaningTranslate": "Угнетать кого-либо - значит управлять им жестоким и несправедливым образом", - "wordTranslate": "угнетать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affda" - }, - "group": 4, - "page": 23, - "word": "peel", - "image": "files/24_2875.jpg", - "audio": "files/24_2875.mp3", - "audioMeaning": "files/24_2875_meaning.mp3", - "audioExample": "files/24_2875_example.mp3", - "textMeaning": "To peel fruits and vegetables is to remove their skin.", - "textExample": "He peeled the apple before eating it.", - "transcription": "[piːl]", - "__v": 0, - "textExampleTranslate": "Он очистил яблоко перед едой", - "textMeaningTranslate": "Очистить фрукты и овощи - значит удалить их кожу", - "wordTranslate": "корка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affdb" - }, - "group": 4, - "page": 23, - "word": "prescription", - "image": "files/24_2876.jpg", - "audio": "files/24_2876.mp3", - "audioMeaning": "files/24_2876_meaning.mp3", - "audioExample": "files/24_2876_example.mp3", - "textMeaning": "A prescription is permission from a doctor to get medicine.", - "textExample": "The doctor gave me a prescription for my medication.", - "transcription": "[priskrípʃən]", - "__v": 0, - "textExampleTranslate": "Доктор дал мне рецепт на мои лекарства", - "textMeaningTranslate": "Рецепт - это разрешение врача на получение лекарства", - "wordTranslate": "рецепт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affdc" - }, - "group": 4, - "page": 23, - "word": "progress", - "image": "files/24_2877.jpg", - "audio": "files/24_2877.mp3", - "audioMeaning": "files/24_2877_meaning.mp3", - "audioExample": "files/24_2877_example.mp3", - "textMeaning": "When you make progress, you get better at what you are doing.", - "textExample": "There are clear signs of progress.", - "transcription": "[prάgres]", - "__v": 0, - "textExampleTranslate": "Есть явные признаки прогресса", - "textMeaningTranslate": "Когда вы делаете успехи, вы становитесь лучше в том, что делаете", - "wordTranslate": "прогресс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affdd" - }, - "group": 4, - "page": 23, - "word": "sandy", - "image": "files/24_2878.jpg", - "audio": "files/24_2878.mp3", - "audioMeaning": "files/24_2878_meaning.mp3", - "audioExample": "files/24_2878_example.mp3", - "textMeaning": "Sandy means covered with sand.", - "textExample": "I love walking on a sandy beach.", - "transcription": "[sǽndi]", - "__v": 0, - "textExampleTranslate": "Я люблю гулять по песчаному пляжу", - "textMeaningTranslate": "Песчаный означает покрытый песком", - "wordTranslate": "сэнди" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affde" - }, - "group": 4, - "page": 23, - "word": "shortage", - "image": "files/24_2879.jpg", - "audio": "files/24_2879.mp3", - "audioMeaning": "files/24_2879_meaning.mp3", - "audioExample": "files/24_2879_example.mp3", - "textMeaning": "Shortage comes from short and means not having enough.", - "textExample": "During the dry season, there was a shortage of water.", - "transcription": "[ʃɔ́ːrtidʒ]", - "__v": 0, - "textExampleTranslate": "В сухой сезон нехватка воды", - "textMeaningTranslate": "Нехватка исходит от коротких и означает нехватку", - "wordTranslate": "дефицит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affdf" - }, - "group": 4, - "page": 23, - "word": "skillful", - "image": "files/24_2880.jpg", - "audio": "files/24_2880.mp3", - "audioMeaning": "files/24_2880_meaning.mp3", - "audioExample": "files/24_2880_example.mp3", - "textMeaning": "If someone is skillful at something, they are very good at doing it.", - "textExample": "The carpenter is very skillful at building houses.", - "transcription": "[skílful]", - "__v": 0, - "textExampleTranslate": "Плотник очень умел строить дома", - "textMeaningTranslate": "Если кто-то умел в чем-то, он очень хорош в этом", - "wordTranslate": "искусный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affe0" - }, - "group": 4, - "page": 24, - "word": "aircraft", - "image": "files/25_2881.jpg", - "audio": "files/25_2881.mp3", - "audioMeaning": "files/25_2881_meaning.mp3", - "audioExample": "files/25_2881_example.mp3", - "textMeaning": "An aircraft is a vehicle that flies in the sky, such as an airplane or helicopter.", - "textExample": "At the museum in the airport, you can see a lot of old aircraft.", - "transcription": "[ɛ́ərkræ̀ft]", - "__v": 0, - "textExampleTranslate": "В музее в аэропорту можно увидеть много старых самолетов", - "textMeaningTranslate": "Самолет - это летающее в небе транспортное средство, такое как самолет или вертолет", - "wordTranslate": "самолет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affe1" - }, - "group": 4, - "page": 24, - "word": "celebrity", - "image": "files/25_2882.jpg", - "audio": "files/25_2882.mp3", - "audioMeaning": "files/25_2882_meaning.mp3", - "audioExample": "files/25_2882_example.mp3", - "textMeaning": "A celebrity is someone who is famous.", - "textExample": "It was the highlight of the evening when the celebrities arrived.", - "transcription": "[səlébrəti]", - "__v": 0, - "textExampleTranslate": "Это был основной момент вечера, когда приезжали знаменитости", - "textMeaningTranslate": "Знаменитость - это тот, кто знаменит", - "wordTranslate": "знаменитость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affe2" - }, - "group": 4, - "page": 24, - "word": "concrete", - "image": "files/25_2883.jpg", - "audio": "files/25_2883.mp3", - "audioMeaning": "files/25_2883_meaning.mp3", - "audioExample": "files/25_2883_example.mp3", - "textMeaning": "Concrete is a substance made from stones.", - "textExample": "The man covered the ground with concrete.", - "transcription": "[kɑ́nkriːt]", - "__v": 0, - "textExampleTranslate": "Человек покрыл землю бетоном", - "textMeaningTranslate": "Бетон - это вещество из камня", - "wordTranslate": "бетон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affe3" - }, - "group": 4, - "page": 24, - "word": "decisive", - "image": "files/25_2884.jpg", - "audio": "files/25_2884.mp3", - "audioMeaning": "files/25_2884_meaning.mp3", - "audioExample": "files/25_2884_example.mp3", - "textMeaning": "If someone is decisive, they make decisions quickly.", - "textExample": "Our boss is very decisive, so it did not take long to organize the project.", - "transcription": "[disáisiv]", - "__v": 0, - "textExampleTranslate": "Наш начальник очень решительный, поэтому организация проекта не заняла много времени", - "textMeaningTranslate": "Если кто-то решителен, он быстро принимает решения", - "wordTranslate": "решающий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affe4" - }, - "group": 4, - "page": 24, - "word": "institute", - "image": "files/25_2889.jpg", - "audio": "files/25_2889.mp3", - "audioMeaning": "files/25_2889_meaning.mp3", - "audioExample": "files/25_2889_example.mp3", - "textMeaning": "An institute is an organization that is interested in research or teaching.", - "textExample": "I am going to a lecture about Ancient Rome at the Historical Institute.", - "transcription": "[ínstətjùːt]", - "__v": 0, - "textExampleTranslate": "Я иду на лекцию о Древнем Риме в Историческом институте", - "textMeaningTranslate": "Институт - это организация, которая заинтересована в исследованиях или обучении", - "wordTranslate": "институт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affe5" - }, - "group": 4, - "page": 24, - "word": "esteemed", - "image": "files/25_2885.jpg", - "audio": "files/25_2885.mp3", - "audioMeaning": "files/25_2885_meaning.mp3", - "audioExample": "files/25_2885_example.mp3", - "textMeaning": "If someone is esteemed, many people like or respect them.", - "textExample": "An esteemed scientist is coming to the university to talk about his discoveries.", - "transcription": "[istíːmd]", - "__v": 0, - "textExampleTranslate": "Уважаемый ученый приезжает в университет, чтобы рассказать о своих открытиях", - "textMeaningTranslate": "Если кого-то уважают, то многие его любят или уважают", - "wordTranslate": "почтенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affe6" - }, - "group": 4, - "page": 24, - "word": "hardy", - "image": "files/25_2888.jpg", - "audio": "files/25_2888.mp3", - "audioMeaning": "files/25_2888_meaning.mp3", - "audioExample": "files/25_2888_example.mp3", - "textMeaning": "If a person or plant is hardy, it is strong and can live through difficult conditions.", - "textExample": "The farmer is a hardy man and doesn’t mind working outside.", - "transcription": "[hɑ́ːrdi]", - "__v": 0, - "textExampleTranslate": "Фермер выносливый человек и не против работать на улице", - "textMeaningTranslate": "Если человек или растение выносливы, они сильны и могут жить в сложных условиях", - "wordTranslate": "выносливый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affe7" - }, - "group": 4, - "page": 24, - "word": "extinct", - "image": "files/25_2887.jpg", - "audio": "files/25_2887.mp3", - "audioMeaning": "files/25_2887_meaning.mp3", - "audioExample": "files/25_2887_example.mp3", - "textMeaning": "If plants or animals are extinct, there are none left.", - "textExample": "There used to be dinosaurs all over the world, but now they are extinct.", - "transcription": "[ikstíŋkt]", - "__v": 0, - "textExampleTranslate": "Раньше во всем мире были динозавры, но теперь они вымерли", - "textMeaningTranslate": "Если растения или животные вымерли, то ничего не осталось", - "wordTranslate": "вымерли" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affe8" - }, - "group": 4, - "page": 24, - "word": "ethical", - "image": "files/25_2886.jpg", - "audio": "files/25_2886.mp3", - "audioMeaning": "files/25_2886_meaning.mp3", - "audioExample": "files/25_2886_example.mp3", - "textMeaning": "If something is ethical, it is the right thing to do.", - "textExample": "Many people believe that it is ethical to help others in need.", - "transcription": "[éθikəl]", - "__v": 0, - "textExampleTranslate": "Многие люди считают этическим помогать нуждающимся", - "textMeaningTranslate": "Если что-то этическое, то это правильно", - "wordTranslate": "этический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affe9" - }, - "group": 4, - "page": 24, - "word": "jealousy", - "image": "files/25_2890.jpg", - "audio": "files/25_2890.mp3", - "audioMeaning": "files/25_2890_meaning.mp3", - "audioExample": "files/25_2890_example.mp3", - "textMeaning": "Jealousy is a feeling of wanting something that somebody else has.", - "textExample": "She felt a lot of jealousy when she saw her friend with a new car.", - "transcription": "[dʒéləsi]", - "__v": 0, - "textExampleTranslate": "Она почувствовала сильную ревность, когда увидела подругу с новой машиной", - "textMeaningTranslate": "Ревность - это чувство желания чего-то, что есть у кого-то другого", - "wordTranslate": "ревность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affeb" - }, - "group": 4, - "page": 24, - "word": "nurture", - "image": "files/25_2892.jpg", - "audio": "files/25_2892.mp3", - "audioMeaning": "files/25_2892_meaning.mp3", - "audioExample": "files/25_2892_example.mp3", - "textMeaning": "To nurture something means to care for it as it grows or develops.", - "textExample": "Robert nurtured his plants, and that is why they grow so well.", - "transcription": "[nə́ːrʧər]", - "__v": 0, - "textExampleTranslate": "Роберт вырастил свои растения, и поэтому они так хорошо растут", - "textMeaningTranslate": "Воспитывать что-то значит заботиться о нем по мере его роста или развития", - "wordTranslate": "лелеять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affea" - }, - "group": 4, - "page": 24, - "word": "migrate", - "image": "files/25_2891.jpg", - "audio": "files/25_2891.mp3", - "audioMeaning": "files/25_2891_meaning.mp3", - "audioExample": "files/25_2891_example.mp3", - "textMeaning": "To migrate means to move from one place to another.", - "textExample": "Many birds migrate to warmer countries in the winter.", - "transcription": "[máigreit]", - "__v": 0, - "textExampleTranslate": "Многие птицы зимой мигрируют в более теплые страны", - "textMeaningTranslate": "Мигрировать - значит перемещаться из одного места в другое", - "wordTranslate": "мигрировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affec" - }, - "group": 4, - "page": 24, - "word": "principle", - "image": "files/25_2894.jpg", - "audio": "files/25_2894.mp3", - "audioMeaning": "files/25_2894_meaning.mp3", - "audioExample": "files/25_2894_example.mp3", - "textMeaning": "A principle is a belief about the correct way to behave.", - "textExample": "To maintain principles, it’s vital to watch, listen, and speak carefully.", - "transcription": "[prínsəpl]", - "__v": 0, - "textExampleTranslate": "Для соблюдения принципов очень важно внимательно наблюдать, слушать и говорить", - "textMeaningTranslate": "Принцип - это убеждение о правильном поведении", - "wordTranslate": "принцип" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affed" - }, - "group": 4, - "page": 24, - "word": "overhead", - "image": "files/25_2893.jpg", - "audio": "files/25_2893.mp3", - "audioMeaning": "files/25_2893_meaning.mp3", - "audioExample": "files/25_2893_example.mp3", - "textMeaning": "If something is overhead, it is located above you.", - "textExample": "As we sat on the top of the hill, a plane flew overhead.", - "transcription": "[óuvərhéd]", - "__v": 0, - "textExampleTranslate": "Когда мы сидели на вершине холма, самолет пролетел над головой", - "textMeaningTranslate": "Если что-то над головой, оно находится над вами", - "wordTranslate": "накладные расходы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affee" - }, - "group": 4, - "page": 24, - "word": "rural", - "image": "files/25_2895.jpg", - "audio": "files/25_2895.mp3", - "audioMeaning": "files/25_2895_meaning.mp3", - "audioExample": "files/25_2895_example.mp3", - "textMeaning": "If a place is rural, it is in the countryside instead of the city.", - "textExample": "I want to live in a small house in a rural area.", - "transcription": "[rúərəl]", - "__v": 0, - "textExampleTranslate": "Я хочу жить в небольшом доме в сельской местности", - "textMeaningTranslate": "Если место сельское, то оно в сельской местности, а не в городе", - "wordTranslate": "сельский" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affef" - }, - "group": 4, - "page": 24, - "word": "species", - "image": "files/25_2897.jpg", - "audio": "files/25_2897.mp3", - "audioMeaning": "files/25_2897_meaning.mp3", - "audioExample": "files/25_2897_example.mp3", - "textMeaning": "A species is a type of plant or animal.", - "textExample": "There are 21 different species of butterfly in this forest.", - "transcription": "[spíːʃiːz]", - "__v": 0, - "textExampleTranslate": "В этом лесу 21 вид бабочек", - "textMeaningTranslate": "Вид - это тип растения или животного", - "wordTranslate": "виды" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afff1" - }, - "group": 4, - "page": 24, - "word": "secluded", - "image": "files/25_2896.jpg", - "audio": "files/25_2896.mp3", - "audioMeaning": "files/25_2896_meaning.mp3", - "audioExample": "files/25_2896_example.mp3", - "textMeaning": "If a place is secluded, it is far away from any other place.", - "textExample": "There was a secluded bench in the park.", - "transcription": "[siklúːdid]", - "__v": 0, - "textExampleTranslate": "В парке была уединенная скамейка", - "textMeaningTranslate": "Если место уединено, оно далеко от любого другого места", - "wordTranslate": "уединенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afff0" - }, - "group": 4, - "page": 24, - "word": "swamp", - "image": "files/25_2898.jpg", - "audio": "files/25_2898.mp3", - "audioMeaning": "files/25_2898_meaning.mp3", - "audioExample": "files/25_2898_example.mp3", - "textMeaning": "A swamp is a very wet area of land.", - "textExample": "There are lots of wild animals living in the swamp.", - "transcription": "[swamp]", - "__v": 0, - "textExampleTranslate": "В болоте живет много диких животных", - "textMeaningTranslate": "Болото очень влажный участок земли", - "wordTranslate": "болото" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afff2" - }, - "group": 4, - "page": 24, - "word": "traverse", - "image": "files/25_2899.jpg", - "audio": "files/25_2899.mp3", - "audioMeaning": "files/25_2899_meaning.mp3", - "audioExample": "files/25_2899_example.mp3", - "textMeaning": "To traverse means to move or travel through an area.", - "textExample": "The explorer traversed the desert alone on a camel.", - "transcription": "[trǽvəːrs]", - "__v": 0, - "textExampleTranslate": "Исследователь пересек пустыню на верблюде", - "textMeaningTranslate": "Пройтись - значит двигаться или путешествовать по области", - "wordTranslate": "траверс" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afff3" - }, - "group": 4, - "page": 24, - "word": "zoology", - "image": "files/25_2900.jpg", - "audio": "files/25_2900.mp3", - "audioMeaning": "files/25_2900_meaning.mp3", - "audioExample": "files/25_2900_example.mp3", - "textMeaning": "Zoology is a subject in which people study animals.", - "textExample": "Helen wants to study zoology because she has always liked animals.", - "transcription": "[zouɑ́lədʒi]", - "__v": 0, - "textExampleTranslate": "Елена хочет изучать зоологию, потому что она всегда любила животных", - "textMeaningTranslate": "Зоология - это предмет, в котором люди изучают животных", - "wordTranslate": "зоология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afff4" - }, - "group": 4, - "page": 25, - "word": "accordingly", - "image": "files/26_2901.jpg", - "audio": "files/26_2901.mp3", - "audioMeaning": "files/26_2901_meaning.mp3", - "audioExample": "files/26_2901_example.mp3", - "textMeaning": "If someone acts accordingly, they act in a way that is suitable.", - "textExample": "He feels like he did a good job and his boss should pay him accordingly.", - "transcription": "[əkɔ́ːrdiŋli]", - "__v": 0, - "textExampleTranslate": "Он чувствует, что сделал хорошую работу, и его начальник должен платить ему соответственно", - "textMeaningTranslate": "Если кто-то действует соответственно, он действует так, как ему удобно", - "wordTranslate": "соответственно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afff8" - }, - "group": 4, - "page": 25, - "word": "designate", - "image": "files/26_2905.jpg", - "audio": "files/26_2905.mp3", - "audioMeaning": "files/26_2905_meaning.mp3", - "audioExample": "files/26_2905_example.mp3", - "textMeaning": "To designate someone or something means to give them a particular description.", - "textExample": "The famous lighthouse was designated as a historical monument.", - "transcription": "[dézignèit]", - "__v": 0, - "textExampleTranslate": "Знаменитый маяк был обозначен как исторический памятник", - "textMeaningTranslate": "Назначить кого-то или что-то означает дать им конкретное описание", - "wordTranslate": "назначить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afff9" - }, - "group": 4, - "page": 25, - "word": "distort", - "image": "files/26_2906.jpg", - "audio": "files/26_2906.mp3", - "audioMeaning": "files/26_2906_meaning.mp3", - "audioExample": "files/26_2906_example.mp3", - "textMeaning": "To distort something means to lie about it, or pull or twist out of shape.", - "textExample": "The man’s lawyer distorted the facts so that he would be set free.", - "transcription": "[distɔ́ːrt]", - "__v": 0, - "textExampleTranslate": "Адвокат этого человека исказил факты, чтобы его освободили", - "textMeaningTranslate": "Извращать что-либо - значит лгать об этом, или вырывать или искажать форму", - "wordTranslate": "искажать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afff6" - }, - "group": 4, - "page": 25, - "word": "anchor", - "image": "files/26_2902.jpg", - "audio": "files/26_2902.mp3", - "audioMeaning": "files/26_2902_meaning.mp3", - "audioExample": "files/26_2902_example.mp3", - "textMeaning": "An anchor is a heavy object dropped from a boat to make it stay in one place.", - "textExample": "When the ship reached its destination, the crew dropped the anchor.", - "transcription": "[ǽŋkər]", - "__v": 0, - "textExampleTranslate": "Когда корабль достиг пункта назначения, экипаж сбросил якорь", - "textMeaningTranslate": "Якорь - это тяжелый предмет, сброшенный с лодки, чтобы он остался на одном месте", - "wordTranslate": "якорь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afff5" - }, - "group": 4, - "page": 25, - "word": "cause", - "image": "files/26_2903.jpg", - "audio": "files/26_2903.mp3", - "audioMeaning": "files/26_2903_meaning.mp3", - "audioExample": "files/26_2903_example.mp3", - "textMeaning": "When you cause something, you make it happen.", - "textExample": "Tiredness caused the accident.", - "transcription": "[kɔːz]", - "__v": 0, - "textExampleTranslate": "Усталость стала причиной несчастного случая", - "textMeaningTranslate": "Когда ты вызываешь что-то, ты делаешь это", - "wordTranslate": "причина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afff7" - }, - "group": 4, - "page": 25, - "word": "context", - "image": "files/26_2904.jpg", - "audio": "files/26_2904.mp3", - "audioMeaning": "files/26_2904_meaning.mp3", - "audioExample": "files/26_2904_example.mp3", - "textMeaning": "Context is the situations that form the background of an event.", - "textExample": "They studied the context of the battle before giving their presentation.", - "transcription": "[kɑ́ntekst]", - "__v": 0, - "textExampleTranslate": "Они изучили контекст битвы, прежде чем дать свою презентацию", - "textMeaningTranslate": "Контекст - это ситуации, которые формируют фон события", - "wordTranslate": "контекст" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afffa" - }, - "group": 4, - "page": 25, - "word": "dock", - "image": "files/26_2907.jpg", - "audio": "files/26_2907.mp3", - "audioMeaning": "files/26_2907_meaning.mp3", - "audioExample": "files/26_2907_example.mp3", - "textMeaning": "A dock is an enclosed area where ships go to be loaded, unloaded, and repaired.", - "textExample": "The huge ship pulled into the dock, and the crew unloaded the cargo.", - "transcription": "[dɑk]", - "__v": 0, - "textExampleTranslate": "Огромный корабль втянулся в док, и экипаж выгрузил груз", - "textMeaningTranslate": "Док является закрытой зоной, куда суда идут загружаться, выгружаться и ремонтироваться", - "wordTranslate": "док" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afffe" - }, - "group": 4, - "page": 25, - "word": "genuine", - "image": "files/26_2911.jpg", - "audio": "files/26_2911.mp3", - "audioMeaning": "files/26_2911_meaning.mp3", - "audioExample": "files/26_2911_example.mp3", - "textMeaning": "When something is genuine, it is true or real.", - "textExample": "After the painting was determined to be genuine, it sold for a million dollars.", - "transcription": "[dʒénjuin]", - "__v": 0, - "textExampleTranslate": "После того как картина была признана подлинной, ее продали за миллион долларов", - "textMeaningTranslate": "Когда что-то подлинное, оно истинное или реальное", - "wordTranslate": "подлинный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afffd" - }, - "group": 4, - "page": 25, - "word": "gears", - "image": "files/26_2910.jpg", - "audio": "files/26_2910.mp3", - "audioMeaning": "files/26_2910_meaning.mp3", - "audioExample": "files/26_2910_example.mp3", - "textMeaning": "The gears are the part of a motor that controls the speed.", - "textExample": "My brother has a car with four gears.", - "transcription": "[giər]", - "__v": 0, - "textExampleTranslate": "У моего брата машина с четырьмя передачами", - "textMeaningTranslate": "Механизмы являются частью двигателя, который контролирует скорость", - "wordTranslate": "кП" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afffc" - }, - "group": 4, - "page": 25, - "word": "frequent", - "image": "files/26_2909.jpg", - "audio": "files/26_2909.mp3", - "audioMeaning": "files/26_2909_meaning.mp3", - "audioExample": "files/26_2909_example.mp3", - "textMeaning": "If something is frequent, then it happens or is done often.", - "textExample": "While Dad was sick, the doctor made frequent visits to his house.", - "transcription": "[fríːkwənt]", - "__v": 0, - "textExampleTranslate": "Пока папа болел, доктор часто посещал его дом", - "textMeaningTranslate": "Если что-то случается часто, то это происходит или делается часто", - "wordTranslate": "частые" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21afffb" - }, - "group": 4, - "page": 25, - "word": "energy", - "image": "files/26_2908.jpg", - "audio": "files/26_2908.mp3", - "audioMeaning": "files/26_2908_meaning.mp3", - "audioExample": "files/26_2908_example.mp3", - "textMeaning": "If you have a lot of energy, you have plenty of strength and can do lots of things.", - "textExample": "If you lack energy, try eating better food.", - "transcription": "[énərdʒi]", - "__v": 0, - "textExampleTranslate": "Если вам не хватает энергии, попробуйте есть лучшую пищу", - "textMeaningTranslate": "Если у вас много энергии, у вас много сил и вы можете делать много вещей", - "wordTranslate": "энергия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21affff" - }, - "group": 4, - "page": 25, - "word": "grease", - "image": "files/26_2912.jpg", - "audio": "files/26_2912.mp3", - "audioMeaning": "files/26_2912_meaning.mp3", - "audioExample": "files/26_2912_example.mp3", - "textMeaning": "Grease is an oily substance put on moving parts so they work smoothly, or oil or fat in cooking.", - "textExample": "When I was done working on the car, I had grease all over my hands.", - "transcription": "[griːs]", - "__v": 0, - "textExampleTranslate": "Когда я закончил работать над машиной, у меня была смазка на руках", - "textMeaningTranslate": "Смазка представляет собой маслянистое вещество, наносимое на движущиеся части, чтобы они работали плавно, или масло или жир при приготовлении", - "wordTranslate": "смазка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0001" - }, - "group": 4, - "page": 25, - "word": "omit", - "image": "files/26_2914.jpg", - "audio": "files/26_2914.mp3", - "audioMeaning": "files/26_2914_meaning.mp3", - "audioExample": "files/26_2914_example.mp3", - "textMeaning": "When you omit something, you leave it out or do not do it.", - "textExample": "I omitted some important information: he is not coming.", - "transcription": "[oumít]", - "__v": 0, - "textExampleTranslate": "Я пропустил важную информацию: он не придет", - "textMeaningTranslate": "Когда вы что-то пропускаете, вы это пропускаете или не делаете", - "wordTranslate": "опустить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0003" - }, - "group": 4, - "page": 25, - "word": "overlap", - "image": "files/26_2916.jpg", - "audio": "files/26_2916.mp3", - "audioMeaning": "files/26_2916_meaning.mp3", - "audioExample": "files/26_2916_example.mp3", - "textMeaning": "To overlap something means to cover a piece of it.", - "textExample": "The gift on top overlaps the other gift on the bottom.", - "transcription": "[òuvərlǽp]", - "__v": 0, - "textExampleTranslate": "Подарок сверху перекрывает другой подарок снизу", - "textMeaningTranslate": "Перекрывать что-то - значит покрывать часть этого", - "wordTranslate": "перекрытие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0000" - }, - "group": 4, - "page": 25, - "word": "knowledge", - "image": "files/26_2913.jpg", - "audio": "files/26_2913.mp3", - "audioMeaning": "files/26_2913_meaning.mp3", - "audioExample": "files/26_2913_example.mp3", - "textMeaning": "Knowledge is what you know.", - "textExample": "He has trouble putting his knowledge into practice.", - "transcription": "[nάlidʒ]", - "__v": 0, - "textExampleTranslate": "У него проблемы с применением своих знаний на практике", - "textMeaningTranslate": "Знание - это то, что ты знаешь", - "wordTranslate": "знания" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0002" - }, - "group": 4, - "page": 25, - "word": "offset", - "image": "files/26_2915.jpg", - "audio": "files/26_2915.mp3", - "audioMeaning": "files/26_2915_meaning.mp3", - "audioExample": "files/26_2915_example.mp3", - "textMeaning": "To offset means to use one thing to cancel out the effect of another thing.", - "textExample": "Increased wages are offset by higher prices for goods.", - "transcription": "[ɔ̀ːfsét]", - "__v": 0, - "textExampleTranslate": "Повышение заработной платы компенсируется повышением цен на товары", - "textMeaningTranslate": "Сместить означает использовать одну вещь, чтобы отменить эффект другой вещи", - "wordTranslate": "смещение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0004" - }, - "group": 4, - "page": 25, - "word": "secondhand", - "image": "files/26_2917.jpg", - "audio": "files/26_2917.mp3", - "audioMeaning": "files/26_2917_meaning.mp3", - "audioExample": "files/26_2917_example.mp3", - "textMeaning": "When something is secondhand, it has been owned by someone else.", - "textExample": "Her secondhand jeans were a bit faded in the front.", - "transcription": "[sékəndhǽnd]", - "__v": 0, - "textExampleTranslate": "Ее подержанные джинсы были немного выцветшими спереди", - "textMeaningTranslate": "Когда что-то подержано, оно принадлежит кому-то другому", - "wordTranslate": "подержанный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0007" - }, - "group": 4, - "page": 25, - "word": "tactic", - "image": "files/26_2920.jpg", - "audio": "files/26_2920.mp3", - "audioMeaning": "files/26_2920_meaning.mp3", - "audioExample": "files/26_2920_example.mp3", - "textMeaning": "A tactic is a careful plan to achieve something.", - "textExample": "Sam thought of a good tactic to attract more business.", - "transcription": "[tǽktik]", - "__v": 0, - "textExampleTranslate": "Сэм подумал о хорошей тактике, чтобы привлечь больше бизнеса", - "textMeaningTranslate": "Тактика - это тщательный план, чтобы чего-то достичь", - "wordTranslate": "тактика" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0005" - }, - "group": 4, - "page": 25, - "word": "skill", - "image": "files/26_2918.jpg", - "audio": "files/26_2918.mp3", - "audioMeaning": "files/26_2918_meaning.mp3", - "audioExample": "files/26_2918_example.mp3", - "textMeaning": "When you have skill at doing a job, you are good at doing it.", - "textExample": "She worked with great skill and confidence.", - "transcription": "[skil]", - "__v": 0, - "textExampleTranslate": "Она работала с большим мастерством и уверенностью", - "textMeaningTranslate": "Когда у тебя есть умение делать работу, ты хорош в этом", - "wordTranslate": "умение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0006" - }, - "group": 4, - "page": 25, - "word": "slot", - "image": "files/26_2919.jpg", - "audio": "files/26_2919.mp3", - "audioMeaning": "files/26_2919_meaning.mp3", - "audioExample": "files/26_2919_example.mp3", - "textMeaning": "A slot is a narrow opening in a machine or container.", - "textExample": "To operate the machine, put your coins into the slot.", - "transcription": "[slɑt]", - "__v": 0, - "textExampleTranslate": "Чтобы управлять машиной, положите свои монеты в слот", - "textMeaningTranslate": "Щель - это узкое отверстие в машине или контейнере", - "wordTranslate": "слот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0008" - }, - "group": 4, - "page": 26, - "word": "beneficial", - "image": "files/27_2921.jpg", - "audio": "files/27_2921.mp3", - "audioMeaning": "files/27_2921_meaning.mp3", - "audioExample": "files/27_2921_example.mp3", - "textMeaning": "If something is beneficial, it is good for you.", - "textExample": "Drinking milk every day is beneficial for your bones.", - "transcription": "[bènəfíʃəl]", - "__v": 0, - "textExampleTranslate": "Пить молоко каждый день полезно для ваших костей", - "textMeaningTranslate": "Если что-то полезно, это хорошо для вас", - "wordTranslate": "выгодно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0009" - }, - "group": 4, - "page": 26, - "word": "birthplace", - "image": "files/27_2922.jpg", - "audio": "files/27_2922.mp3", - "audioMeaning": "files/27_2922_meaning.mp3", - "audioExample": "files/27_2922_example.mp3", - "textMeaning": "A birthplace is a place where a person is born or where something started.", - "textExample": "China is the birthplace of chopsticks.", - "transcription": "[bə́ːrθplèis]", - "__v": 0, - "textExampleTranslate": "Китай - это родина палочек для еды", - "textMeaningTranslate": "Место рождения - это место, где человек родился или где что-то началось", - "wordTranslate": "родина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b000a" - }, - "group": 4, - "page": 26, - "word": "capacity", - "image": "files/27_2923.jpg", - "audio": "files/27_2923.mp3", - "audioMeaning": "files/27_2923_meaning.mp3", - "audioExample": "files/27_2923_example.mp3", - "textMeaning": "The capacity of something is the amount of things that can be put in it.", - "textExample": "The parking lot has reached its full capacity.", - "transcription": "[kəpǽsəti]", - "__v": 0, - "textExampleTranslate": "Парковка вышла на полную мощность", - "textMeaningTranslate": "Способность чего-либо - это количество вещей, которые могут быть вложены в него", - "wordTranslate": "вместимость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b000b" - }, - "group": 4, - "page": 26, - "word": "comparative", - "image": "files/27_2924.jpg", - "audio": "files/27_2924.mp3", - "audioMeaning": "files/27_2924_meaning.mp3", - "audioExample": "files/27_2924_example.mp3", - "textMeaning": "If something is comparative, it is being judged based on something else.", - "textExample": "The money that John has is comparative to that of most other adults.", - "transcription": "[kəmpǽrətiv]", - "__v": 0, - "textExampleTranslate": "Деньги, которые есть у Джона, сравнимы с деньгами большинства других взрослых", - "textMeaningTranslate": "Если что-то сравнительное, то судят по чему-то другому", - "wordTranslate": "сравнительная степень" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b000d" - }, - "group": 4, - "page": 26, - "word": "conserve", - "image": "files/27_2926.jpg", - "audio": "files/27_2926.mp3", - "audioMeaning": "files/27_2926_meaning.mp3", - "audioExample": "files/27_2926_example.mp3", - "textMeaning": "To conserve something is to protect it from being ruined or used completely.", - "textExample": "The group worked to conserve the beauty of Europe’s national parks.", - "transcription": "[kənsə́ːrv]", - "__v": 0, - "textExampleTranslate": "Группа работала над сохранением красоты национальных парков Европы", - "textMeaningTranslate": "Сохранять что-то - значит защищать его от разрушения или полного использования", - "wordTranslate": "консервируют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b000c" - }, - "group": 4, - "page": 26, - "word": "comprehensive", - "image": "files/27_2925.jpg", - "audio": "files/27_2925.mp3", - "audioMeaning": "files/27_2925_meaning.mp3", - "audioExample": "files/27_2925_example.mp3", - "textMeaning": "If something is comprehensive, it has all the details about something else.", - "textExample": "The teacher gave us a comprehensive review for the exam.", - "transcription": "[kὰmprihénsiv]", - "__v": 0, - "textExampleTranslate": "Учитель дал нам исчерпывающий обзор к экзамену", - "textMeaningTranslate": "Если что-то всеобъемлющее, в нем есть все детали о чем-то другом", - "wordTranslate": "всеобъемлющий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b000e" - }, - "group": 4, - "page": 26, - "word": "crucial", - "image": "files/27_2927.jpg", - "audio": "files/27_2927.mp3", - "audioMeaning": "files/27_2927_meaning.mp3", - "audioExample": "files/27_2927_example.mp3", - "textMeaning": "If something is crucial, it is extremely important to another thing.", - "textExample": "Clean air is crucial to the survival of humans, plants, and animals.", - "transcription": "[krúːʃəl]", - "__v": 0, - "textExampleTranslate": "Чистый воздух имеет решающее значение для выживания людей, растений и животных", - "textMeaningTranslate": "Если что-то имеет решающее значение, это чрезвычайно важно для другого", - "wordTranslate": "ключевой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b000f" - }, - "group": 4, - "page": 26, - "word": "cumulative", - "image": "files/27_2928.jpg", - "audio": "files/27_2928.mp3", - "audioMeaning": "files/27_2928_meaning.mp3", - "audioExample": "files/27_2928_example.mp3", - "textMeaning": "Cumulative describes an increase by adding one after another.", - "textExample": "The cumulative snowfall in the area is fifty centimeters per year.", - "transcription": "[kjúːmjəlèitiv]", - "__v": 0, - "textExampleTranslate": "Совокупный снегопад в этом районе составляет пятьдесят сантиметров в год", - "textMeaningTranslate": "Совокупный описывает увеличение путем добавления одного за другим", - "wordTranslate": "кумулятивный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0010" - }, - "group": 4, - "page": 26, - "word": "deposit", - "image": "files/27_2929.jpg", - "audio": "files/27_2929.mp3", - "audioMeaning": "files/27_2929_meaning.mp3", - "audioExample": "files/27_2929_example.mp3", - "textMeaning": "To deposit something is to put it into a place or another thing.", - "textExample": "I deposited the money into my bank account.", - "transcription": "[dipɑ́zit]", - "__v": 0, - "textExampleTranslate": "Я положил деньги на свой банковский счет", - "textMeaningTranslate": "Поместить что-то - значит поместить это в место или другую вещь", - "wordTranslate": "депозит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0011" - }, - "group": 4, - "page": 26, - "word": "distribute", - "image": "files/27_2930.jpg", - "audio": "files/27_2930.mp3", - "audioMeaning": "files/27_2930_meaning.mp3", - "audioExample": "files/27_2930_example.mp3", - "textMeaning": "To distribute something is to give it to a number of people.", - "textExample": "The teacher distributed crayons and markers to her students.", - "transcription": "[distríbjuːt]", - "__v": 0, - "textExampleTranslate": "Учительница раздавала мелки и маркеры своим ученикам", - "textMeaningTranslate": "Распространять что-то - значит давать это нескольким людям", - "wordTranslate": "распространение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0012" - }, - "group": 4, - "page": 26, - "word": "equator", - "image": "files/27_2931.jpg", - "audio": "files/27_2931.mp3", - "audioMeaning": "files/27_2931_meaning.mp3", - "audioExample": "files/27_2931_example.mp3", - "textMeaning": "The equator is an imaginary line that splits the Earth into north and south.", - "textExample": "The equator crosses the northern part of South America.", - "transcription": "[ikwéitər]", - "__v": 0, - "textExampleTranslate": "Экватор пересекает северную часть Южной Америки", - "textMeaningTranslate": "Экватор - это воображаемая линия, которая разделяет Землю на север и юг", - "wordTranslate": "экватор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0013" - }, - "group": 4, - "page": 26, - "word": "exotic", - "image": "files/27_2932.jpg", - "audio": "files/27_2932.mp3", - "audioMeaning": "files/27_2932_meaning.mp3", - "audioExample": "files/27_2932_example.mp3", - "textMeaning": "Exotic describes something unusual because it is from far away.", - "textExample": "Rebecca tried many exotic foods on her trip to Africa.", - "transcription": "[igzɑ́tik]", - "__v": 0, - "textExampleTranslate": "Ребекка попробовала много экзотических продуктов в своей поездке в Африку", - "textMeaningTranslate": "Экзотика описывает нечто необычное, потому что оно издалека", - "wordTranslate": "экзотические" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0014" - }, - "group": 4, - "page": 26, - "word": "federal", - "image": "files/27_2933.jpg", - "audio": "files/27_2933.mp3", - "audioMeaning": "files/27_2933_meaning.mp3", - "audioExample": "files/27_2933_example.mp3", - "textMeaning": "If something is federal, it relates to the government of a country.", - "textExample": "Sometimes federal laws are different from state laws.", - "transcription": "[fédərəl]", - "__v": 0, - "textExampleTranslate": "Иногда федеральные законы отличаются от законов штата", - "textMeaningTranslate": "Если что-то федеральное, это относится к правительству страны", - "wordTranslate": "федеральный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0015" - }, - "group": 4, - "page": 26, - "word": "formation", - "image": "files/27_2934.jpg", - "audio": "files/27_2934.mp3", - "audioMeaning": "files/27_2934_meaning.mp3", - "audioExample": "files/27_2934_example.mp3", - "textMeaning": "A formation is the way that something is made.", - "textExample": "The formation of ice happens when water freezes.", - "transcription": "[fɔːrméiʃən]", - "__v": 0, - "textExampleTranslate": "Образование льда происходит, когда вода замерзает", - "textMeaningTranslate": "Формация - это способ, которым что-то сделано", - "wordTranslate": "формирование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0016" - }, - "group": 4, - "page": 26, - "word": "frequency", - "image": "files/27_2935.jpg", - "audio": "files/27_2935.mp3", - "audioMeaning": "files/27_2935_meaning.mp3", - "audioExample": "files/27_2935_example.mp3", - "textMeaning": "The frequency of something is the number of times that it happens.", - "textExample": "The frequency of rainstorms is very high, especially during the spring.", - "transcription": "[fríːkwənsi]", - "__v": 0, - "textExampleTranslate": "Частота ливней очень высока, особенно весной", - "textMeaningTranslate": "Частота чего-либо - это количество раз, когда это происходит", - "wordTranslate": "частота" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0017" - }, - "group": 4, - "page": 26, - "word": "objective", - "image": "files/27_2936.jpg", - "audio": "files/27_2936.mp3", - "audioMeaning": "files/27_2936_meaning.mp3", - "audioExample": "files/27_2936_example.mp3", - "textMeaning": "An objective is a goal or plan that someone has.", - "textExample": "My objective this week is to finish my homework by 7:30 every night.", - "transcription": "[əbdʒéktiv]", - "__v": 0, - "textExampleTranslate": "Моя цель на этой неделе - закончить домашнее задание каждую ночь к 7:30", - "textMeaningTranslate": "Цель - это цель или план, который есть у кого-то", - "wordTranslate": "задача" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0018" - }, - "group": 4, - "page": 26, - "word": "oxygen", - "image": "files/27_2937.jpg", - "audio": "files/27_2937.mp3", - "audioMeaning": "files/27_2937_meaning.mp3", - "audioExample": "files/27_2937_example.mp3", - "textMeaning": "Oxygen is a gas that all living things need to breathe.", - "textExample": "She thinks there is more oxygen in the air in the country than in the city.", - "transcription": "[ɑ́ksidʒən]", - "__v": 0, - "textExampleTranslate": "Она думает, что в стране больше кислорода, чем в городе", - "textMeaningTranslate": "Кислород - это газ, которым должны дышать все живые существа", - "wordTranslate": "кислород" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0019" - }, - "group": 4, - "page": 26, - "word": "rainforest", - "image": "files/27_2938.jpg", - "audio": "files/27_2938.mp3", - "audioMeaning": "files/27_2938_meaning.mp3", - "audioExample": "files/27_2938_example.mp3", - "textMeaning": "A rainforest is a forest that is in a place where it rains very often.", - "textExample": "The rainforest is home to many animals.", - "transcription": "[réinfɔ̀(ː)rist]", - "__v": 0, - "textExampleTranslate": "Тропический лес является домом для многих животных", - "textMeaningTranslate": "Тропический лес - это лес, в котором очень часто идут дожди", - "wordTranslate": "тропический лес" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b001a" - }, - "group": 4, - "page": 26, - "word": "strategy", - "image": "files/27_2939.jpg", - "audio": "files/27_2939.mp3", - "audioMeaning": "files/27_2939_meaning.mp3", - "audioExample": "files/27_2939_example.mp3", - "textMeaning": "A strategy is a plan for how to do something.", - "textExample": "The team came up with a strategy to win the game.", - "transcription": "[strǽtədʒi]", - "__v": 0, - "textExampleTranslate": "Команда придумала стратегию, чтобы выиграть игру", - "textMeaningTranslate": "Стратегия - это план того, как что-то сделать", - "wordTranslate": "стратегия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b001b" - }, - "group": 4, - "page": 26, - "word": "wooded", - "image": "files/27_2940.jpg", - "audio": "files/27_2940.mp3", - "audioMeaning": "files/27_2940_meaning.mp3", - "audioExample": "files/27_2940_example.mp3", - "textMeaning": "If an area is wooded, it is covered with trees.", - "textExample": "Jim and Ben decided to go hiking in the wooded area by the river.", - "transcription": "[wúdid]", - "__v": 0, - "textExampleTranslate": "Джим и Бен решили отправиться в поход в лесистую местность у реки", - "textMeaningTranslate": "Если территория покрыта лесом, она покрыта деревьями", - "wordTranslate": "лесистый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b001c" - }, - "group": 4, - "page": 27, - "word": "avail", - "image": "files/28_2941.jpg", - "audio": "files/28_2941.mp3", - "audioMeaning": "files/28_2941_meaning.mp3", - "audioExample": "files/28_2941_example.mp3", - "textMeaning": "Avail is help or benefit.", - "textExample": "His studying was to no avail because he failed the test.", - "transcription": "[əvéil]", - "__v": 0, - "textExampleTranslate": "Его изучение было бесполезно, потому что он не прошел тест", - "textMeaningTranslate": "Польза - это помощь или выгода", - "wordTranslate": "воспользоваться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b001d" - }, - "group": 4, - "page": 27, - "word": "dread", - "image": "files/28_2943.jpg", - "audio": "files/28_2943.mp3", - "audioMeaning": "files/28_2943_meaning.mp3", - "audioExample": "files/28_2943_example.mp3", - "textMeaning": "To dread is to be afraid of something that could, or is going to, happen.", - "textExample": "I dread the possibility that I will not get into college.", - "transcription": "[dread]", - "__v": 0, - "textExampleTranslate": "Я боюсь, что не попаду в колледж", - "textMeaningTranslate": "Бояться - значит бояться того, что может или произойдет", - "wordTranslate": "страх" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b001e" - }, - "group": 4, - "page": 27, - "word": "define", - "image": "files/28_2942.jpg", - "audio": "files/28_2942.mp3", - "audioMeaning": "files/28_2942_meaning.mp3", - "audioExample": "files/28_2942_example.mp3", - "textMeaning": "To define means to clearly state, show, or explain what something is.", - "textExample": "People define success in many different ways.", - "transcription": "[difáin]", - "__v": 0, - "textExampleTranslate": "Люди определяют успех разными способами", - "textMeaningTranslate": "Определить означает четко заявить, показать или объяснить, что что-то", - "wordTranslate": "определить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b001f" - }, - "group": 4, - "page": 27, - "word": "expand", - "image": "files/28_2944.jpg", - "audio": "files/28_2944.mp3", - "audioMeaning": "files/28_2944_meaning.mp3", - "audioExample": "files/28_2944_example.mp3", - "textMeaning": "To expand is to become bigger in size.", - "textExample": "A balloon will expand as you blow air into it.", - "transcription": "[ikspǽnd]", - "__v": 0, - "textExampleTranslate": "Воздушный шар будет расширяться, когда вы будете дуть в него воздухом", - "textMeaningTranslate": "Расширяться - значит увеличиваться в размерах", - "wordTranslate": "расширить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0020" - }, - "group": 4, - "page": 27, - "word": "fundamental", - "image": "files/28_2945.jpg", - "audio": "files/28_2945.mp3", - "audioMeaning": "files/28_2945_meaning.mp3", - "audioExample": "files/28_2945_example.mp3", - "textMeaning": "If something is fundamental, it is a basic part of something.", - "textExample": "The fundamental rules of basketball are easy.", - "transcription": "[fʌ̀ndəméntl]", - "__v": 0, - "textExampleTranslate": "Основные правила баскетбола просты", - "textMeaningTranslate": "Если что-то является фундаментальным, это основная часть чего-то", - "wordTranslate": "фундаментальные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0021" - }, - "group": 4, - "page": 27, - "word": "horrifying", - "image": "files/28_2946.jpg", - "audio": "files/28_2946.mp3", - "audioMeaning": "files/28_2946_meaning.mp3", - "audioExample": "files/28_2946_example.mp3", - "textMeaning": "If something is horrifying, it is frightening and very unpleasant.", - "textExample": "There was a horrifying car accident today.", - "transcription": "[hɔ́ːrəfàiŋ]", - "__v": 0, - "textExampleTranslate": "Сегодня произошла ужасная автомобильная авария", - "textMeaningTranslate": "Если что-то ужасно, это страшно и очень неприятно", - "wordTranslate": "ужаснув" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0022" - }, - "group": 4, - "page": 27, - "word": "incredulous", - "image": "files/28_2947.jpg", - "audio": "files/28_2947.mp3", - "audioMeaning": "files/28_2947_meaning.mp3", - "audioExample": "files/28_2947_example.mp3", - "textMeaning": "If someone is incredulous about something, they do not believe that it is true.", - "textExample": "She was incredulous that monkeys could ever drive a car.", - "transcription": "[inkrédʒələs]", - "__v": 0, - "textExampleTranslate": "Она была недоверчива, что обезьяны могли водить машину", - "textMeaningTranslate": "Если кто-то недоволен чем-то, он не верит, что это правда", - "wordTranslate": "недоверчивый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0023" - }, - "group": 4, - "page": 27, - "word": "linger", - "image": "files/28_2948.jpg", - "audio": "files/28_2948.mp3", - "audioMeaning": "files/28_2948_meaning.mp3", - "audioExample": "files/28_2948_example.mp3", - "textMeaning": "To linger is to last for a long time.", - "textExample": "The smell of fresh cookies lingered in the bakery.", - "transcription": "[líŋgər]", - "__v": 0, - "textExampleTranslate": "Запах свежего печенья задержался в пекарне", - "textMeaningTranslate": "Задержаться - это надолго", - "wordTranslate": "задерживаться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0024" - }, - "group": 4, - "page": 27, - "word": "organism", - "image": "files/28_2949.jpg", - "audio": "files/28_2949.mp3", - "audioMeaning": "files/28_2949_meaning.mp3", - "audioExample": "files/28_2949_example.mp3", - "textMeaning": "An organism is a living thing, especially a very small one.", - "textExample": "We studied the organism under the microscope.", - "transcription": "[ɔ́ːrgənìzəm]", - "__v": 0, - "textExampleTranslate": "Мы изучали организм под микроскопом", - "textMeaningTranslate": "Организм - это живое существо, особенно очень маленькое", - "wordTranslate": "организм" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0025" - }, - "group": 4, - "page": 27, - "word": "paraphrase", - "image": "files/28_2950.jpg", - "audio": "files/28_2950.mp3", - "audioMeaning": "files/28_2950_meaning.mp3", - "audioExample": "files/28_2950_example.mp3", - "textMeaning": "To paraphrase is to make someone else’s writing or speech shorter.", - "textExample": "The students were asked to paraphrase the story they had just heard.", - "transcription": "[pǽrəfrèiz]", - "__v": 0, - "textExampleTranslate": "Студентов попросили перефразировать историю, которую они только что услышали", - "textMeaningTranslate": "Перефразировать - значит сокращать чужую письменность или речь", - "wordTranslate": "парафраз" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0026" - }, - "group": 4, - "page": 27, - "word": "plague", - "image": "files/28_2951.jpg", - "audio": "files/28_2951.mp3", - "audioMeaning": "files/28_2951_meaning.mp3", - "audioExample": "files/28_2951_example.mp3", - "textMeaning": "A plague is a serious disease that quickly spreads to many people.", - "textExample": "A plague in Europe killed millions of people.", - "transcription": "[pleig]", - "__v": 0, - "textExampleTranslate": "Чума в Европе убила миллионы людей", - "textMeaningTranslate": "Чума - это серьезное заболевание, которое быстро распространяется на многих людей", - "wordTranslate": "чума" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0027" - }, - "group": 4, - "page": 27, - "word": "presently", - "image": "files/28_2952.jpg", - "audio": "files/28_2952.mp3", - "audioMeaning": "files/28_2952_meaning.mp3", - "audioExample": "files/28_2952_example.mp3", - "textMeaning": "If something happens presently, it is happening right now.", - "textExample": "Presently, our profits are good, but by next year we can do even better.", - "transcription": "[prézəntli]", - "__v": 0, - "textExampleTranslate": "В настоящее время наша прибыль хорошая, но к следующему году мы можем добиться еще больших успехов", - "textMeaningTranslate": "Если что-то происходит сейчас, это происходит прямо сейчас", - "wordTranslate": "в настоящее время" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0028" - }, - "group": 4, - "page": 27, - "word": "random", - "image": "files/28_2953.jpg", - "audio": "files/28_2953.mp3", - "audioMeaning": "files/28_2953_meaning.mp3", - "audioExample": "files/28_2953_example.mp3", - "textMeaning": "If something is random, it happens without any pattern or reason.", - "textExample": "Young children often ask random questions.", - "transcription": "[rǽndəm]", - "__v": 0, - "textExampleTranslate": "Маленькие дети часто задают случайные вопросы", - "textMeaningTranslate": "Если что-то случайное, это происходит без какой-либо закономерности или причины", - "wordTranslate": "случайный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0029" - }, - "group": 4, - "page": 27, - "word": "riot", - "image": "files/28_2954.jpg", - "audio": "files/28_2954.mp3", - "audioMeaning": "files/28_2954_meaning.mp3", - "audioExample": "files/28_2954_example.mp3", - "textMeaning": "A riot is a crowd that reacts to bad news by violently breaking laws.", - "textExample": "A riot broke out after the candidate lost the election.", - "transcription": "[ráiət]", - "__v": 0, - "textExampleTranslate": "Бунт начался после того, как кандидат проиграл выборы", - "textMeaningTranslate": "Бунт - это толпа, которая реагирует на плохие новости, насильственно нарушая законы", - "wordTranslate": "бунт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b002a" - }, - "group": 4, - "page": 27, - "word": "scribble", - "image": "files/28_2955.jpg", - "audio": "files/28_2955.mp3", - "audioMeaning": "files/28_2955_meaning.mp3", - "audioExample": "files/28_2955_example.mp3", - "textMeaning": "To scribble is to write something quickly without caring about how it looks.", - "textExample": "I scribbled a rough diagram of our plan and gave it to him.", - "transcription": "[skríbəl]", - "__v": 0, - "textExampleTranslate": "Я набросал черновую схему нашего плана и дал ему", - "textMeaningTranslate": "Писать - значит писать что-то быстро, не заботясь о том, как это выглядит", - "wordTranslate": "мазня" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b002b" - }, - "group": 4, - "page": 27, - "word": "shrine", - "image": "files/28_2956.jpg", - "audio": "files/28_2956.mp3", - "audioMeaning": "files/28_2956_meaning.mp3", - "audioExample": "files/28_2956_example.mp3", - "textMeaning": "A shrine is a religious building built to honor a person, event, or god.", - "textExample": "He prayed at the shrine for an hour.", - "transcription": "[ʃrain]", - "__v": 0, - "textExampleTranslate": "Он молился в храме в течение часа", - "textMeaningTranslate": "Храм - это религиозное здание, построенное в честь человека, события или бога", - "wordTranslate": "святыня" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b002c" - }, - "group": 4, - "page": 27, - "word": "solitude", - "image": "files/28_2957.jpg", - "audio": "files/28_2957.mp3", - "audioMeaning": "files/28_2957_meaning.mp3", - "audioExample": "files/28_2957_example.mp3", - "textMeaning": "Solitude is the state of being totally alone.", - "textExample": "John lives a life of solitude because he doesn’t get along well with people.", - "transcription": "[sɑ́litjùːd]", - "__v": 0, - "textExampleTranslate": "Джон живет одинокой жизнью, потому что не ладит с людьми", - "textMeaningTranslate": "Одиночество - это состояние одиночества", - "wordTranslate": "одиночество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b002d" - }, - "group": 4, - "page": 27, - "word": "stark", - "image": "files/28_2958.jpg", - "audio": "files/28_2958.mp3", - "audioMeaning": "files/28_2958_meaning.mp3", - "audioExample": "files/28_2958_example.mp3", - "textMeaning": "If something is stark, then it is severe or clear in appearance or outline.", - "textExample": "There is a stark contrast between their test scores.", - "transcription": "[stɑːrk]", - "__v": 0, - "textExampleTranslate": "Существует резкий контраст между их оценками", - "textMeaningTranslate": "Если что-то резко, то это серьезно или ясно по внешнему виду или схеме", - "wordTranslate": "застывший" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b002e" - }, - "group": 4, - "page": 27, - "word": "summon", - "image": "files/28_2959.jpg", - "audio": "files/28_2959.mp3", - "audioMeaning": "files/28_2959_meaning.mp3", - "audioExample": "files/28_2959_example.mp3", - "textMeaning": "To summon a person is to ask them to come to you.", - "textExample": "We summoned the doctor as soon as we noticed she was sick.", - "transcription": "[sʌ́mən]", - "__v": 0, - "textExampleTranslate": "Мы вызвали доктора, как только заметили, что она больна", - "textMeaningTranslate": "Призвать человека - значит попросить его прийти к вам", - "wordTranslate": "вызов" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b002f" - }, - "group": 4, - "page": 27, - "word": "worsen", - "image": "files/28_2960.jpg", - "audio": "files/28_2960.mp3", - "audioMeaning": "files/28_2960_meaning.mp3", - "audioExample": "files/28_2960_example.mp3", - "textMeaning": "To worsen is to get worse.", - "textExample": "The weather suddenly worsened, and we had to stay inside.", - "transcription": "[wə́ːrsən]", - "__v": 0, - "textExampleTranslate": "Погода внезапно ухудшилась, и нам пришлось остаться внутри", - "textMeaningTranslate": "Ухудшиться - это еще хуже", - "wordTranslate": "ухудшить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0030" - }, - "group": 4, - "page": 28, - "word": "automobile", - "image": "files/29_2961.jpg", - "audio": "files/29_2961.mp3", - "audioMeaning": "files/29_2961_meaning.mp3", - "audioExample": "files/29_2961_example.mp3", - "textMeaning": "An automobile is a car.", - "textExample": "The first automobiles were very different from the ones that exist today.", - "transcription": "[ɔ́ːtəməbìːl]", - "__v": 0, - "textExampleTranslate": "Первые автомобили сильно отличались от тех, которые существуют сегодня", - "textMeaningTranslate": "Автомобиль есть автомобиль", - "wordTranslate": "автомобиль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0031" - }, - "group": 4, - "page": 28, - "word": "confidential", - "image": "files/29_2963.jpg", - "audio": "files/29_2963.mp3", - "audioMeaning": "files/29_2963_meaning.mp3", - "audioExample": "files/29_2963_example.mp3", - "textMeaning": "If something is confidential, it must be kept secret.", - "textExample": "The information from the meeting is confidential.", - "transcription": "[kὰnfədénʃəl]", - "__v": 0, - "textExampleTranslate": "Информация со встречи является конфиденциальной", - "textMeaningTranslate": "Если что-то является конфиденциальным, оно должно храниться в тайне", - "wordTranslate": "конфиденциальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0032" - }, - "group": 4, - "page": 28, - "word": "candidate", - "image": "files/29_2962.jpg", - "audio": "files/29_2962.mp3", - "audioMeaning": "files/29_2962_meaning.mp3", - "audioExample": "files/29_2962_example.mp3", - "textMeaning": "A candidate is a person who is competing to win something such as a job.", - "textExample": "Alice is the best candidate for the job.", - "transcription": "[kǽndidèit]", - "__v": 0, - "textExampleTranslate": "Алиса - лучший кандидат на работу", - "textMeaningTranslate": "Кандидат - это человек, который борется за то, чтобы выиграть что-то, например, работу", - "wordTranslate": "кандидат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0033" - }, - "group": 4, - "page": 28, - "word": "corporate", - "image": "files/29_2964.jpg", - "audio": "files/29_2964.mp3", - "audioMeaning": "files/29_2964_meaning.mp3", - "audioExample": "files/29_2964_example.mp3", - "textMeaning": "If something is corporate, it is related to a large business.", - "textExample": "Tom enjoys working in the corporate world.", - "transcription": "[kɔ́ːrpərit]", - "__v": 0, - "textExampleTranslate": "Том любит работать в корпоративном мире", - "textMeaningTranslate": "Если что-то корпоративное, это связано с крупным бизнесом", - "wordTranslate": "корпоративный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0034" - }, - "group": 4, - "page": 28, - "word": "enhance", - "image": "files/29_2965.jpg", - "audio": "files/29_2965.mp3", - "audioMeaning": "files/29_2965_meaning.mp3", - "audioExample": "files/29_2965_example.mp3", - "textMeaning": "To enhance something is to make it better.", - "textExample": "Amy’s blue shirt really enhances the color of her eyes.", - "transcription": "[enhǽns]", - "__v": 0, - "textExampleTranslate": "Синяя рубашка Эми действительно улучшает цвет ее глаз", - "textMeaningTranslate": "Улучшать что-то - значит делать это лучше", - "wordTranslate": "усилить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0035" - }, - "group": 4, - "page": 28, - "word": "era", - "image": "files/29_2966.jpg", - "audio": "files/29_2966.mp3", - "audioMeaning": "files/29_2966_meaning.mp3", - "audioExample": "files/29_2966_example.mp3", - "textMeaning": "An era is a period of time that has something special about it.", - "textExample": "During the medieval era, knights wore protective armor.", - "transcription": "[érə]", - "__v": 0, - "textExampleTranslate": "В эпоху средневековья рыцари носили защитные доспехи", - "textMeaningTranslate": "Эра - это период времени, в котором есть что-то особенное", - "wordTranslate": "эра" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0036" - }, - "group": 4, - "page": 28, - "word": "incorporate", - "image": "files/29_2968.jpg", - "audio": "files/29_2968.mp3", - "audioMeaning": "files/29_2968_meaning.mp3", - "audioExample": "files/29_2968_example.mp3", - "textMeaning": "To incorporate is to add something to another thing.", - "textExample": "I decided to incorporate a new ingredient into my cake recipe.", - "transcription": "[inkɔ́ːrpərèit]", - "__v": 0, - "textExampleTranslate": "Я решил включить новый ингредиент в свой рецепт торта", - "textMeaningTranslate": "Включать - значит добавлять что-то к другому", - "wordTranslate": "включить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0037" - }, - "group": 4, - "page": 28, - "word": "guideline", - "image": "files/29_2967.jpg", - "audio": "files/29_2967.mp3", - "audioMeaning": "files/29_2967_meaning.mp3", - "audioExample": "files/29_2967_example.mp3", - "textMeaning": "A guideline is a rule about how to do something.", - "textExample": "Before they began the project, the teacher gave them some guidelines.", - "transcription": "[gáidlàin]", - "__v": 0, - "textExampleTranslate": "Прежде, чем они начали проект, учитель дал им некоторые рекомендации", - "textMeaningTranslate": "Руководство - это правило о том, как что-то сделать", - "wordTranslate": "руководство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0038" - }, - "group": 4, - "page": 28, - "word": "mobile", - "image": "files/29_2971.jpg", - "audio": "files/29_2971.mp3", - "audioMeaning": "files/29_2971_meaning.mp3", - "audioExample": "files/29_2971_example.mp3", - "textMeaning": "If something is mobile, it can be moved easily.", - "textExample": "Mobile phones are convenient because you can use them anywhere.", - "transcription": "[móubəl]", - "__v": 0, - "textExampleTranslate": "Мобильные телефоны удобны, потому что вы можете использовать их где угодно", - "textMeaningTranslate": "Если что-то мобильное, его можно легко перемещать", - "wordTranslate": "мобильный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0039" - }, - "group": 4, - "page": 28, - "word": "interact", - "image": "files/29_2969.jpg", - "audio": "files/29_2969.mp3", - "audioMeaning": "files/29_2969_meaning.mp3", - "audioExample": "files/29_2969_example.mp3", - "textMeaning": "To interact is to talk to or do something with another person.", - "textExample": "The kids began to interact when the adults left the room.", - "transcription": "[íntərӕkt]", - "__v": 0, - "textExampleTranslate": "Дети начали взаимодействовать, когда взрослые покинули комнату", - "textMeaningTranslate": "Взаимодействовать означает разговаривать или делать что-то с другим человеком", - "wordTranslate": "взаимодействовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b003a" - }, - "group": 4, - "page": 28, - "word": "interval", - "image": "files/29_2970.jpg", - "audio": "files/29_2970.mp3", - "audioMeaning": "files/29_2970_meaning.mp3", - "audioExample": "files/29_2970_example.mp3", - "textMeaning": "An interval is the time between two things happening.", - "textExample": "Tony rested for brief intervals while he worked in the yard.", - "transcription": "[íntərvəl]", - "__v": 0, - "textExampleTranslate": "Тони отдыхал на короткое время, пока работал во дворе", - "textMeaningTranslate": "Интервал - это время между двумя вещами, происходящими", - "wordTranslate": "интервал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b003b" - }, - "group": 4, - "page": 28, - "word": "modify", - "image": "files/29_2972.jpg", - "audio": "files/29_2972.mp3", - "audioMeaning": "files/29_2972_meaning.mp3", - "audioExample": "files/29_2972_example.mp3", - "textMeaning": "To modify something is to change it a little bit.", - "textExample": "I modified my outfit by adding a belt to it.", - "transcription": "[mɑ́dəfài]", - "__v": 0, - "textExampleTranslate": "Я изменил свой наряд, добавив к нему ремень", - "textMeaningTranslate": "Изменить что-то - значит немного изменить", - "wordTranslate": "изменить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b003c" - }, - "group": 4, - "page": 28, - "word": "parallel", - "image": "files/29_2973.jpg", - "audio": "files/29_2973.mp3", - "audioMeaning": "files/29_2973_meaning.mp3", - "audioExample": "files/29_2973_example.mp3", - "textMeaning": "If two things are parallel, they are the same distance away from each other (along their entire length).", - "textExample": "There are two yellow parallel lines dividing both sides of traffic.", - "transcription": "[pǽrəlèl]", - "__v": 0, - "textExampleTranslate": "Есть две желтые параллельные линии, разделяющие обе стороны движения", - "textMeaningTranslate": "Если две вещи параллельны, они находятся на одинаковом расстоянии друг от друга (по всей их длине)", - "wordTranslate": "параллельно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b003d" - }, - "group": 4, - "page": 28, - "word": "phenomenon", - "image": "files/29_2974.jpg", - "audio": "files/29_2974.mp3", - "audioMeaning": "files/29_2974_meaning.mp3", - "audioExample": "files/29_2974_example.mp3", - "textMeaning": "A phenomenon is something that can be seen as it is happening.", - "textExample": "I thought the lights were a strange phenomenon, but they were just shooting stars.", - "transcription": "[finɑ́mənɑ̀n]", - "__v": 0, - "textExampleTranslate": "Я думал, что огни были странным явлением, но они были просто падающими звездами", - "textMeaningTranslate": "Феномен - это то, что можно увидеть, как оно происходит", - "wordTranslate": "явление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b003e" - }, - "group": 4, - "page": 28, - "word": "ridicule", - "image": "files/29_2976.jpg", - "audio": "files/29_2976.mp3", - "audioMeaning": "files/29_2976_meaning.mp3", - "audioExample": "files/29_2976_example.mp3", - "textMeaning": "To ridicule is to make fun of something in a mean way.", - "textExample": "The other students ridicule Peter’s foreign accent.", - "transcription": "[rídikjùːl]", - "__v": 0, - "textExampleTranslate": "Другие студенты высмеивают иностранный акцент Петра", - "textMeaningTranslate": "Высмеивать - значит подшучивать над чем-то", - "wordTranslate": "насмешка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b003f" - }, - "group": 4, - "page": 28, - "word": "pollute", - "image": "files/29_2975.jpg", - "audio": "files/29_2975.mp3", - "audioMeaning": "files/29_2975_meaning.mp3", - "audioExample": "files/29_2975_example.mp3", - "textMeaning": "To pollute means to make air, water, or land dirty, unclean, or foul.", - "textExample": "The careless factory polluted the river with chemicals.", - "transcription": "[pəlúːt]", - "__v": 0, - "textExampleTranslate": "Неосторожная фабрика загрязнила реку химикатами", - "textMeaningTranslate": "Загрязнить означает сделать воздух, воду или землю грязными, нечистыми или грязными", - "wordTranslate": "загрязнять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0040" - }, - "group": 4, - "page": 28, - "word": "solar", - "image": "files/29_2977.jpg", - "audio": "files/29_2977.mp3", - "audioMeaning": "files/29_2977_meaning.mp3", - "audioExample": "files/29_2977_example.mp3", - "textMeaning": "If something is solar, it is related to the sun.", - "textExample": "Using solar energy is good for the environment.", - "transcription": "[sóuləːr]", - "__v": 0, - "textExampleTranslate": "Использование солнечной энергии полезно для окружающей среды", - "textMeaningTranslate": "Если что-то солнечное, это связано с солнцем", - "wordTranslate": "солнечный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0041" - }, - "group": 4, - "page": 28, - "word": "territory", - "image": "files/29_2978.jpg", - "audio": "files/29_2978.mp3", - "audioMeaning": "files/29_2978_meaning.mp3", - "audioExample": "files/29_2978_example.mp3", - "textMeaning": "A territory is a piece of land that belongs to a country but isn’t a state.", - "textExample": "Gibraltar is a territory of Great Britain.", - "transcription": "[térətɔ̀ːri]", - "__v": 0, - "textExampleTranslate": "Гибралтар - это территория Великобритании", - "textMeaningTranslate": "Территория - это участок земли, который принадлежит стране, но не является государством", - "wordTranslate": "территория" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0042" - }, - "group": 4, - "page": 28, - "word": "tournament", - "image": "files/29_2979.jpg", - "audio": "files/29_2979.mp3", - "audioMeaning": "files/29_2979_meaning.mp3", - "audioExample": "files/29_2979_example.mp3", - "textMeaning": "A tournament is a competition, usually with many people participating.", - "textExample": "My dad is playing in a golf tournament tomorrow.", - "transcription": "[túərnəmənt]", - "__v": 0, - "textExampleTranslate": "Мой папа играет в турнире по гольфу завтра", - "textMeaningTranslate": "Турнир - это соревнование, в котором обычно участвует много людей", - "wordTranslate": "турнир" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0043" - }, - "group": 4, - "page": 28, - "word": "transportation", - "image": "files/29_2980.jpg", - "audio": "files/29_2980.mp3", - "audioMeaning": "files/29_2980_meaning.mp3", - "audioExample": "files/29_2980_example.mp3", - "textMeaning": "Transportation is any type of vehicle that can carry people or things.", - "textExample": "I don’t have a car, so my normal transportation is the train.", - "transcription": "[træ̀nspəːrtéiʃən]", - "__v": 0, - "textExampleTranslate": "У меня нет машины, поэтому мой обычный транспорт - поезд", - "textMeaningTranslate": "Транспорт - это любой тип транспортного средства, которое может перевозить людей или вещи", - "wordTranslate": "транспорт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0045" - }, - "group": 4, - "page": 29, - "word": "chaos", - "image": "files/30_2983.jpg", - "audio": "files/30_2983.mp3", - "audioMeaning": "files/30_2983_meaning.mp3", - "audioExample": "files/30_2983_example.mp3", - "textMeaning": "Chaos is a situation that is confusing and not ordered.", - "textExample": "His presentation was in chaos. I couldn’t understand what he meant.", - "transcription": "[kéiɑs]", - "__v": 0, - "textExampleTranslate": "Его презентация была в хаосе. Я не мог понять, что он имел в виду", - "textMeaningTranslate": "Хаос - это ситуация, которая запутана и не упорядочена", - "wordTranslate": "хаос" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0044" - }, - "group": 4, - "page": 29, - "word": "bill", - "image": "files/30_2981.jpg", - "audio": "files/30_2981.mp3", - "audioMeaning": "files/30_2981_meaning.mp3", - "audioExample": "files/30_2981_example.mp3", - "textMeaning": "A bill is a statement of money owed for goods or for a service.", - "textExample": "I have so many bills that I do not know how to pay them all.", - "transcription": "[bil]", - "__v": 0, - "textExampleTranslate": "У меня так много счетов, что я не знаю, как оплатить их все", - "textMeaningTranslate": "Счет представляет собой отчет о задолженности за товары или услуги", - "wordTranslate": "счет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0046" - }, - "group": 4, - "page": 29, - "word": "boundary", - "image": "files/30_2982.jpg", - "audio": "files/30_2982.mp3", - "audioMeaning": "files/30_2982_meaning.mp3", - "audioExample": "files/30_2982_example.mp3", - "textMeaning": "A boundary is the line where one area of land stops and another begins.", - "textExample": "This fence shows the boundary between our yard and yours.", - "transcription": "[báundəri]", - "__v": 0, - "textExampleTranslate": "Этот забор показывает границу между нашим двором и вашим", - "textMeaningTranslate": "Граница - это линия, где один участок земли останавливается, а другой начинается", - "wordTranslate": "граница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0047" - }, - "group": 4, - "page": 29, - "word": "consistent", - "image": "files/30_2984.jpg", - "audio": "files/30_2984.mp3", - "audioMeaning": "files/30_2984_meaning.mp3", - "audioExample": "files/30_2984_example.mp3", - "textMeaning": "If a person is consistent, they always have the same behavior or attitude.", - "textExample": "Sara comes in every day and is our most consistent worker.", - "transcription": "[kənsístənt]", - "__v": 0, - "textExampleTranslate": "Сара приходит каждый день и является нашим самым последовательным работником", - "textMeaningTranslate": "Если человек последовательный, у него всегда одинаковое поведение или отношение", - "wordTranslate": "последовательный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0048" - }, - "group": 4, - "page": 29, - "word": "organic", - "image": "files/30_2989.jpg", - "audio": "files/30_2989.mp3", - "audioMeaning": "files/30_2989_meaning.mp3", - "audioExample": "files/30_2989_example.mp3", - "textMeaning": "If food is organic, it is grown without adding chemicals to it.", - "textExample": "The organic carrots are more expensive, but they’re better for you.", - "transcription": "[ɔːrgǽnik]", - "__v": 0, - "textExampleTranslate": "Органическая морковь дороже, но лучше для вас", - "textMeaningTranslate": "Если пища органическая, ее выращивают без добавления химикатов", - "wordTranslate": "органический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b004a" - }, - "group": 4, - "page": 29, - "word": "martial", - "image": "files/30_2988.jpg", - "audio": "files/30_2988.mp3", - "audioMeaning": "files/30_2988_meaning.mp3", - "audioExample": "files/30_2988_example.mp3", - "textMeaning": "If something is martial, it is related to fighting or war.", - "textExample": "Karate is a martial art that began many years ago in Japan.", - "transcription": "[mάːrʃəl]", - "__v": 0, - "textExampleTranslate": "Каратэ - это боевое искусство, которое началось много лет назад в Японии", - "textMeaningTranslate": "Если что-то военное, это связано с боем или войной", - "wordTranslate": "боевой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0049" - }, - "group": 4, - "page": 29, - "word": "doomed", - "image": "files/30_2986.jpg", - "audio": "files/30_2986.mp3", - "audioMeaning": "files/30_2986_meaning.mp3", - "audioExample": "files/30_2986_example.mp3", - "textMeaning": "If someone or something is doomed, they are going to fail or be destroyed.", - "textExample": "Since I spent all my money, my date with Jane is doomed.", - "transcription": "[duːmd]", - "__v": 0, - "textExampleTranslate": "Поскольку я потратил все свои деньги, мое свидание с Джейн обречено", - "textMeaningTranslate": "Если кто-то или что-то обречено, они потерпят неудачу или будут уничтожены", - "wordTranslate": "обречен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b004b" - }, - "group": 4, - "page": 29, - "word": "heir", - "image": "files/30_2987.jpg", - "audio": "files/30_2987.mp3", - "audioMeaning": "files/30_2987_meaning.mp3", - "audioExample": "files/30_2987_example.mp3", - "textMeaning": "An heir is a person who receives the money or property of someone who dies.", - "textExample": "The princess was the heir to the king and queen’s throne.", - "transcription": "[ɛər]", - "__v": 0, - "textExampleTranslate": "Принцесса была наследницей короля и престола королевы", - "textMeaningTranslate": "Наследник - это человек, который получает деньги или имущество того, кто умирает", - "wordTranslate": "наследник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b004c" - }, - "group": 4, - "page": 29, - "word": "cyclone", - "image": "files/30_2985.jpg", - "audio": "files/30_2985.mp3", - "audioMeaning": "files/30_2985_meaning.mp3", - "audioExample": "files/30_2985_example.mp3", - "textMeaning": "A cyclone is a large storm with heavy rain and winds that spin in a circle.", - "textExample": "Hundreds of homes were damaged by the cyclone.", - "transcription": "[sáikloun]", - "__v": 0, - "textExampleTranslate": "Сотни домов пострадали от циклона", - "textMeaningTranslate": "Циклон - это большая буря с сильным дождем и ветрами, которые вращаются по кругу", - "wordTranslate": "циклон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b004d" - }, - "group": 4, - "page": 29, - "word": "poultry", - "image": "files/30_2990.jpg", - "audio": "files/30_2990.mp3", - "audioMeaning": "files/30_2990_meaning.mp3", - "audioExample": "files/30_2990_example.mp3", - "textMeaning": "Poultry is a bird, such as a chicken, that is used for meat and eggs.", - "textExample": "He raises poultry and sells their meat for extra money.", - "transcription": "[póultri]", - "__v": 0, - "textExampleTranslate": "Он выращивает птицу и продает их мясо за дополнительные деньги", - "textMeaningTranslate": "Птица - это птица, например, курица, которая используется для мяса и яиц", - "wordTranslate": "птицы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b004e" - }, - "group": 4, - "page": 29, - "word": "scramble", - "image": "files/30_2991.jpg", - "audio": "files/30_2991.mp3", - "audioMeaning": "files/30_2991_meaning.mp3", - "audioExample": "files/30_2991_example.mp3", - "textMeaning": "To scramble is to move somewhere quickly and desperately.", - "textExample": "The hikers scrambled down the side of the hill.", - "transcription": "[skræmbl]", - "__v": 0, - "textExampleTranslate": "Путешественники спустились по склону холма", - "textMeaningTranslate": "Перебраться значит двигаться куда-то быстро и отчаянно", - "wordTranslate": "свалка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0050" - }, - "group": 4, - "page": 29, - "word": "sergeant", - "image": "files/30_2992.jpg", - "audio": "files/30_2992.mp3", - "audioMeaning": "files/30_2992_meaning.mp3", - "audioExample": "files/30_2992_example.mp3", - "textMeaning": "A sergeant is a soldier or police officer of middle rank.", - "textExample": "He was promoted to sergeant after a year in the army.", - "transcription": "[sάːrdʒənt]", - "__v": 0, - "textExampleTranslate": "Его повысили до сержанта после года в армии", - "textMeaningTranslate": "Сержант - это солдат или полицейский среднего ранга", - "wordTranslate": "сержант" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b004f" - }, - "group": 4, - "page": 29, - "word": "stance", - "image": "files/30_2994.jpg", - "audio": "files/30_2994.mp3", - "audioMeaning": "files/30_2994_meaning.mp3", - "audioExample": "files/30_2994_example.mp3", - "textMeaning": "A stance is an attitude about an issue that someone states clearly.", - "textExample": "My stance is that using oil and gas is bad for the environment.", - "transcription": "[stæns]", - "__v": 0, - "textExampleTranslate": "Моя позиция заключается в том, что использование нефти и газа вредно для окружающей среды", - "textMeaningTranslate": "Позиция - это отношение к проблеме, о которой кто-то четко говорит", - "wordTranslate": "позиция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0051" - }, - "group": 4, - "page": 29, - "word": "sheer", - "image": "files/30_2993.jpg", - "audio": "files/30_2993.mp3", - "audioMeaning": "files/30_2993_meaning.mp3", - "audioExample": "files/30_2993_example.mp3", - "textMeaning": "If you describe something as sheer, it is complete and total.", - "textExample": "I was impressed by her sheer dedication to jogging.", - "transcription": "[ʃiəːr]", - "__v": 0, - "textExampleTranslate": "Я был впечатлен ее преданностью бегу трусцой", - "textMeaningTranslate": "Если вы описываете что-то как чистое, оно полное и тотальное", - "wordTranslate": "чистый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0052" - }, - "group": 4, - "page": 29, - "word": "telegraph", - "image": "files/30_2995.jpg", - "audio": "files/30_2995.mp3", - "audioMeaning": "files/30_2995_meaning.mp3", - "audioExample": "files/30_2995_example.mp3", - "textMeaning": "A telegraph is a method of sending electric messages on wires.", - "textExample": "In the 1900s, the telegraph was the fastest way to send a message.", - "transcription": "[téləgræ̀f]", - "__v": 0, - "textExampleTranslate": "В 1900-х годах телеграф был самым быстрым способом отправки сообщения", - "textMeaningTranslate": "Телеграф - это способ отправки электрических сообщений по проводам", - "wordTranslate": "телеграф" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0055" - }, - "group": 4, - "page": 29, - "word": "wail", - "image": "files/30_2999.jpg", - "audio": "files/30_2999.mp3", - "audioMeaning": "files/30_2999_meaning.mp3", - "audioExample": "files/30_2999_example.mp3", - "textMeaning": "To wail is to show sadness by crying loudly.", - "textExample": "The baby wailed because it was hungry.", - "transcription": "[weil]", - "__v": 0, - "textExampleTranslate": "Ребенок плакал, потому что был голоден", - "textMeaningTranslate": "Плакать - значит показывать грусть громким плачем", - "wordTranslate": "стенания" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0054" - }, - "group": 4, - "page": 29, - "word": "typhoon", - "image": "files/30_2998.jpg", - "audio": "files/30_2998.mp3", - "audioMeaning": "files/30_2998_meaning.mp3", - "audioExample": "files/30_2998_example.mp3", - "textMeaning": "A typhoon is a large tropical storm that moves in circles.", - "textExample": "Thousands of people lost electricity after a typhoon hit Australia.", - "transcription": "[taifúːn]", - "__v": 0, - "textExampleTranslate": "Тысячи людей потеряли электричество после того, как тайфун обрушился на Австралию", - "textMeaningTranslate": "Тайфун - это большой тропический шторм, который движется кругами", - "wordTranslate": "тайфун" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0053" - }, - "group": 4, - "page": 29, - "word": "textile", - "image": "files/30_2996.jpg", - "audio": "files/30_2996.mp3", - "audioMeaning": "files/30_2996_meaning.mp3", - "audioExample": "files/30_2996_example.mp3", - "textMeaning": "Textile is cloth that has been woven or knitted.", - "textExample": "The blue textile was going to be used to make blouses.", - "transcription": "[tékstail]", - "__v": 0, - "textExampleTranslate": "Синий текстиль собирался использовать для изготовления блузок", - "textMeaningTranslate": "Текстиль - это ткань, которая была соткана или связана", - "wordTranslate": "текстиль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0056" - }, - "group": 4, - "page": 29, - "word": "tornado", - "image": "files/30_2997.jpg", - "audio": "files/30_2997.mp3", - "audioMeaning": "files/30_2997_meaning.mp3", - "audioExample": "files/30_2997_example.mp3", - "textMeaning": "A tornado is a tube-shaped formation of air that spins very quickly.", - "textExample": "During a tornado, the safest place to be is underground.", - "transcription": "[tɔːrnéidou]", - "__v": 0, - "textExampleTranslate": "Во время торнадо самое безопасное место - под землей", - "textMeaningTranslate": "Торнадо - это трубчатое образование воздуха, которое вращается очень быстро", - "wordTranslate": "торнадо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0057" - }, - "group": 4, - "page": 29, - "word": "wardrobe", - "image": "files/30_3000.jpg", - "audio": "files/30_3000.mp3", - "audioMeaning": "files/30_3000_meaning.mp3", - "audioExample": "files/30_3000_example.mp3", - "textMeaning": "A wardrobe is the collection of all of a person’s clothing.", - "textExample": "She bought some new clothes to expand her wardrobe.", - "transcription": "[wɔ́ːrdròub]", - "__v": 0, - "textExampleTranslate": "Она купила новую одежду, чтобы расширить свой гардероб", - "textMeaningTranslate": "Гардероб - это коллекция всей одежды человека", - "wordTranslate": "гардероб" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0058" - }, - "group": 5, - "page": 0, - "word": "adverse", - "image": "files/01_3001.jpg", - "audio": "files/01_3001.mp3", - "audioMeaning": "files/01_3001_meaning.mp3", - "audioExample": "files/01_3001_example.mp3", - "textMeaning": "Something that has an adverse effect can be harmful, dangerous, or unfavorable.", - "textExample": "I worry that the tornado will have an adverse effect on the farm.", - "transcription": "[ædvɜːrs]", - "__v": 0, - "textExampleTranslate": "Я беспокоюсь, что торнадо окажет неблагоприятное влияние на ферму", - "textMeaningTranslate": "То, что оказывает неблагоприятное воздействие, может быть вредным, опасным или неблагоприятным", - "wordTranslate": "неблагоприятный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b005d" - }, - "group": 5, - "page": 0, - "word": "discard", - "image": "files/01_3007.jpg", - "audio": "files/01_3007.mp3", - "audioMeaning": "files/01_3007_meaning.mp3", - "audioExample": "files/01_3007_example.mp3", - "textMeaning": "To discard something is to throw it away.", - "textExample": "After repairing the window, discard any broken glass.", - "transcription": "[diskάːrd]", - "__v": 0, - "textExampleTranslate": "После ремонта окна откажитесь от разбитого стекла", - "textMeaningTranslate": "Отбросить что-то - значит выбросить", - "wordTranslate": "отбрасывание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b005c" - }, - "group": 5, - "page": 0, - "word": "choke", - "image": "files/01_3005.jpg", - "audio": "files/01_3005.mp3", - "audioMeaning": "files/01_3005_meaning.mp3", - "audioExample": "files/01_3005_example.mp3", - "textMeaning": "If you choke on something, it stops you from breathing.", - "textExample": "The gum Malinda swallowed made her choke.", - "transcription": "[ʧouk]", - "__v": 0, - "textExampleTranslate": "Жвачка, которую Малинда проглотила, заставила ее задохнуться", - "textMeaningTranslate": "Если вы задыхаетесь, это мешает вам дышать", - "wordTranslate": "удушение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0059" - }, - "group": 5, - "page": 0, - "word": "alternate", - "image": "files/01_3002.jpg", - "audio": "files/01_3002.mp3", - "audioMeaning": "files/01_3002_meaning.mp3", - "audioExample": "files/01_3002_example.mp3", - "textMeaning": "An alternate option is a different option.", - "textExample": "Taking the bus and driving to work are alternate ways to travel.", - "transcription": "[ɔ́ːltərnət]", - "__v": 0, - "textExampleTranslate": "Поездка на автобусе и езда на работу - альтернативные способы передвижения", - "textMeaningTranslate": "Альтернативный вариант - это другой вариант", - "wordTranslate": "альтернативный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b005a" - }, - "group": 5, - "page": 0, - "word": "biodegradable", - "image": "files/01_3003.jpg", - "audio": "files/01_3003.mp3", - "audioMeaning": "files/01_3003_meaning.mp3", - "audioExample": "files/01_3003_example.mp3", - "textMeaning": "Materials that are biodegradable break down naturally into substances that do not harm the environment.", - "textExample": "I use biodegradable compost to feed my garden.", - "transcription": "[bàioudigréidəbl]", - "__v": 0, - "textExampleTranslate": "Я использую биоразлагаемый компост, чтобы кормить свой сад", - "textMeaningTranslate": "Биоразлагаемые материалы естественным образом распадаются на вещества, которые не наносят вреда окружающей среде", - "wordTranslate": "биоразлагаемый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b005b" - }, - "group": 5, - "page": 0, - "word": "boxed", - "image": "files/01_3004.jpg", - "audio": "files/01_3004.mp3", - "audioMeaning": "files/01_3004_meaning.mp3", - "audioExample": "files/01_3004_example.mp3", - "textMeaning": "When something is boxed, it is inside a package.", - "textExample": "Justine brought a boxed gift to the birthday party.", - "transcription": "[bakst]", - "__v": 0, - "textExampleTranslate": "Джастин принесла коробочный подарок на день рождения", - "textMeaningTranslate": "Когда что-то упаковано, оно внутри упаковки", - "wordTranslate": "боксовый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b005e" - }, - "group": 5, - "page": 0, - "word": "convenient", - "image": "files/01_3006.jpg", - "audio": "files/01_3006.mp3", - "audioMeaning": "files/01_3006_meaning.mp3", - "audioExample": "files/01_3006_example.mp3", - "textMeaning": "When something is convenient, it saves you time or effort.", - "textExample": "Walking through the park is a convenient way to exercise on the way to work.", - "transcription": "[kənvíːnjənt]", - "__v": 0, - "textExampleTranslate": "Прогулка по парку - это удобный способ тренировки по дороге на работу", - "textMeaningTranslate": "Когда что-то удобно, это экономит ваше время или усилия", - "wordTranslate": "удобный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0060" - }, - "group": 5, - "page": 0, - "word": "ecologically", - "image": "files/01_3009.jpg", - "audio": "files/01_3009.mp3", - "audioMeaning": "files/01_3009_meaning.mp3", - "audioExample": "files/01_3009_example.mp3", - "textMeaning": "Ecologically means that something is done in a way that concerns living organisms and the environment.", - "textExample": "We planted our garden according to ecologically correct practices.", - "transcription": "[èkəlάdʒikəli]", - "__v": 0, - "textExampleTranslate": "Мы посадили наш сад в соответствии с экологически правильными методами", - "textMeaningTranslate": "Экологически означает, что что-то сделано таким образом, что касается живых организмов и окружающей среды", - "wordTranslate": "экологически" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b005f" - }, - "group": 5, - "page": 0, - "word": "dolphin", - "image": "files/01_3008.jpg", - "audio": "files/01_3008.mp3", - "audioMeaning": "files/01_3008_meaning.mp3", - "audioExample": "files/01_3008_example.mp3", - "textMeaning": "A dolphin is a large sea mammal that breathes air.", - "textExample": "Intelligent dolphins have learned to communicate with humans.", - "transcription": "[dάlfin]", - "__v": 0, - "textExampleTranslate": "Умные дельфины научились общаться с людьми", - "textMeaningTranslate": "Дельфин - это большое морское млекопитающее, которое дышит воздухом", - "wordTranslate": "дельфин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0062" - }, - "group": 5, - "page": 0, - "word": "incidence", - "image": "files/01_3011.jpg", - "audio": "files/01_3011.mp3", - "audioMeaning": "files/01_3011_meaning.mp3", - "audioExample": "files/01_3011_example.mp3", - "textMeaning": "The number of times something happens is the incidence of the event.", - "textExample": "We need to increase the incidence of success in school.", - "transcription": "[ínsədəns]", - "__v": 0, - "textExampleTranslate": "Нам нужно увеличить частоту успеха в школе", - "textMeaningTranslate": "Количество случаев, когда что-то случается, является частотой события", - "wordTranslate": "частота" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0061" - }, - "group": 5, - "page": 0, - "word": "fatal", - "image": "files/01_3010.jpg", - "audio": "files/01_3010.mp3", - "audioMeaning": "files/01_3010_meaning.mp3", - "audioExample": "files/01_3010_example.mp3", - "textMeaning": "Something that is fatal results in someone’s death.", - "textExample": "Being shot by the attacker proved fatal to the victim.", - "transcription": "[féitl]", - "__v": 0, - "textExampleTranslate": "Застрелен нападавшим оказался смертельным для жертвы", - "textMeaningTranslate": "Нечто смертельное приводит к чьей-то смерти", - "wordTranslate": "фатальным" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0063" - }, - "group": 5, - "page": 0, - "word": "municipal", - "image": "files/01_3012.jpg", - "audio": "files/01_3012.mp3", - "audioMeaning": "files/01_3012_meaning.mp3", - "audioExample": "files/01_3012_example.mp3", - "textMeaning": "Municipal means that something belongs to a city or local government.", - "textExample": "The municipal parking lot downtown can fit one hundred cars.", - "transcription": "[mjuːnísəpəl]", - "__v": 0, - "textExampleTranslate": "Муниципальная парковка в центре города может вместить сто автомобилей", - "textMeaningTranslate": "Муниципальный означает, что что-то принадлежит городскому или местному правительству", - "wordTranslate": "муниципальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0064" - }, - "group": 5, - "page": 0, - "word": "overuse", - "image": "files/01_3013.jpg", - "audio": "files/01_3013.mp3", - "audioMeaning": "files/01_3013_meaning.mp3", - "audioExample": "files/01_3013_example.mp3", - "textMeaning": "Overuse occurs when something is utilized too many times.", - "textExample": "Rochelle’s overuse of the exercise bike caused the gears to break.", - "transcription": "[òuvərjúːz]", - "__v": 0, - "textExampleTranslate": "Чрезмерное использование Рошель велотренажера вызвало поломку передач", - "textMeaningTranslate": "Чрезмерное использование происходит, когда что-то используется слишком много раз", - "wordTranslate": "злоупотребляют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0066" - }, - "group": 5, - "page": 0, - "word": "recycle", - "image": "files/01_3015.jpg", - "audio": "files/01_3015.mp3", - "audioMeaning": "files/01_3015_meaning.mp3", - "audioExample": "files/01_3015_example.mp3", - "textMeaning": "When you recycle an object, you use its parts to make something else.", - "textExample": "We recycle our newspapers so that they can be made into packing boxes.", - "transcription": "[riúzəbl]", - "__v": 0, - "textExampleTranslate": "Мы перерабатываем наши газеты, чтобы они могли быть превращены в упаковочные коробки", - "textMeaningTranslate": "Когда вы перерабатываете объект, вы используете его части, чтобы сделать что-то еще", - "wordTranslate": "рециркулировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0065" - }, - "group": 5, - "page": 0, - "word": "pond", - "image": "files/01_3014.jpg", - "audio": "files/01_3014.mp3", - "audioMeaning": "files/01_3014_meaning.mp3", - "audioExample": "files/01_3014_example.mp3", - "textMeaning": "A pond is a freshwater body that is smaller than a lake.", - "textExample": "I learned to swim at the pond behind the recreation center.", - "transcription": "[pand]", - "__v": 0, - "textExampleTranslate": "Я научился плавать на пруду за базой отдыха", - "textMeaningTranslate": "Пруд - это пресноводное тело, которое меньше озера", - "wordTranslate": "пруд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0067" - }, - "group": 5, - "page": 0, - "word": "reusable", - "image": "files/01_3016.jpg", - "audio": "files/01_3016.mp3", - "audioMeaning": "files/01_3016_meaning.mp3", - "audioExample": "files/01_3016_example.mp3", - "textMeaning": "An object that is reusable can be utilized over and over again.", - "textExample": "Saburo keeps his empty jelly jars because they are reusable for storing sewing supplies.", - "transcription": "[riúzəbl]", - "__v": 0, - "textExampleTranslate": "Сабуро хранит свои пустые желейные банки, потому что их можно использовать для хранения швейных принадлежностей", - "textMeaningTranslate": "Объект, который можно использовать повторно, можно использовать снова и снова", - "wordTranslate": "многоразового использования" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0068" - }, - "group": 5, - "page": 0, - "word": "stuffed", - "image": "files/01_3017.jpg", - "audio": "files/01_3017.mp3", - "audioMeaning": "files/01_3017_meaning.mp3", - "audioExample": "files/01_3017_example.mp3", - "textMeaning": "When something is stuffed, it is pushed into a small space.", - "textExample": "The newspapers were all stuffed into the drawer.", - "transcription": "[stʌft]", - "__v": 0, - "textExampleTranslate": "Все газеты были спрятаны в ящик", - "textMeaningTranslate": "Когда что-то наполняется, оно выталкивается в небольшое пространство", - "wordTranslate": "чучела" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b006b" - }, - "group": 5, - "page": 0, - "word": "whale", - "image": "files/01_3020.jpg", - "audio": "files/01_3020.mp3", - "audioMeaning": "files/01_3020_meaning.mp3", - "audioExample": "files/01_3020_example.mp3", - "textMeaning": "A whale is a very large mammal that lives in the ocean.", - "textExample": "We were surprised when a whale surfaced next to our boat.", - "transcription": "[hweil]", - "__v": 0, - "textExampleTranslate": "Мы были удивлены, когда кит всплыл рядом с нашей лодкой", - "textMeaningTranslate": "Кит - это очень большое млекопитающее, которое живет в океане", - "wordTranslate": "кит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b006a" - }, - "group": 5, - "page": 0, - "word": "utilize", - "image": "files/01_3019.jpg", - "audio": "files/01_3019.mp3", - "audioMeaning": "files/01_3019_meaning.mp3", - "audioExample": "files/01_3019_example.mp3", - "textMeaning": "To utilize something is to use it for a specific purpose.", - "textExample": "The team can utilize the lab equipment to complete the experiment.", - "transcription": "[júːtəlàiz]", - "__v": 0, - "textExampleTranslate": "Команда может использовать лабораторное оборудование для завершения эксперимента", - "textMeaningTranslate": "Использовать что-то - значит использовать это для определенной цели", - "wordTranslate": "использовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0069" - }, - "group": 5, - "page": 0, - "word": "tragic", - "image": "files/01_3018.jpg", - "audio": "files/01_3018.mp3", - "audioMeaning": "files/01_3018_meaning.mp3", - "audioExample": "files/01_3018_example.mp3", - "textMeaning": "A tragic event causes sadness because it might involve death or suffering.", - "textExample": "The entire community attended the memorial service for the victims of the tragic fire.", - "transcription": "[trǽdʒik]", - "__v": 0, - "textExampleTranslate": "Вся община посетила панихиду по жертвам трагического пожара", - "textMeaningTranslate": "Трагическое событие вызывает грусть, потому что оно может повлечь за собой смерть или страдание", - "wordTranslate": "трагическое" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b006c" - }, - "group": 5, - "page": 1, - "word": "ambiguous", - "image": "files/02_3022.jpg", - "audio": "files/02_3022.mp3", - "audioMeaning": "files/02_3022_meaning.mp3", - "audioExample": "files/02_3022_example.mp3", - "textMeaning": "If something is ambiguous, it is not entirely clear.", - "textExample": "It’s ambiguous as to whether a newborn baby looks like a girl or a boy.", - "transcription": "[æmbígjuəs]", - "__v": 0, - "textExampleTranslate": "Это неоднозначно, выглядит ли новорожденный ребенок девочкой или мальчиком", - "textMeaningTranslate": "Если что-то неоднозначно, это не совсем понятно", - "wordTranslate": "неоднозначный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b006d" - }, - "group": 5, - "page": 1, - "word": "amateur", - "image": "files/02_3021.jpg", - "audio": "files/02_3021.mp3", - "audioMeaning": "files/02_3021_meaning.mp3", - "audioExample": "files/02_3021_example.mp3", - "textMeaning": "An amateur is a person who does something for fun and isn’t paid for it.", - "textExample": "The amateur took pictures just as well as the person who worked for money.", - "transcription": "[ǽməʧùər]", - "__v": 0, - "textExampleTranslate": "Любитель снимал так же хорошо, как и человек, который работал на деньги", - "textMeaningTranslate": "Любитель - это человек, который делает что-то для развлечения и ему не платят", - "wordTranslate": "любитель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b006e" - }, - "group": 5, - "page": 1, - "word": "anonymous", - "image": "files/02_3023.jpg", - "audio": "files/02_3023.mp3", - "audioMeaning": "files/02_3023_meaning.mp3", - "audioExample": "files/02_3023_example.mp3", - "textMeaning": "If someone is anonymous, no one knows who he or she is.", - "textExample": "An anonymous donor gave a thousand dollars to the museum.", - "transcription": "[ənάnəməs]", - "__v": 0, - "textExampleTranslate": "Анонимный донор дал музею тысячу долларов", - "textMeaningTranslate": "Если кто-то является анонимным, никто не знает, кто он или она", - "wordTranslate": "анонимный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b006f" - }, - "group": 5, - "page": 1, - "word": "attain", - "image": "files/02_3024.jpg", - "audio": "files/02_3024.mp3", - "audioMeaning": "files/02_3024_meaning.mp3", - "audioExample": "files/02_3024_example.mp3", - "textMeaning": "To attain something is to succeed at something or to get something you want.", - "textExample": "If you want to attain a healthy body, you must exercise every day.", - "transcription": "[ətéin]", - "__v": 0, - "textExampleTranslate": "Если вы хотите достичь здорового тела, вы должны заниматься каждый день", - "textMeaningTranslate": "Достигнуть чего-либо - значит добиться успеха в чем-то или получить то, что вы хотите", - "wordTranslate": "достичь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0071" - }, - "group": 5, - "page": 1, - "word": "concession", - "image": "files/02_3026.jpg", - "audio": "files/02_3026.mp3", - "audioMeaning": "files/02_3026_meaning.mp3", - "audioExample": "files/02_3026_example.mp3", - "textMeaning": "A concession is something that one person gives up to another.", - "textExample": "China gave Hong Kong to Britain as a concession after the war.", - "transcription": "[kənséʃən]", - "__v": 0, - "textExampleTranslate": "Китай отдал Гонконгу Великобританию в качестве концессии после войны", - "textMeaningTranslate": "Концессия - это то, что один человек уступает другому", - "wordTranslate": "концессия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0070" - }, - "group": 5, - "page": 1, - "word": "autonomy", - "image": "files/02_3025.jpg", - "audio": "files/02_3025.mp3", - "audioMeaning": "files/02_3025_meaning.mp3", - "audioExample": "files/02_3025_example.mp3", - "textMeaning": "Autonomy is another word for freedom or independence.", - "textExample": "In the 1800s, the people of India fought for autonomy from Britain.", - "transcription": "[ɔːtάnəmi]", - "__v": 0, - "textExampleTranslate": "В 1800-х годах народ Индии боролся за автономию от Британии", - "textMeaningTranslate": "Автономия - это еще одно слово для свободы или независимости", - "wordTranslate": "автономия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0072" - }, - "group": 5, - "page": 1, - "word": "decay", - "image": "files/02_3027.jpg", - "audio": "files/02_3027.mp3", - "audioMeaning": "files/02_3027_meaning.mp3", - "audioExample": "files/02_3027_example.mp3", - "textMeaning": "Decay is the result of something slowly being broken down or destroyed naturally.", - "textExample": "The decay in the old building was obvious.", - "transcription": "[dikéi]", - "__v": 0, - "textExampleTranslate": "Разрушение в старом здании было очевидным", - "textMeaningTranslate": "Распад - это результат того, что что-то медленно разрушается или уничтожается естественным путем", - "wordTranslate": "затухать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0073" - }, - "group": 5, - "page": 1, - "word": "dwell", - "image": "files/02_3028.jpg", - "audio": "files/02_3028.mp3", - "audioMeaning": "files/02_3028_meaning.mp3", - "audioExample": "files/02_3028_example.mp3", - "textMeaning": "To dwell somewhere means to live there.", - "textExample": "Before he was a successful writer, Mark Twain dwelled in the city of Hannibal, Missouri.", - "transcription": "[dwel]", - "__v": 0, - "textExampleTranslate": "Прежде, чем он стал успешным писателем, Марк Твен жил в городе Ганнибал, штат Миссури", - "textMeaningTranslate": "Жить где-то значит жить там", - "wordTranslate": "обитать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0074" - }, - "group": 5, - "page": 1, - "word": "enlighten", - "image": "files/02_3029.jpg", - "audio": "files/02_3029.mp3", - "audioMeaning": "files/02_3029_meaning.mp3", - "audioExample": "files/02_3029_example.mp3", - "textMeaning": "To enlighten someone is to teach them about something.", - "textExample": "Greek philosophers wanted to enlighten the people of Athens with their ideas.", - "transcription": "[inláitn]", - "__v": 0, - "textExampleTranslate": "Греческие философы хотели просветить афинский народ своими идеями", - "textMeaningTranslate": "Просвещать кого-то - значит учить его чему-то", - "wordTranslate": "просветить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0075" - }, - "group": 5, - "page": 1, - "word": "enrich", - "image": "files/02_3030.jpg", - "audio": "files/02_3030.mp3", - "audioMeaning": "files/02_3030_meaning.mp3", - "audioExample": "files/02_3030_example.mp3", - "textMeaning": "To enrich means to make someone rich or increase their wealth.", - "textExample": "Taxes on people’s income can be used to enrich the government.", - "transcription": "[inríʧ]", - "__v": 0, - "textExampleTranslate": "Налоги на доходы населения могут быть использованы для обогащения правительства", - "textMeaningTranslate": "Обогатить - значит сделать кого-то богатым или увеличить его богатство", - "wordTranslate": "обогатить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0076" - }, - "group": 5, - "page": 1, - "word": "flourish", - "image": "files/02_3031.jpg", - "audio": "files/02_3031.mp3", - "audioMeaning": "files/02_3031_meaning.mp3", - "audioExample": "files/02_3031_example.mp3", - "textMeaning": "To flourish means to do very well and be in an excellent condition.", - "textExample": "The Roman Empire flourished in Europe two thousand years ago.", - "transcription": "[fə́ːriʃ]", - "__v": 0, - "textExampleTranslate": "Римская империя процветала в Европе две тысячи лет назад", - "textMeaningTranslate": "Процветать - значит преуспевать и быть в отличном состоянии", - "wordTranslate": "процветать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0077" - }, - "group": 5, - "page": 1, - "word": "geometry", - "image": "files/02_3032.jpg", - "audio": "files/02_3032.mp3", - "audioMeaning": "files/02_3032_meaning.mp3", - "audioExample": "files/02_3032_example.mp3", - "textMeaning": "Geometry is the study of shapes and how to measure them.", - "textExample": "If you want to be able to calculate the area of a circle, you must study geometry.", - "transcription": "[dʒiάmətri]", - "__v": 0, - "textExampleTranslate": "Если вы хотите иметь возможность рассчитать площадь круга, вы должны изучить геометрию", - "textMeaningTranslate": "Геометрия - это изучение форм и способов их измерения", - "wordTranslate": "геометрия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0078" - }, - "group": 5, - "page": 1, - "word": "gleam", - "image": "files/02_3033.jpg", - "audio": "files/02_3033.mp3", - "audioMeaning": "files/02_3033_meaning.mp3", - "audioExample": "files/02_3033_example.mp3", - "textMeaning": "To gleam means to sparkle and shine.", - "textExample": "The waves of the ocean would gleam every night at sunset.", - "transcription": "[gliːm]", - "__v": 0, - "textExampleTranslate": "Волны океана будут сиять каждую ночь на закате", - "textMeaningTranslate": "Просвечивать - значит сиять и сиять", - "wordTranslate": "блестеть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0079" - }, - "group": 5, - "page": 1, - "word": "greed", - "image": "files/02_3034.jpg", - "audio": "files/02_3034.mp3", - "audioMeaning": "files/02_3034_meaning.mp3", - "audioExample": "files/02_3034_example.mp3", - "textMeaning": "Greed is wanting to have more of something than you need or should have.", - "textExample": "The story of King Midas is a story of greed.", - "transcription": "[ɡriːd]", - "__v": 0, - "textExampleTranslate": "История царя Мидаса - это история жадности", - "textMeaningTranslate": "Жадность - это желание иметь больше чего-то, чем вам нужно или нужно", - "wordTranslate": "жадность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b007a" - }, - "group": 5, - "page": 1, - "word": "harmony", - "image": "files/02_3035.jpg", - "audio": "files/02_3035.mp3", - "audioMeaning": "files/02_3035_meaning.mp3", - "audioExample": "files/02_3035_example.mp3", - "textMeaning": "Harmony is a feeling that everything is peaceful, balanced, and in agreement.", - "textExample": "The United Nations is struggling to bring peace and harmony to the world.", - "transcription": "[hάːrməni]", - "__v": 0, - "textExampleTranslate": "Организация Объединенных Наций борется за то, чтобы принести мир и гармонию в мир", - "textMeaningTranslate": "Гармония - это чувство, что все мирно, сбалансировано и согласовано", - "wordTranslate": "гармония" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b007b" - }, - "group": 5, - "page": 1, - "word": "indigenous", - "image": "files/02_3036.jpg", - "audio": "files/02_3036.mp3", - "audioMeaning": "files/02_3036_meaning.mp3", - "audioExample": "files/02_3036_example.mp3", - "textMeaning": "Indigenous means that something or someone exists naturally in an environment or area.", - "textExample": "The Pueblo people were an indigenous tribe in Arizona who lived in adobe homes.", - "transcription": "[indídʒənəs]", - "__v": 0, - "textExampleTranslate": "Народ пуэбло был коренным племенем в Аризоне и жил в самодельных домах", - "textMeaningTranslate": "Коренной народ означает, что что-то или кто-то существует естественным образом в окружающей среде или области", - "wordTranslate": "коренные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b007c" - }, - "group": 5, - "page": 1, - "word": "jurisdiction", - "image": "files/02_3037.jpg", - "audio": "files/02_3037.mp3", - "audioMeaning": "files/02_3037_meaning.mp3", - "audioExample": "files/02_3037_example.mp3", - "textMeaning": "Jurisdiction means the power or right to make judgments about the law and how it is upheld.", - "textExample": "We did not have jurisdiction to bring the criminal to trial.", - "transcription": "[dʒùərisdíkʃən]", - "__v": 0, - "textExampleTranslate": "У нас не было полномочий судить преступника", - "textMeaningTranslate": "Юрисдикция означает право или право выносить суждения о законе и о том, как он поддерживается", - "wordTranslate": "юрисдикция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b007d" - }, - "group": 5, - "page": 1, - "word": "parade", - "image": "files/02_3038.jpg", - "audio": "files/02_3038.mp3", - "audioMeaning": "files/02_3038_meaning.mp3", - "audioExample": "files/02_3038_example.mp3", - "textMeaning": "A parade is a series of things or people that come or are shown one after another.", - "textExample": "This parade of elephants is part of an open-air exhibit to honor these majestic animals.", - "transcription": "[pəréid]", - "__v": 0, - "textExampleTranslate": "Этот парад слонов является частью выставки под открытым небом в честь этих величественных животных", - "textMeaningTranslate": "Парад - это серия вещей или людей, которые приходят или показываются один за другим", - "wordTranslate": "парад" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b007e" - }, - "group": 5, - "page": 1, - "word": "statue", - "image": "files/02_3039.jpg", - "audio": "files/02_3039.mp3", - "audioMeaning": "files/02_3039_meaning.mp3", - "audioExample": "files/02_3039_example.mp3", - "textMeaning": "A statue is a three-dimensional work of art, usually made of clay, marble, or metal.", - "textExample": "The Venus de Milo is a famous ancient Greek statue.", - "transcription": "[stǽʧuː]", - "__v": 0, - "textExampleTranslate": "Венера Милосская - это знаменитая древнегреческая статуя", - "textMeaningTranslate": "Статуя - это трехмерное произведение искусства, обычно сделанное из глины, мрамора или металла", - "wordTranslate": "статуя" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b007f" - }, - "group": 5, - "page": 1, - "word": "virgin", - "image": "files/02_3040.jpg", - "audio": "files/02_3040.mp3", - "audioMeaning": "files/02_3040_meaning.mp3", - "audioExample": "files/02_3040_example.mp3", - "textMeaning": "A virgin is someone who has never had sex.", - "textExample": "The virgin goddess of the moon was known as Diana.", - "transcription": "[və́ːrdʒin]", - "__v": 0, - "textExampleTranslate": "Девственная богиня луны была известна как Диана", - "textMeaningTranslate": "Девственница - это тот, кто никогда не занимался сексом", - "wordTranslate": "девственница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0080" - }, - "group": 5, - "page": 2, - "word": "abnormal", - "image": "files/03_3041.jpg", - "audio": "files/03_3041.mp3", - "audioMeaning": "files/03_3041_meaning.mp3", - "audioExample": "files/03_3041_example.mp3", - "textMeaning": "If something is abnormal, it is different from normal or average.", - "textExample": "I felt abnormal this morning, like I was sick.", - "transcription": "[æbnɔ́ːrməl]", - "__v": 0, - "textExampleTranslate": "Я чувствовал себя ненормальным сегодня утром, как будто я был болен", - "textMeaningTranslate": "Если что-то ненормальное, оно отличается от нормального или среднего", - "wordTranslate": "аномальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0081" - }, - "group": 5, - "page": 2, - "word": "absent", - "image": "files/03_3042.jpg", - "audio": "files/03_3042.mp3", - "audioMeaning": "files/03_3042_meaning.mp3", - "audioExample": "files/03_3042_example.mp3", - "textMeaning": "If someone or something is absent, they are missing or not in the place they are expected to be.", - "textExample": "I was absent from school yesterday because I went on a trip with my father.", - "transcription": "[ǽbsənt]", - "__v": 0, - "textExampleTranslate": "Я вчера отсутствовал в школе, потому что я отправился в путешествие с моим отцом", - "textMeaningTranslate": "Если кто-то или что-то отсутствует, они отсутствуют или не там, где они должны быть", - "wordTranslate": "отсутствует" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0082" - }, - "group": 5, - "page": 2, - "word": "adjacent", - "image": "files/03_3043.jpg", - "audio": "files/03_3043.mp3", - "audioMeaning": "files/03_3043_meaning.mp3", - "audioExample": "files/03_3043_example.mp3", - "textMeaning": "When something is adjacent, it is next to or adjoining something else.", - "textExample": "My apartment is adjacent to a lovely park and playground.", - "transcription": "[ədʒéisnt]", - "__v": 0, - "textExampleTranslate": "Моя квартира находится рядом с прекрасным парком и детской площадкой", - "textMeaningTranslate": "Когда что-то смежно, оно рядом или смежно с чем-то другим", - "wordTranslate": "смежный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0083" - }, - "group": 5, - "page": 2, - "word": "aluminum", - "image": "files/03_3044.jpg", - "audio": "files/03_3044.mp3", - "audioMeaning": "files/03_3044_meaning.mp3", - "audioExample": "files/03_3044_example.mp3", - "textMeaning": "Aluminum is a chemical element that is a light silver-coloured metal.", - "textExample": "I used the aluminum foil to wrap the food.", - "transcription": "[əlúːmənəm]", - "__v": 0, - "textExampleTranslate": "Я использовал алюминиевую фольгу, чтобы обернуть еду", - "textMeaningTranslate": "Алюминий - это химический элемент, который представляет собой светло-серебристый металл", - "wordTranslate": "алюминий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0084" - }, - "group": 5, - "page": 2, - "word": "applicable", - "image": "files/03_3045.jpg", - "audio": "files/03_3045.mp3", - "audioMeaning": "files/03_3045_meaning.mp3", - "audioExample": "files/03_3045_example.mp3", - "textMeaning": "If something is applicable to a person or thing, it is relevant to them.", - "textExample": "I discovered that my old password was no longer applicable to the website.", - "transcription": "[ǽplikəbl]", - "__v": 0, - "textExampleTranslate": "Я обнаружил, что мой старый пароль больше не применим к сайту", - "textMeaningTranslate": "Если что-то применимо к человеку или вещи, это относится к ним", - "wordTranslate": "применимо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0085" - }, - "group": 5, - "page": 2, - "word": "artificial", - "image": "files/03_3046.jpg", - "audio": "files/03_3046.mp3", - "audioMeaning": "files/03_3046_meaning.mp3", - "audioExample": "files/03_3046_example.mp3", - "textMeaning": "If something is artificial, it was not made naturally but mimics something natural.", - "textExample": "The artificial Christmas tree was made of plastic.", - "transcription": "[ὰːrtəfíʃəl]", - "__v": 0, - "textExampleTranslate": "Искусственная елка была сделана из пластика", - "textMeaningTranslate": "Если что-то искусственное, оно не было сделано естественным путем, но имитирует что-то естественное", - "wordTranslate": "искусственный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0086" - }, - "group": 5, - "page": 2, - "word": "bicycle", - "image": "files/03_3047.jpg", - "audio": "files/03_3047.mp3", - "audioMeaning": "files/03_3047_meaning.mp3", - "audioExample": "files/03_3047_example.mp3", - "textMeaning": "A bicycle is a two-wheeled vehicle powered by pedaling.", - "textExample": "I rode my bicycle down the mountain road.", - "transcription": "[báisikl]", - "__v": 0, - "textExampleTranslate": "Я ехал на велосипеде по горной дороге", - "textMeaningTranslate": "Велосипед - это двухколесное транспортное средство, приводимое в движение педалями", - "wordTranslate": "велосипед" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0087" - }, - "group": 5, - "page": 2, - "word": "broker", - "image": "files/03_3048.jpg", - "audio": "files/03_3048.mp3", - "audioMeaning": "files/03_3048_meaning.mp3", - "audioExample": "files/03_3048_example.mp3", - "textMeaning": "To broker is to arrange or negotiate the details of something for others.", - "textExample": "The lawyer will broker our agreement.", - "transcription": "[bróukər]", - "__v": 0, - "textExampleTranslate": "Юрист подпишет наше соглашение", - "textMeaningTranslate": "Для брокера - это договориться или договориться о деталях чего-то для других", - "wordTranslate": "маклер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0088" - }, - "group": 5, - "page": 2, - "word": "bureaucracy", - "image": "files/03_3049.jpg", - "audio": "files/03_3049.mp3", - "audioMeaning": "files/03_3049_meaning.mp3", - "audioExample": "files/03_3049_example.mp3", - "textMeaning": "A bureaucracy is a group of people who work together to help manage a large business or run a country.", - "textExample": "The members of the bureaucracy were flooded by too many petitions.", - "transcription": "[bjuərάkrəsi]", - "__v": 0, - "textExampleTranslate": "Члены бюрократии были затоплены слишком большим количеством петиций", - "textMeaningTranslate": "Бюрократия - это группа людей, которые работают вместе, чтобы помочь управлять крупным бизнесом или управлять страной", - "wordTranslate": "бюрократия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0089" - }, - "group": 5, - "page": 2, - "word": "configure", - "image": "files/03_3050.jpg", - "audio": "files/03_3050.mp3", - "audioMeaning": "files/03_3050_meaning.mp3", - "audioExample": "files/03_3050_example.mp3", - "textMeaning": "To configure something means to set it up and arrange it.", - "textExample": "The engineer helped to configure my new computer.", - "transcription": "[kənfígjər]", - "__v": 0, - "textExampleTranslate": "Инженер помог настроить мой новый компьютер", - "textMeaningTranslate": "Настроить что-то - значит настроить и упорядочить", - "wordTranslate": "настройка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b008a" - }, - "group": 5, - "page": 2, - "word": "consolidate", - "image": "files/03_3051.jpg", - "audio": "files/03_3051.mp3", - "audioMeaning": "files/03_3051_meaning.mp3", - "audioExample": "files/03_3051_example.mp3", - "textMeaning": "To consolidate means to join or bring together into one thing.", - "textExample": "When we moved in together, we had to consolidate our belongings.", - "transcription": "[kənsάlədèit]", - "__v": 0, - "textExampleTranslate": "Когда мы переехали вместе, мы должны были объединить наши вещи", - "textMeaningTranslate": "Объединить - значит объединить или объединить в одно", - "wordTranslate": "консолидировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b008b" - }, - "group": 5, - "page": 2, - "word": "deduct", - "image": "files/03_3053.jpg", - "audio": "files/03_3053.mp3", - "audioMeaning": "files/03_3053_meaning.mp3", - "audioExample": "files/03_3053_example.mp3", - "textMeaning": "To deduct means to subtract something.", - "textExample": "I had to deduct my expenses from my checkbook.", - "transcription": "[didΛkt]", - "__v": 0, - "textExampleTranslate": "Я должен был вычесть мои расходы из моей чековой книжки", - "textMeaningTranslate": "Вычесть значит вычесть что-то", - "wordTranslate": "вычитать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b008c" - }, - "group": 5, - "page": 2, - "word": "convenience", - "image": "files/03_3052.jpg", - "audio": "files/03_3052.mp3", - "audioMeaning": "files/03_3052_meaning.mp3", - "audioExample": "files/03_3052_example.mp3", - "textMeaning": "If something is done for your convenience, it allows you to do something easily or without any trouble.", - "textExample": "I love the convenience of having a swimming pool in my back yard.", - "transcription": "[kənvíːnjəns]", - "__v": 0, - "textExampleTranslate": "Мне нравится удобство иметь бассейн на заднем дворе", - "textMeaningTranslate": "Если что-то сделано для вашего удобства, это позволяет вам сделать что-то легко или без проблем", - "wordTranslate": "удобство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b008d" - }, - "group": 5, - "page": 2, - "word": "deem", - "image": "files/03_3054.jpg", - "audio": "files/03_3054.mp3", - "audioMeaning": "files/03_3054_meaning.mp3", - "audioExample": "files/03_3054_example.mp3", - "textMeaning": "To deem means to consider something.", - "textExample": "I deemed the ice cream to be very delicious.", - "transcription": "[diːm]", - "__v": 0, - "textExampleTranslate": "Я посчитал мороженое очень вкусным", - "textMeaningTranslate": "Считать значит считать что-то", - "wordTranslate": "дим" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b008e" - }, - "group": 5, - "page": 2, - "word": "entrepreneur", - "image": "files/03_3055.jpg", - "audio": "files/03_3055.mp3", - "audioMeaning": "files/03_3055_meaning.mp3", - "audioExample": "files/03_3055_example.mp3", - "textMeaning": "An entrepreneur is someone who starts a new business or organization in order to make money.", - "textExample": "The entrepreneur made a success out of his new business.", - "transcription": "[ὰːntrəprənə́ːr]", - "__v": 0, - "textExampleTranslate": "Предприниматель добился успеха из своего нового бизнеса", - "textMeaningTranslate": "Предприниматель - это тот, кто начинает новый бизнес или организацию, чтобы заработать деньги", - "wordTranslate": "предприниматель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b008f" - }, - "group": 5, - "page": 2, - "word": "evenly", - "image": "files/03_3056.jpg", - "audio": "files/03_3056.mp3", - "audioMeaning": "files/03_3056_meaning.mp3", - "audioExample": "files/03_3056_example.mp3", - "textMeaning": "If something is evenly spread or spaced, it is divided equally into amounts, numbers, or values.", - "textExample": "Sprinkle the sugar evenly all over the cookies.", - "transcription": "[íːvənli]", - "__v": 0, - "textExampleTranslate": "Посыпать сахар равномерно по всему печенью", - "textMeaningTranslate": "Если что-то равномерно распределено или разнесено, оно делится поровну на суммы, числа или значения", - "wordTranslate": "равномерно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0090" - }, - "group": 5, - "page": 2, - "word": "fiscal", - "image": "files/03_3057.jpg", - "audio": "files/03_3057.mp3", - "audioMeaning": "files/03_3057_meaning.mp3", - "audioExample": "files/03_3057_example.mp3", - "textMeaning": "When something is fiscal, it is related to money or finances, especially that of a government or business.", - "textExample": "Did the company show fiscal growth this year?", - "transcription": "[fískəl]", - "__v": 0, - "textExampleTranslate": "Показала ли компания рост бюджета в этом году?", - "textMeaningTranslate": "Когда что-то фискальное, это связано с деньгами или финансами, особенно с правительством или бизнесом", - "wordTranslate": "фискальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0091" - }, - "group": 5, - "page": 2, - "word": "ideological", - "image": "files/03_3059.jpg", - "audio": "files/03_3059.mp3", - "audioMeaning": "files/03_3059_meaning.mp3", - "audioExample": "files/03_3059_example.mp3", - "textMeaning": "If something is ideological, it is based on a system of beliefs or ideals, especially those that relate to a government or economy.", - "textExample": "The citizens of England had ideological differenes about its government.", - "transcription": "[àidiəlάdʒikəl]", - "__v": 0, - "textExampleTranslate": "У граждан Англии были идеологические разногласия относительно ее правительства", - "textMeaningTranslate": "Если что-то является идеологическим, оно основано на системе убеждений или идеалов, особенно тех, которые относятся к правительству или экономике", - "wordTranslate": "идейный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0092" - }, - "group": 5, - "page": 2, - "word": "franchise", - "image": "files/03_3058.jpg", - "audio": "files/03_3058.mp3", - "audioMeaning": "files/03_3058_meaning.mp3", - "audioExample": "files/03_3058_example.mp3", - "textMeaning": "A franchise is the right to sell another company’s products or services in a particular area.", - "textExample": "The fast food restaurant has a franchise near my home.", - "transcription": "[frǽnʧaiz]", - "__v": 0, - "textExampleTranslate": "У ресторана быстрого питания есть франшиза возле моего дома", - "textMeaningTranslate": "Франшиза - это право продавать товары или услуги другой компании в определенной области", - "wordTranslate": "франшиза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0093" - }, - "group": 5, - "page": 2, - "word": "robot", - "image": "files/03_3060.jpg", - "audio": "files/03_3060.mp3", - "audioMeaning": "files/03_3060_meaning.mp3", - "audioExample": "files/03_3060_example.mp3", - "textMeaning": "A robot is a machine that can do the work of a person and operates automatically or is controlled by a computer.", - "textExample": "I bought a robot that can clean the floor on its own.", - "transcription": "[róubάt]", - "__v": 0, - "textExampleTranslate": "Я купил робота, который может чистить пол самостоятельно", - "textMeaningTranslate": "Робот - это машина, которая может выполнять работу человека и работает автоматически или управляется компьютером", - "wordTranslate": "робот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0094" - }, - "group": 5, - "page": 3, - "word": "abbey", - "image": "files/04_3061.jpg", - "audio": "files/04_3061.mp3", - "audioMeaning": "files/04_3061_meaning.mp3", - "audioExample": "files/04_3061_example.mp3", - "textMeaning": "An abbey is a house, or group of houses, where monks or nuns live.", - "textExample": "When the monk returned to the abbey, he went immediately to his bedroom.", - "transcription": "[ǽbi]", - "__v": 0, - "textExampleTranslate": "Когда монах вернулся в аббатство, он сразу же пошел в свою спальню", - "textMeaningTranslate": "Аббатство - это дом или группа домов, где живут монахи или монахини", - "wordTranslate": "аббатство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0095" - }, - "group": 5, - "page": 3, - "word": "abundant", - "image": "files/04_3062.jpg", - "audio": "files/04_3062.mp3", - "audioMeaning": "files/04_3062_meaning.mp3", - "audioExample": "files/04_3062_example.mp3", - "textMeaning": "If something is abundant, then it is available in large quantities.", - "textExample": "Cakes, cookies, and candy were so abundant that the child was very happy.", - "transcription": "[əbʌ́ndənt]", - "__v": 0, - "textExampleTranslate": "Пирогов, печенья и конфет было так много, что ребенок был очень счастлив", - "textMeaningTranslate": "Если что-то в изобилии, то оно доступно в больших количествах", - "wordTranslate": "обильные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0096" - }, - "group": 5, - "page": 3, - "word": "adjoin", - "image": "files/04_3063.jpg", - "audio": "files/04_3063.mp3", - "audioMeaning": "files/04_3063_meaning.mp3", - "audioExample": "files/04_3063_example.mp3", - "textMeaning": "To adjoin something means to be next to or attached to something else.", - "textExample": "She can listen to her brother’s conversations because her room adjoins his.", - "transcription": "[ədʒɔ́in]", - "__v": 0, - "textExampleTranslate": "Она может слушать разговоры своего брата, потому что ее комната примыкает к его", - "textMeaningTranslate": "Примыкать к чему-либо - значит быть рядом или привязываться к чему-то другому", - "wordTranslate": "соседствуют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0097" - }, - "group": 5, - "page": 3, - "word": "ample", - "image": "files/04_3064.jpg", - "audio": "files/04_3064.mp3", - "audioMeaning": "files/04_3064_meaning.mp3", - "audioExample": "files/04_3064_example.mp3", - "textMeaning": "If something is ample, then it is enough or more than enough.", - "textExample": "There was an ample supply of oats to feed the horses.", - "transcription": "[ǽmpl]", - "__v": 0, - "textExampleTranslate": "Был достаточный запас овса, чтобы накормить лошадей", - "textMeaningTranslate": "Если что-то достаточно, то этого достаточно или более чем достаточно", - "wordTranslate": "достаточно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0098" - }, - "group": 5, - "page": 3, - "word": "arid", - "image": "files/04_3065.jpg", - "audio": "files/04_3065.mp3", - "audioMeaning": "files/04_3065_meaning.mp3", - "audioExample": "files/04_3065_example.mp3", - "textMeaning": "If a place is arid, then it is hot and dry and gets very little or no rain.", - "textExample": "Not many plants grow in the arid desert.", - "transcription": "[ǽrid]", - "__v": 0, - "textExampleTranslate": "В засушливой пустыне не так много растений", - "textMeaningTranslate": "Если место засушливое, то здесь жарко и сухо, и почти не бывает дождя", - "wordTranslate": "засушливый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0099" - }, - "group": 5, - "page": 3, - "word": "cathedral", - "image": "files/04_3066.jpg", - "audio": "files/04_3066.mp3", - "audioMeaning": "files/04_3066_meaning.mp3", - "audioExample": "files/04_3066_example.mp3", - "textMeaning": "A cathedral is an important, and often large and beautifully-built, church.", - "textExample": "The large cathedral is full of people on Sunday mornings.", - "transcription": "[kəθíːdrəl]", - "__v": 0, - "textExampleTranslate": "Большой собор полон людей по воскресным утрам", - "textMeaningTranslate": "Кафедральный собор - это важная, и часто большая и красиво построенная церковь", - "wordTranslate": "собор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b009a" - }, - "group": 5, - "page": 3, - "word": "crisis", - "image": "files/04_3067.jpg", - "audio": "files/04_3067.mp3", - "audioMeaning": "files/04_3067_meaning.mp3", - "audioExample": "files/04_3067_example.mp3", - "textMeaning": "A crisis is a difficult time when things are going to either get worse or better.", - "textExample": "The crisis was over and things returned to normal.", - "transcription": "[kráisis]", - "__v": 0, - "textExampleTranslate": "Кризис закончился и все нормализовалось", - "textMeaningTranslate": "Кризис - это трудное время, когда дела идут хуже или лучше", - "wordTranslate": "кризис" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b009b" - }, - "group": 5, - "page": 3, - "word": "deprive", - "image": "files/04_3068.jpg", - "audio": "files/04_3068.mp3", - "audioMeaning": "files/04_3068_meaning.mp3", - "audioExample": "files/04_3068_example.mp3", - "textMeaning": "To deprive someone of something means to not let them have it.", - "textExample": "Because the child was bad, she was deprived of her dessert after dinner.", - "transcription": "[dipráiv]", - "__v": 0, - "textExampleTranslate": "Поскольку ребенок был плохим, она была лишена своего десерта после обеда", - "textMeaningTranslate": "Лишать кого-то чего-либо - значит не давать ему этого", - "wordTranslate": "лишать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b009c" - }, - "group": 5, - "page": 3, - "word": "eligible", - "image": "files/04_3070.jpg", - "audio": "files/04_3070.mp3", - "audioMeaning": "files/04_3070_meaning.mp3", - "audioExample": "files/04_3070_example.mp3", - "textMeaning": "If someone is eligible, then they are permitted to do or have something.", - "textExample": "Only people who bought tickets were eligible to win a prize.", - "transcription": "[élidʒəbl]", - "__v": 0, - "textExampleTranslate": "Только люди, которые купили билеты, имели право выиграть приз", - "textMeaningTranslate": "Если кто-то имеет право, то ему разрешено делать или иметь что-то", - "wordTranslate": "право" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b009d" - }, - "group": 5, - "page": 3, - "word": "drought", - "image": "files/04_3069.jpg", - "audio": "files/04_3069.mp3", - "audioMeaning": "files/04_3069_meaning.mp3", - "audioExample": "files/04_3069_example.mp3", - "textMeaning": "A drought is a long period of time in which little or no rain falls.", - "textExample": "After three months of drought, the vegetation and trees started dying.", - "transcription": "[draut]", - "__v": 0, - "textExampleTranslate": "После трех месяцев засухи растительность и деревья начали умирать", - "textMeaningTranslate": "Засуха - это длительный период времени, в течение которого выпадает мало или совсем не идет дождь", - "wordTranslate": "засуха" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b009e" - }, - "group": 5, - "page": 3, - "word": "fast", - "image": "files/04_3071.jpg", - "audio": "files/04_3071.mp3", - "audioMeaning": "files/04_3071_meaning.mp3", - "audioExample": "files/04_3071_example.mp3", - "textMeaning": "To fast means to go without food or drink for a period of time.", - "textExample": "In her religion, they fast for five days and then have a big feast.", - "transcription": "[fæst]", - "__v": 0, - "textExampleTranslate": "В ее религии они постятся пять дней, а затем устраивают большой пир", - "textMeaningTranslate": "Быть голодным - значит обойтись без еды и питья в течение некоторого времени", - "wordTranslate": "быстрый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b009f" - }, - "group": 5, - "page": 3, - "word": "grumble", - "image": "files/04_3072.jpg", - "audio": "files/04_3072.mp3", - "audioMeaning": "files/04_3072_meaning.mp3", - "audioExample": "files/04_3072_example.mp3", - "textMeaning": "To grumble means to complain.", - "textExample": "He grumbled about having to work late on Friday.", - "transcription": "[grʌ́mbəl]", - "__v": 0, - "textExampleTranslate": "Он ворчал по поводу того, что должен был работать допоздна в пятницу", - "textMeaningTranslate": "Ворчать значит жаловаться", - "wordTranslate": "ворчать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00a0" - }, - "group": 5, - "page": 3, - "word": "inland", - "image": "files/04_3073.jpg", - "audio": "files/04_3073.mp3", - "audioMeaning": "files/04_3073_meaning.mp3", - "audioExample": "files/04_3073_example.mp3", - "textMeaning": "If someone goes inland, they travel into the center of a country or land.", - "textExample": "The river curved inland near the campground.", - "transcription": "[ínlənd]", - "__v": 0, - "textExampleTranslate": "Река изогнута внутри страны возле кемпинга", - "textMeaningTranslate": "Если кто-то отправляется вглубь страны, он путешествует в центр страны или земли", - "wordTranslate": "вглубь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00a2" - }, - "group": 5, - "page": 3, - "word": "nonetheless", - "image": "files/04_3075.jpg", - "audio": "files/04_3075.mp3", - "audioMeaning": "files/04_3075_meaning.mp3", - "audioExample": "files/04_3075_example.mp3", - "textMeaning": "If something happens nonetheless, then it occurs despite some other thing.", - "textExample": "She tried to keep the dog out of the mud, but it got dirty nonetheless.", - "transcription": "[nΛnðəlés]", - "__v": 0, - "textExampleTranslate": "Она пыталась удержать собаку от грязи, но она все же испачкалась", - "textMeaningTranslate": "Если что-то случится, то это произойдет, несмотря на что-то другое", - "wordTranslate": "тем не менее" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00a1" - }, - "group": 5, - "page": 3, - "word": "moisture", - "image": "files/04_3074.jpg", - "audio": "files/04_3074.mp3", - "audioMeaning": "files/04_3074_meaning.mp3", - "audioExample": "files/04_3074_example.mp3", - "textMeaning": "Moisture is small drops of water in the air or on a surface.", - "textExample": "If you breathe on a window, moisture from your breath collects on the glass.", - "transcription": "[mɔ́isʧər]", - "__v": 0, - "textExampleTranslate": "Если вы дышите на окне, на стекле собирается влага из вашего дыхания", - "textMeaningTranslate": "Влага - это маленькие капли воды в воздухе или на поверхности", - "wordTranslate": "влага" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00a3" - }, - "group": 5, - "page": 3, - "word": "oath", - "image": "files/04_3076.jpg", - "audio": "files/04_3076.mp3", - "audioMeaning": "files/04_3076_meaning.mp3", - "audioExample": "files/04_3076_example.mp3", - "textMeaning": "An oath is a formal, often public, promise.", - "textExample": "Judges must take an oath to be fair to everyone in court.", - "transcription": "[ouθ]", - "__v": 0, - "textExampleTranslate": "Судьи должны дать клятву быть справедливым по отношению ко всем в суде", - "textMeaningTranslate": "Клятва - это формальное, часто публичное, обещание", - "wordTranslate": "клятва" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00a4" - }, - "group": 5, - "page": 3, - "word": "prairie", - "image": "files/04_3077.jpg", - "audio": "files/04_3077.mp3", - "audioMeaning": "files/04_3077_meaning.mp3", - "audioExample": "files/04_3077_example.mp3", - "textMeaning": "A prairie is a large flat area of grassland.", - "textExample": "The prairie was perfect for a farm because there were hills and trees.", - "transcription": "[prέəri]", - "__v": 0, - "textExampleTranslate": "Прерия идеально подходила для фермы, потому что там были холмы и деревья", - "textMeaningTranslate": "Прерия - это большая равнинная территория", - "wordTranslate": "прерии" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00a5" - }, - "group": 5, - "page": 3, - "word": "rugged", - "image": "files/04_3078.jpg", - "audio": "files/04_3078.mp3", - "audioMeaning": "files/04_3078_meaning.mp3", - "audioExample": "files/04_3078_example.mp3", - "textMeaning": "If an area of land is rugged, then it is rocky and difficult to travel through.", - "textExample": "Their car couldn’t make it far along the rugged roads.", - "transcription": "[rΛgid]", - "__v": 0, - "textExampleTranslate": "Их машина не могла проехать далеко по бурным дорогам", - "textMeaningTranslate": "Если участок суровый, то он каменистый и через него трудно пройти", - "wordTranslate": "прочный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00a7" - }, - "group": 5, - "page": 3, - "word": "speculate", - "image": "files/04_3080.jpg", - "audio": "files/04_3080.mp3", - "audioMeaning": "files/04_3080_meaning.mp3", - "audioExample": "files/04_3080_example.mp3", - "textMeaning": "To speculate means to guess about something.", - "textExample": "My sister looked at the sky and speculated that it would rain tomorrow.", - "transcription": "[spékjulèit]", - "__v": 0, - "textExampleTranslate": "Моя сестра посмотрела на небо и предположила, что завтра будет дождь", - "textMeaningTranslate": "Спекулировать значит догадываться о чем-то", - "wordTranslate": "спекулировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00a6" - }, - "group": 5, - "page": 3, - "word": "scarce", - "image": "files/04_3079.jpg", - "audio": "files/04_3079.mp3", - "audioMeaning": "files/04_3079_meaning.mp3", - "audioExample": "files/04_3079_example.mp3", - "textMeaning": "If something is scarce, then there is a very small amount of it.", - "textExample": "When gasoline was scarce, we rode our bike to school instead of driving.", - "transcription": "[skεərs]", - "__v": 0, - "textExampleTranslate": "Когда бензина было мало, мы ездили на велосипеде в школу, а не ездили", - "textMeaningTranslate": "Если чего-то не хватает, значит, его очень мало", - "wordTranslate": "дефицитный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00a8" - }, - "group": 5, - "page": 4, - "word": "aquatic", - "image": "files/05_3081.jpg", - "audio": "files/05_3081.mp3", - "audioMeaning": "files/05_3081_meaning.mp3", - "audioExample": "files/05_3081_example.mp3", - "textMeaning": "If a plant or animal is aquatic, it lives or grows in water.", - "textExample": "The dolphin is an aquatic mammal.", - "transcription": "[əkwǽtik]", - "__v": 0, - "textExampleTranslate": "Дельфин - водное млекопитающее", - "textMeaningTranslate": "Если растение или животное водные, оно живет или растет в воде", - "wordTranslate": "водные" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00a9" - }, - "group": 5, - "page": 4, - "word": "Celsius", - "image": "files/05_3084.jpg", - "audio": "files/05_3084.mp3", - "audioMeaning": "files/05_3084_meaning.mp3", - "audioExample": "files/05_3084_example.mp3", - "textMeaning": "Celsius is a scale for measuring temperature.", - "textExample": "Water freezes at zero degrees Celsius.", - "transcription": "[sélsiəs]", - "__v": 0, - "textExampleTranslate": "Вода замерзает при нулевых градусах Цельсия", - "textMeaningTranslate": "Цельсия - шкала для измерения температуры", - "wordTranslate": "цельсий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00aa" - }, - "group": 5, - "page": 4, - "word": "companion", - "image": "files/05_3086.jpg", - "audio": "files/05_3086.mp3", - "audioMeaning": "files/05_3086_meaning.mp3", - "audioExample": "files/05_3086_example.mp3", - "textMeaning": "A companion is a person that someone spends a lot of time with.", - "textExample": "I always walk to school with my companion Frank.", - "transcription": "[kəmpǽnjən]", - "__v": 0, - "textExampleTranslate": "Я всегда хожу в школу с моим компаньоном Фрэнком", - "textMeaningTranslate": "Компаньон - это человек, с которым кто-то проводит много времени", - "wordTranslate": "спутник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ab" - }, - "group": 5, - "page": 4, - "word": "bizarre", - "image": "files/05_3083.jpg", - "audio": "files/05_3083.mp3", - "audioMeaning": "files/05_3083_meaning.mp3", - "audioExample": "files/05_3083_example.mp3", - "textMeaning": "When something is bizarre, it is very strange.", - "textExample": "My bizarre dreams make no sense to me when I am awake.", - "transcription": "[bizάːr]", - "__v": 0, - "textExampleTranslate": "Мои странные сны не имеют смысла для меня, когда я не сплю", - "textMeaningTranslate": "Когда что-то странное, это очень странно", - "wordTranslate": "странно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ac" - }, - "group": 5, - "page": 4, - "word": "coarse", - "image": "files/05_3085.jpg", - "audio": "files/05_3085.mp3", - "audioMeaning": "files/05_3085_meaning.mp3", - "audioExample": "files/05_3085_example.mp3", - "textMeaning": "If something is coarse, that means it has a rough texture.", - "textExample": "The coarse sweater made my skin itch.", - "transcription": "[kɔːrs]", - "__v": 0, - "textExampleTranslate": "Грубый свитер заставил мою кожу чесаться", - "textMeaningTranslate": "Если что-то грубое, это означает, что оно имеет грубую текстуру", - "wordTranslate": "грубый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ad" - }, - "group": 5, - "page": 4, - "word": "biosphere", - "image": "files/05_3082.jpg", - "audio": "files/05_3082.mp3", - "audioMeaning": "files/05_3082_meaning.mp3", - "audioExample": "files/05_3082_example.mp3", - "textMeaning": "The biosphere is the Earth’s surface and atmosphere where there are living things.", - "textExample": "Birds, trees, and worms all thrive in the biosphere.", - "transcription": "[báiəsfìər]", - "__v": 0, - "textExampleTranslate": "Птицы, деревья и черви процветают в биосфере", - "textMeaningTranslate": "Биосфера - это поверхность Земли и атмосфера, в которой находятся живые существа", - "wordTranslate": "биосфера" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ae" - }, - "group": 5, - "page": 4, - "word": "digest", - "image": "files/05_3087.jpg", - "audio": "files/05_3087.mp3", - "audioMeaning": "files/05_3087_meaning.mp3", - "audioExample": "files/05_3087_example.mp3", - "textMeaning": "To digest means to swallow food and pass it through the body.", - "textExample": "Allow some time for food to be digested before going swimming.", - "transcription": "[didʒést]", - "__v": 0, - "textExampleTranslate": "Позвольте некоторое время переваривать пищу перед плаванием", - "textMeaningTranslate": "Переваривать - значит глотать пищу и пропускать ее через тело", - "wordTranslate": "переварить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00af" - }, - "group": 5, - "page": 4, - "word": "duration", - "image": "files/05_3088.jpg", - "audio": "files/05_3088.mp3", - "audioMeaning": "files/05_3088_meaning.mp3", - "audioExample": "files/05_3088_example.mp3", - "textMeaning": "The duration of an event is the time during which it happens.", - "textExample": "The girls watched television for the duration of the evening.", - "transcription": "[djuréiʃən]", - "__v": 0, - "textExampleTranslate": "Девушки смотрели телевизор на протяжении всего вечера", - "textMeaningTranslate": "Продолжительность события - это время, в течение которого оно происходит", - "wordTranslate": "продолжительность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00b0" - }, - "group": 5, - "page": 4, - "word": "ecology", - "image": "files/05_3089.jpg", - "audio": "files/05_3089.mp3", - "audioMeaning": "files/05_3089_meaning.mp3", - "audioExample": "files/05_3089_example.mp3", - "textMeaning": "Ecology is the study of the environment and living things.", - "textExample": "We study ecology to learn how to help improve the Earth.", - "transcription": "[iːkɑ́lədʒi]", - "__v": 0, - "textExampleTranslate": "Мы изучаем экологию, чтобы узнать, как помочь улучшить Землю", - "textMeaningTranslate": "Экология - это изучение окружающей среды и живых существ", - "wordTranslate": "экология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00b1" - }, - "group": 5, - "page": 4, - "word": "feat", - "image": "files/05_3090.jpg", - "audio": "files/05_3090.mp3", - "audioMeaning": "files/05_3090_meaning.mp3", - "audioExample": "files/05_3090_example.mp3", - "textMeaning": "A feat is an impressive or difficult achievement or action.", - "textExample": "The elephant’s standing up on one leg was a feat.", - "transcription": "[fiːt]", - "__v": 0, - "textExampleTranslate": "Слон стоя на одной ноге был подвигом", - "textMeaningTranslate": "Подвиг - это впечатляющее или трудное достижение или действие", - "wordTranslate": "подвиг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00b2" - }, - "group": 5, - "page": 4, - "word": "infinite", - "image": "files/05_3091.jpg", - "audio": "files/05_3091.mp3", - "audioMeaning": "files/05_3091_meaning.mp3", - "audioExample": "files/05_3091_example.mp3", - "textMeaning": "If something is infinite, it has no limit or end.", - "textExample": "Many scientists believe that the universe is infinite.", - "transcription": "[ínfənit]", - "__v": 0, - "textExampleTranslate": "Многие ученые считают, что вселенная бесконечна", - "textMeaningTranslate": "Если что-то бесконечно, у него нет предела или конца", - "wordTranslate": "бесконечный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00b3" - }, - "group": 5, - "page": 4, - "word": "nucleus", - "image": "files/05_3092.jpg", - "audio": "files/05_3092.mp3", - "audioMeaning": "files/05_3092_meaning.mp3", - "audioExample": "files/05_3092_example.mp3", - "textMeaning": "The nucleus is the central part of an atom or cell.", - "textExample": "The nucleus is made up of many tiny particles.", - "transcription": "[njúːklias]", - "__v": 0, - "textExampleTranslate": "Ядро состоит из множества крошечных частиц", - "textMeaningTranslate": "Ядро является центральной частью атома или клетки", - "wordTranslate": "ядро" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00b4" - }, - "group": 5, - "page": 4, - "word": "parasite", - "image": "files/05_3093.jpg", - "audio": "files/05_3093.mp3", - "audioMeaning": "files/05_3093_meaning.mp3", - "audioExample": "files/05_3093_example.mp3", - "textMeaning": "A parasite is a tiny animal or plant that attaches to another animal to get food.", - "textExample": "The sick dog was covered in parasites.", - "transcription": "[pǽrəsàit]", - "__v": 0, - "textExampleTranslate": "Больная собака была покрыта паразитами", - "textMeaningTranslate": "Паразит - это крошечное животное или растение, которое прикрепляется к другому животному для получения пищи", - "wordTranslate": "паразит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00b5" - }, - "group": 5, - "page": 4, - "word": "repetitive", - "image": "files/05_3095.jpg", - "audio": "files/05_3095.mp3", - "audioMeaning": "files/05_3095_meaning.mp3", - "audioExample": "files/05_3095_example.mp3", - "textMeaning": "When something is repetitive, it is repeated many times and becomes boring.", - "textExample": "Working on an assembly line making cars every day is a repetitive job.", - "transcription": "[ripétətiv]", - "__v": 0, - "textExampleTranslate": "Работа на конвейере по производству автомобилей каждый день - это повторяющаяся работа", - "textMeaningTranslate": "Когда что-то повторяется, оно повторяется много раз и становится скучным", - "wordTranslate": "повторяющийся" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00b6" - }, - "group": 5, - "page": 4, - "word": "prominent", - "image": "files/05_3094.jpg", - "audio": "files/05_3094.mp3", - "audioMeaning": "files/05_3094_meaning.mp3", - "audioExample": "files/05_3094_example.mp3", - "textMeaning": "When something is prominent, it is important and well known.", - "textExample": "Queen Victoria was a prominent person in history.", - "transcription": "[prɑ́mənənt]", - "__v": 0, - "textExampleTranslate": "Королева Виктория была выдающимся человеком в истории", - "textMeaningTranslate": "Когда что-то заметно, это важно и хорошо известно", - "wordTranslate": "видный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00b7" - }, - "group": 5, - "page": 4, - "word": "reproductive", - "image": "files/05_3096.jpg", - "audio": "files/05_3096.mp3", - "audioMeaning": "files/05_3096_meaning.mp3", - "audioExample": "files/05_3096_example.mp3", - "textMeaning": "If something is reproductive, it is a living thing which can produce young.", - "textExample": "The reproductive system of a plant is simple.", - "transcription": "[rìːprədʌ́ktiv]", - "__v": 0, - "textExampleTranslate": "Репродуктивная система растения проста", - "textMeaningTranslate": "Если что-то является репродуктивным, это живое существо, которое может породить молодых", - "wordTranslate": "репродуктивный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00b8" - }, - "group": 5, - "page": 4, - "word": "temperate", - "image": "files/05_3097.jpg", - "audio": "files/05_3097.mp3", - "audioMeaning": "files/05_3097_meaning.mp3", - "audioExample": "files/05_3097_example.mp3", - "textMeaning": "When a place is temperate, it never gets too hot or cold.", - "textExample": "In Peru, the weather is temperate and rarely gets too hot or cold.", - "transcription": "[témpərət]", - "__v": 0, - "textExampleTranslate": "В Перу погода умеренная и редко становится слишком жарко или холодно", - "textMeaningTranslate": "Когда место умеренное, никогда не бывает слишком жарко или холодно", - "wordTranslate": "умеренный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00b9" - }, - "group": 5, - "page": 4, - "word": "tolerance", - "image": "files/05_3098.jpg", - "audio": "files/05_3098.mp3", - "audioMeaning": "files/05_3098_meaning.mp3", - "audioExample": "files/05_3098_example.mp3", - "textMeaning": "Tolerance is the ability to accept something unfavorable or to allow the freedom of choice for others.", - "textExample": "Boxers have a high tolerance for pain.", - "transcription": "[tάlərəns]", - "__v": 0, - "textExampleTranslate": "У боксеров высокая переносимость боли", - "textMeaningTranslate": "Терпимость - это способность принимать что-то неблагоприятное или предоставлять свободу выбора другим", - "wordTranslate": "толерантность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ba" - }, - "group": 5, - "page": 4, - "word": "undergo", - "image": "files/05_3099.jpg", - "audio": "files/05_3099.mp3", - "audioMeaning": "files/05_3099_meaning.mp3", - "audioExample": "files/05_3099_example.mp3", - "textMeaning": "To undergo an action means to have it happen to you.", - "textExample": "The cancer patient undergoes treatments twice a week.", - "transcription": "[ʌ̀ndərgóu]", - "__v": 0, - "textExampleTranslate": "Больной раком проходит лечение два раза в неделю", - "textMeaningTranslate": "Пройти действие - значит, что это случится с тобой", - "wordTranslate": "проходить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00bb" - }, - "group": 5, - "page": 5, - "word": "archaic", - "image": "files/06_3101.jpg", - "audio": "files/06_3101.mp3", - "audioMeaning": "files/06_3101_meaning.mp3", - "audioExample": "files/06_3101_example.mp3", - "textMeaning": "If something is archaic, it is very old or outdated.", - "textExample": "To be competitive, we must update our archaic equipment.", - "transcription": "[aːrkéiik]", - "__v": 0, - "textExampleTranslate": "Чтобы быть конкурентоспособными, мы должны обновить наше архаичное оборудование", - "textMeaningTranslate": "Если что-то архаично, оно очень старое или устаревшее", - "wordTranslate": "архаичный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00bc" - }, - "group": 5, - "page": 4, - "word": "vulnerable", - "image": "files/05_3100.jpg", - "audio": "files/05_3100.mp3", - "audioMeaning": "files/05_3100_meaning.mp3", - "audioExample": "files/05_3100_example.mp3", - "textMeaning": "When someone is vulnerable, they are weak and without protection.", - "textExample": "He felt very vulnerable when he was stranded in the desert.", - "transcription": "[vΛlnərəbl]", - "__v": 0, - "textExampleTranslate": "Он чувствовал себя очень уязвимым, когда он оказался в пустыне", - "textMeaningTranslate": "Когда кто-то уязвим, он слаб и без защиты", - "wordTranslate": "уязвимый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00bd" - }, - "group": 5, - "page": 5, - "word": "brass", - "image": "files/06_3102.jpg", - "audio": "files/06_3102.mp3", - "audioMeaning": "files/06_3102_meaning.mp3", - "audioExample": "files/06_3102_example.mp3", - "textMeaning": "Brass is a metal that is used to make musical instruments and ornaments.", - "textExample": "Brass is used to make musical instruments like trumpets.", - "transcription": "[bræs]", - "__v": 0, - "textExampleTranslate": "Латунь используется для изготовления музыкальных инструментов, таких как трубы", - "textMeaningTranslate": "Латунь - это металл, который используется для изготовления музыкальных инструментов и украшений", - "wordTranslate": "латунь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00bf" - }, - "group": 5, - "page": 5, - "word": "component", - "image": "files/06_3104.jpg", - "audio": "files/06_3104.mp3", - "audioMeaning": "files/06_3104_meaning.mp3", - "audioExample": "files/06_3104_example.mp3", - "textMeaning": "A component is a part of a larger machine.", - "textExample": "Computers have many different components, so they are complicated to build.", - "transcription": "[kəmpóunənt]", - "__v": 0, - "textExampleTranslate": "Компьютеры имеют много разных компонентов, поэтому их сложно создавать", - "textMeaningTranslate": "Компонент является частью большей машины", - "wordTranslate": "составная часть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00c2" - }, - "group": 5, - "page": 5, - "word": "drawback", - "image": "files/06_3107.jpg", - "audio": "files/06_3107.mp3", - "audioMeaning": "files/06_3107_meaning.mp3", - "audioExample": "files/06_3107_example.mp3", - "textMeaning": "A drawback is a disadvantage.", - "textExample": "The drawback of having a car is that it is very expensive to maintain.", - "transcription": "[drɔ́ːbæ̀k]", - "__v": 0, - "textExampleTranslate": "Недостаток автомобиля в том, что он очень дорогой в обслуживании", - "textMeaningTranslate": "Недостатком является недостаток", - "wordTranslate": "недостаток" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00c1" - }, - "group": 5, - "page": 5, - "word": "dependence", - "image": "files/06_3105.jpg", - "audio": "files/06_3105.mp3", - "audioMeaning": "files/06_3105_meaning.mp3", - "audioExample": "files/06_3105_example.mp3", - "textMeaning": "Dependence is a situation in which somebody relies on something else.", - "textExample": "Young children have a dependence on their parents.", - "transcription": "[dipéndəns]", - "__v": 0, - "textExampleTranslate": "Маленькие дети зависят от родителей", - "textMeaningTranslate": "Зависимость - это ситуация, в которой кто-то зависит от чего-то другого", - "wordTranslate": "зависимость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00be" - }, - "group": 5, - "page": 5, - "word": "capitalism", - "image": "files/06_3103.jpg", - "audio": "files/06_3103.mp3", - "audioMeaning": "files/06_3103_meaning.mp3", - "audioExample": "files/06_3103_example.mp3", - "textMeaning": "Capitalism is an economic system where private companies make goods for profit.", - "textExample": "Most economies in the world today are based on capitalism.", - "transcription": "[kǽpətəlìzm]", - "__v": 0, - "textExampleTranslate": "Большинство экономик в мире сегодня основаны на капитализме", - "textMeaningTranslate": "Капитализм - это экономическая система, в которой частные компании производят товары с целью получения прибыли", - "wordTranslate": "капитализм" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00c0" - }, - "group": 5, - "page": 5, - "word": "diminish", - "image": "files/06_3106.jpg", - "audio": "files/06_3106.mp3", - "audioMeaning": "files/06_3106_meaning.mp3", - "audioExample": "files/06_3106_example.mp3", - "textMeaning": "To diminish means to reduce or get smaller.", - "textExample": "As the economy got worse, my savings diminished.", - "transcription": "[dəmíniʃ]", - "__v": 0, - "textExampleTranslate": "По мере ухудшения экономики мои сбережения уменьшались", - "textMeaningTranslate": "Уменьшать означает уменьшать или уменьшать", - "wordTranslate": "уменьшить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00c3" - }, - "group": 5, - "page": 5, - "word": "impose", - "image": "files/06_3108.jpg", - "audio": "files/06_3108.mp3", - "audioMeaning": "files/06_3108_meaning.mp3", - "audioExample": "files/06_3108_example.mp3", - "textMeaning": "To impose means to interrupt or force your ideas on other people.", - "textExample": "He imposes on his wife every morning by expecting her to make his breakfast.", - "transcription": "[impóuz]", - "__v": 0, - "textExampleTranslate": "Он навязывает свою жену каждое утро, ожидая, что она приготовит ему завтрак", - "textMeaningTranslate": "Навязывать - значит прерывать или навязывать свои идеи другим людям", - "wordTranslate": "наложить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00c6" - }, - "group": 5, - "page": 5, - "word": "medieval", - "image": "files/06_3111.jpg", - "audio": "files/06_3111.mp3", - "audioMeaning": "files/06_3111_meaning.mp3", - "audioExample": "files/06_3111_example.mp3", - "textMeaning": "If something is medieval, it comes from the period between 650 and 1500 CE.", - "textExample": "We visited a castle that was built during medieval times.", - "transcription": "[mìːdiíːvəl]", - "__v": 0, - "textExampleTranslate": "Мы посетили замок, который был построен во времена средневековья", - "textMeaningTranslate": "Если что-то средневековое, оно происходит в период между 650 и 1500 годом н.э", - "wordTranslate": "средневековый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00c4" - }, - "group": 5, - "page": 5, - "word": "industry", - "image": "files/06_3109.jpg", - "audio": "files/06_3109.mp3", - "audioMeaning": "files/06_3109_meaning.mp3", - "audioExample": "files/06_3109_example.mp3", - "textMeaning": "Industry is a kind of business that produces services or things for sale.", - "textExample": "The tourist industry is doing well all around the world.", - "transcription": "[índəstri]", - "__v": 0, - "textExampleTranslate": "Туристическая индустрия процветает во всем мире", - "textMeaningTranslate": "Промышленность - это вид бизнеса, который производит услуги или вещи для продажи", - "wordTranslate": "промышленность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00c5" - }, - "group": 5, - "page": 5, - "word": "managerial", - "image": "files/06_3110.jpg", - "audio": "files/06_3110.mp3", - "audioMeaning": "files/06_3110_meaning.mp3", - "audioExample": "files/06_3110_example.mp3", - "textMeaning": "Managerial describes something related to a manager or management.", - "textExample": "Nancy has a managerial position at the bank.", - "transcription": "[mӕnidʒíəriəl]", - "__v": 0, - "textExampleTranslate": "Нэнси занимает руководящую должность в банке", - "textMeaningTranslate": "Управленческий описывает что-то, связанное с менеджером или руководством", - "wordTranslate": "управленческий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00c7" - }, - "group": 5, - "page": 5, - "word": "obsolete", - "image": "files/06_3112.jpg", - "audio": "files/06_3112.mp3", - "audioMeaning": "files/06_3112_meaning.mp3", - "audioExample": "files/06_3112_example.mp3", - "textMeaning": "If something is obsolete, it is not used anymore because something better exists.", - "textExample": "Since computers became inexpensive, typewriters have become obsolete.", - "transcription": "[ɑ̀bsəlíːt]", - "__v": 0, - "textExampleTranslate": "Поскольку компьютеры стали недорогими, пишущие машинки устарели", - "textMeaningTranslate": "Если что-то устарело, оно больше не используется, потому что что-то лучше существует", - "wordTranslate": "устаревшие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00c8" - }, - "group": 5, - "page": 5, - "word": "oriented", - "image": "files/06_3113.jpg", - "audio": "files/06_3113.mp3", - "audioMeaning": "files/06_3113_meaning.mp3", - "audioExample": "files/06_3113_example.mp3", - "textMeaning": "When you are oriented towards something, you are faced in that direction.", - "textExample": "He is living a money-oriented lifestyle.", - "transcription": "[ɔ́ːrientid]", - "__v": 0, - "textExampleTranslate": "Он живет ориентированным на деньги образом жизни", - "textMeaningTranslate": "Когда вы ориентированы на что-то, вы сталкиваетесь в этом направлении", - "wordTranslate": "ориентированный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00c9" - }, - "group": 5, - "page": 5, - "word": "peninsula", - "image": "files/06_3114.jpg", - "audio": "files/06_3114.mp3", - "audioMeaning": "files/06_3114_meaning.mp3", - "audioExample": "files/06_3114_example.mp3", - "textMeaning": "A peninsula is a large piece of land that is surrounded by the sea on three sides.", - "textExample": "The state of Florida is an example of a peninsula.", - "transcription": "[pənínsjulə]", - "__v": 0, - "textExampleTranslate": "Штат Флорида является примером полуострова", - "textMeaningTranslate": "Полуостров - это большой участок земли, который с трех сторон окружен морем", - "wordTranslate": "полуостров" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ca" - }, - "group": 5, - "page": 5, - "word": "prestige", - "image": "files/06_3115.jpg", - "audio": "files/06_3115.mp3", - "audioMeaning": "files/06_3115_meaning.mp3", - "audioExample": "files/06_3115_example.mp3", - "textMeaning": "If a person has prestige, people admire or respect them.", - "textExample": "The young actress gained much prestige after she won an award.", - "transcription": "[prestíːʒ]", - "__v": 0, - "textExampleTranslate": "Молодая актриса приобрела большой престиж после того, как она получила награду", - "textMeaningTranslate": "Если человек имеет престиж, люди восхищаются или уважают его", - "wordTranslate": "престиж" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00cc" - }, - "group": 5, - "page": 5, - "word": "radical", - "image": "files/06_3117.jpg", - "audio": "files/06_3117.mp3", - "audioMeaning": "files/06_3117_meaning.mp3", - "audioExample": "files/06_3117_example.mp3", - "textMeaning": "If something is radical, it is very new or different.", - "textExample": "The president is planning to make some radical changes to the law.", - "transcription": "[rǽdikəl]", - "__v": 0, - "textExampleTranslate": "Президент планирует внести некоторые радикальные изменения в закон", - "textMeaningTranslate": "Если что-то радикально, это очень новое или другое", - "wordTranslate": "радикал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00cb" - }, - "group": 5, - "page": 5, - "word": "proportion", - "image": "files/06_3116.jpg", - "audio": "files/06_3116.mp3", - "audioMeaning": "files/06_3116_meaning.mp3", - "audioExample": "files/06_3116_example.mp3", - "textMeaning": "A proportion is an amount that shows the link between the parts and the whole.", - "textExample": "Only a small proportion of the people in this town actually work here.", - "transcription": "[prəpɔ́ːrʃən]", - "__v": 0, - "textExampleTranslate": "Только небольшая часть людей в этом городе на самом деле работают здесь", - "textMeaningTranslate": "Пропорция - это сумма, которая показывает связь между частями и целым", - "wordTranslate": "доля" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00cd" - }, - "group": 5, - "page": 5, - "word": "refute", - "image": "files/06_3118.jpg", - "audio": "files/06_3118.mp3", - "audioMeaning": "files/06_3118_meaning.mp3", - "audioExample": "files/06_3118_example.mp3", - "textMeaning": "To refute something means to prove that it is false or incorrect.", - "textExample": "The bank manager has refuted the claims that he lied to his customers.", - "transcription": "[rifjúːt]", - "__v": 0, - "textExampleTranslate": "Управляющий банком опроверг утверждения о том, что он лгал своим клиентам", - "textMeaningTranslate": "Опровергнуть что-либо означает доказать, что оно ложное или неправильное", - "wordTranslate": "опровергнут" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ce" - }, - "group": 5, - "page": 5, - "word": "spectacular", - "image": "files/06_3119.jpg", - "audio": "files/06_3119.mp3", - "audioMeaning": "files/06_3119_meaning.mp3", - "audioExample": "files/06_3119_example.mp3", - "textMeaning": "If something is spectacular, it looks or sounds very impressive.", - "textExample": "There was a spectacular fireworks display in the park at New Year.", - "transcription": "[spektǽkjulər]", - "__v": 0, - "textExampleTranslate": "В Новый год в парке был впечатляющий фейерверк", - "textMeaningTranslate": "Если что-то впечатляет, это выглядит или звучит очень впечатляюще", - "wordTranslate": "захватывающий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00cf" - }, - "group": 5, - "page": 5, - "word": "weave", - "image": "files/06_3120.jpg", - "audio": "files/06_3120.mp3", - "audioMeaning": "files/06_3120_meaning.mp3", - "audioExample": "files/06_3120_example.mp3", - "textMeaning": "To weave means to make cloth using horizontal and vertical threads.", - "textExample": "We saw a woman weave a blanket on our vacation to South America.", - "transcription": "[wiːv]", - "__v": 0, - "textExampleTranslate": "Мы видели, как женщина плела одеяло во время нашего отпуска в Южную Америку", - "textMeaningTranslate": "Плетение означает изготовление ткани с использованием горизонтальных и вертикальных нитей", - "wordTranslate": "переплетение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00d1" - }, - "group": 5, - "page": 6, - "word": "capitalist", - "image": "files/07_3122.jpg", - "audio": "files/07_3122.mp3", - "audioMeaning": "files/07_3122_meaning.mp3", - "audioExample": "files/07_3122_example.mp3", - "textMeaning": "A capitalist is a business person who invests in trade and industry for profit.", - "textExample": "The capitalist invested in a factory that made wheat into cereal.", - "transcription": "[kǽpitəlist]", - "__v": 0, - "textExampleTranslate": "Капиталист инвестировал в фабрику, которая превращала пшеницу в зерновые", - "textMeaningTranslate": "Капиталист - это деловой человек, который инвестирует в торговлю и промышленность с целью получения прибыли", - "wordTranslate": "капиталист" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00d0" - }, - "group": 5, - "page": 6, - "word": "accountant", - "image": "files/07_3121.jpg", - "audio": "files/07_3121.mp3", - "audioMeaning": "files/07_3121_meaning.mp3", - "audioExample": "files/07_3121_example.mp3", - "textMeaning": "An accountant is a person whose job is to keep financial accounts for a business.", - "textExample": "The accountant helped us keep track of our spending.", - "transcription": "[əkáuntənt]", - "__v": 0, - "textExampleTranslate": "Бухгалтер помог нам отслеживать наши расходы", - "textMeaningTranslate": "Бухгалтер - это человек, чья работа состоит в том, чтобы вести финансовые счета для бизнеса", - "wordTranslate": "бухгалтер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00d2" - }, - "group": 5, - "page": 6, - "word": "contempt", - "image": "files/07_3123.jpg", - "audio": "files/07_3123.mp3", - "audioMeaning": "files/07_3123_meaning.mp3", - "audioExample": "files/07_3123_example.mp3", - "textMeaning": "Contempt is the feeling of having no respect for something.", - "textExample": "The judge had contempt for the wicked criminal.", - "transcription": "[kəntémpt]", - "__v": 0, - "textExampleTranslate": "Судья презирал злого преступника", - "textMeaningTranslate": "Презрение - это чувство неуважения к чему-либо", - "wordTranslate": "презрение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00d3" - }, - "group": 5, - "page": 6, - "word": "crop", - "image": "files/07_3124.jpg", - "audio": "files/07_3124.mp3", - "audioMeaning": "files/07_3124_meaning.mp3", - "audioExample": "files/07_3124_example.mp3", - "textMeaning": "A crop is something produced by the land.", - "textExample": "I had a good crop of onions this year.", - "transcription": "[krap]", - "__v": 0, - "textExampleTranslate": "У меня был хороший урожай лука в этом году", - "textMeaningTranslate": "Урожай - это нечто, производимое землей", - "wordTranslate": "подрезать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00d4" - }, - "group": 5, - "page": 6, - "word": "dedicate", - "image": "files/07_3125.jpg", - "audio": "files/07_3125.mp3", - "audioMeaning": "files/07_3125_meaning.mp3", - "audioExample": "files/07_3125_example.mp3", - "textMeaning": "To dedicate oneself to something means to put a lot of time and effort into it.", - "textExample": "The nun dedicated herself to helping people in need.", - "transcription": "[dédikèit]", - "__v": 0, - "textExampleTranslate": "Монахиня посвятила себя помощи нуждающимся людям", - "textMeaningTranslate": "Посвятить себя чему-то - значит потратить много времени и сил на это", - "wordTranslate": "посвятить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00d5" - }, - "group": 5, - "page": 6, - "word": "ditch", - "image": "files/07_3126.jpg", - "audio": "files/07_3126.mp3", - "audioMeaning": "files/07_3126_meaning.mp3", - "audioExample": "files/07_3126_example.mp3", - "textMeaning": "A ditch is a narrow hole cut into the ground by a road or a field.", - "textExample": "When the car slid off of the road, it fell into the ditch.", - "transcription": "[ditʃ]", - "__v": 0, - "textExampleTranslate": "Когда машина соскользнула с дороги, она упала в кювет", - "textMeaningTranslate": "Ров - это узкая яма, прорезанная в земле дорогой или полем", - "wordTranslate": "канава" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00d6" - }, - "group": 5, - "page": 6, - "word": "enterprise", - "image": "files/07_3127.jpg", - "audio": "files/07_3127.mp3", - "audioMeaning": "files/07_3127_meaning.mp3", - "audioExample": "files/07_3127_example.mp3", - "textMeaning": "An enterprise is a company or business.", - "textExample": "My father owns an advertising enterprise.", - "transcription": "[éntərpràiz]", - "__v": 0, - "textExampleTranslate": "Мой отец владеет рекламным предприятием", - "textMeaningTranslate": "Предприятие - это компания или бизнес", - "wordTranslate": "предприятие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00d7" - }, - "group": 5, - "page": 6, - "word": "finance", - "image": "files/07_3128.jpg", - "audio": "files/07_3128.mp3", - "audioMeaning": "files/07_3128_meaning.mp3", - "audioExample": "files/07_3128_example.mp3", - "textMeaning": "To finance someone or something means to provide money for them.", - "textExample": "The government financed the scientist’s experiments with new weapons.", - "transcription": "[fáinæns]", - "__v": 0, - "textExampleTranslate": "Правительство финансировало эксперименты ученого с новым оружием", - "textMeaningTranslate": "Финансировать кого-то или что-то - значит давать им деньги", - "wordTranslate": "финансирование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00d8" - }, - "group": 5, - "page": 6, - "word": "indifferent", - "image": "files/07_3129.jpg", - "audio": "files/07_3129.mp3", - "audioMeaning": "files/07_3129_meaning.mp3", - "audioExample": "files/07_3129_example.mp3", - "textMeaning": "When someone is indifferent toward something, they have a lack of interest in it.", - "textExample": "Lisa is indifferent toward school. She doesn’t care what her final grades are.", - "transcription": "[indífərənt]", - "__v": 0, - "textExampleTranslate": "Лизе безразлична школа. Ей все равно, какие у нее оценки", - "textMeaningTranslate": "Когда кто-то безразличен к чему-то, у него нет к нему интереса", - "wordTranslate": "в различных" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00d9" - }, - "group": 5, - "page": 6, - "word": "irrigate", - "image": "files/07_3130.jpg", - "audio": "files/07_3130.mp3", - "audioMeaning": "files/07_3130_meaning.mp3", - "audioExample": "files/07_3130_example.mp3", - "textMeaning": "To irrigate means to supply water to land so that crops can grow.", - "textExample": "In dry climates, it is important to irrigate fields of crops.", - "transcription": "[írəgèit]", - "__v": 0, - "textExampleTranslate": "В сухом климате важно поливать поля сельскохозяйственных культур", - "textMeaningTranslate": "Орошение означает подачу воды на землю, чтобы посевы могли расти", - "wordTranslate": "орошать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00da" - }, - "group": 5, - "page": 6, - "word": "maximize", - "image": "files/07_3131.jpg", - "audio": "files/07_3131.mp3", - "audioMeaning": "files/07_3131_meaning.mp3", - "audioExample": "files/07_3131_example.mp3", - "textMeaning": "To maximize something is to make it as great as possible in amount, size, or importance.", - "textExample": "You should exercise regularly to maximize a healthy lifestyle.", - "transcription": "[mǽksəmàiz]", - "__v": 0, - "textExampleTranslate": "Вы должны регулярно заниматься спортом, чтобы максимизировать здоровый образ жизни", - "textMeaningTranslate": "Чтобы максимизировать что-то, нужно сделать его как можно большим по количеству, размеру или важности", - "wordTranslate": "максимизировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00db" - }, - "group": 5, - "page": 6, - "word": "monetary", - "image": "files/07_3132.jpg", - "audio": "files/07_3132.mp3", - "audioMeaning": "files/07_3132_meaning.mp3", - "audioExample": "files/07_3132_example.mp3", - "textMeaning": "When something is monetary, it relates to money.", - "textExample": "A strong monetary policy is important for a country to be successful.", - "transcription": "[mɑ́nətèri]", - "__v": 0, - "textExampleTranslate": "Для успеха страны важна сильная денежно-кредитная политика", - "textMeaningTranslate": "Когда что-то является денежным, это относится к деньгам", - "wordTranslate": "денежная" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00dc" - }, - "group": 5, - "page": 6, - "word": "precaution", - "image": "files/07_3133.jpg", - "audio": "files/07_3133.mp3", - "audioMeaning": "files/07_3133_meaning.mp3", - "audioExample": "files/07_3133_example.mp3", - "textMeaning": "A precaution is an action that is meant to stop something bad from happening.", - "textExample": "As a precaution, you should put on a heavy coat before going out in cold weather.", - "transcription": "[prikɔ́ːʃən]", - "__v": 0, - "textExampleTranslate": "В качестве меры предосторожности, перед выходом в холодную погоду вы должны надеть тяжелое пальто", - "textMeaningTranslate": "Предосторожность - это действие, которое призвано остановить что-то плохое", - "wordTranslate": "предосторожность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00dd" - }, - "group": 5, - "page": 6, - "word": "preliminary", - "image": "files/07_3134.jpg", - "audio": "files/07_3134.mp3", - "audioMeaning": "files/07_3134_meaning.mp3", - "audioExample": "files/07_3134_example.mp3", - "textMeaning": "Preliminary describes something that happens before a more important event.", - "textExample": "The runners must do well in the preliminary races to qualify for the final race.", - "transcription": "[prilímənèri]", - "__v": 0, - "textExampleTranslate": "Бегуны должны преуспеть в предварительных гонках, чтобы претендовать на финальную гонку", - "textMeaningTranslate": "Предварительно описывает то, что происходит перед более важным событием", - "wordTranslate": "предварительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00de" - }, - "group": 5, - "page": 6, - "word": "saturate", - "image": "files/07_3135.jpg", - "audio": "files/07_3135.mp3", - "audioMeaning": "files/07_3135_meaning.mp3", - "audioExample": "files/07_3135_example.mp3", - "textMeaning": "To saturate something means to completely soak it with a liquid.", - "textExample": "The sponge was saturated with soapy water and dripped all over the floor.", - "transcription": "[sǽtʃərèit]", - "__v": 0, - "textExampleTranslate": "Губка была пропитана мыльной водой и капала по всему полу", - "textMeaningTranslate": "Насытить что-то означает полностью пропитать это жидкостью", - "wordTranslate": "насытить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00df" - }, - "group": 5, - "page": 6, - "word": "simplicity", - "image": "files/07_3136.jpg", - "audio": "files/07_3136.mp3", - "audioMeaning": "files/07_3136_meaning.mp3", - "audioExample": "files/07_3136_example.mp3", - "textMeaning": "The simplicity of something is the fact that it is easy to do or understand.", - "textExample": "We were able to find the house thanks to the simplicity of the directions.", - "transcription": "[simplísəti:]", - "__v": 0, - "textExampleTranslate": "Мы смогли найти дом благодаря простоте направлений", - "textMeaningTranslate": "Простота чего-либо заключается в том, что это легко сделать или понять", - "wordTranslate": "простота" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00e0" - }, - "group": 5, - "page": 6, - "word": "sow", - "image": "files/07_3137.jpg", - "audio": "files/07_3137.mp3", - "audioMeaning": "files/07_3137_meaning.mp3", - "audioExample": "files/07_3137_example.mp3", - "textMeaning": "To sow seeds means to plant them in the ground.", - "textExample": "He always sows his garden seeds in the springtime.", - "transcription": "[sou]", - "__v": 0, - "textExampleTranslate": "Он всегда сеет семена своего сада весной", - "textMeaningTranslate": "Посеять семена - значит посадить их в землю", - "wordTranslate": "сеют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00e1" - }, - "group": 5, - "page": 6, - "word": "spade", - "image": "files/07_3138.jpg", - "audio": "files/07_3138.mp3", - "audioMeaning": "files/07_3138_meaning.mp3", - "audioExample": "files/07_3138_example.mp3", - "textMeaning": "A spade is a tool used for digging.", - "textExample": "The gardener used her spade to make a hole for the new plant.", - "transcription": "[speid]", - "__v": 0, - "textExampleTranslate": "Садовник использовал свою лопату, чтобы проделать отверстие для нового растения", - "textMeaningTranslate": "Лопата - это инструмент, используемый для копания", - "wordTranslate": "лопата" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00e2" - }, - "group": 5, - "page": 6, - "word": "tomato", - "image": "files/07_3139.jpg", - "audio": "files/07_3139.mp3", - "audioMeaning": "files/07_3139_meaning.mp3", - "audioExample": "files/07_3139_example.mp3", - "textMeaning": "A tomato is a round red fruit, but usually eaten as a vegetable. It’s often used in salads or pasta sauces.", - "textExample": "I like tomato sandwiches.", - "transcription": "[təméitou]", - "__v": 0, - "textExampleTranslate": "Я люблю томатные бутерброды", - "textMeaningTranslate": "Помидор - это круглый красный фрукт, но его обычно едят как овощ. Его часто используют в салатах или соусах для пасты", - "wordTranslate": "помидор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00e3" - }, - "group": 5, - "page": 6, - "word": "upcoming", - "image": "files/07_3140.jpg", - "audio": "files/07_3140.mp3", - "audioMeaning": "files/07_3140_meaning.mp3", - "audioExample": "files/07_3140_example.mp3", - "textMeaning": "When something is upcoming, that means it will happen in the near future.", - "textExample": "The kids were worried about their upcoming exam.", - "transcription": "[ʌ́pkʌ̀miŋ]", - "__v": 0, - "textExampleTranslate": "Дети были обеспокоены предстоящим экзаменом", - "textMeaningTranslate": "Когда что-то наступает, это означает, что это произойдет в ближайшем будущем", - "wordTranslate": "предстоящие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00e4" - }, - "group": 5, - "page": 7, - "word": "anthropology", - "image": "files/08_3141.jpg", - "audio": "files/08_3141.mp3", - "audioMeaning": "files/08_3141_meaning.mp3", - "audioExample": "files/08_3141_example.mp3", - "textMeaning": "Anthropology is the study of people, society, and culture.", - "textExample": "In anthropology class, I learned about simple tools that ancient cultures used.", - "transcription": "[ӕnθrəpάlədʒi]", - "__v": 0, - "textExampleTranslate": "На уроке антропологии я узнал о простых инструментах, которые использовали древние культуры", - "textMeaningTranslate": "Антропология - это изучение людей, общества и культуры", - "wordTranslate": "антропология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00e5" - }, - "group": 5, - "page": 7, - "word": "applaud", - "image": "files/08_3142.jpg", - "audio": "files/08_3142.mp3", - "audioMeaning": "files/08_3142_meaning.mp3", - "audioExample": "files/08_3142_example.mp3", - "textMeaning": "To applaud means to clap in order to show approval.", - "textExample": "Everyone cheered and applauded Manny’s efforts.", - "transcription": "[əplɔ́ːd]", - "__v": 0, - "textExampleTranslate": "Все приветствовали и приветствовали усилия Мэнни", - "textMeaningTranslate": "Аплодировать значит хлопать, чтобы показать одобрение", - "wordTranslate": "аплодировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00e6" - }, - "group": 5, - "page": 7, - "word": "appoint", - "image": "files/08_3143.jpg", - "audio": "files/08_3143.mp3", - "audioMeaning": "files/08_3143_meaning.mp3", - "audioExample": "files/08_3143_example.mp3", - "textMeaning": "To appoint someone to a job means to give the job to them.", - "textExample": "Two students were appointed to help the scientists with their research.", - "transcription": "[əpɔ́int]", - "__v": 0, - "textExampleTranslate": "Двое студентов были назначены, чтобы помочь ученым в их исследованиях", - "textMeaningTranslate": "Назначить кого-то на работу означает дать ему работу", - "wordTranslate": "назначить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00e7" - }, - "group": 5, - "page": 7, - "word": "competence", - "image": "files/08_3145.jpg", - "audio": "files/08_3145.mp3", - "audioMeaning": "files/08_3145_meaning.mp3", - "audioExample": "files/08_3145_example.mp3", - "textMeaning": "Competence is the ability to do something well or effectively.", - "textExample": "The job was easy because the group had enough competence to do it well.", - "transcription": "[kɑ́mpətəns]", - "__v": 0, - "textExampleTranslate": "Работа была легкой, потому что у группы было достаточно компетенции, чтобы делать это хорошо", - "textMeaningTranslate": "Компетентность - это способность делать что-то хорошо или эффективно", - "wordTranslate": "компетентность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00e8" - }, - "group": 5, - "page": 7, - "word": "compatible", - "image": "files/08_3144.jpg", - "audio": "files/08_3144.mp3", - "audioMeaning": "files/08_3144_meaning.mp3", - "audioExample": "files/08_3144_example.mp3", - "textMeaning": "When things are compatible, they work well or exist together successfully.", - "textExample": "Jan and Fred are too different. They will never be compatible.", - "transcription": "[kəmpǽtəbl]", - "__v": 0, - "textExampleTranslate": "Ян и Фред слишком разные. Они никогда не будут совместимы", - "textMeaningTranslate": "Когда вещи совместимы, они хорошо работают или успешно существуют вместе", - "wordTranslate": "совместимы" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00e9" - }, - "group": 5, - "page": 7, - "word": "confer", - "image": "files/08_3146.jpg", - "audio": "files/08_3146.mp3", - "audioMeaning": "files/08_3146_meaning.mp3", - "audioExample": "files/08_3146_example.mp3", - "textMeaning": "To confer with someone means to discuss something with them to make a decision.", - "textExample": "I will have to confer with my wife before I can purchase a new car.", - "transcription": "[kənfə́ːr]", - "__v": 0, - "textExampleTranslate": "Мне придется посоветоваться с женой, прежде чем я смогу купить новую машину", - "textMeaningTranslate": "Посовещаться с кем-то - значит обсуждать с ними что-то, чтобы принять решение", - "wordTranslate": "совещается" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ea" - }, - "group": 5, - "page": 7, - "word": "consecutive", - "image": "files/08_3147.jpg", - "audio": "files/08_3147.mp3", - "audioMeaning": "files/08_3147_meaning.mp3", - "audioExample": "files/08_3147_example.mp3", - "textMeaning": "When things are consecutive, they happen one after another without interruption.", - "textExample": "The king ruled for ten consecutive years.", - "transcription": "[kənsékjətiv]", - "__v": 0, - "textExampleTranslate": "Король правил десять лет подряд", - "textMeaningTranslate": "Когда вещи последовательны, они происходят одно за другим без перерыва", - "wordTranslate": "подряд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00eb" - }, - "group": 5, - "page": 7, - "word": "crude", - "image": "files/08_3148.jpg", - "audio": "files/08_3148.mp3", - "audioMeaning": "files/08_3148_meaning.mp3", - "audioExample": "files/08_3148_example.mp3", - "textMeaning": "When something is crude, it is not exact or detailed but can still be useful.", - "textExample": "She drew crude hearts on the ground to show how much she loved him.", - "transcription": "[kruːd]", - "__v": 0, - "textExampleTranslate": "Она нарисовала грубые сердца на земле, чтобы показать, как сильно она его любит", - "textMeaningTranslate": "Когда что-то грубое, оно не является точным или подробным, но все же может быть полезным", - "wordTranslate": "сырой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ec" - }, - "group": 5, - "page": 7, - "word": "cube", - "image": "files/08_3149.jpg", - "audio": "files/08_3149.mp3", - "audioMeaning": "files/08_3149_meaning.mp3", - "audioExample": "files/08_3149_example.mp3", - "textMeaning": "A cube is a solid object with six square surfaces that are all the same size.", - "textExample": "Please get me some ice cubes to put in my soda.", - "transcription": "[kjuːb]", - "__v": 0, - "textExampleTranslate": "Пожалуйста, дайте мне несколько кубиков льда, чтобы положить в мою газировку", - "textMeaningTranslate": "Куб - это твердый объект с шестью квадратными поверхностями одинакового размера", - "wordTranslate": "куб" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ed" - }, - "group": 5, - "page": 7, - "word": "feedback", - "image": "files/08_3150.jpg", - "audio": "files/08_3150.mp3", - "audioMeaning": "files/08_3150_meaning.mp3", - "audioExample": "files/08_3150_example.mp3", - "textMeaning": "Feedback is comments to a person about how they are doing something.", - "textExample": "I asked my boss for feedback on my work.", - "transcription": "[fíːdbæ̀k]", - "__v": 0, - "textExampleTranslate": "Я попросил моего босса оставить отзыв о моей работе", - "textMeaningTranslate": "Обратная связь - это комментарии к человеку о том, как они что-то делают", - "wordTranslate": "обратная связь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ee" - }, - "group": 5, - "page": 7, - "word": "ignorance", - "image": "files/08_3151.jpg", - "audio": "files/08_3151.mp3", - "audioMeaning": "files/08_3151_meaning.mp3", - "audioExample": "files/08_3151_example.mp3", - "textMeaning": "Ignorance of something is lack of knowledge about it.", - "textExample": "When he failed the test, his ignorance of math was obvious.", - "transcription": "[ígnərəns]", - "__v": 0, - "textExampleTranslate": "Когда он не прошел тест, его невежество в математике было очевидно", - "textMeaningTranslate": "Незнание чего-либо - это недостаток знаний об этом", - "wordTranslate": "невежество" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ef" - }, - "group": 5, - "page": 7, - "word": "masculine", - "image": "files/08_3152.jpg", - "audio": "files/08_3152.mp3", - "audioMeaning": "files/08_3152_meaning.mp3", - "audioExample": "files/08_3152_example.mp3", - "textMeaning": "When something is masculine, it is a quality or thing related to men.", - "textExample": "American football is usually considered a masculine sport.", - "transcription": "[mǽskjulin]", - "__v": 0, - "textExampleTranslate": "Американский футбол обычно считается мужским видом спорта", - "textMeaningTranslate": "Когда что-то мужское, это качество или вещь, связанная с людьми", - "wordTranslate": "мужской" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00f0" - }, - "group": 5, - "page": 7, - "word": "monument", - "image": "files/08_3153.jpg", - "audio": "files/08_3153.mp3", - "audioMeaning": "files/08_3153_meaning.mp3", - "audioExample": "files/08_3153_example.mp3", - "textMeaning": "A monument is a structure that is built to remind people of a person or event.", - "textExample": "A large monument was built to honor the brave soldiers.", - "transcription": "[mɑ́njəmənt]", - "__v": 0, - "textExampleTranslate": "Большой памятник был построен в честь храбрых солдат", - "textMeaningTranslate": "Памятник - это сооружение, построенное, чтобы напомнить людям о человеке или событии", - "wordTranslate": "памятник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00f1" - }, - "group": 5, - "page": 7, - "word": "muscular", - "image": "files/08_3154.jpg", - "audio": "files/08_3154.mp3", - "audioMeaning": "files/08_3154_meaning.mp3", - "audioExample": "files/08_3154_example.mp3", - "textMeaning": "When someone is muscular, they are very fit and strong.", - "textExample": "He exercised regularly so that his body could become muscular.", - "transcription": "[mΛskjulur]", - "__v": 0, - "textExampleTranslate": "Он регулярно тренируется, чтобы его тело стало мускулистым", - "textMeaningTranslate": "Когда кто-то мускулистый, он очень крепкий и сильный", - "wordTranslate": "мускулистый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00f2" - }, - "group": 5, - "page": 7, - "word": "posture", - "image": "files/08_3155.jpg", - "audio": "files/08_3155.mp3", - "audioMeaning": "files/08_3155_meaning.mp3", - "audioExample": "files/08_3155_example.mp3", - "textMeaning": "A person’s posture is the manner in which they stand or sit.", - "textExample": "Your back will feel better if you improve your posture.", - "transcription": "[pάsʧər]", - "__v": 0, - "textExampleTranslate": "Ваша спина будет чувствовать себя лучше, если вы улучшите осанку", - "textMeaningTranslate": "Поза человека - это манера, в которой он стоит или сидит", - "wordTranslate": "поза" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00f3" - }, - "group": 5, - "page": 7, - "word": "situate", - "image": "files/08_3156.jpg", - "audio": "files/08_3156.mp3", - "audioMeaning": "files/08_3156_meaning.mp3", - "audioExample": "files/08_3156_example.mp3", - "textMeaning": "To situate something means to place or build it in a certain place.", - "textExample": "The road was situated between the forest and the lake.", - "transcription": "[sítʃuèit]", - "__v": 0, - "textExampleTranslate": "Дорога шла между лесом и озером", - "textMeaningTranslate": "Расположить что-либо - значит поместить или построить это в определенном месте", - "wordTranslate": "размещать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00f4" - }, - "group": 5, - "page": 7, - "word": "supervise", - "image": "files/08_3157.jpg", - "audio": "files/08_3157.mp3", - "audioMeaning": "files/08_3157_meaning.mp3", - "audioExample": "files/08_3157_example.mp3", - "textMeaning": "To supervise something means to make sure that it is done correctly.", - "textExample": "Allen supervised the construction workers to ensure everyone’s safety.", - "transcription": "[súːpərvàiz]", - "__v": 0, - "textExampleTranslate": "Аллен контролировал строителей, чтобы обеспечить безопасность каждого", - "textMeaningTranslate": "Наблюдать за чем-то - значит быть уверенным, что это сделано правильно", - "wordTranslate": "контролировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00f5" - }, - "group": 5, - "page": 7, - "word": "symmetry", - "image": "files/08_3158.jpg", - "audio": "files/08_3158.mp3", - "audioMeaning": "files/08_3158_meaning.mp3", - "audioExample": "files/08_3158_example.mp3", - "textMeaning": "Symmetry is the state of having two halves that are exactly the same.", - "textExample": "The artist made sure to use perfect symmetry when painting the butterfly.", - "transcription": "[símətri:]", - "__v": 0, - "textExampleTranslate": "Художник обязательно использовал идеальную симметрию при рисовании бабочки", - "textMeaningTranslate": "Симметрия - это состояние, когда две половины одинаковы", - "wordTranslate": "симметрия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00f6" - }, - "group": 5, - "page": 7, - "word": "tattoo", - "image": "files/08_3159.jpg", - "audio": "files/08_3159.mp3", - "audioMeaning": "files/08_3159_meaning.mp3", - "audioExample": "files/08_3159_example.mp3", - "textMeaning": "A tattoo is a design that is drawn permanently on the skin with needles.", - "textExample": "The surfer had tattoos on both his arms.", - "transcription": "[tætúː]", - "__v": 0, - "textExampleTranslate": "У серфера были татуировки на обеих руках", - "textMeaningTranslate": "Татуировка - это рисунок, который постоянно наносится на кожу иглами", - "wordTranslate": "тату" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00f7" - }, - "group": 5, - "page": 7, - "word": "undergraduate", - "image": "files/08_3160.jpg", - "audio": "files/08_3160.mp3", - "audioMeaning": "files/08_3160_meaning.mp3", - "audioExample": "files/08_3160_example.mp3", - "textMeaning": "An undergraduate is a student at a college who is studying for a bachelor’s degree.", - "textExample": "She was excited to finish high school and enroll as an undergraduate in the fall.", - "transcription": "[ʌ̀ndərgrǽdʒuit]", - "__v": 0, - "textExampleTranslate": "Она была взволнована, чтобы закончить среднюю школу и поступить в качестве бакалавра осенью", - "textMeaningTranslate": "Бакалавриат - это студент колледжа, который учится на степень бакалавра", - "wordTranslate": "магистрант" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00f8" - }, - "group": 5, - "page": 8, - "word": "cater", - "image": "files/09_3161.jpg", - "audio": "files/09_3161.mp3", - "audioMeaning": "files/09_3161_meaning.mp3", - "audioExample": "files/09_3161_example.mp3", - "textMeaning": "To cater to someone means to provide them with all the things they need or want.", - "textExample": "Bill was too sick to get out of bed, so his nurse catered to his needs.", - "transcription": "[kéitər]", - "__v": 0, - "textExampleTranslate": "Билл был слишком болен, чтобы встать с постели, поэтому его медсестра отвечала его потребностям", - "textMeaningTranslate": "Чтобы угодить кому-то, нужно дать ему все, что ему нужно или что он хочет", - "wordTranslate": "катер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00f9" - }, - "group": 5, - "page": 8, - "word": "considerate", - "image": "files/09_3162.jpg", - "audio": "files/09_3162.mp3", - "audioMeaning": "files/09_3162_meaning.mp3", - "audioExample": "files/09_3162_example.mp3", - "textMeaning": "When someone is considerate, they pay attention to the needs of others.", - "textExample": "The considerate boy gave his girlfriend a present to cheer her up when she was sad.", - "transcription": "[kənsídərət]", - "__v": 0, - "textExampleTranslate": "Внимательный мальчик подарил своей девушке подарок, чтобы подбодрить ее, когда ей было грустно", - "textMeaningTranslate": "Когда кто-то внимателен, они обращают внимание на потребности других", - "wordTranslate": "внимательный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00fa" - }, - "group": 5, - "page": 8, - "word": "consumption", - "image": "files/09_3163.jpg", - "audio": "files/09_3163.mp3", - "audioMeaning": "files/09_3163_meaning.mp3", - "audioExample": "files/09_3163_example.mp3", - "textMeaning": "The consumption of food or drink is the act of eating or drinking it.", - "textExample": "These apples are too rotten for consumption.", - "transcription": "[kənsʌ́mpʃən]", - "__v": 0, - "textExampleTranslate": "Эти яблоки слишком гнилые для потребления", - "textMeaningTranslate": "Потребление еды или питья - это акт еды или питья", - "wordTranslate": "потребление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00fb" - }, - "group": 5, - "page": 8, - "word": "criteria", - "image": "files/09_3164.jpg", - "audio": "files/09_3164.mp3", - "audioMeaning": "files/09_3164_meaning.mp3", - "audioExample": "files/09_3164_example.mp3", - "textMeaning": "Criteria are factors on which a person judges or decides something.", - "textExample": "Before she got the job, she had to meet all the necessary criteria.", - "transcription": "[kraitíəriə]", - "__v": 0, - "textExampleTranslate": "Прежде чем она получила работу, она должна была соответствовать всем необходимым критериям", - "textMeaningTranslate": "Критерии - это факторы, по которым человек судит или решает что-то", - "wordTranslate": "критерии" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00fc" - }, - "group": 5, - "page": 8, - "word": "crust", - "image": "files/09_3165.jpg", - "audio": "files/09_3165.mp3", - "audioMeaning": "files/09_3165_meaning.mp3", - "audioExample": "files/09_3165_example.mp3", - "textMeaning": "Crust is the tough outer part of a loaf of bread.", - "textExample": "The little boy never ate the crust of his pizza.", - "transcription": "[krʌst]", - "__v": 0, - "textExampleTranslate": "Маленький мальчик никогда не ел корочку своей пиццы", - "textMeaningTranslate": "Корка - это жесткая внешняя часть буханки хлеба", - "wordTranslate": "корочка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00fd" - }, - "group": 5, - "page": 8, - "word": "entitle", - "image": "files/09_3166.jpg", - "audio": "files/09_3166.mp3", - "audioMeaning": "files/09_3166_meaning.mp3", - "audioExample": "files/09_3166_example.mp3", - "textMeaning": "To entitle someone means to give them the right to have or do something.", - "textExample": "His golden ticket entitled him to sit in the front row at the concert.", - "transcription": "[intáitl]", - "__v": 0, - "textExampleTranslate": "Его золотой билет давал ему право сидеть в первом ряду на концерте", - "textMeaningTranslate": "Предоставить кому-либо право означает дать ему право иметь или делать что-то", - "wordTranslate": "дает право" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00fe" - }, - "group": 5, - "page": 8, - "word": "escort", - "image": "files/09_3167.jpg", - "audio": "files/09_3167.mp3", - "audioMeaning": "files/09_3167_meaning.mp3", - "audioExample": "files/09_3167_example.mp3", - "textMeaning": "To escort people means to safely accompany them to a place.", - "textExample": "Her bodyguards escorted her to the movie theater.", - "transcription": "[éskɔːrt]", - "__v": 0, - "textExampleTranslate": "Ее телохранители проводили ее в кинотеатр", - "textMeaningTranslate": "Проводить людей - значит безопасно сопровождать их до места", - "wordTranslate": "эскорт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b00ff" - }, - "group": 5, - "page": 8, - "word": "external", - "image": "files/09_3168.jpg", - "audio": "files/09_3168.mp3", - "audioMeaning": "files/09_3168_meaning.mp3", - "audioExample": "files/09_3168_example.mp3", - "textMeaning": "When something is external, it is connected to an outer part.", - "textExample": "It is warm inside my house, but the external temperature is freezing.", - "transcription": "[ikstə́ːrnəl]", - "__v": 0, - "textExampleTranslate": "В моем доме тепло, но температура на улице очень низкая", - "textMeaningTranslate": "Когда что-то внешнее, оно связано с внешней частью", - "wordTranslate": "внешний" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0100" - }, - "group": 5, - "page": 8, - "word": "facility", - "image": "files/09_3169.jpg", - "audio": "files/09_3169.mp3", - "audioMeaning": "files/09_3169_meaning.mp3", - "audioExample": "files/09_3169_example.mp3", - "textMeaning": "A facility is a building that exists for a particular purpose.", - "textExample": "There are many educational facilities in big cities.", - "transcription": "[fəsíləti:]", - "__v": 0, - "textExampleTranslate": "В больших городах много учебных заведений", - "textMeaningTranslate": "Объект - это здание, которое существует для определенной цели", - "wordTranslate": "объект" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0101" - }, - "group": 5, - "page": 8, - "word": "faculty", - "image": "files/09_3170.jpg", - "audio": "files/09_3170.mp3", - "audioMeaning": "files/09_3170_meaning.mp3", - "audioExample": "files/09_3170_example.mp3", - "textMeaning": "A faculty is a mental or physical ability.", - "textExample": "The boy’s mental faculties impressed all of his teachers.", - "transcription": "[fǽkəlti:]", - "__v": 0, - "textExampleTranslate": "Умственные способности мальчика поразили всех его учителей", - "textMeaningTranslate": "Способность - это умственные или физические способности", - "wordTranslate": "факультет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0102" - }, - "group": 5, - "page": 8, - "word": "heap", - "image": "files/09_3171.jpg", - "audio": "files/09_3171.mp3", - "audioMeaning": "files/09_3171_meaning.mp3", - "audioExample": "files/09_3171_example.mp3", - "textMeaning": "A heap of things is a large pile of them.", - "textExample": "After the building was torn down, all that was left was a heap of bricks.", - "transcription": "[hiːp]", - "__v": 0, - "textExampleTranslate": "После того, как здание было снесено, все, что осталось, было кучей кирпичей", - "textMeaningTranslate": "Куча вещей - большая куча из них", - "wordTranslate": "куча" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0103" - }, - "group": 5, - "page": 8, - "word": "hemisphere", - "image": "files/09_3172.jpg", - "audio": "files/09_3172.mp3", - "audioMeaning": "files/09_3172_meaning.mp3", - "audioExample": "files/09_3172_example.mp3", - "textMeaning": "A hemisphere is one half of the Earth.", - "textExample": "In the northern hemisphere, the weather is usually warmest in July and August.", - "transcription": "[hémisfìər]", - "__v": 0, - "textExampleTranslate": "В северном полушарии погода обычно самая теплая в июле и августе", - "textMeaningTranslate": "Полушарие - это половина Земли", - "wordTranslate": "полусфера" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0104" - }, - "group": 5, - "page": 8, - "word": "hound", - "image": "files/09_3173.jpg", - "audio": "files/09_3173.mp3", - "audioMeaning": "files/09_3173_meaning.mp3", - "audioExample": "files/09_3173_example.mp3", - "textMeaning": "A hound is a type of dog that is often used for racing or hunting.", - "textExample": "The men took their hounds with them when they went on the hunting trip.", - "transcription": "[haund]", - "__v": 0, - "textExampleTranslate": "Мужчины взяли с собой своих собак, когда отправились в охотничий поход", - "textMeaningTranslate": "Собака - это тип собаки, которую часто используют для гонок или охоты", - "wordTranslate": "гончая" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0105" - }, - "group": 5, - "page": 8, - "word": "impersonal", - "image": "files/09_3174.jpg", - "audio": "files/09_3174.mp3", - "audioMeaning": "files/09_3174_meaning.mp3", - "audioExample": "files/09_3174_example.mp3", - "textMeaning": "If something is impersonal, it is not friendly and makes people feel unimportant.", - "textExample": "The boy felt scared on his first day at the big, impersonal high school.", - "transcription": "[impə́ːrsənl]", - "__v": 0, - "textExampleTranslate": "Мальчик испугался в свой первый день в большой безличной школе", - "textMeaningTranslate": "Если что-то безлично, это не дружелюбно и заставляет людей чувствовать себя неважно", - "wordTranslate": "безличный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0106" - }, - "group": 5, - "page": 8, - "word": "lick", - "image": "files/09_3175.jpg", - "audio": "files/09_3175.mp3", - "audioMeaning": "files/09_3175_meaning.mp3", - "audioExample": "files/09_3175_example.mp3", - "textMeaning": "When you lick something, you pass your tongue over it.", - "textExample": "He licked his ice cream before it melted.", - "transcription": "[lik]", - "__v": 0, - "textExampleTranslate": "Он облизал свое мороженое до того, как оно растаяло", - "textMeaningTranslate": "Когда вы что-то облизываете, вы пропускаете это языком", - "wordTranslate": "лизать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0107" - }, - "group": 5, - "page": 8, - "word": "ornament", - "image": "files/09_3176.jpg", - "audio": "files/09_3176.mp3", - "audioMeaning": "files/09_3176_meaning.mp3", - "audioExample": "files/09_3176_example.mp3", - "textMeaning": "An ornament is an attractive object that people display in their homes.", - "textExample": "The woman kept some colorful ornaments on the shelves.", - "transcription": "[ɔ́ːrnəmənt]", - "__v": 0, - "textExampleTranslate": "Женщина держала на полках несколько разноцветных украшений", - "textMeaningTranslate": "Орнамент - это привлекательный объект, который люди демонстрируют в своих домах", - "wordTranslate": "орнамент" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0108" - }, - "group": 5, - "page": 8, - "word": "pedestrian", - "image": "files/09_3177.jpg", - "audio": "files/09_3177.mp3", - "audioMeaning": "files/09_3177_meaning.mp3", - "audioExample": "files/09_3177_example.mp3", - "textMeaning": "A pedestrian is a person who is walking on a street.", - "textExample": "Drivers should be careful when pedestrians are walking around.", - "transcription": "[pədéstriən]", - "__v": 0, - "textExampleTranslate": "Водители должны быть осторожны, когда вокруг гуляют пешеходы", - "textMeaningTranslate": "Пешеход - это человек, который идет по улице", - "wordTranslate": "пешеход" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0109" - }, - "group": 5, - "page": 8, - "word": "sanctuary", - "image": "files/09_3178.jpg", - "audio": "files/09_3178.mp3", - "audioMeaning": "files/09_3178_meaning.mp3", - "audioExample": "files/09_3178_example.mp3", - "textMeaning": "A sanctuary is a place where people in danger can go to be safe.", - "textExample": "The church was made into a sanctuary for homeless people in the winter.", - "transcription": "[sǽŋkʧuèri]", - "__v": 0, - "textExampleTranslate": "Церковь была превращена в убежище для бездомных зимой", - "textMeaningTranslate": "Святилище - это место, куда люди в опасности могут попасть в безопасное место", - "wordTranslate": "святилище" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b010a" - }, - "group": 5, - "page": 8, - "word": "spectator", - "image": "files/09_3179.jpg", - "audio": "files/09_3179.mp3", - "audioMeaning": "files/09_3179_meaning.mp3", - "audioExample": "files/09_3179_example.mp3", - "textMeaning": "A spectator is someone who watches something, for example, a sports event.", - "textExample": "There were thousands of spectators at the big game.", - "transcription": "[spékteitər]", - "__v": 0, - "textExampleTranslate": "На большой игре присутствовали тысячи зрителей", - "textMeaningTranslate": "Зритель - это тот, кто смотрит что-то, например, спортивное событие", - "wordTranslate": "зритель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b010b" - }, - "group": 5, - "page": 8, - "word": "yell", - "image": "files/09_3180.jpg", - "audio": "files/09_3180.mp3", - "audioMeaning": "files/09_3180_meaning.mp3", - "audioExample": "files/09_3180_example.mp3", - "textMeaning": "When you yell at someone, you shout at them.", - "textExample": "Someone yelled out his name.", - "transcription": "[jel]", - "__v": 0, - "textExampleTranslate": "Кто-то выкрикнул его имя", - "textMeaningTranslate": "Когда ты кричишь на кого-то, ты кричишь на него", - "wordTranslate": "орать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b010c" - }, - "group": 5, - "page": 9, - "word": "accessory", - "image": "files/10_3181.jpg", - "audio": "files/10_3181.mp3", - "audioMeaning": "files/10_3181_meaning.mp3", - "audioExample": "files/10_3181_example.mp3", - "textMeaning": "An accessory is a thing that is added to another thing to make it look better.", - "textExample": "The store sold colorful accessories like bags, sunglasses, and makeup.", - "transcription": "[əksésəri]", - "__v": 0, - "textExampleTranslate": "В магазине продавались красочные аксессуары, такие как сумки, солнцезащитные очки и косметика", - "textMeaningTranslate": "Аксессуар - это вещь, которая добавляется к другой вещи, чтобы она выглядела лучше", - "wordTranslate": "аксессуар" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b010d" - }, - "group": 5, - "page": 9, - "word": "exact", - "image": "files/10_3186.jpg", - "audio": "files/10_3186.mp3", - "audioMeaning": "files/10_3186_meaning.mp3", - "audioExample": "files/10_3186_example.mp3", - "textMeaning": "Exact means correct in every detail.", - "textExample": "I know the exact location of the restaurant you mentioned before.", - "transcription": "[igzǽkt]", - "__v": 0, - "textExampleTranslate": "Я знаю точное местоположение ресторана, о котором вы упоминали раньше", - "textMeaningTranslate": "Точное значит правильно в каждой детали", - "wordTranslate": "точный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b010e" - }, - "group": 5, - "page": 9, - "word": "dilemma", - "image": "files/10_3184.jpg", - "audio": "files/10_3184.mp3", - "audioMeaning": "files/10_3184_meaning.mp3", - "audioExample": "files/10_3184_example.mp3", - "textMeaning": "A dilemma is a difficult situation in which a choice has to be made.", - "textExample": "Choosing either the tastier or healthier drink proved to be quite a dilemma.", - "transcription": "[dilémə]", - "__v": 0, - "textExampleTranslate": "Выбор более вкусного или полезного напитка оказался довольно сложной задачей", - "textMeaningTranslate": "Дилемма - это сложная ситуация, в которой нужно сделать выбор", - "wordTranslate": "дилемма" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b010f" - }, - "group": 5, - "page": 9, - "word": "elaborate", - "image": "files/10_3185.jpg", - "audio": "files/10_3185.mp3", - "audioMeaning": "files/10_3185_meaning.mp3", - "audioExample": "files/10_3185_example.mp3", - "textMeaning": "When something is elaborate, it contains a lot of details.", - "textExample": "She gave the teacher an elaborate explanation of her project.", - "transcription": "[ilǽbərət]", - "__v": 0, - "textExampleTranslate": "Она дала учителю подробное объяснение своего проекта", - "textMeaningTranslate": "Когда что-то разработано, оно содержит много деталей", - "wordTranslate": "разрабатывать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0110" - }, - "group": 5, - "page": 9, - "word": "acquisition", - "image": "files/10_3182.jpg", - "audio": "files/10_3182.mp3", - "audioMeaning": "files/10_3182_meaning.mp3", - "audioExample": "files/10_3182_example.mp3", - "textMeaning": "An acquisition is something that a person buys or gets in some way.", - "textExample": "Marty was happy with his new acquisition: a very fast bicycle.", - "transcription": "[æ̀kwəzíʃən]", - "__v": 0, - "textExampleTranslate": "Марти был счастлив своим новым приобретением: очень быстрый велосипед", - "textMeaningTranslate": "Приобретение - это то, что человек покупает или получает каким-то образом", - "wordTranslate": "получение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0111" - }, - "group": 5, - "page": 9, - "word": "cardboard", - "image": "files/10_3183.jpg", - "audio": "files/10_3183.mp3", - "audioMeaning": "files/10_3183_meaning.mp3", - "audioExample": "files/10_3183_example.mp3", - "textMeaning": "Cardboard is a material made out of stiff paper. It is often used to make boxes.", - "textExample": "We packed our things into cardboard boxes and moved to our new home.", - "transcription": "[kɑ́ːrdbɔ̀ːrd]", - "__v": 0, - "textExampleTranslate": "Мы упаковали наши вещи в картонные коробки и переехали в наш новый дом", - "textMeaningTranslate": "Картон - это материал, изготовленный из жесткой бумаги. Он часто используется для изготовления коробок", - "wordTranslate": "картон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0112" - }, - "group": 5, - "page": 9, - "word": "facilitate", - "image": "files/10_3187.jpg", - "audio": "files/10_3187.mp3", - "audioMeaning": "files/10_3187_meaning.mp3", - "audioExample": "files/10_3187_example.mp3", - "textMeaning": "To facilitate something is to make it easier.", - "textExample": "To facilitate the meeting, Melissa used a simple computer program.", - "transcription": "[fəsílətèit]", - "__v": 0, - "textExampleTranslate": "Чтобы облегчить встречу, Мелисса использовала простую компьютерную программу", - "textMeaningTranslate": "Облегчить что-то значит облегчить", - "wordTranslate": "облегчить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0113" - }, - "group": 5, - "page": 9, - "word": "grid", - "image": "files/10_3189.jpg", - "audio": "files/10_3189.mp3", - "audioMeaning": "files/10_3189_meaning.mp3", - "audioExample": "files/10_3189_example.mp3", - "textMeaning": "A grid is a pattern of squares with numbers and letters to find places on a map.", - "textExample": "We located our town using the grid.", - "transcription": "[grid]", - "__v": 0, - "textExampleTranslate": "Мы нашли наш город, используя сетку", - "textMeaningTranslate": "Сетка - это набор квадратов с цифрами и буквами, чтобы найти места на карте", - "wordTranslate": "сетка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0114" - }, - "group": 5, - "page": 9, - "word": "import", - "image": "files/10_3190.jpg", - "audio": "files/10_3190.mp3", - "audioMeaning": "files/10_3190_meaning.mp3", - "audioExample": "files/10_3190_example.mp3", - "textMeaning": "To import means to bring in a product from another country.", - "textExample": "Foods that have been imported are usually more expensive.", - "transcription": "[impɔ́ːrt]", - "__v": 0, - "textExampleTranslate": "Продукты, которые были импортированы, обычно дороже", - "textMeaningTranslate": "Ввозить означает ввозить товар из другой страны", - "wordTranslate": "импортировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0115" - }, - "group": 5, - "page": 9, - "word": "infer", - "image": "files/10_3191.jpg", - "audio": "files/10_3191.mp3", - "audioMeaning": "files/10_3191_meaning.mp3", - "audioExample": "files/10_3191_example.mp3", - "textMeaning": "To infer something is to decide it is true based on other information one has.", - "textExample": "By the position of the sun in the sky, she inferred that it was noon.", - "transcription": "[infə́ːr]", - "__v": 0, - "textExampleTranslate": "По положению солнца на небе она сделала вывод, что это был полдень", - "textMeaningTranslate": "Вывести что-то - значит решить, что это правда, основываясь на другой информации", - "wordTranslate": "логический вывод" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0116" - }, - "group": 5, - "page": 9, - "word": "fleet", - "image": "files/10_3188.jpg", - "audio": "files/10_3188.mp3", - "audioMeaning": "files/10_3188_meaning.mp3", - "audioExample": "files/10_3188_example.mp3", - "textMeaning": "A feet is a group of ships.", - "textExample": "The feet of ships spent a few days at the dock.", - "transcription": "[fliːt]", - "__v": 0, - "textExampleTranslate": "Ноги кораблей провели на пристани несколько дней", - "textMeaningTranslate": "Ноги - это группа кораблей", - "wordTranslate": "флот" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0117" - }, - "group": 5, - "page": 9, - "word": "inflate", - "image": "files/10_3192.jpg", - "audio": "files/10_3192.mp3", - "audioMeaning": "files/10_3192_meaning.mp3", - "audioExample": "files/10_3192_example.mp3", - "textMeaning": "To infate something means to fill it up with air.", - "textExample": "I helped him infate the balloons.", - "transcription": "[infléit]", - "__v": 0, - "textExampleTranslate": "Я помог ему раздувать воздушные шары", - "textMeaningTranslate": "Раздувать что-то - значит наполнить его воздухом", - "wordTranslate": "надуть" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0118" - }, - "group": 5, - "page": 9, - "word": "innate", - "image": "files/10_3193.jpg", - "audio": "files/10_3193.mp3", - "audioMeaning": "files/10_3193_meaning.mp3", - "audioExample": "files/10_3193_example.mp3", - "textMeaning": "When something is innate, it is something that one is born with and was not learned.", - "textExample": "He had the innate desire to please his teachers.", - "transcription": "[inéit]", - "__v": 0, - "textExampleTranslate": "У него было врожденное желание угодить своим учителям", - "textMeaningTranslate": "Когда что-то является врожденным, это то, с чем человек родился и не был изучен", - "wordTranslate": "врожденный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0119" - }, - "group": 5, - "page": 9, - "word": "marble", - "image": "files/10_3194.jpg", - "audio": "files/10_3194.mp3", - "audioMeaning": "files/10_3194_meaning.mp3", - "audioExample": "files/10_3194_example.mp3", - "textMeaning": "Marble is a type of rock that feels cold and is smooth when cut.", - "textExample": "The large house had floors made of marble.", - "transcription": "[mάːrbl]", - "__v": 0, - "textExampleTranslate": "В большом доме были полы из мрамора", - "textMeaningTranslate": "Мрамор - это тип камня, который кажется холодным и гладким при резке", - "wordTranslate": "мрамор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b011a" - }, - "group": 5, - "page": 9, - "word": "mast", - "image": "files/10_3195.jpg", - "audio": "files/10_3195.mp3", - "audioMeaning": "files/10_3195_meaning.mp3", - "audioExample": "files/10_3195_example.mp3", - "textMeaning": "A mast is a long pole on a ship that holds the sail.", - "textExample": "The mast held both sails of the ship upright.", - "transcription": "[mæst]", - "__v": 0, - "textExampleTranslate": "Мачта держала оба паруса корабля в вертикальном положении", - "textMeaningTranslate": "Мачта - это длинный столб на корабле, который держит парус", - "wordTranslate": "тучный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b011b" - }, - "group": 5, - "page": 9, - "word": "nausea", - "image": "files/10_3196.jpg", - "audio": "files/10_3196.mp3", - "audioMeaning": "files/10_3196_meaning.mp3", - "audioExample": "files/10_3196_example.mp3", - "textMeaning": "Nausea is the feeling of being sick to your stomach.", - "textExample": "The doctor said the medicine would help get rid of her nausea.", - "transcription": "[nɔ́ːziə]", - "__v": 0, - "textExampleTranslate": "Доктор сказал, что лекарство поможет избавиться от ее тошноты", - "textMeaningTranslate": "Тошнота - это тошнота в желудке", - "wordTranslate": "тошнота" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b011c" - }, - "group": 5, - "page": 9, - "word": "naval", - "image": "files/10_3197.jpg", - "audio": "files/10_3197.mp3", - "audioMeaning": "files/10_3197_meaning.mp3", - "audioExample": "files/10_3197_example.mp3", - "textMeaning": "When something is naval, it relates to a country’s navy or military ships.", - "textExample": "The country sent all of its naval forces to protect them.", - "transcription": "[néivəl]", - "__v": 0, - "textExampleTranslate": "Страна послала все свои военно-морские силы, чтобы защитить их", - "textMeaningTranslate": "Когда что-то является военно-морским, это относится к флоту или военным кораблям страны", - "wordTranslate": "морской" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b011d" - }, - "group": 5, - "page": 9, - "word": "pouch", - "image": "files/10_3198.jpg", - "audio": "files/10_3198.mp3", - "audioMeaning": "files/10_3198_meaning.mp3", - "audioExample": "files/10_3198_example.mp3", - "textMeaning": "A pouch is a small, flexible bag that is usually made of soft material.", - "textExample": "I keep my money in a small pouch.", - "transcription": "[pautʃ]", - "__v": 0, - "textExampleTranslate": "Я храню свои деньги в маленьком мешочке", - "textMeaningTranslate": "Мешочек - это маленькая, гибкая сумка, которая обычно изготавливается из мягкого материала", - "wordTranslate": "мешочек" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b011e" - }, - "group": 5, - "page": 9, - "word": "saturated", - "image": "files/10_3199.jpg", - "audio": "files/10_3199.mp3", - "audioMeaning": "files/10_3199_meaning.mp3", - "audioExample": "files/10_3199_example.mp3", - "textMeaning": "If something is saturated, it is completely wet.", - "textExample": "Leigh’s hair became saturated in the rainstorm.", - "transcription": "[sǽʧərèitid]", - "__v": 0, - "textExampleTranslate": "Волосы Ли стали насыщенными дождем", - "textMeaningTranslate": "Если что-то насыщено, оно совершенно мокрое", - "wordTranslate": "насыщенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b011f" - }, - "group": 5, - "page": 10, - "word": "attorney", - "image": "files/11_3201.jpg", - "audio": "files/11_3201.mp3", - "audioMeaning": "files/11_3201_meaning.mp3", - "audioExample": "files/11_3201_example.mp3", - "textMeaning": "An attorney is one who gives others advice about the law.", - "textExample": "The attorney appeared in front of the judge for me.", - "transcription": "[ətə́ːrni:]", - "__v": 0, - "textExampleTranslate": "Адвокат предстал перед судьей для меня", - "textMeaningTranslate": "Адвокат - это тот, кто дает советы другим о законе", - "wordTranslate": "адвокат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0120" - }, - "group": 5, - "page": 9, - "word": "update", - "image": "files/10_3200.jpg", - "audio": "files/10_3200.mp3", - "audioMeaning": "files/10_3200_meaning.mp3", - "audioExample": "files/10_3200_example.mp3", - "textMeaning": "An update is an act of making something more modern or current.", - "textExample": "My phone is downloading a software update.", - "transcription": "[ʌpdéit]", - "__v": 0, - "textExampleTranslate": "Мой телефон загружает обновление программного обеспечения", - "textMeaningTranslate": "Обновление - это процесс создания чего-то более современного или актуального", - "wordTranslate": "обновить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0121" - }, - "group": 5, - "page": 10, - "word": "chronic", - "image": "files/11_3202.jpg", - "audio": "files/11_3202.mp3", - "audioMeaning": "files/11_3202_meaning.mp3", - "audioExample": "files/11_3202_example.mp3", - "textMeaning": "When something is chronic, it happens over and over again for a long time.", - "textExample": "He had chronic pain in his chest and needed to see a doctor.", - "transcription": "[krɑ́nik]", - "__v": 0, - "textExampleTranslate": "У него была хроническая боль в груди, и ему нужно было обратиться к врачу", - "textMeaningTranslate": "Когда что-то хроническое, это происходит снова и снова в течение длительного времени", - "wordTranslate": "хронический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0122" - }, - "group": 5, - "page": 10, - "word": "discipline", - "image": "files/11_3203.jpg", - "audio": "files/11_3203.mp3", - "audioMeaning": "files/11_3203_meaning.mp3", - "audioExample": "files/11_3203_example.mp3", - "textMeaning": "Discipline is training that helps people follow the rules.", - "textExample": "One of the teacher’s jobs is to teach her students discipline.", - "transcription": "[dísəplin]", - "__v": 0, - "textExampleTranslate": "Одна из задач учителя - научить учеников дисциплине", - "textMeaningTranslate": "Дисциплина - это тренировка, которая помогает людям следовать правилам", - "wordTranslate": "дисциплина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0123" - }, - "group": 5, - "page": 10, - "word": "donor", - "image": "files/11_3204.jpg", - "audio": "files/11_3204.mp3", - "audioMeaning": "files/11_3204_meaning.mp3", - "audioExample": "files/11_3204_example.mp3", - "textMeaning": "A donor is somebody who gives something to an organization.", - "textExample": "He was proud to be a blood donor.", - "transcription": "[dóunər]", - "__v": 0, - "textExampleTranslate": "Он был горд быть донором крови", - "textMeaningTranslate": "Донор - это тот, кто дает что-то организации", - "wordTranslate": "донор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0125" - }, - "group": 5, - "page": 10, - "word": "gossip", - "image": "files/11_3206.jpg", - "audio": "files/11_3206.mp3", - "audioMeaning": "files/11_3206_meaning.mp3", - "audioExample": "files/11_3206_example.mp3", - "textMeaning": "Gossip is information that might be untrue but is still discussed anyway.", - "textExample": "The friends exchanged gossip about the people they knew in school.", - "transcription": "[gɑ́sip]", - "__v": 0, - "textExampleTranslate": "Друзья обменялись сплетнями о людях, которых знали в школе", - "textMeaningTranslate": "Сплетни - это информация, которая может быть неверной, но все равно обсуждается", - "wordTranslate": "сплетни" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0127" - }, - "group": 5, - "page": 10, - "word": "graffiti", - "image": "files/11_3208.jpg", - "audio": "files/11_3208.mp3", - "audioMeaning": "files/11_3208_meaning.mp3", - "audioExample": "files/11_3208_example.mp3", - "textMeaning": "Graffiti is words or drawings in public places.", - "textExample": "The wall was covered with colorful graffiti.", - "transcription": "[grəfíːtiː]", - "__v": 0, - "textExampleTranslate": "Стена была покрыта разноцветными граффити", - "textMeaningTranslate": "Граффити - это слова или рисунки в общественных местах", - "wordTranslate": "граффити" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0126" - }, - "group": 5, - "page": 10, - "word": "graduate", - "image": "files/11_3207.jpg", - "audio": "files/11_3207.mp3", - "audioMeaning": "files/11_3207_meaning.mp3", - "audioExample": "files/11_3207_example.mp3", - "textMeaning": "To graduate from a school means to complete and pass all courses of study there.", - "textExample": "At the end of the spring, my friends and I will graduate from high school.", - "transcription": "[grǽʤuèit]", - "__v": 0, - "textExampleTranslate": "В конце весны мы с друзьями закончим среднюю школу", - "textMeaningTranslate": "Окончить школу - значит закончить и пройти все курсы обучения", - "wordTranslate": "выпускной" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0124" - }, - "group": 5, - "page": 10, - "word": "fellow", - "image": "files/11_3205.jpg", - "audio": "files/11_3205.mp3", - "audioMeaning": "files/11_3205_meaning.mp3", - "audioExample": "files/11_3205_example.mp3", - "textMeaning": "A fellow is someone who shares a job or quality with someone else.", - "textExample": "All of my fellow patients at the hospital have also complained about the food.", - "transcription": "[félou]", - "__v": 0, - "textExampleTranslate": "Все мои поддерживающие пациенты в больнице также жаловались на еду", - "textMeaningTranslate": "Парень - это тот, кто разделяет работу или качество с кем-то другим", - "wordTranslate": "молодец" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0128" - }, - "group": 5, - "page": 10, - "word": "guardian", - "image": "files/11_3209.jpg", - "audio": "files/11_3209.mp3", - "audioMeaning": "files/11_3209_meaning.mp3", - "audioExample": "files/11_3209_example.mp3", - "textMeaning": "A guardian is someone who protects somebody or something.", - "textExample": "The librarians are the guardians of the books.", - "transcription": "[gάːrdiən]", - "__v": 0, - "textExampleTranslate": "Библиотекари являются хранителями книг", - "textMeaningTranslate": "Опекун - это тот, кто защищает кого-то или что-то", - "wordTranslate": "опекун" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0129" - }, - "group": 5, - "page": 10, - "word": "implicate", - "image": "files/11_3210.jpg", - "audio": "files/11_3210.mp3", - "audioMeaning": "files/11_3210_meaning.mp3", - "audioExample": "files/11_3210_example.mp3", - "textMeaning": "To implicate someone is to show that they have done a crime or something bad.", - "textExample": "The man was implicated in the theft at the store.", - "transcription": "[ímplikèit]", - "__v": 0, - "textExampleTranslate": "Человек был замешан в краже в магазине", - "textMeaningTranslate": "Подразумевать кого-либо означает показать, что он совершил преступление или что-то плохое", - "wordTranslate": "имплицитный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b012c" - }, - "group": 5, - "page": 10, - "word": "sever", - "image": "files/11_3213.jpg", - "audio": "files/11_3213.mp3", - "audioMeaning": "files/11_3213_meaning.mp3", - "audioExample": "files/11_3213_example.mp3", - "textMeaning": "To sever something is to cut through it completely.", - "textExample": "He severed the string using scissors.", - "transcription": "[sévər]", - "__v": 0, - "textExampleTranslate": "Он перерезал нить, используя ножницы", - "textMeaningTranslate": "Разорвать что-то - значит прорезать это полностью", - "wordTranslate": "север" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b012a" - }, - "group": 5, - "page": 10, - "word": "kin", - "image": "files/11_3211.jpg", - "audio": "files/11_3211.mp3", - "audioMeaning": "files/11_3211_meaning.mp3", - "audioExample": "files/11_3211_example.mp3", - "textMeaning": "Kin is a person’s family and relatives.", - "textExample": "His kin were all farmers.", - "transcription": "[kin]", - "__v": 0, - "textExampleTranslate": "Все его родственники были фермерами", - "textMeaningTranslate": "Род - это семья и родственники человека", - "wordTranslate": "кин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b012b" - }, - "group": 5, - "page": 10, - "word": "referee", - "image": "files/11_3212.jpg", - "audio": "files/11_3212.mp3", - "audioMeaning": "files/11_3212_meaning.mp3", - "audioExample": "files/11_3212_example.mp3", - "textMeaning": "A referee is a person who makes sure that the rules are followed in sports.", - "textExample": "The soccer player didn’t agree with the referee.", - "transcription": "[rèfəríː]", - "__v": 0, - "textExampleTranslate": "Футболист не согласен с рефери", - "textMeaningTranslate": "Судья - это человек, который следит за соблюдением правил в спорте", - "wordTranslate": "судья" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b012d" - }, - "group": 5, - "page": 10, - "word": "shaft", - "image": "files/11_3214.jpg", - "audio": "files/11_3214.mp3", - "audioMeaning": "files/11_3214_meaning.mp3", - "audioExample": "files/11_3214_example.mp3", - "textMeaning": "A shaft is a handle of a tool or weapon.", - "textExample": "The golf club had a long wooden shaft that he held in his hands.", - "transcription": "[ʃæft]", - "__v": 0, - "textExampleTranslate": "У гольф-клуба был длинный деревянный стержень, который он держал в руках", - "textMeaningTranslate": "Вал - это рукоятка инструмента или оружия", - "wordTranslate": "вал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b012e" - }, - "group": 5, - "page": 10, - "word": "stab", - "image": "files/11_3215.jpg", - "audio": "files/11_3215.mp3", - "audioMeaning": "files/11_3215_meaning.mp3", - "audioExample": "files/11_3215_example.mp3", - "textMeaning": "To stab means to cut with the end of a sharp object like a knife.", - "textExample": "He stabbed the fork into the potato and passed it to his daughter.", - "transcription": "[stæb]", - "__v": 0, - "textExampleTranslate": "Он вонзил вилку в картошку и передал ее дочери", - "textMeaningTranslate": "Нанести удар означает порезать кончиком острого предмета, как нож", - "wordTranslate": "удар" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0130" - }, - "group": 5, - "page": 10, - "word": "suspicion", - "image": "files/11_3217.jpg", - "audio": "files/11_3217.mp3", - "audioMeaning": "files/11_3217_meaning.mp3", - "audioExample": "files/11_3217_example.mp3", - "textMeaning": "A suspicion is a feeling that something is possible or true in a crime.", - "textExample": "The police had a suspicion that the driver had stolen the purse.", - "transcription": "[səspíʃən]", - "__v": 0, - "textExampleTranslate": "У полиции было подозрение, что водитель украл кошелек", - "textMeaningTranslate": "Подозрение - это чувство, что что-то возможно или правда в преступлении", - "wordTranslate": "подозрение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0131" - }, - "group": 5, - "page": 10, - "word": "terminate", - "image": "files/11_3218.jpg", - "audio": "files/11_3218.mp3", - "audioMeaning": "files/11_3218_meaning.mp3", - "audioExample": "files/11_3218_example.mp3", - "textMeaning": "To terminate something means to stop or end it.", - "textExample": "The trip was terminated after the car broke down.", - "transcription": "[tə́ːrmənèit]", - "__v": 0, - "textExampleTranslate": "Поездка была прекращена после поломки машины", - "textMeaningTranslate": "Завершить что-либо означает остановить или прекратить это", - "wordTranslate": "прекратить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b012f" - }, - "group": 5, - "page": 10, - "word": "stimulus", - "image": "files/11_3216.jpg", - "audio": "files/11_3216.mp3", - "audioMeaning": "files/11_3216_meaning.mp3", - "audioExample": "files/11_3216_example.mp3", - "textMeaning": "A stimulus is something that causes growth or activity.", - "textExample": "Having a lot of money is a stimulus for people to buy more things.", - "transcription": "[stímjələs]", - "__v": 0, - "textExampleTranslate": "Наличие большого количества денег является стимулом для людей покупать больше вещей", - "textMeaningTranslate": "Стимул - это то, что вызывает рост или активность", - "wordTranslate": "стимул" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0132" - }, - "group": 5, - "page": 10, - "word": "theme", - "image": "files/11_3219.jpg", - "audio": "files/11_3219.mp3", - "audioMeaning": "files/11_3219_meaning.mp3", - "audioExample": "files/11_3219_example.mp3", - "textMeaning": "A theme is the main subject of a book, movie, or painting.", - "textExample": "The students discussed the book’s theme in class.", - "transcription": "[θiːm]", - "__v": 0, - "textExampleTranslate": "Студенты обсуждали тему книги в классе", - "textMeaningTranslate": "Тема является основным предметом книги, фильма или картины", - "wordTranslate": "тема" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0133" - }, - "group": 5, - "page": 10, - "word": "tuition", - "image": "files/11_3220.jpg", - "audio": "files/11_3220.mp3", - "audioMeaning": "files/11_3220_meaning.mp3", - "audioExample": "files/11_3220_example.mp3", - "textMeaning": "Tuition is the amount of money paid to go to a school", - "textExample": ".University tuitions have increased by 50 percent in the last five years.", - "transcription": "[tuːíʃən]", - "__v": 0, - "textExampleTranslate": ". Стоимость обучения в университете увеличилась на 50 процентов за последние пять лет", - "textMeaningTranslate": "Плата за обучение - это сумма денег, уплачиваемая за обучение в школе", - "wordTranslate": "обучение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0135" - }, - "group": 5, - "page": 11, - "word": "amnesty", - "image": "files/12_3222.jpg", - "audio": "files/12_3222.mp3", - "audioMeaning": "files/12_3222_meaning.mp3", - "audioExample": "files/12_3222_example.mp3", - "textMeaning": "Amnesty is a pardon given to prisoners of war.", - "textExample": "She was denied amnesty for her involvement in the war.", - "transcription": "[ǽmnəsti:]", - "__v": 0, - "textExampleTranslate": "Ей было отказано в амнистии за участие в войне", - "textMeaningTranslate": "Амнистия - помилование, данное военнопленным", - "wordTranslate": "амнистия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0134" - }, - "group": 5, - "page": 11, - "word": "aggressive", - "image": "files/12_3221.jpg", - "audio": "files/12_3221.mp3", - "audioMeaning": "files/12_3221_meaning.mp3", - "audioExample": "files/12_3221_example.mp3", - "textMeaning": "If someone is aggressive, then they constantly want to fight or argue.", - "textExample": "Nobody liked to play games with him because he was always too aggressive.", - "transcription": "[əgrésiv]", - "__v": 0, - "textExampleTranslate": "Никто не любил играть с ним в игры, потому что он всегда был слишком агрессивен", - "textMeaningTranslate": "Если кто-то агрессивен, то он постоянно хочет драться или спорить", - "wordTranslate": "агрессивный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0136" - }, - "group": 5, - "page": 11, - "word": "arena", - "image": "files/12_3223.jpg", - "audio": "files/12_3223.mp3", - "audioMeaning": "files/12_3223_meaning.mp3", - "audioExample": "files/12_3223_example.mp3", - "textMeaning": "An arena is a building where people can watch sports and concerts.", - "textExample": "The new arena was all set to hold the championship match.", - "transcription": "[əríːnə]", - "__v": 0, - "textExampleTranslate": "Новая арена была готова для проведения матча чемпионата", - "textMeaningTranslate": "Арена - это здание, где люди могут смотреть спортивные состязания и концерты", - "wordTranslate": "арена" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0137" - }, - "group": 5, - "page": 11, - "word": "auditorium", - "image": "files/12_3224.jpg", - "audio": "files/12_3224.mp3", - "audioMeaning": "files/12_3224_meaning.mp3", - "audioExample": "files/12_3224_example.mp3", - "textMeaning": "An auditorium is a large building used for public events.", - "textExample": "People have gathered at the school auditorium to watch the play.", - "transcription": "[ɔ̀ːditɔ́ːriəm]", - "__v": 0, - "textExampleTranslate": "Люди собрались в школьном зале, чтобы посмотреть спектакль", - "textMeaningTranslate": "Зрительный зал - это большое здание, используемое для общественных мероприятий", - "wordTranslate": "актовый зал" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0138" - }, - "group": 5, - "page": 11, - "word": "captive", - "image": "files/12_3225.jpg", - "audio": "files/12_3225.mp3", - "audioMeaning": "files/12_3225_meaning.mp3", - "audioExample": "files/12_3225_example.mp3", - "textMeaning": "A captive is a prisoner.", - "textExample": "The guards told the captive that there was no way he could escape the prison.", - "transcription": "[kǽptiv]", - "__v": 0, - "textExampleTranslate": "Охранники сказали пленнику, что он никак не сможет избежать тюрьмы", - "textMeaningTranslate": "Пленник - это заключенный", - "wordTranslate": "пленник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0139" - }, - "group": 5, - "page": 11, - "word": "combat", - "image": "files/12_3226.jpg", - "audio": "files/12_3226.mp3", - "audioMeaning": "files/12_3226_meaning.mp3", - "audioExample": "files/12_3226_example.mp3", - "textMeaning": "Combat is fighting between two people or groups.", - "textExample": "The two warriors were locked in combat.", - "transcription": "[kɑ́mbæt]", - "__v": 0, - "textExampleTranslate": "Два воина были заперты в бою", - "textMeaningTranslate": "Бой - это борьба между двумя людьми или группами", - "wordTranslate": "боевой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b013b" - }, - "group": 5, - "page": 11, - "word": "compound", - "image": "files/12_3228.jpg", - "audio": "files/12_3228.mp3", - "audioMeaning": "files/12_3228_meaning.mp3", - "audioExample": "files/12_3228_example.mp3", - "textMeaning": "A compound is an enclosed area such as a prison or factory.", - "textExample": "The workers waited outside the compound for the gates of the factory to open.", - "transcription": "[kɑ́mpaund]", - "__v": 0, - "textExampleTranslate": "Рабочие ждали снаружи комплекса, пока не откроются ворота фабрики", - "textMeaningTranslate": "Соединение - это закрытая территория, такая как тюрьма или фабрика", - "wordTranslate": "соединение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b013a" - }, - "group": 5, - "page": 11, - "word": "commonplace", - "image": "files/12_3227.jpg", - "audio": "files/12_3227.mp3", - "audioMeaning": "files/12_3227_meaning.mp3", - "audioExample": "files/12_3227_example.mp3", - "textMeaning": "If something is commonplace, then it is ordinary.", - "textExample": "There is nothing commonplace about the way Morris dresses.", - "transcription": "[kɑ́mənplèis]", - "__v": 0, - "textExampleTranslate": "Нет ничего общего в том, как Моррис одевается", - "textMeaningTranslate": "Если что-то обычное, то обычное", - "wordTranslate": "обычное дело" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b013c" - }, - "group": 5, - "page": 11, - "word": "corps", - "image": "files/12_3229.jpg", - "audio": "files/12_3229.mp3", - "audioMeaning": "files/12_3229_meaning.mp3", - "audioExample": "files/12_3229_example.mp3", - "textMeaning": "A corps is a division of a military force.", - "textExample": "The army had a corps of archers who trained apart from the regular soldiers.", - "transcription": "[kɔːr]", - "__v": 0, - "textExampleTranslate": "В армии был корпус лучников, которые тренировались отдельно от обычных солдат", - "textMeaningTranslate": "Корпус - это подразделение военной силы", - "wordTranslate": "корпус" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b013d" - }, - "group": 5, - "page": 11, - "word": "distract", - "image": "files/12_3230.jpg", - "audio": "files/12_3230.mp3", - "audioMeaning": "files/12_3230_meaning.mp3", - "audioExample": "files/12_3230_example.mp3", - "textMeaning": "To distract someone means to stop them from concentrating on something.", - "textExample": "The phone call distracted him so much that he forgot all about his homework.", - "transcription": "[distrǽkt]", - "__v": 0, - "textExampleTranslate": "Телефонный звонок настолько отвлек его, что он забыл все о домашней работе", - "textMeaningTranslate": "Отвлекать кого-то - значит помешать ему сосредоточиться на чем-то", - "wordTranslate": "отвлекают" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b013e" - }, - "group": 5, - "page": 11, - "word": "dumb", - "image": "files/12_3231.jpg", - "audio": "files/12_3231.mp3", - "audioMeaning": "files/12_3231_meaning.mp3", - "audioExample": "files/12_3231_example.mp3", - "textMeaning": "If someone is dumb, they are unable to speak.", - "textExample": "She did not share the secret. She remained as silent as if she were dumb.", - "transcription": "[dʌm]", - "__v": 0, - "textExampleTranslate": "Она не делилась секретом. Она молчала так, словно была немой", - "textMeaningTranslate": "Если кто-то тупой, он не может говорить", - "wordTranslate": "тупой" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b013f" - }, - "group": 5, - "page": 11, - "word": "foe", - "image": "files/12_3232.jpg", - "audio": "files/12_3232.mp3", - "audioMeaning": "files/12_3232_meaning.mp3", - "audioExample": "files/12_3232_example.mp3", - "textMeaning": "A foe is an enemy or opponent.", - "textExample": "It was hard to believe that anyone could be his foe.", - "transcription": "[fou]", - "__v": 0, - "textExampleTranslate": "Трудно было поверить, что кто-то может быть его врагом", - "textMeaningTranslate": "Враг - враг или противник", - "wordTranslate": "враг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0140" - }, - "group": 5, - "page": 11, - "word": "hack", - "image": "files/12_3233.jpg", - "audio": "files/12_3233.mp3", - "audioMeaning": "files/12_3233_meaning.mp3", - "audioExample": "files/12_3233_example.mp3", - "textMeaning": "To hack something means to cut it into uneven pieces.", - "textExample": "My uncle used the ax to hack the tree into many logs.", - "transcription": "[hæk]", - "__v": 0, - "textExampleTranslate": "Мой дядя использовал топор, чтобы взломать дерево во многие бревна", - "textMeaningTranslate": "Взломать что-то значит разрезать его на неровные части", - "wordTranslate": "взломать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0141" - }, - "group": 5, - "page": 11, - "word": "meditate", - "image": "files/12_3234.jpg", - "audio": "files/12_3234.mp3", - "audioMeaning": "files/12_3234_meaning.mp3", - "audioExample": "files/12_3234_example.mp3", - "textMeaning": "To meditate means to focus or think deeply in silence.", - "textExample": "She liked to meditate for several hours each day.", - "transcription": "[médətèit]", - "__v": 0, - "textExampleTranslate": "Ей нравилось медитировать по несколько часов каждый день", - "textMeaningTranslate": "Медитировать означает сосредоточиться или думать глубоко в тишине", - "wordTranslate": "медитировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0142" - }, - "group": 5, - "page": 11, - "word": "nick", - "image": "files/12_3235.jpg", - "audio": "files/12_3235.mp3", - "audioMeaning": "files/12_3235_meaning.mp3", - "audioExample": "files/12_3235_example.mp3", - "textMeaning": "To nick something or someone means to cut them slightly with a sharp object.", - "textExample": "While cutting the carrots, the cook nicked his finger with the edge of his knife.", - "transcription": "[nik]", - "__v": 0, - "textExampleTranslate": "Нарезая морковь, повар порезал палец ножом", - "textMeaningTranslate": "Отрезать что-то или кого-то означает слегка порезать их острым предметом", - "wordTranslate": "ник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0143" - }, - "group": 5, - "page": 11, - "word": "provoke", - "image": "files/12_3236.jpg", - "audio": "files/12_3236.mp3", - "audioMeaning": "files/12_3236_meaning.mp3", - "audioExample": "files/12_3236_example.mp3", - "textMeaning": "To provoke someone means to annoy them on purpose to cause violence.", - "textExample": "The older boy provoked Paul by calling him mean names.", - "transcription": "[prəvóuk]", - "__v": 0, - "textExampleTranslate": "Старший мальчик спровоцировал Пола, назвав его подлыми именами", - "textMeaningTranslate": "Провоцировать кого-либо - значит раздражать его с целью вызвать насилие", - "wordTranslate": "спровоцировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0144" - }, - "group": 5, - "page": 11, - "word": "realm", - "image": "files/12_3237.jpg", - "audio": "files/12_3237.mp3", - "audioMeaning": "files/12_3237_meaning.mp3", - "audioExample": "files/12_3237_example.mp3", - "textMeaning": "A realm is any area of activity or interest.", - "textExample": "He was not very active in the realm of business.", - "transcription": "[relm]", - "__v": 0, - "textExampleTranslate": "Он был не очень активен в сфере бизнеса", - "textMeaningTranslate": "Царство - это любая сфера деятельности или интересов", - "wordTranslate": "царство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0145" - }, - "group": 5, - "page": 11, - "word": "reign", - "image": "files/12_3238.jpg", - "audio": "files/12_3238.mp3", - "audioMeaning": "files/12_3238_meaning.mp3", - "audioExample": "files/12_3238_example.mp3", - "textMeaning": "A reign is the period of time in which a ruler rules.", - "textExample": "The emperor’s reign lasted for only two years.", - "transcription": "[rein]", - "__v": 0, - "textExampleTranslate": "Царствование императора длилось всего два года", - "textMeaningTranslate": "Царствование - это период времени, в который правит правитель", - "wordTranslate": "царствовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0146" - }, - "group": 5, - "page": 11, - "word": "rust", - "image": "files/12_3239.jpg", - "audio": "files/12_3239.mp3", - "audioMeaning": "files/12_3239_meaning.mp3", - "audioExample": "files/12_3239_example.mp3", - "textMeaning": "Rust is a red and brown coating on iron objects caused by water and air.", - "textExample": "The old metal gate would not swing because the hinges were covered in rust.", - "transcription": "[rʌst]", - "__v": 0, - "textExampleTranslate": "Старые металлические ворота не качаются, потому что петли были покрыты ржавчиной", - "textMeaningTranslate": "Ржавчина - это красно-коричневое покрытие железных предметов, вызванное водой и воздухом", - "wordTranslate": "ржавчина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0147" - }, - "group": 5, - "page": 11, - "word": "sacred", - "image": "files/12_3240.jpg", - "audio": "files/12_3240.mp3", - "audioMeaning": "files/12_3240_meaning.mp3", - "audioExample": "files/12_3240_example.mp3", - "textMeaning": "If something is sacred, then it is worshipped and respected.", - "textExample": "One religion in India will not harm cows because it believes that they are sacred.", - "transcription": "[séikrid]", - "__v": 0, - "textExampleTranslate": "Одна религия в Индии не причинит вреда коровам, потому что считает, что они священны", - "textMeaningTranslate": "Если что-то священно, то этому поклоняются и уважают", - "wordTranslate": "священный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0148" - }, - "group": 5, - "page": 12, - "word": "aesthetic", - "image": "files/13_3241.jpg", - "audio": "files/13_3241.mp3", - "audioMeaning": "files/13_3241_meaning.mp3", - "audioExample": "files/13_3241_example.mp3", - "textMeaning": "If something is aesthetic, then it is concerned with a love of beauty.", - "textExample": "The dresses were noteworthy for their aesthetic design.", - "transcription": "[esθétik]", - "__v": 0, - "textExampleTranslate": "Платья были примечательны своим эстетическим дизайном", - "textMeaningTranslate": "Если что-то эстетично, то это связано с любовью к красоте", - "wordTranslate": "эстетический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0149" - }, - "group": 5, - "page": 12, - "word": "arrogant", - "image": "files/13_3242.jpg", - "audio": "files/13_3242.mp3", - "audioMeaning": "files/13_3242_meaning.mp3", - "audioExample": "files/13_3242_example.mp3", - "textMeaning": "If someone is arrogant, they think that they are more important than others.", - "textExample": "He is very arrogant. Even though he’s not the boss, he tells everyone what to do.", - "transcription": "[ǽrəgənt]", - "__v": 0, - "textExampleTranslate": "Он очень высокомерен. Несмотря на то, что он не начальник, он говорит всем, что делать", - "textMeaningTranslate": "Если кто-то высокомерен, они думают, что они важнее других", - "wordTranslate": "высокомерный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b014a" - }, - "group": 5, - "page": 12, - "word": "bias", - "image": "files/13_3243.jpg", - "audio": "files/13_3243.mp3", - "audioMeaning": "files/13_3243_meaning.mp3", - "audioExample": "files/13_3243_example.mp3", - "textMeaning": "A bias is a person’s likelihood to like one thing more than another thing.", - "textExample": "The mothers had a natural bias for their own child’s picture.", - "transcription": "[báiəs]", - "__v": 0, - "textExampleTranslate": "Матери имели естественный уклон для картины своего ребенка", - "textMeaningTranslate": "Предвзятость - это вероятность того, что человек любит одну вещь больше, чем другую", - "wordTranslate": "смещение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b014b" - }, - "group": 5, - "page": 12, - "word": "canyon", - "image": "files/13_3244.jpg", - "audio": "files/13_3244.mp3", - "audioMeaning": "files/13_3244_meaning.mp3", - "audioExample": "files/13_3244_example.mp3", - "textMeaning": "A canyon is a narrow valley with steep walls through which a river often flows.", - "textExample": "The canyon was so deep that the ground inside was covered in shadow.", - "transcription": "[kǽnjən]", - "__v": 0, - "textExampleTranslate": "Каньон был настолько глубок, что земля внутри была покрыта тенью", - "textMeaningTranslate": "Каньон - это узкая долина с крутыми стенами, через которые часто протекает река", - "wordTranslate": "каньон" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b014c" - }, - "group": 5, - "page": 12, - "word": "creek", - "image": "files/13_3245.jpg", - "audio": "files/13_3245.mp3", - "audioMeaning": "files/13_3245_meaning.mp3", - "audioExample": "files/13_3245_example.mp3", - "textMeaning": "A creek is a stream or small river.", - "textExample": "Only small fish lived in the shallow waters of the creek.", - "transcription": "[kriːk]", - "__v": 0, - "textExampleTranslate": "На мелководье ручья жили только мелкие рыбки", - "textMeaningTranslate": "Ручей - это ручей или речка", - "wordTranslate": "ручей" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b014d" - }, - "group": 5, - "page": 12, - "word": "drill", - "image": "files/13_3246.jpg", - "audio": "files/13_3246.mp3", - "audioMeaning": "files/13_3246_meaning.mp3", - "audioExample": "files/13_3246_example.mp3", - "textMeaning": "A drill is a tool with a point that spins in order to make a hole.", - "textExample": "The carpenter used the drill to make several holes in the wood.", - "transcription": "[dril]", - "__v": 0, - "textExampleTranslate": "Плотник использовал сверло, чтобы сделать несколько отверстий в дереве", - "textMeaningTranslate": "Дрель - это инструмент с острием, которое вращается, чтобы сделать отверстие", - "wordTranslate": "дрель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b014e" - }, - "group": 5, - "page": 12, - "word": "executive", - "image": "files/13_3247.jpg", - "audio": "files/13_3247.mp3", - "audioMeaning": "files/13_3247_meaning.mp3", - "audioExample": "files/13_3247_example.mp3", - "textMeaning": "An executive is the top manager of a business.", - "textExample": "After twenty years at the company, he finally became the executive.", - "transcription": "[igzékjutiv]", - "__v": 0, - "textExampleTranslate": "После двадцати лет работы в компании он, наконец, стал руководителем", - "textMeaningTranslate": "Руководитель - топ-менеджер бизнеса", - "wordTranslate": "должностное лицо" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b014f" - }, - "group": 5, - "page": 12, - "word": "fatigue", - "image": "files/13_3248.jpg", - "audio": "files/13_3248.mp3", - "audioMeaning": "files/13_3248_meaning.mp3", - "audioExample": "files/13_3248_example.mp3", - "textMeaning": "Fatigue is a feeling of extreme tiredness.", - "textExample": "After three days with little sleep, she was feeling a lot of fatigue.", - "transcription": "[fətíːg]", - "__v": 0, - "textExampleTranslate": "После трех дней без сна она почувствовала сильную усталость", - "textMeaningTranslate": "Усталость - это чувство крайней усталости", - "wordTranslate": "усталость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0150" - }, - "group": 5, - "page": 12, - "word": "incline", - "image": "files/13_3249.jpg", - "audio": "files/13_3249.mp3", - "audioMeaning": "files/13_3249_meaning.mp3", - "audioExample": "files/13_3249_example.mp3", - "textMeaning": "An incline is a sharp rise in something, especially a hill or mountain.", - "textExample": "This mountain has one of the steepest inclines in the world.", - "transcription": "[inkláin]", - "__v": 0, - "textExampleTranslate": "Эта гора имеет один из самых крутых склонов в мире", - "textMeaningTranslate": "Наклон - это резкий подъем чего-то, особенно холма или горы", - "wordTranslate": "наклонный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0151" - }, - "group": 5, - "page": 12, - "word": "nasty", - "image": "files/13_3250.jpg", - "audio": "files/13_3250.mp3", - "audioMeaning": "files/13_3250_meaning.mp3", - "audioExample": "files/13_3250_example.mp3", - "textMeaning": "If something is nasty, then it is not nice or pleasant.", - "textExample": "The rotten apple left a nasty taste inside her mouth.", - "transcription": "[nǽsti:]", - "__v": 0, - "textExampleTranslate": "Гнилое яблоко оставило неприятный вкус во рту", - "textMeaningTranslate": "Если что-то противно, то это не приятно и не приятно", - "wordTranslate": "противный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0152" - }, - "group": 5, - "page": 12, - "word": "perceive", - "image": "files/13_3251.jpg", - "audio": "files/13_3251.mp3", - "audioMeaning": "files/13_3251_meaning.mp3", - "audioExample": "files/13_3251_example.mp3", - "textMeaning": "To perceive something means to be aware of it.", - "textExample": "He was talking loudly, so he did not perceive that the music had stopped.", - "transcription": "[pərsíːv]", - "__v": 0, - "textExampleTranslate": "Он говорил громко, поэтому он не чувствовал, что музыка прекратилась", - "textMeaningTranslate": "Воспринимать что-то значит осознавать это", - "wordTranslate": "воспринимать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0153" - }, - "group": 5, - "page": 12, - "word": "primate", - "image": "files/13_3252.jpg", - "audio": "files/13_3252.mp3", - "audioMeaning": "files/13_3252_meaning.mp3", - "audioExample": "files/13_3252_example.mp3", - "textMeaning": "A primate is a type of mammal that includes monkeys, apes, and humans.", - "textExample": "Primates use their hands for such tasks as swinging from branches.", - "transcription": "[práimeit]", - "__v": 0, - "textExampleTranslate": "Приматы используют свои руки для таких задач, как качание с веток", - "textMeaningTranslate": "Примат - это тип млекопитающего, который включает обезьян, обезьян и людей", - "wordTranslate": "примат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0154" - }, - "group": 5, - "page": 12, - "word": "primitive", - "image": "files/13_3253.jpg", - "audio": "files/13_3253.mp3", - "audioMeaning": "files/13_3253_meaning.mp3", - "audioExample": "files/13_3253_example.mp3", - "textMeaning": "If something is primitive, then it is simple, basic, and not very developed.", - "textExample": "The computers of the 1980s are primitive compared to those of today.", - "transcription": "[prímətiv]", - "__v": 0, - "textExampleTranslate": "Компьютеры 1980-х годов примитивны по сравнению с современными", - "textMeaningTranslate": "Если что-то примитивное, то оно простое, базовое и не очень развитое", - "wordTranslate": "примитивный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0155" - }, - "group": 5, - "page": 12, - "word": "stereotype", - "image": "files/13_3254.jpg", - "audio": "files/13_3254.mp3", - "audioMeaning": "files/13_3254_meaning.mp3", - "audioExample": "files/13_3254_example.mp3", - "textMeaning": "A stereotype is a general but often incorrect idea about a person or thing.", - "textExample": "There’s a stereotype that pigs are dirty animals. But they are rather clean.", - "transcription": "[stériətàip]", - "__v": 0, - "textExampleTranslate": "Существует стереотип, что свиньи - грязные животные. Но они довольно чистые", - "textMeaningTranslate": "Стереотип - это общее, но часто неверное представление о человеке или вещи", - "wordTranslate": "стереотип" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0156" - }, - "group": 5, - "page": 12, - "word": "sticky", - "image": "files/13_3255.jpg", - "audio": "files/13_3255.mp3", - "audioMeaning": "files/13_3255_meaning.mp3", - "audioExample": "files/13_3255_example.mp3", - "textMeaning": "If something is sticky, then it is covered with a substance that things stick to.", - "textExample": "Place the sticky part of the tape against the paper, so it will cling to the wall.", - "transcription": "[stíki:]", - "__v": 0, - "textExampleTranslate": "Поместите липкую часть ленты на бумагу, чтобы она цеплялась за стену", - "textMeaningTranslate": "Если что-то липкое, то оно покрыто веществом, к которому прилипают вещи", - "wordTranslate": "липкие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0157" - }, - "group": 5, - "page": 12, - "word": "termite", - "image": "files/13_3256.jpg", - "audio": "files/13_3256.mp3", - "audioMeaning": "files/13_3256_meaning.mp3", - "audioExample": "files/13_3256_example.mp3", - "textMeaning": "A termite is an insect that lives in groups and feeds on wood.", - "textExample": "The wood we found was full of termites.", - "transcription": "[tə́ːrmait]", - "__v": 0, - "textExampleTranslate": "Лес, который мы нашли, был полон термитов", - "textMeaningTranslate": "Термит - это насекомое, которое живет группами и питается деревом", - "wordTranslate": "термит" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0158" - }, - "group": 5, - "page": 12, - "word": "thereby", - "image": "files/13_3257.jpg", - "audio": "files/13_3257.mp3", - "audioMeaning": "files/13_3257_meaning.mp3", - "audioExample": "files/13_3257_example.mp3", - "textMeaning": "If we say that thereby something happens, we mean it is a result of something else.", - "textExample": "He didn’t score a goal, thereby ending his chance at setting a record.", - "transcription": "[ðεərbái]", - "__v": 0, - "textExampleTranslate": "Он не забил гол, тем самым упустив свой шанс установить рекорд", - "textMeaningTranslate": "Если мы говорим, что таким образом что-то происходит, мы имеем в виду, что это результат чего-то другого", - "wordTranslate": "тем самым" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0159" - }, - "group": 5, - "page": 12, - "word": "trail", - "image": "files/13_3258.jpg", - "audio": "files/13_3258.mp3", - "audioMeaning": "files/13_3258_meaning.mp3", - "audioExample": "files/13_3258_example.mp3", - "textMeaning": "A trail is a path for travelling by foot through a wild area.", - "textExample": "A narrow trail cut through the field and over the hills.", - "transcription": "[treil]", - "__v": 0, - "textExampleTranslate": "Узкая тропа, прорезанная по полю и по холмам", - "textMeaningTranslate": "Тропа - это тропа для пеших прогулок по дикой местности", - "wordTranslate": "след" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b015a" - }, - "group": 5, - "page": 12, - "word": "twig", - "image": "files/13_3259.jpg", - "audio": "files/13_3259.mp3", - "audioMeaning": "files/13_3259_meaning.mp3", - "audioExample": "files/13_3259_example.mp3", - "textMeaning": "A twig is a short and thin branch from a tree or bush.", - "textExample": "They started the fire with a handful of dry twigs.", - "transcription": "[twig]", - "__v": 0, - "textExampleTranslate": "Они начали огонь с горстки сухих веток", - "textMeaningTranslate": "Веточка - это короткая и тонкая ветка от дерева или куста", - "wordTranslate": "прут" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b015b" - }, - "group": 5, - "page": 12, - "word": "welfare", - "image": "files/13_3260.jpg", - "audio": "files/13_3260.mp3", - "audioMeaning": "files/13_3260_meaning.mp3", - "audioExample": "files/13_3260_example.mp3", - "textMeaning": "Welfare is the health and happiness of a person or group.", - "textExample": "Having plenty of clean water is necessary for the welfare of people.", - "transcription": "[wélfεər]", - "__v": 0, - "textExampleTranslate": "Наличие большого количества чистой воды необходимо для благополучия людей", - "textMeaningTranslate": "Благосостояние - это здоровье и счастье человека или группы", - "wordTranslate": "благосостояние" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b015c" - }, - "group": 5, - "page": 13, - "word": "behalf", - "image": "files/14_3261.jpg", - "audio": "files/14_3261.mp3", - "audioMeaning": "files/14_3261_meaning.mp3", - "audioExample": "files/14_3261_example.mp3", - "textMeaning": "If something is done on one’s behalf, it is done for that person by another.", - "textExample": "The original speaker was sick, so his son gave the speech on his behalf.", - "transcription": "[bihǽf]", - "__v": 0, - "textExampleTranslate": "Первоначальный оратор был болен, поэтому его сын произнес речь от его имени", - "textMeaningTranslate": "Если что-то делается от имени, это делается для этого человека другим", - "wordTranslate": "от имени" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b015d" - }, - "group": 5, - "page": 13, - "word": "flap", - "image": "files/14_3262.jpg", - "audio": "files/14_3262.mp3", - "audioMeaning": "files/14_3262_meaning.mp3", - "audioExample": "files/14_3262_example.mp3", - "textMeaning": "To flap means to move quickly up and down or from side to side.", - "textExample": "The tiny bird fapped its wings and ate from the flowers.", - "transcription": "[flæp]", - "__v": 0, - "textExampleTranslate": "Крошечная птичка взмахнула крыльями и ела из цветов", - "textMeaningTranslate": "Хлопать - значит быстро двигаться вверх и вниз или из стороны в сторону", - "wordTranslate": "лоскут" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b015e" - }, - "group": 5, - "page": 13, - "word": "glacier", - "image": "files/14_3263.jpg", - "audio": "files/14_3263.mp3", - "audioMeaning": "files/14_3263_meaning.mp3", - "audioExample": "files/14_3263_example.mp3", - "textMeaning": "A glacier is a large piece of ice that moves very slowly.", - "textExample": "The North Pole is covered by a huge glacier.", - "transcription": "[gléiʃər]", - "__v": 0, - "textExampleTranslate": "Северный полюс покрыт огромным ледником", - "textMeaningTranslate": "Ледник - это большой кусок льда, который движется очень медленно", - "wordTranslate": "ледник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b015f" - }, - "group": 5, - "page": 13, - "word": "globe", - "image": "files/14_3264.jpg", - "audio": "files/14_3264.mp3", - "audioMeaning": "files/14_3264_meaning.mp3", - "audioExample": "files/14_3264_example.mp3", - "textMeaning": "The globe refers to the Earth.", - "textExample": "Water covers most of the globe.", - "transcription": "[gloub]", - "__v": 0, - "textExampleTranslate": "Вода покрывает большую часть земного шара", - "textMeaningTranslate": "Глобус относится к Земле", - "wordTranslate": "глобус" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0160" - }, - "group": 5, - "page": 13, - "word": "horizontal", - "image": "files/14_3265.jpg", - "audio": "files/14_3265.mp3", - "audioMeaning": "files/14_3265_meaning.mp3", - "audioExample": "files/14_3265_example.mp3", - "textMeaning": "When something is horizontal, it is fat and level with the ground.", - "textExample": "The Russian fag has three horizontal stripes of white, blue, and red.", - "transcription": "[hɔ̀ːrɵzɑ́ntl]", - "__v": 0, - "textExampleTranslate": "Русский пидор имеет три горизонтальные полосы белого, синего и красного", - "textMeaningTranslate": "Когда что-то горизонтально, оно толстое и ровное на земле", - "wordTranslate": "горизонтальный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0161" - }, - "group": 5, - "page": 13, - "word": "hum", - "image": "files/14_3266.jpg", - "audio": "files/14_3266.mp3", - "audioMeaning": "files/14_3266_meaning.mp3", - "audioExample": "files/14_3266_example.mp3", - "textMeaning": "To hum means to make a low, continuous noise.", - "textExample": "The man hummed his favorite song.", - "transcription": "[hʌm]", - "__v": 0, - "textExampleTranslate": "Человек напевал свою любимую песню", - "textMeaningTranslate": "Гудеть - значит издавать тихий, непрерывный шум", - "wordTranslate": "гул" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0162" - }, - "group": 5, - "page": 13, - "word": "inventory", - "image": "files/14_3267.jpg", - "audio": "files/14_3267.mp3", - "audioMeaning": "files/14_3267_meaning.mp3", - "audioExample": "files/14_3267_example.mp3", - "textMeaning": "An inventory is a supply of something.", - "textExample": "Gwen was checking the inventory to make sure we had what we needed.", - "transcription": "[ínvəntɔ̀ːri:]", - "__v": 0, - "textExampleTranslate": "Гвен проверяла инвентарь, чтобы убедиться, что у нас есть то, что нам нужно", - "textMeaningTranslate": "Инвентарь - это запас чего-то", - "wordTranslate": "инвентаризация" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0163" - }, - "group": 5, - "page": 13, - "word": "inward", - "image": "files/14_3268.jpg", - "audio": "files/14_3268.mp3", - "audioMeaning": "files/14_3268_meaning.mp3", - "audioExample": "files/14_3268_example.mp3", - "textMeaning": "If a thought or feeling is inward, it is not expressed or shown to others.", - "textExample": "She had an inward feeling of guilt when she lied to her mother.", - "transcription": "[ínwərd]", - "__v": 0, - "textExampleTranslate": "У нее было внутреннее чувство вины, когда она солгала своей матери", - "textMeaningTranslate": "Если мысль или чувство внутренне, они не выражены и не показаны другим", - "wordTranslate": "внутрь" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0164" - }, - "group": 5, - "page": 13, - "word": "loaf", - "image": "files/14_3269.jpg", - "audio": "files/14_3269.mp3", - "audioMeaning": "files/14_3269_meaning.mp3", - "audioExample": "files/14_3269_example.mp3", - "textMeaning": "A loaf of bread is bread shaped and baked in one piece.", - "textExample": "Could you please buy a loaf of bread for sandwiches?", - "transcription": "[louf]", - "__v": 0, - "textExampleTranslate": "Не могли бы вы купить буханку хлеба для бутербродов?", - "textMeaningTranslate": "Буханка хлеба имеет форму хлеба и выпекается одним куском", - "wordTranslate": "буханка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0165" - }, - "group": 5, - "page": 13, - "word": "oracle", - "image": "files/14_3270.jpg", - "audio": "files/14_3270.mp3", - "audioMeaning": "files/14_3270_meaning.mp3", - "audioExample": "files/14_3270_example.mp3", - "textMeaning": "An oracle is a person who speaks with gods and gives advice about the future.", - "textExample": "The king went to the oracle to ask if going to war was a good idea.", - "transcription": "[ɔ́ːrəkl]", - "__v": 0, - "textExampleTranslate": "Царь пошел к оракулу, чтобы спросить, было ли хорошей идеей идти на войну", - "textMeaningTranslate": "Оракул - это человек, который говорит с богами и дает советы о будущем", - "wordTranslate": "оракул" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0166" - }, - "group": 5, - "page": 13, - "word": "orbit", - "image": "files/14_3271.jpg", - "audio": "files/14_3271.mp3", - "audioMeaning": "files/14_3271_meaning.mp3", - "audioExample": "files/14_3271_example.mp3", - "textMeaning": "To orbit something means to move around it in a continuous, curving path.", - "textExample": "The Moon orbits the Earth.", - "transcription": "[ɔ́ːrbit]", - "__v": 0, - "textExampleTranslate": "Луна вращается вокруг Земли", - "textMeaningTranslate": "Обращаться к чему-либо означает двигаться вокруг него по непрерывной кривой дороге", - "wordTranslate": "орбита" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0167" - }, - "group": 5, - "page": 13, - "word": "overview", - "image": "files/14_3272.jpg", - "audio": "files/14_3272.mp3", - "audioMeaning": "files/14_3272_meaning.mp3", - "audioExample": "files/14_3272_example.mp3", - "textMeaning": "An overview is a general description of a situation.", - "textExample": "My brother gave me an overview of the important parts of the book.", - "transcription": "[óuvərvjùː]", - "__v": 0, - "textExampleTranslate": "Мой брат дал мне обзор важных частей книги", - "textMeaningTranslate": "Обзор - это общее описание ситуации", - "wordTranslate": "обзор" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0168" - }, - "group": 5, - "page": 13, - "word": "preview", - "image": "files/14_3273.jpg", - "audio": "files/14_3273.mp3", - "audioMeaning": "files/14_3273_meaning.mp3", - "audioExample": "files/14_3273_example.mp3", - "textMeaning": "A preview is an opportunity to see something before it is available to the public.", - "textExample": "The band played us a preview of their new song.", - "transcription": "[príːvjùː]", - "__v": 0, - "textExampleTranslate": "Группа сыграла нам превью своей новой песни", - "textMeaningTranslate": "Предварительный просмотр - это возможность увидеть что-то, прежде чем это станет доступным для публики", - "wordTranslate": "предварительный просмотр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0169" - }, - "group": 5, - "page": 13, - "word": "previous", - "image": "files/14_3274.jpg", - "audio": "files/14_3274.mp3", - "audioMeaning": "files/14_3274_meaning.mp3", - "audioExample": "files/14_3274_example.mp3", - "textMeaning": "If something is previous, then it happened earlier in time or order.", - "textExample": "He turned back to the previous page to read the paragraph again.", - "transcription": "[príːviəs]", - "__v": 0, - "textExampleTranslate": "Он вернулся на предыдущую страницу, чтобы снова прочитать абзац", - "textMeaningTranslate": "Если что-то является предыдущим, то это произошло раньше во времени или в порядке", - "wordTranslate": "предыдущий" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b016a" - }, - "group": 5, - "page": 13, - "word": "provide", - "image": "files/14_3275.jpg", - "audio": "files/14_3275.mp3", - "audioMeaning": "files/14_3275_meaning.mp3", - "audioExample": "files/14_3275_example.mp3", - "textMeaning": "To provide something means to supply it.", - "textExample": "Each student was provided with a test and three sharp pencils.", - "transcription": "[prəváid]", - "__v": 0, - "textExampleTranslate": "Каждому студенту был предоставлен тест и три острых карандаша", - "textMeaningTranslate": "Предоставить что-то - значит предоставить это", - "wordTranslate": "предоставлять" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b016b" - }, - "group": 5, - "page": 13, - "word": "recur", - "image": "files/14_3276.jpg", - "audio": "files/14_3276.mp3", - "audioMeaning": "files/14_3276_meaning.mp3", - "audioExample": "files/14_3276_example.mp3", - "textMeaning": "To recur means to happen more than once.", - "textExample": "Burglaries seem to recur over and over in our neighborhood.", - "transcription": "[rikə́ːr]", - "__v": 0, - "textExampleTranslate": "Кажется, что кражи со взломом повторяются в нашем районе", - "textMeaningTranslate": "Повторяться - значит случаться не раз", - "wordTranslate": "повторялись" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b016c" - }, - "group": 5, - "page": 13, - "word": "relevant", - "image": "files/14_3277.jpg", - "audio": "files/14_3277.mp3", - "audioMeaning": "files/14_3277_meaning.mp3", - "audioExample": "files/14_3277_example.mp3", - "textMeaning": "When something is relevant, it is important to a certain person or situation.", - "textExample": "The 30-year-old book about politics is still relevant to our society today.", - "transcription": "[réləvənt]", - "__v": 0, - "textExampleTranslate": "30-летняя книга о политике до сих пор актуальна для нашего общества", - "textMeaningTranslate": "Когда что-то актуально, это важно для определенного человека или ситуации", - "wordTranslate": "соответствующие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b016d" - }, - "group": 5, - "page": 13, - "word": "rite", - "image": "files/14_3278.jpg", - "audio": "files/14_3278.mp3", - "audioMeaning": "files/14_3278_meaning.mp3", - "audioExample": "files/14_3278_example.mp3", - "textMeaning": "A rite is a traditional ceremony carried out by a particular group or society.", - "textExample": "Special masks are worn during the rite when a new baby is born.", - "transcription": "[rait]", - "__v": 0, - "textExampleTranslate": "Специальные маски носят во время обряда, когда рождается новый ребенок", - "textMeaningTranslate": "Обряд - это традиционная церемония, проводимая определенной группой или обществом", - "wordTranslate": "обряд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b016e" - }, - "group": 5, - "page": 13, - "word": "stall", - "image": "files/14_3279.jpg", - "audio": "files/14_3279.mp3", - "audioMeaning": "files/14_3279_meaning.mp3", - "audioExample": "files/14_3279_example.mp3", - "textMeaning": "To stall means to stop a process and continue it at a later time.", - "textExample": "If you give the car a push, it won’t stall.", - "transcription": "[stɔːl]", - "__v": 0, - "textExampleTranslate": "Если вы толкнете машину, она не остановится", - "textMeaningTranslate": "Задержка означает остановку процесса и продолжение его позднее", - "wordTranslate": "стойло" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b016f" - }, - "group": 5, - "page": 13, - "word": "supernatural", - "image": "files/14_3280.jpg", - "audio": "files/14_3280.mp3", - "audioMeaning": "files/14_3280_meaning.mp3", - "audioExample": "files/14_3280_example.mp3", - "textMeaning": "If something is supernatural, it is not real or explainable by laws of nature.", - "textExample": "The dragon had supernatural powers, such as flying and breathing fire.", - "transcription": "[sùːpərnǽtʃərəl]", - "__v": 0, - "textExampleTranslate": "Дракон обладал сверхъестественными способностями, такими как летающий и дышащий огонь", - "textMeaningTranslate": "Если что-то сверхъестественное, оно не реально или не объясняется законами природы", - "wordTranslate": "сверхъестественное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0170" - }, - "group": 5, - "page": 14, - "word": "aquarium", - "image": "files/15_3281.jpg", - "audio": "files/15_3281.mp3", - "audioMeaning": "files/15_3281_meaning.mp3", - "audioExample": "files/15_3281_example.mp3", - "textMeaning": "An aquarium is a place where fish and underwater animals are kept.", - "textExample": "We took a trip to the aquarium and saw a scary shark.", - "transcription": "[əkwέəriəm]", - "__v": 0, - "textExampleTranslate": "Мы отправились в аквариум и увидели страшную акулу", - "textMeaningTranslate": "Аквариум - это место, где содержатся рыбы и подводные животные", - "wordTranslate": "аквариум" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0171" - }, - "group": 5, - "page": 14, - "word": "arbitrary", - "image": "files/15_3282.jpg", - "audio": "files/15_3282.mp3", - "audioMeaning": "files/15_3282_meaning.mp3", - "audioExample": "files/15_3282_example.mp3", - "textMeaning": "If something is arbitrary, it is not based on any plan or system, so it seems random.", - "textExample": "The classroom had many arbitrary rules that confused me.", - "transcription": "[ɑ́ːrbitrèri:]", - "__v": 0, - "textExampleTranslate": "В классе было много произвольных правил, которые смущали меня", - "textMeaningTranslate": "Если что-то произвольно, оно не основано ни на каком плане или системе, поэтому оно кажется случайным", - "wordTranslate": "произвольное" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0172" - }, - "group": 5, - "page": 14, - "word": "convention", - "image": "files/15_3284.jpg", - "audio": "files/15_3284.mp3", - "audioMeaning": "files/15_3284_meaning.mp3", - "audioExample": "files/15_3284_example.mp3", - "textMeaning": "A convention is behavior that is considered to be common or polite.", - "textExample": "In the US, a popular convention is to shake hands when you meet someone.", - "transcription": "[kənvénʃən]", - "__v": 0, - "textExampleTranslate": "В США популярным условием является рукопожатие при встрече с кем-либо", - "textMeaningTranslate": "Соглашение - это поведение, которое считается обычным или вежливым", - "wordTranslate": "конвенция" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0173" - }, - "group": 5, - "page": 14, - "word": "insulate", - "image": "files/15_3287.jpg", - "audio": "files/15_3287.mp3", - "audioMeaning": "files/15_3287_meaning.mp3", - "audioExample": "files/15_3287_example.mp3", - "textMeaning": "To insulate something means to protect it from heat, cold, or noise.", - "textExample": "People can conserve energy by insulating their houses.", - "transcription": "[ínsəlèit]", - "__v": 0, - "textExampleTranslate": "Люди могут экономить энергию, изолируя свои дома", - "textMeaningTranslate": "Изоляция чего-либо означает защиту от жары, холода или шума", - "wordTranslate": "изолирует" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0174" - }, - "group": 5, - "page": 14, - "word": "improve", - "image": "files/15_3286.jpg", - "audio": "files/15_3286.mp3", - "audioMeaning": "files/15_3286_meaning.mp3", - "audioExample": "files/15_3286_example.mp3", - "textMeaning": "To improve something means to make it better.", - "textExample": "He studied hard to improve his test scores from the previous year.", - "transcription": "[imprúːv]", - "__v": 0, - "textExampleTranslate": "Он усердно учился, чтобы улучшить свои результаты тестов за предыдущий год", - "textMeaningTranslate": "Улучшить что-то значит сделать это лучше", - "wordTranslate": "улучшить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0175" - }, - "group": 5, - "page": 14, - "word": "gracious", - "image": "files/15_3285.jpg", - "audio": "files/15_3285.mp3", - "audioMeaning": "files/15_3285_meaning.mp3", - "audioExample": "files/15_3285_example.mp3", - "textMeaning": "If someone is gracious, then they are kind and helpful to those who need it.", - "textExample": "The operator was gracious enough to help me find the number.", - "transcription": "[gréiʃəs]", - "__v": 0, - "textExampleTranslate": "Оператор был достаточно любезен, чтобы помочь мне найти номер", - "textMeaningTranslate": "Если кто-то добрый, то он добр и полезен тем, кто в этом нуждается", - "wordTranslate": "милостивый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0176" - }, - "group": 5, - "page": 14, - "word": "autobiography", - "image": "files/15_3283.jpg", - "audio": "files/15_3283.mp3", - "audioMeaning": "files/15_3283_meaning.mp3", - "audioExample": "files/15_3283_example.mp3", - "textMeaning": "An autobiography is a true story of a person’s life written by that person.", - "textExample": "I read an autobiography about my favorite entertainer.", - "transcription": "[ɔ̀ːtəbaiɑ́grəf:]", - "__v": 0, - "textExampleTranslate": "Я прочитал автобиографию о моем любимом артисте", - "textMeaningTranslate": "Автобиография - это правдивая история жизни человека, написанная этим человеком", - "wordTranslate": "автобиография" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0177" - }, - "group": 5, - "page": 14, - "word": "intrigue", - "image": "files/15_3288.jpg", - "audio": "files/15_3288.mp3", - "audioMeaning": "files/15_3288_meaning.mp3", - "audioExample": "files/15_3288_example.mp3", - "textMeaning": "To intrigue means to cause an interest in something or someone.", - "textExample": "Her mysterious past intrigued her new friend.", - "transcription": "[intríːg]", - "__v": 0, - "textExampleTranslate": "Ее таинственное прошлое заинтриговало ее нового друга", - "textMeaningTranslate": "Интриговать - значит вызывать интерес к чему-то или кому-то", - "wordTranslate": "интрига" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0178" - }, - "group": 5, - "page": 14, - "word": "misplace", - "image": "files/15_3290.jpg", - "audio": "files/15_3290.mp3", - "audioMeaning": "files/15_3290_meaning.mp3", - "audioExample": "files/15_3290_example.mp3", - "textMeaning": "To misplace something means to lose it.", - "textExample": "I misplaced my wallet, and I didn’t find it until a week later.", - "transcription": "[mispléis]", - "__v": 0, - "textExampleTranslate": "Я потерял свой кошелек и нашел его только неделю спустя", - "textMeaningTranslate": "Потерять что-то значит потерять это", - "wordTranslate": "недоразумению" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0179" - }, - "group": 5, - "page": 14, - "word": "longevity", - "image": "files/15_3289.jpg", - "audio": "files/15_3289.mp3", - "audioMeaning": "files/15_3289_meaning.mp3", - "audioExample": "files/15_3289_example.mp3", - "textMeaning": "Longevity is the ability to live for a long time.", - "textExample": "Sea turtles have an amazing longevity.", - "transcription": "[lɑnʤévəti]", - "__v": 0, - "textExampleTranslate": "Морские черепахи имеют удивительное долголетие", - "textMeaningTranslate": "Долголетие - это способность жить долго", - "wordTranslate": "долголетие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b017a" - }, - "group": 5, - "page": 14, - "word": "naughty", - "image": "files/15_3291.jpg", - "audio": "files/15_3291.mp3", - "audioMeaning": "files/15_3291_meaning.mp3", - "audioExample": "files/15_3291_example.mp3", - "textMeaning": "When children are naughty, they behave badly or do not do what they are told.", - "textExample": "The boy had to go to his room because he was being naughty.", - "transcription": "[nɔ́ːti]", - "__v": 0, - "textExampleTranslate": "Мальчик должен был пойти в свою комнату, потому что он был непослушным", - "textMeaningTranslate": "Когда дети непослушны, они плохо себя ведут или не делают того, что им говорят", - "wordTranslate": "непослушный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b017b" - }, - "group": 5, - "page": 14, - "word": "norm", - "image": "files/15_3292.jpg", - "audio": "files/15_3292.mp3", - "audioMeaning": "files/15_3292_meaning.mp3", - "audioExample": "files/15_3292_example.mp3", - "textMeaning": "A norm is a way of behaving that is considered normal in a particular society.", - "textExample": "Wearing a heavy coat all summer is not considered a norm.", - "transcription": "[nɔːrm]", - "__v": 0, - "textExampleTranslate": "Ношение тяжелого пальто все лето не считается нормой", - "textMeaningTranslate": "Норма - это способ поведения, который считается нормальным в конкретном обществе", - "wordTranslate": "норма" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b017c" - }, - "group": 5, - "page": 14, - "word": "orangutan", - "image": "files/15_3293.jpg", - "audio": "files/15_3293.mp3", - "audioMeaning": "files/15_3293_meaning.mp3", - "audioExample": "files/15_3293_example.mp3", - "textMeaning": "An orangutan is a large ape with red and brown hair and long arms.", - "textExample": "Orangutans use their long arms to swing from trees.", - "transcription": "[ɔːrǽŋutæ̀n]", - "__v": 0, - "textExampleTranslate": "Орангутаны используют свои длинные руки, чтобы качаться с деревьев", - "textMeaningTranslate": "Орангутан - это большая обезьяна с рыжими и каштановыми волосами и длинными руками", - "wordTranslate": "орангутанг" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b017d" - }, - "group": 5, - "page": 14, - "word": "overload", - "image": "files/15_3294.jpg", - "audio": "files/15_3294.mp3", - "audioMeaning": "files/15_3294_meaning.mp3", - "audioExample": "files/15_3294_example.mp3", - "textMeaning": "To overload something means to put more things into it than it is meant to hold.", - "textExample": "If you overload the truck, it might crash.", - "transcription": "[òuvərlóud]", - "__v": 0, - "textExampleTranslate": "Если перегрузить грузовик, он может разбиться", - "textMeaningTranslate": "Перегрузить что-то - значит положить в него больше вещей, чем нужно", - "wordTranslate": "перегрузка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b017e" - }, - "group": 5, - "page": 14, - "word": "philanthropy", - "image": "files/15_3295.jpg", - "audio": "files/15_3295.mp3", - "audioMeaning": "files/15_3295_meaning.mp3", - "audioExample": "files/15_3295_example.mp3", - "textMeaning": "Philanthropy is the act of helping others without wanting anything in return.", - "textExample": "The wealthy business owner is well known for his acts of philanthropy.", - "transcription": "[flǽnθrəpi]", - "__v": 0, - "textExampleTranslate": "Богатый владелец бизнеса хорошо известен своими актами благотворительности", - "textMeaningTranslate": "Филантропия - это акт помощи другим, не желая ничего взамен", - "wordTranslate": "филантропия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b017f" - }, - "group": 5, - "page": 14, - "word": "probe", - "image": "files/15_3296.jpg", - "audio": "files/15_3296.mp3", - "audioMeaning": "files/15_3296_meaning.mp3", - "audioExample": "files/15_3296_example.mp3", - "textMeaning": "To probe into something means to ask questions to discover facts about it.", - "textExample": "The bank probed into his financial history to see if he qualified for a loan.", - "transcription": "[proub]", - "__v": 0, - "textExampleTranslate": "Банк изучил его финансовую историю, чтобы узнать, имеет ли он право на кредит", - "textMeaningTranslate": "Заниматься чем-то - значит задавать вопросы, чтобы узнать факты об этом", - "wordTranslate": "зонд" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0180" - }, - "group": 5, - "page": 14, - "word": "recipient", - "image": "files/15_3297.jpg", - "audio": "files/15_3297.mp3", - "audioMeaning": "files/15_3297_meaning.mp3", - "audioExample": "files/15_3297_example.mp3", - "textMeaning": "A recipient of something is the person who receives it.", - "textExample": "I was the recipient of four phone calls today.", - "transcription": "[risípiənt]", - "__v": 0, - "textExampleTranslate": "Я был получателем четырех телефонных звонков сегодня", - "textMeaningTranslate": "Получатель чего-либо - это тот, кто его получает", - "wordTranslate": "получатель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0181" - }, - "group": 5, - "page": 14, - "word": "reptile", - "image": "files/15_3298.jpg", - "audio": "files/15_3298.mp3", - "audioMeaning": "files/15_3298_meaning.mp3", - "audioExample": "files/15_3298_example.mp3", - "textMeaning": "A reptile is a cold-blooded animal that lays eggs and has skin covered with scales.", - "textExample": "Lizards are my favorite type of reptile.", - "transcription": "[réptil]", - "__v": 0, - "textExampleTranslate": "Ящерицы - мой любимый тип рептилий", - "textMeaningTranslate": "Рептилия - хладнокровное животное, откладывающее яйца и покрытое чешуей", - "wordTranslate": "рептилия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0182" - }, - "group": 5, - "page": 14, - "word": "thrive", - "image": "files/15_3299.jpg", - "audio": "files/15_3299.mp3", - "audioMeaning": "files/15_3299_meaning.mp3", - "audioExample": "files/15_3299_example.mp3", - "textMeaning": "To thrive means to do well and be successful, healthy, or strong.", - "textExample": "He may be an old man, but he continues to thrive.", - "transcription": "[θraiv]", - "__v": 0, - "textExampleTranslate": "Он может быть стариком, но он продолжает процветать", - "textMeaningTranslate": "Процветать - значит преуспевать и быть успешным, здоровым или сильным", - "wordTranslate": "процветать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0183" - }, - "group": 5, - "page": 14, - "word": "ultimate", - "image": "files/15_3300.jpg", - "audio": "files/15_3300.mp3", - "audioMeaning": "files/15_3300_meaning.mp3", - "audioExample": "files/15_3300_example.mp3", - "textMeaning": "When something is ultimate, it is the final result or aim of a long series of events.", - "textExample": "By trying hard in school, I will reach my ultimate goal of becoming a doctor.", - "transcription": "[ʌ́ltəmit]", - "__v": 0, - "textExampleTranslate": "Стараясь в школе, я достигну своей конечной цели стать врачом", - "textMeaningTranslate": "Когда что-то является окончательным, это конечный результат или цель длинной серии событий", - "wordTranslate": "конечный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0184" - }, - "group": 5, - "page": 15, - "word": "applicant", - "image": "files/16_3302.jpg", - "audio": "files/16_3302.mp3", - "audioMeaning": "files/16_3302_meaning.mp3", - "audioExample": "files/16_3302_example.mp3", - "textMeaning": "An applicant is someone who writes a request to be considered for a job or prize.", - "textExample": "Lots of applicants came into the store when the job position became available.", - "transcription": "[ǽplikənt]", - "__v": 0, - "textExampleTranslate": "Многие заявители пришли в магазин, когда стало доступно рабочее место", - "textMeaningTranslate": "Заявитель - это тот, кто пишет запрос о рассмотрении на работу или приз", - "wordTranslate": "заявитель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0185" - }, - "group": 5, - "page": 15, - "word": "antique", - "image": "files/16_3301.jpg", - "audio": "files/16_3301.mp3", - "audioMeaning": "files/16_3301_meaning.mp3", - "audioExample": "files/16_3301_example.mp3", - "textMeaning": "If something is antique, it is very old and rare, and therefore valuable.", - "textExample": "My grandmother’s antique rocking chair is worth a lot of money.", - "transcription": "[æntíːk]", - "__v": 0, - "textExampleTranslate": "Старинное кресло-качалка моей бабушки стоит больших денег", - "textMeaningTranslate": "Если что-то старинное, оно очень старое и редкое, а потому и ценное", - "wordTranslate": "античный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0186" - }, - "group": 5, - "page": 15, - "word": "artifact", - "image": "files/16_3303.jpg", - "audio": "files/16_3303.mp3", - "audioMeaning": "files/16_3303_meaning.mp3", - "audioExample": "files/16_3303_example.mp3", - "textMeaning": "An artifact is an old object made by humans that is historically interesting.", - "textExample": "We studied artifacts from an ancient Chinese settlement.", - "transcription": "[ɑ́ːrtəfæ̀kt]", - "__v": 0, - "textExampleTranslate": "Мы изучали артефакты из древнего китайского поселения", - "textMeaningTranslate": "Артефакт - это старый объект, созданный людьми, который исторически интересен", - "wordTranslate": "артефакт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0187" - }, - "group": 5, - "page": 15, - "word": "authentic", - "image": "files/16_3304.jpg", - "audio": "files/16_3304.mp3", - "audioMeaning": "files/16_3304_meaning.mp3", - "audioExample": "files/16_3304_example.mp3", - "textMeaning": "When something is authentic, it is not false or a copy of the original.", - "textExample": "We ate authentic Italian food on our vacation to Rome.", - "transcription": "[ɔːθéntik]", - "__v": 0, - "textExampleTranslate": "Мы ели настоящую итальянскую еду во время нашего отпуска в Риме", - "textMeaningTranslate": "Когда что-то является подлинным, это не ложь или копия оригинала", - "wordTranslate": "подлинный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b018c" - }, - "group": 5, - "page": 15, - "word": "fossil", - "image": "files/16_3309.jpg", - "audio": "files/16_3309.mp3", - "audioMeaning": "files/16_3309_meaning.mp3", - "audioExample": "files/16_3309_example.mp3", - "textMeaning": "A fossil is the hard remains of a prehistoric animal or plant.", - "textExample": "The expert arranged the fossils to build the skeleton of the dinosaur.", - "transcription": "[fɑ́sl]", - "__v": 0, - "textExampleTranslate": "Эксперт организовал окаменелости, чтобы построить скелет динозавра", - "textMeaningTranslate": "Окаменелость - это твердые останки доисторического животного или растения", - "wordTranslate": "ископаемое" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b018a" - }, - "group": 5, - "page": 15, - "word": "epic", - "image": "files/16_3307.jpg", - "audio": "files/16_3307.mp3", - "audioMeaning": "files/16_3307_meaning.mp3", - "audioExample": "files/16_3307_example.mp3", - "textMeaning": "An epic is a long book, poem, or movie about a period of time or a great event.", - "textExample": "The poet wrote an epic about the great discoveries of the past thousand years.", - "transcription": "[épik]", - "__v": 0, - "textExampleTranslate": "Поэт написал эпос о великих открытиях прошедшей тысячи лет", - "textMeaningTranslate": "Эпос - это длинная книга, поэма или фильм о периоде времени или великом событии", - "wordTranslate": "эпопея" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0188" - }, - "group": 5, - "page": 15, - "word": "chronology", - "image": "files/16_3305.jpg", - "audio": "files/16_3305.mp3", - "audioMeaning": "files/16_3305_meaning.mp3", - "audioExample": "files/16_3305_example.mp3", - "textMeaning": "The chronology of a series of past events is when they happened.", - "textExample": "We learned the chronology of World War II in history class.", - "transcription": "[krənɑ́lədʒi:]", - "__v": 0, - "textExampleTranslate": "Мы изучили хронологию Второй мировой войны в классе истории", - "textMeaningTranslate": "Хронология ряда прошлых событий - это когда они произошли", - "wordTranslate": "хронология" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b018b" - }, - "group": 5, - "page": 15, - "word": "excerpt", - "image": "files/16_3308.jpg", - "audio": "files/16_3308.mp3", - "audioMeaning": "files/16_3308_meaning.mp3", - "audioExample": "files/16_3308_example.mp3", - "textMeaning": "An excerpt is a short piece of writing or music taken from a larger piece.", - "textExample": "I didn’t listen to the entire symphony online, but I did play an excerpt.", - "transcription": "[éksəːrpt]", - "__v": 0, - "textExampleTranslate": "Я не слушал всю симфонию онлайн, но я играл отрывок", - "textMeaningTranslate": "Выдержка - это короткий текст или музыка, взятая из более крупного произведения", - "wordTranslate": "отрывок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0189" - }, - "group": 5, - "page": 15, - "word": "diplomat", - "image": "files/16_3306.jpg", - "audio": "files/16_3306.mp3", - "audioMeaning": "files/16_3306_meaning.mp3", - "audioExample": "files/16_3306_example.mp3", - "textMeaning": "A diplomat is a representative of a country who works with another country.", - "textExample": "The Spanish diplomat discussed trade issues with officials in Peru.", - "transcription": "[dípləmæ̀t]", - "__v": 0, - "textExampleTranslate": "Испанский дипломат обсудил вопросы торговли с официальными лицами в Перу", - "textMeaningTranslate": "Дипломат является представителем страны, которая работает с другой страной", - "wordTranslate": "дипломат" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b018d" - }, - "group": 5, - "page": 15, - "word": "humiliate", - "image": "files/16_3310.jpg", - "audio": "files/16_3310.mp3", - "audioMeaning": "files/16_3310_meaning.mp3", - "audioExample": "files/16_3310_example.mp3", - "textMeaning": "To humiliate someone means to make them feel ashamed and embarrassed.", - "textExample": "I was humiliated when I tripped and fell down in front of the whole school.", - "transcription": "[hjuːmílièit]", - "__v": 0, - "textExampleTranslate": "Я был унижен, когда споткнулся и упал перед всей школой", - "textMeaningTranslate": "Унизить кого-либо - значит заставить его чувствовать себя стыдно и смущенно", - "wordTranslate": "унизить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b018e" - }, - "group": 5, - "page": 15, - "word": "lyric", - "image": "files/16_3311.jpg", - "audio": "files/16_3311.mp3", - "audioMeaning": "files/16_3311_meaning.mp3", - "audioExample": "files/16_3311_example.mp3", - "textMeaning": "When a poem is considered lyric, it expresses a lot of emotion.", - "textExample": "I enjoy reading and creating my own lyric poetry.", - "transcription": "[lírik]", - "__v": 0, - "textExampleTranslate": "Мне нравится читать и создавать свои собственные лирические стихи", - "textMeaningTranslate": "Когда стихотворение считается лирическим, оно выражает много эмоций", - "wordTranslate": "лирические" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b018f" - }, - "group": 5, - "page": 15, - "word": "majesty", - "image": "files/16_3312.jpg", - "audio": "files/16_3312.mp3", - "audioMeaning": "files/16_3312_meaning.mp3", - "audioExample": "files/16_3312_example.mp3", - "textMeaning": "Majesty is supreme greatness or authority.", - "textExample": "The majesty of the old castle amazed the tourists who came to see it.", - "transcription": "[mǽdʒisti]", - "__v": 0, - "textExampleTranslate": "Величие старого замка поразило туристов, которые пришли посмотреть его", - "textMeaningTranslate": "Величество - высшее величие или авторитет", - "wordTranslate": "величие" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0190" - }, - "group": 5, - "page": 15, - "word": "monarch", - "image": "files/16_3313.jpg", - "audio": "files/16_3313.mp3", - "audioMeaning": "files/16_3313_meaning.mp3", - "audioExample": "files/16_3313_example.mp3", - "textMeaning": "The monarch of a country is someone who rules a country through hereditary right.", - "textExample": "The monarch lived in a beautiful palace with a grand gate.", - "transcription": "[mɑ́nərk]", - "__v": 0, - "textExampleTranslate": "Монарх жил в прекрасном дворце с большими воротами", - "textMeaningTranslate": "Монарх страны - это тот, кто правит страной через наследственное право", - "wordTranslate": "монарх" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0191" - }, - "group": 5, - "page": 15, - "word": "precede", - "image": "files/16_3314.jpg", - "audio": "files/16_3314.mp3", - "audioMeaning": "files/16_3314_meaning.mp3", - "audioExample": "files/16_3314_example.mp3", - "textMeaning": "To precede something means to come before it.", - "textExample": "The hurricane was preceded by a moment of still wind and clear sky.", - "transcription": "[prisíːd]", - "__v": 0, - "textExampleTranslate": "Урагану предшествовал момент тихого ветра и ясного неба", - "textMeaningTranslate": "Предшествовать чему-либо - значит быть перед этим", - "wordTranslate": "предшествуют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0192" - }, - "group": 5, - "page": 15, - "word": "punctual", - "image": "files/16_3315.jpg", - "audio": "files/16_3315.mp3", - "audioMeaning": "files/16_3315_meaning.mp3", - "audioExample": "files/16_3315_example.mp3", - "textMeaning": "When someone is punctual, they do something or arrive at the right time.", - "textExample": "My mother hates being late. She is the most punctual person I know.", - "transcription": "[pʌ́ŋktʃuəl]", - "__v": 0, - "textExampleTranslate": "Моя мама ненавидит опоздание. Она самый пунктуальный человек, которого я знаю", - "textMeaningTranslate": "Когда кто-то пунктуален, он что-то делает или приходит в нужное время", - "wordTranslate": "пунктуальным" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0194" - }, - "group": 5, - "page": 15, - "word": "refund", - "image": "files/16_3317.jpg", - "audio": "files/16_3317.mp3", - "audioMeaning": "files/16_3317_meaning.mp3", - "audioExample": "files/16_3317_example.mp3", - "textMeaning": "A refund is money given back to a person when an item is returned to a store.", - "textExample": "I asked for a refund because the shoes I bought were too tight.", - "transcription": "[ríːfʌnd]", - "__v": 0, - "textExampleTranslate": "Я попросил вернуть деньги, потому что обувь, которую я купил, была слишком тесной", - "textMeaningTranslate": "Возврат - это деньги, возвращаемые человеку, когда товар возвращается в магазин", - "wordTranslate": "возвращать деньги" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0195" - }, - "group": 5, - "page": 15, - "word": "register", - "image": "files/16_3318.jpg", - "audio": "files/16_3318.mp3", - "audioMeaning": "files/16_3318_meaning.mp3", - "audioExample": "files/16_3318_example.mp3", - "textMeaning": "A register is an official list or record of people or things.", - "textExample": "At a wedding, there is register for all of the guests to sign.", - "transcription": "[rédʒəstəːr]", - "__v": 0, - "textExampleTranslate": "На свадьбе есть регистрация для всех гостей, чтобы подписать", - "textMeaningTranslate": "Регистр - это официальный список или запись людей или вещей", - "wordTranslate": "регистр" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0193" - }, - "group": 5, - "page": 15, - "word": "recruit", - "image": "files/16_3316.jpg", - "audio": "files/16_3316.mp3", - "audioMeaning": "files/16_3316_meaning.mp3", - "audioExample": "files/16_3316_example.mp3", - "textMeaning": "To recruit people means to select them to join or work for an organization.", - "textExample": "We successfully recruited someone to be the new manager.", - "transcription": "[rikrúːt]", - "__v": 0, - "textExampleTranslate": "Мы успешно завербовали кого-то, чтобы стать новым менеджером", - "textMeaningTranslate": "Привлекать людей - значит выбирать их для вступления или работы в организации", - "wordTranslate": "принять на работу" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0196" - }, - "group": 5, - "page": 15, - "word": "renown", - "image": "files/16_3319.jpg", - "audio": "files/16_3319.mp3", - "audioMeaning": "files/16_3319_meaning.mp3", - "audioExample": "files/16_3319_example.mp3", - "textMeaning": "Renown is the quality of being well known due to having done good things.", - "textExample": "Michael is a singer of great renown in New Zealand.", - "transcription": "[rináun]", - "__v": 0, - "textExampleTranslate": "Майкл - певец с большой известностью в Новой Зеландии", - "textMeaningTranslate": "Известность - это качество известности благодаря добрым делам", - "wordTranslate": "известность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0197" - }, - "group": 5, - "page": 15, - "word": "tusk", - "image": "files/16_3320.jpg", - "audio": "files/16_3320.mp3", - "audioMeaning": "files/16_3320_meaning.mp3", - "audioExample": "files/16_3320_example.mp3", - "textMeaning": "A tusk is a long, curved, pointed tooth of an elephant, boar, or walrus.", - "textExample": "Sadly, some people hunt elephants and remove their tusks to sell them.", - "transcription": "[tʌsk]", - "__v": 0, - "textExampleTranslate": "К сожалению, некоторые люди охотятся на слонов и снимают клыки, чтобы продать их", - "textMeaningTranslate": "Клык - это длинный, изогнутый, заостренный зуб слона, кабана или моржа", - "wordTranslate": "клык" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0198" - }, - "group": 5, - "page": 16, - "word": "coexist", - "image": "files/17_3321.jpg", - "audio": "files/17_3321.mp3", - "audioMeaning": "files/17_3321_meaning.mp3", - "audioExample": "files/17_3321_example.mp3", - "textMeaning": "To coexist with something means to exist with it in the same time and place.", - "textExample": "Our pets coexist in our home with few or no problems.", - "transcription": "[kòuigzíst]", - "__v": 0, - "textExampleTranslate": "Наши домашние животные живут в нашем доме практически без проблем", - "textMeaningTranslate": "Сосуществовать с чем-либо - значит существовать с ним одновременно и в одном месте", - "wordTranslate": "сосуществовать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b019a" - }, - "group": 5, - "page": 16, - "word": "ego", - "image": "files/17_3324.jpg", - "audio": "files/17_3324.mp3", - "audioMeaning": "files/17_3324_meaning.mp3", - "audioExample": "files/17_3324_example.mp3", - "textMeaning": "An ego is a person’s sense of their own worth.", - "textExample": "Kelly’s ego made her think that she was some kind of a superhero.", - "transcription": "[íːgou]", - "__v": 0, - "textExampleTranslate": "Эго Келли заставило ее думать, что она была своего рода супергероем", - "textMeaningTranslate": "Эго - это чувство собственного достоинства", - "wordTranslate": "эго" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b019b" - }, - "group": 5, - "page": 16, - "word": "dubious", - "image": "files/17_3323.jpg", - "audio": "files/17_3323.mp3", - "audioMeaning": "files/17_3323_meaning.mp3", - "audioExample": "files/17_3323_example.mp3", - "textMeaning": "When something or someone is dubious, they are not considered honest.", - "textExample": "The police thought that the man’s description of the crime was dubious.", - "transcription": "[djúːbiəs]", - "__v": 0, - "textExampleTranslate": "Полиция считала, что описание этого преступления человеком было сомнительным", - "textMeaningTranslate": "Когда что-то или кто-то сомнительный, они не считаются честными", - "wordTranslate": "сомнительный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b0199" - }, - "group": 5, - "page": 16, - "word": "conceive", - "image": "files/17_3322.jpg", - "audio": "files/17_3322.mp3", - "audioMeaning": "files/17_3322_meaning.mp3", - "audioExample": "files/17_3322_example.mp3", - "textMeaning": "To conceive something means to be able to imagine or believe it.", - "textExample": "The child could not conceive the actual size of the Earth.", - "transcription": "[kənsíːv]", - "__v": 0, - "textExampleTranslate": "Ребенок не мог представить себе реальный размер Земли", - "textMeaningTranslate": "Задумать что-то значит быть в состоянии представить или поверить в это", - "wordTranslate": "зачать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b019c" - }, - "group": 5, - "page": 16, - "word": "elastic", - "image": "files/17_3325.jpg", - "audio": "files/17_3325.mp3", - "audioMeaning": "files/17_3325_meaning.mp3", - "audioExample": "files/17_3325_example.mp3", - "textMeaning": "Elastic is a rubber that stretches when it is pulled.", - "textExample": "He attached the elastic bungee to his legs before he jumped of the platform.", - "transcription": "[ilǽstik]", - "__v": 0, - "textExampleTranslate": "Он прикрепил эластичный банджи к ногам, прежде чем спрыгнуть с платформы", - "textMeaningTranslate": "Эластичная резина, которая растягивается, когда ее тянут", - "wordTranslate": "эластичный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01a0" - }, - "group": 5, - "page": 16, - "word": "jagged", - "image": "files/17_3329.jpg", - "audio": "files/17_3329.mp3", - "audioMeaning": "files/17_3329_meaning.mp3", - "audioExample": "files/17_3329_example.mp3", - "textMeaning": "When something is jagged, it has a tough, uneven shape or edge.", - "textExample": "The swimmer was hurt when he fell on the jagged rocks.", - "transcription": "[dʒǽgid]", - "__v": 0, - "textExampleTranslate": "Пловец пострадал, когда упал на зазубренные камни", - "textMeaningTranslate": "Когда что-то зазубренное, оно имеет жесткую, неровную форму или край", - "wordTranslate": "зазубренный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b019e" - }, - "group": 5, - "page": 16, - "word": "engrave", - "image": "files/17_3327.jpg", - "audio": "files/17_3327.mp3", - "audioMeaning": "files/17_3327_meaning.mp3", - "audioExample": "files/17_3327_example.mp3", - "textMeaning": "To engrave means to cut a design, or words, into the surface of something.", - "textExample": "The couple engraved their names onto the old pine tree.", - "transcription": "[ingréiv]", - "__v": 0, - "textExampleTranslate": "Пара выгравировала их имена на старой сосне", - "textMeaningTranslate": "Гравировать - значит вырезать рисунок или слова на поверхности чего-либо", - "wordTranslate": "гравировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b019f" - }, - "group": 5, - "page": 16, - "word": "excavate", - "image": "files/17_3328.jpg", - "audio": "files/17_3328.mp3", - "audioMeaning": "files/17_3328_meaning.mp3", - "audioExample": "files/17_3328_example.mp3", - "textMeaning": "To excavate means to dig on land and remove dirt to look for something.", - "textExample": "The team wishes to excavate the site in hope of finding fossils.", - "transcription": "[ékskəvèit]", - "__v": 0, - "textExampleTranslate": "Команда хочет раскопать участок в надежде найти ископаемые", - "textMeaningTranslate": "Выкапывать означает копать на земле и удалять грязь, чтобы что-то искать", - "wordTranslate": "выкопать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b019d" - }, - "group": 5, - "page": 16, - "word": "endeavor", - "image": "files/17_3326.jpg", - "audio": "files/17_3326.mp3", - "audioMeaning": "files/17_3326_meaning.mp3", - "audioExample": "files/17_3326_example.mp3", - "textMeaning": "An endeavor is an attempt to do something, especially something new, or original.", - "textExample": "The company’s new advertising endeavor ended in a horrible failure.", - "transcription": "[indévər]", - "__v": 0, - "textExampleTranslate": "Новые рекламные усилия компании закончились ужасным провалом", - "textMeaningTranslate": "Стремление - это попытка сделать что-то, особенно что-то новое или оригинальное", - "wordTranslate": "стремиться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01a1" - }, - "group": 5, - "page": 16, - "word": "locale", - "image": "files/17_3330.jpg", - "audio": "files/17_3330.mp3", - "audioMeaning": "files/17_3330_meaning.mp3", - "audioExample": "files/17_3330_example.mp3", - "textMeaning": "A locale is a small area or place where something specific happens.", - "textExample": "The spa was the perfect locale for my mother to relax and enjoy her vacation.", - "transcription": "[loukǽl]", - "__v": 0, - "textExampleTranslate": "Спа был идеальным местом для моей мамы, чтобы расслабиться и насладиться отдыхом", - "textMeaningTranslate": "Локаль - это небольшая область или место, где происходит что-то особенное", - "wordTranslate": "локаль" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01a2" - }, - "group": 5, - "page": 16, - "word": "magnitude", - "image": "files/17_3331.jpg", - "audio": "files/17_3331.mp3", - "audioMeaning": "files/17_3331_meaning.mp3", - "audioExample": "files/17_3331_example.mp3", - "textMeaning": "Magnitude refers to large size.", - "textExample": "This was a discovery of great magnitude.", - "transcription": "[mǽgnətjùːd]", - "__v": 0, - "textExampleTranslate": "Это было открытие огромной величины", - "textMeaningTranslate": "Величина относится к большому размеру", - "wordTranslate": "величина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01a3" - }, - "group": 5, - "page": 16, - "word": "mold", - "image": "files/17_3332.jpg", - "audio": "files/17_3332.mp3", - "audioMeaning": "files/17_3332_meaning.mp3", - "audioExample": "files/17_3332_example.mp3", - "textMeaning": "A mold is a hollow container that is used to make certain shapes.", - "textExample": "Using a cupcake mold will ensure that they come out just right.", - "transcription": "[mould]", - "__v": 0, - "textExampleTranslate": "Использование формы для кексов обеспечит их правильное получение", - "textMeaningTranslate": "Форма - это полый контейнер, который используется для изготовления определенных форм", - "wordTranslate": "форма" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01a4" - }, - "group": 5, - "page": 16, - "word": "outright", - "image": "files/17_3333.jpg", - "audio": "files/17_3333.mp3", - "audioMeaning": "files/17_3333_meaning.mp3", - "audioExample": "files/17_3333_example.mp3", - "textMeaning": "When something is outright, it is open and direct.", - "textExample": "Everyone knew that the boy’s story was an outright lie.", - "transcription": "[áutràit]", - "__v": 0, - "textExampleTranslate": "Все знали, что история мальчика была откровенной ложью", - "textMeaningTranslate": "Когда что-то прямо, это открыто и прямо", - "wordTranslate": "вчистую" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01a5" - }, - "group": 5, - "page": 16, - "word": "periphery", - "image": "files/17_3334.jpg", - "audio": "files/17_3334.mp3", - "audioMeaning": "files/17_3334_meaning.mp3", - "audioExample": "files/17_3334_example.mp3", - "textMeaning": "The periphery of an area, place, or thing is the edge of it.", - "textExample": "A beautiful floral pattern is on the periphery of the stationery.", - "transcription": "[pəríːfəri:]", - "__v": 0, - "textExampleTranslate": "Красивый цветочный узор на периферии канцелярских товаров", - "textMeaningTranslate": "Периферия области, места или вещи является ее краем", - "wordTranslate": "периферия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01a6" - }, - "group": 5, - "page": 16, - "word": "plaster", - "image": "files/17_3335.jpg", - "audio": "files/17_3335.mp3", - "audioMeaning": "files/17_3335_meaning.mp3", - "audioExample": "files/17_3335_example.mp3", - "textMeaning": "Plaster is a smooth paste that gets hard when it dries.", - "textExample": "He used plaster to fill in the cracks in the old walls.", - "transcription": "[plǽstər]", - "__v": 0, - "textExampleTranslate": "Он использовал штукатурку, чтобы заполнить трещины в старых стенах", - "textMeaningTranslate": "Гипс - это гладкая паста, которая становится твердой, когда высыхает", - "wordTranslate": "штукатурка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01a7" - }, - "group": 5, - "page": 16, - "word": "shovel", - "image": "files/17_3336.jpg", - "audio": "files/17_3336.mp3", - "audioMeaning": "files/17_3336_meaning.mp3", - "audioExample": "files/17_3336_example.mp3", - "textMeaning": "A shovel is a tool with a long handle that is used for digging.", - "textExample": "The boy grabbed his shovel and got all of the snow off of the sidewalk.", - "transcription": "[ʃʌ́vəl]", - "__v": 0, - "textExampleTranslate": "Мальчик схватил лопату и убрал весь снег с тротуара", - "textMeaningTranslate": "Лопата - это инструмент с длинной ручкой, который используется для копания", - "wordTranslate": "лопата" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01a8" - }, - "group": 5, - "page": 16, - "word": "skeletal", - "image": "files/17_3337.jpg", - "audio": "files/17_3337.mp3", - "audioMeaning": "files/17_3337_meaning.mp3", - "audioExample": "files/17_3337_example.mp3", - "textMeaning": "When something is skeletal, it relates to bones in the body.", - "textExample": "We studied the skeletal system in anatomy class.", - "transcription": "[skélətl]", - "__v": 0, - "textExampleTranslate": "Мы изучали скелетную систему в классе анатомии", - "textMeaningTranslate": "Когда что-то скелетное, это относится к костям в теле", - "wordTranslate": "скелет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01a9" - }, - "group": 5, - "page": 16, - "word": "stumble", - "image": "files/17_3338.jpg", - "audio": "files/17_3338.mp3", - "audioMeaning": "files/17_3338_meaning.mp3", - "audioExample": "files/17_3338_example.mp3", - "textMeaning": "When you stumble, you move in an awkward, unplanned way.", - "textExample": "She stumbles a lot when she is drunk.", - "transcription": "[stΛmbl]", - "__v": 0, - "textExampleTranslate": "Она много спотыкается, когда пьяна", - "textMeaningTranslate": "Когда вы спотыкаетесь, вы двигаетесь неуклюже, незапланированно", - "wordTranslate": "спотыкаться" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01aa" - }, - "group": 5, - "page": 16, - "word": "thigh", - "image": "files/17_3339.jpg", - "audio": "files/17_3339.mp3", - "audioMeaning": "files/17_3339_meaning.mp3", - "audioExample": "files/17_3339_example.mp3", - "textMeaning": "Your thigh is the upper half of your leg.", - "textExample": "He suffered from a serious thigh injury.", - "transcription": "[θai]", - "__v": 0, - "textExampleTranslate": "Он получил серьезную травму бедра", - "textMeaningTranslate": "Твое бедро - это верхняя часть твоей ноги", - "wordTranslate": "бедренная кость" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01ab" - }, - "group": 5, - "page": 16, - "word": "vicious", - "image": "files/17_3340.jpg", - "audio": "files/17_3340.mp3", - "audioMeaning": "files/17_3340_meaning.mp3", - "audioExample": "files/17_3340_example.mp3", - "textMeaning": "When something or someone is vicious, they are violent and cruel.", - "textExample": "The vicious dog tried to bite the small child.", - "transcription": "[víʃəs]", - "__v": 0, - "textExampleTranslate": "Злобная собака пыталась укусить маленького ребенка", - "textMeaningTranslate": "Когда что-то или кто-то порочны, они жестоки и жестоки", - "wordTranslate": "порочный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01ac" - }, - "group": 5, - "page": 17, - "word": "attic", - "image": "files/18_3341.jpg", - "audio": "files/18_3341.mp3", - "audioMeaning": "files/18_3341_meaning.mp3", - "audioExample": "files/18_3341_example.mp3", - "textMeaning": "An attic is a room just below a house’s roof.", - "textExample": "There were two windows in their attic.", - "transcription": "[ǽtik]", - "__v": 0, - "textExampleTranslate": "На чердаке было два окна", - "textMeaningTranslate": "Чердак - это комната под крышей дома", - "wordTranslate": "чердак" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01ad" - }, - "group": 5, - "page": 17, - "word": "chunk", - "image": "files/18_3342.jpg", - "audio": "files/18_3342.mp3", - "audioMeaning": "files/18_3342_meaning.mp3", - "audioExample": "files/18_3342_example.mp3", - "textMeaning": "A chunk is a thick, solid piece of something.", - "textExample": "When they broke open the rock, they saw it was filled with chunks of gold.", - "transcription": "[tʃʌŋk]", - "__v": 0, - "textExampleTranslate": "Когда они взломали скалу, они увидели, что она была заполнена кусками золота", - "textMeaningTranslate": "Кусок - это толстый, прочный кусок чего-то", - "wordTranslate": "кусок" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01ae" - }, - "group": 5, - "page": 17, - "word": "civic", - "image": "files/18_3343.jpg", - "audio": "files/18_3343.mp3", - "audioMeaning": "files/18_3343_meaning.mp3", - "audioExample": "files/18_3343_example.mp3", - "textMeaning": "If something is civic, then it is related to a town or city, in particular to its government.", - "textExample": "Most of the important civic buildings are located downtown.", - "transcription": "[sívik]", - "__v": 0, - "textExampleTranslate": "Большинство важных гражданских зданий расположены в центре города", - "textMeaningTranslate": "Если что-то гражданское, то это связано с городом или городом, в частности с его правительством", - "wordTranslate": "гражданский" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01af" - }, - "group": 5, - "page": 17, - "word": "descent", - "image": "files/18_3344.jpg", - "audio": "files/18_3344.mp3", - "audioMeaning": "files/18_3344_meaning.mp3", - "audioExample": "files/18_3344_example.mp3", - "textMeaning": "A descent is a movement downwards.", - "textExample": "During the space shuttle’s descent, the Earth appeared larger and larger.", - "transcription": "[disént]", - "__v": 0, - "textExampleTranslate": "Во время спуска космического челнока Земля становилась все больше и больше", - "textMeaningTranslate": "Спуск - это движение вниз", - "wordTranslate": "спуск" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01b0" - }, - "group": 5, - "page": 17, - "word": "din", - "image": "files/18_3345.jpg", - "audio": "files/18_3345.mp3", - "audioMeaning": "files/18_3345_meaning.mp3", - "audioExample": "files/18_3345_example.mp3", - "textMeaning": "A din is loud, unpleasant, and extended noise.", - "textExample": "The din of the rusty machinery made the factory a horrible place to work.", - "transcription": "[din]", - "__v": 0, - "textExampleTranslate": "Грохот ржавого оборудования сделал фабрику ужасным местом для работы", - "textMeaningTranslate": "Грохот громкий, неприятный и продолжительный шум", - "wordTranslate": "дин" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01b1" - }, - "group": 5, - "page": 17, - "word": "dissatisfy", - "image": "files/18_3346.jpg", - "audio": "files/18_3346.mp3", - "audioMeaning": "files/18_3346_meaning.mp3", - "audioExample": "files/18_3346_example.mp3", - "textMeaning": "To dissatisfy someone means to fail to please them.", - "textExample": "He was dissatisfied with his meal.", - "transcription": "[dissǽtisfài]", - "__v": 0, - "textExampleTranslate": "Он был недоволен своей едой", - "textMeaningTranslate": "Неудовлетворять кого-то - значит не угодить им", - "wordTranslate": "разочарует" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01b2" - }, - "group": 5, - "page": 17, - "word": "fuss", - "image": "files/18_3347.jpg", - "audio": "files/18_3347.mp3", - "audioMeaning": "files/18_3347_meaning.mp3", - "audioExample": "files/18_3347_example.mp3", - "textMeaning": "A fuss is excited or annoyed behavior that is not useful in any way.", - "textExample": "The child made an awful fuss because she didn’t want to go to bed.", - "transcription": "[fʌs]", - "__v": 0, - "textExampleTranslate": "Ребенок устроил ужасную суету, потому что не хотела ложиться спать", - "textMeaningTranslate": "Суета - это возбужденное или раздраженное поведение, которое бесполезно", - "wordTranslate": "возня" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01b3" - }, - "group": 5, - "page": 17, - "word": "glamorous", - "image": "files/18_3348.jpg", - "audio": "files/18_3348.mp3", - "audioMeaning": "files/18_3348_meaning.mp3", - "audioExample": "files/18_3348_example.mp3", - "textMeaning": "A glamorous occasion is one full of beauty and excitement.", - "textExample": "There is nothing glamorous about where we live. It is very ordinary.", - "transcription": "[glǽmərəs]", - "__v": 0, - "textExampleTranslate": "Нет ничего очаровательного в том, где мы живем. Это очень обычное дело", - "textMeaningTranslate": "Гламурное событие - это то, что наполнено красотой и волнением", - "wordTranslate": "гламурный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01b4" - }, - "group": 5, - "page": 17, - "word": "gourmet", - "image": "files/18_3349.jpg", - "audio": "files/18_3349.mp3", - "audioMeaning": "files/18_3349_meaning.mp3", - "audioExample": "files/18_3349_example.mp3", - "textMeaning": "If food is gourmet, then it is nicer and more expensive than regular food.", - "textExample": "In order to get a gourmet meal, you have to eat at an expensive restaurant.", - "transcription": "[gúərmei]", - "__v": 0, - "textExampleTranslate": "Чтобы получить изысканную еду, нужно поесть в дорогом ресторане", - "textMeaningTranslate": "Если еда для гурманов, то она приятнее и дороже, чем обычная еда", - "wordTranslate": "гурманов" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01b5" - }, - "group": 5, - "page": 17, - "word": "hence", - "image": "files/18_3350.jpg", - "audio": "files/18_3350.mp3", - "audioMeaning": "files/18_3350_meaning.mp3", - "audioExample": "files/18_3350_example.mp3", - "textMeaning": "The word hence shows that something is a result of something else.", - "textExample": "Mary forgot the key. Hence, we couldn’t open the door.", - "transcription": "[hens]", - "__v": 0, - "textExampleTranslate": "Мэри забыла ключ. Следовательно, мы не могли открыть дверь", - "textMeaningTranslate": "Слово означает, что что-то является результатом чего-то другого", - "wordTranslate": "следовательно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01b6" - }, - "group": 5, - "page": 17, - "word": "intrinsic", - "image": "files/18_3351.jpg", - "audio": "files/18_3351.mp3", - "audioMeaning": "files/18_3351_meaning.mp3", - "audioExample": "files/18_3351_example.mp3", - "textMeaning": "If something is intrinsic, then it is related to the basic nature of that thing.", - "textExample": "Paper money has no intrinsic value. It is useful simply because society says it is.", - "transcription": "[intrínsik]", - "__v": 0, - "textExampleTranslate": "Бумажные деньги не имеют внутренней ценности. Они полезны просто потому, что общество так говорит", - "textMeaningTranslate": "Если что-то присуще, то это связано с основной природой этой вещи", - "wordTranslate": "внутренний" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01b7" - }, - "group": 5, - "page": 17, - "word": "kettle", - "image": "files/18_3352.jpg", - "audio": "files/18_3352.mp3", - "audioMeaning": "files/18_3352_meaning.mp3", - "audioExample": "files/18_3352_example.mp3", - "textMeaning": "A kettle is a large metal pot used for boiling liquids or cooking food.", - "textExample": "The soup was being cooked in a large kettle.", - "transcription": "[kétl]", - "__v": 0, - "textExampleTranslate": "Суп готовили в большом чайнике", - "textMeaningTranslate": "Чайник - это большая металлическая кастрюля, используемая для кипячения жидкостей или приготовления пищи", - "wordTranslate": "чайник" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01b8" - }, - "group": 5, - "page": 17, - "word": "ministry", - "image": "files/18_3353.jpg", - "audio": "files/18_3353.mp3", - "audioMeaning": "files/18_3353_meaning.mp3", - "audioExample": "files/18_3353_example.mp3", - "textMeaning": "A ministry is a government department.", - "textExample": "The Ministry of Trade is responsible for taxing imports and exports.", - "transcription": "[mínistri:]", - "__v": 0, - "textExampleTranslate": "Министерство торговли отвечает за налогообложение импорта и экспорта", - "textMeaningTranslate": "Министерство - это правительственное ведомство", - "wordTranslate": "министерство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01b9" - }, - "group": 5, - "page": 17, - "word": "ordeal", - "image": "files/18_3354.jpg", - "audio": "files/18_3354.mp3", - "audioMeaning": "files/18_3354_meaning.mp3", - "audioExample": "files/18_3354_example.mp3", - "textMeaning": "An ordeal is a bad experience.", - "textExample": "Driving in the snowstorm was an ordeal she’d never forget.", - "transcription": "[ɔːrdíːəl]", - "__v": 0, - "textExampleTranslate": "Вождение в метель было тяжелым испытанием, которое она никогда не забудет", - "textMeaningTranslate": "Испытание - это плохой опыт", - "wordTranslate": "испытание" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01ba" - }, - "group": 5, - "page": 17, - "word": "outspoken", - "image": "files/18_3355.jpg", - "audio": "files/18_3355.mp3", - "audioMeaning": "files/18_3355_meaning.mp3", - "audioExample": "files/18_3355_example.mp3", - "textMeaning": "If someone is outspoken, then they are not afraid to say what they think.", - "textExample": "She was an outspoken critic about the new banking laws.", - "transcription": "[àutspóukkən]", - "__v": 0, - "textExampleTranslate": "Она была откровенным критиком о новых банковских законах", - "textMeaningTranslate": "Если кто-то откровенен, то он не боится говорить то, что думает", - "wordTranslate": "откровенный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01bb" - }, - "group": 5, - "page": 17, - "word": "overwork", - "image": "files/18_3356.jpg", - "audio": "files/18_3356.mp3", - "audioMeaning": "files/18_3356_meaning.mp3", - "audioExample": "files/18_3356_example.mp3", - "textMeaning": "To overwork someone means to make them tired with too much work.", - "textExample": "After working for three weeks with only one day of rest, Judy was overworked.", - "transcription": "[òuvərwə́ːrk]", - "__v": 0, - "textExampleTranslate": "После трехдневной работы с одним днем отдыха Джуди была переутомлена", - "textMeaningTranslate": "Переутомить кого-то - значит утомить его слишком большой работой", - "wordTranslate": "переутомление" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01bc" - }, - "group": 5, - "page": 17, - "word": "particular", - "image": "files/18_3357.jpg", - "audio": "files/18_3357.mp3", - "audioMeaning": "files/18_3357_meaning.mp3", - "audioExample": "files/18_3357_example.mp3", - "textMeaning": "If something is particular, then it is a single, important part of a group of things.", - "textExample": "The dress shop didn’t have the particular dress she was looking for.", - "transcription": "[pərtíkjələr]", - "__v": 0, - "textExampleTranslate": "В магазине одежды не было того платья, которое она искала", - "textMeaningTranslate": "Если что-то особенное, то это единственная важная часть группы вещей", - "wordTranslate": "специфический" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01bd" - }, - "group": 5, - "page": 17, - "word": "snore", - "image": "files/18_3358.jpg", - "audio": "files/18_3358.mp3", - "audioMeaning": "files/18_3358_meaning.mp3", - "audioExample": "files/18_3358_example.mp3", - "textMeaning": "To snore means to make a loud noise each time a sleeping person breathes.", - "textExample": "It was impossible to get to sleep because my husband snored.", - "transcription": "[snɔːr]", - "__v": 0, - "textExampleTranslate": "Невозможно было заснуть, потому что мой муж храпел", - "textMeaningTranslate": "Храпить - значит издавать громкий шум каждый раз, когда спящий человек дышит", - "wordTranslate": "храп" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01be" - }, - "group": 5, - "page": 17, - "word": "superintendent", - "image": "files/18_3360.jpg", - "audio": "files/18_3360.mp3", - "audioMeaning": "files/18_3360_meaning.mp3", - "audioExample": "files/18_3360_example.mp3", - "textMeaning": "A superintendent is a person who runs a certain department or building.", - "textExample": "The superintendent decided to close the schools because of the weather.", - "transcription": "[sùːpərinténdənt]", - "__v": 0, - "textExampleTranslate": "Руководитель решил закрыть школы из-за погоды", - "textMeaningTranslate": "Суперинтендант - это человек, который руководит определенным отделом или зданием", - "wordTranslate": "смотритель" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01bf" - }, - "group": 5, - "page": 17, - "word": "soundly", - "image": "files/18_3359.jpg", - "audio": "files/18_3359.mp3", - "audioMeaning": "files/18_3359_meaning.mp3", - "audioExample": "files/18_3359_example.mp3", - "textMeaning": "If something is done soundly, then it is done in the best or most complete way.", - "textExample": "The nearest opponent was ten meters behind. She won the race soundly.", - "transcription": "[sáundli:]", - "__v": 0, - "textExampleTranslate": "Ближайшая соперница отставала на десять метров. Она победила в гонке", - "textMeaningTranslate": "Если что-то сделано разумно, то это делается наилучшим или наиболее полным способом", - "wordTranslate": "обоснованно" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01c0" - }, - "group": 5, - "page": 18, - "word": "congested", - "image": "files/19_3361.jpg", - "audio": "files/19_3361.mp3", - "audioMeaning": "files/19_3361_meaning.mp3", - "audioExample": "files/19_3361_example.mp3", - "textMeaning": "If something is congested, it is full or blocked.", - "textExample": "Tom didn’t get home until after dark because the road was so congested.", - "transcription": "[kəndʒéstid]", - "__v": 0, - "textExampleTranslate": "Том не возвращался домой до наступления темноты, потому что дорога была настолько перегружена", - "textMeaningTranslate": "Если что-то перегружено, оно заполнено или заблокировано", - "wordTranslate": "перегружен" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01c1" - }, - "group": 5, - "page": 18, - "word": "courier", - "image": "files/19_3362.jpg", - "audio": "files/19_3362.mp3", - "audioMeaning": "files/19_3362_meaning.mp3", - "audioExample": "files/19_3362_example.mp3", - "textMeaning": "A courier is someone who takes and delivers mail or packages.", - "textExample": "Before trains, most couriers used horses to travel.", - "transcription": "[kə́ːriər]", - "__v": 0, - "textExampleTranslate": "До поезда большинство курьеров использовали лошадей для путешествий", - "textMeaningTranslate": "Курьер - это тот, кто берет и доставляет почту или посылки", - "wordTranslate": "курьер" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01c2" - }, - "group": 5, - "page": 18, - "word": "deform", - "image": "files/19_3363.jpg", - "audio": "files/19_3363.mp3", - "audioMeaning": "files/19_3363_meaning.mp3", - "audioExample": "files/19_3363_example.mp3", - "textMeaning": "To deform something means to change it from its correct or original shape.", - "textExample": "The computer program deformed the building’s picture into an unreal sight.", - "transcription": "[difɔ́ːrm]", - "__v": 0, - "textExampleTranslate": "Компьютерная программа превратила картину здания в нереальное зрелище", - "textMeaningTranslate": "Деформировать что-то - значит изменить его правильную или оригинальную форму", - "wordTranslate": "деформировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01c3" - }, - "group": 5, - "page": 18, - "word": "etiquette", - "image": "files/19_3364.jpg", - "audio": "files/19_3364.mp3", - "audioMeaning": "files/19_3364_meaning.mp3", - "audioExample": "files/19_3364_example.mp3", - "textMeaning": "Etiquette is the group of rules about how to be polite.", - "textExample": "When in Asian countries, bowing is a form of etiquette.", - "transcription": "[étikit]", - "__v": 0, - "textExampleTranslate": "Когда в азиатских странах, кланяясь является формой этикета", - "textMeaningTranslate": "Этикет - это группа правил о том, как быть вежливым", - "wordTranslate": "этикет" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01c4" - }, - "group": 5, - "page": 18, - "word": "exclusive", - "image": "files/19_3365.jpg", - "audio": "files/19_3365.mp3", - "audioMeaning": "files/19_3365_meaning.mp3", - "audioExample": "files/19_3365_example.mp3", - "textMeaning": "If something is exclusive, it is expensive and only for rich people.", - "textExample": "The golf course was so exclusive that most people hadn’t even heard of it.", - "transcription": "[iksklúːsiv]", - "__v": 0, - "textExampleTranslate": "Поле для гольфа было настолько эксклюзивным, что большинство людей даже не слышали об этом", - "textMeaningTranslate": "Если что-то эксклюзивное, это дорого и только для богатых людей", - "wordTranslate": "эксклюзивный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01c5" - }, - "group": 5, - "page": 18, - "word": "freight", - "image": "files/19_3366.jpg", - "audio": "files/19_3366.mp3", - "audioMeaning": "files/19_3366_meaning.mp3", - "audioExample": "files/19_3366_example.mp3", - "textMeaning": "Freight is a set of items carried on a train, boat, or airplane.", - "textExample": "Trade ships only carried valuable freight like silk and spices.", - "transcription": "[freit]", - "__v": 0, - "textExampleTranslate": "Торговые суда перевозили только ценные грузы, такие как шелк и специи", - "textMeaningTranslate": "Груз - это набор предметов, перевозимых в поезде, лодке или самолете", - "wordTranslate": "перевозка грузов" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01c6" - }, - "group": 5, - "page": 18, - "word": "garment", - "image": "files/19_3367.jpg", - "audio": "files/19_3367.mp3", - "audioMeaning": "files/19_3367_meaning.mp3", - "audioExample": "files/19_3367_example.mp3", - "textMeaning": "A garment is a piece of clothing.", - "textExample": "The businessman had all of his garments cleaned before the important meeting.", - "transcription": "[gάːrmənt]", - "__v": 0, - "textExampleTranslate": "У бизнесмена была чистка всей его одежды перед важной встречей", - "textMeaningTranslate": "Предмет одежды - это предмет одежды", - "wordTranslate": "одежда" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01c7" - }, - "group": 5, - "page": 18, - "word": "insomnia", - "image": "files/19_3368.jpg", - "audio": "files/19_3368.mp3", - "audioMeaning": "files/19_3368_meaning.mp3", - "audioExample": "files/19_3368_example.mp3", - "textMeaning": "Insomnia is a condition in which a person has difficulty sleeping.", - "textExample": "Nate’s insomnia prevented him from getting enough rest.", - "transcription": "[insɑ́mniə]", - "__v": 0, - "textExampleTranslate": "Бессонница Нейта помешала ему достаточно отдохнуть", - "textMeaningTranslate": "Бессонница - это состояние, при котором человеку трудно спать", - "wordTranslate": "бессонница" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01c8" - }, - "group": 5, - "page": 18, - "word": "intuitive", - "image": "files/19_3369.jpg", - "audio": "files/19_3369.mp3", - "audioMeaning": "files/19_3369_meaning.mp3", - "audioExample": "files/19_3369_example.mp3", - "textMeaning": "Intuitive is knowing about something without having support or proof.", - "textExample": "Rhonda had an intuitive feeling that Shane wasn’t coming to school today.", - "transcription": "[intjúːətiv]", - "__v": 0, - "textExampleTranslate": "У Ронды было интуитивное чувство, что Шейн сегодня не придет в школу", - "textMeaningTranslate": "Интуитивно это знать о чем-то, не имея поддержки или доказательств", - "wordTranslate": "интуитивный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01c9" - }, - "group": 5, - "page": 18, - "word": "liable", - "image": "files/19_3370.jpg", - "audio": "files/19_3370.mp3", - "audioMeaning": "files/19_3370_meaning.mp3", - "audioExample": "files/19_3370_example.mp3", - "textMeaning": "If something is liable to happen, it is very likely that it will happen.", - "textExample": "During the summer months, hikers in the forest are liable to see deer and elk.", - "transcription": "[láiəbl]", - "__v": 0, - "textExampleTranslate": "В летние месяцы туристы в лесу могут увидеть оленей и лосей", - "textMeaningTranslate": "Если что-то может произойти, очень вероятно, что это произойдет", - "wordTranslate": "ответственность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01ca" - }, - "group": 5, - "page": 18, - "word": "obsess", - "image": "files/19_3371.jpg", - "audio": "files/19_3371.mp3", - "audioMeaning": "files/19_3371_meaning.mp3", - "audioExample": "files/19_3371_example.mp3", - "textMeaning": "To obsess about something means to think about it all of the time.", - "textExample": "After watching the Star Wars movies, Ike obsessed about becoming a Jedi.", - "transcription": "[əbsés]", - "__v": 0, - "textExampleTranslate": "После просмотра фильмов 'Звездных войн' Айк одержима идеей стать джедаем", - "textMeaningTranslate": "Заниматься чем-то - значит постоянно думать об этом", - "wordTranslate": "зацикливаются" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01cb" - }, - "group": 5, - "page": 18, - "word": "overboard", - "image": "files/19_3372.jpg", - "audio": "files/19_3372.mp3", - "audioMeaning": "files/19_3372_meaning.mp3", - "audioExample": "files/19_3372_example.mp3", - "textMeaning": "When something is overboard, it is over the side of a boat and in the water.", - "textExample": "Tom and Gary slipped on the wet floor and fell overboard.", - "transcription": "[óuvərbɔ̀ːrd]", - "__v": 0, - "textExampleTranslate": "Том и Гэри поскользнулись на мокром полу и упали за борт", - "textMeaningTranslate": "Когда что-то за бортом, это за борт лодки и в воде", - "wordTranslate": "за борт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01cc" - }, - "group": 5, - "page": 18, - "word": "premium", - "image": "files/19_3373.jpg", - "audio": "files/19_3373.mp3", - "audioMeaning": "files/19_3373_meaning.mp3", - "audioExample": "files/19_3373_example.mp3", - "textMeaning": "A premium is a payment that is higher than average.", - "textExample": "Tony paid a premium for the gas because it made his car run better.", - "transcription": "[príːmiəm]", - "__v": 0, - "textExampleTranslate": "Тони заплатил премию за бензин, потому что он улучшил ход его машины", - "textMeaningTranslate": "Премия - это платеж, который выше среднего", - "wordTranslate": "премиум" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01cd" - }, - "group": 5, - "page": 18, - "word": "privilege", - "image": "files/19_3374.jpg", - "audio": "files/19_3374.mp3", - "audioMeaning": "files/19_3374_meaning.mp3", - "audioExample": "files/19_3374_example.mp3", - "textMeaning": "A privilege is a special right given only to a certain person or group of people.", - "textExample": "Only the best employee had the privilege of parking in that spot.", - "transcription": "[prívəlidʒ]", - "__v": 0, - "textExampleTranslate": "Только лучший сотрудник имел право парковаться в этом месте", - "textMeaningTranslate": "Привилегия - это особое право, данное только определенному человеку или группе людей", - "wordTranslate": "привилегия" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01ce" - }, - "group": 5, - "page": 18, - "word": "propel", - "image": "files/19_3375.jpg", - "audio": "files/19_3375.mp3", - "audioMeaning": "files/19_3375_meaning.mp3", - "audioExample": "files/19_3375_example.mp3", - "textMeaning": "To propel something means to push or move it somewhere.", - "textExample": "The strong wind propelled the leaf through the air and across the street.", - "transcription": "[prəpél]", - "__v": 0, - "textExampleTranslate": "Сильный ветер продвинул лист по воздуху и через улицу", - "textMeaningTranslate": "Продвинуть что-либо означает толкнуть или переместить это куда-нибудь", - "wordTranslate": "передвижение" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01cf" - }, - "group": 5, - "page": 18, - "word": "socialize", - "image": "files/19_3376.jpg", - "audio": "files/19_3376.mp3", - "audioMeaning": "files/19_3376_meaning.mp3", - "audioExample": "files/19_3376_example.mp3", - "textMeaning": "To socialize is to have a good time with people.", - "textExample": "I like to socialize with my classmates after school.", - "transcription": "[sóuʃəlàiz]", - "__v": 0, - "textExampleTranslate": "Мне нравится общаться с одноклассниками после школы", - "textMeaningTranslate": "Общаться - значит хорошо проводить время с людьми", - "wordTranslate": "социализировать" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01d0" - }, - "group": 5, - "page": 18, - "word": "suppress", - "image": "files/19_3377.jpg", - "audio": "files/19_3377.mp3", - "audioMeaning": "files/19_3377_meaning.mp3", - "audioExample": "files/19_3377_example.mp3", - "textMeaning": "To suppress something means to prevent it from happening.", - "textExample": "She suppressed her urge to scream because she didn’t want to be noticed.", - "transcription": "[səprés]", - "__v": 0, - "textExampleTranslate": "Она подавила желание кричать, потому что не хотела, чтобы ее заметили", - "textMeaningTranslate": "Подавить что-то значит предотвратить это", - "wordTranslate": "подавить" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01d1" - }, - "group": 5, - "page": 18, - "word": "tram", - "image": "files/19_3378.jpg", - "audio": "files/19_3378.mp3", - "audioMeaning": "files/19_3378_meaning.mp3", - "audioExample": "files/19_3378_example.mp3", - "textMeaning": "A tram is a vehicle like a streetcar that runs on electricity above ground.", - "textExample": "I took the tram to Eighth Avenue.", - "transcription": "[træm]", - "__v": 0, - "textExampleTranslate": "Я сел на трамвай до Восьмой авеню", - "textMeaningTranslate": "Трамвай - это транспортное средство, похожее на трамвай, работающий на электричестве над землей", - "wordTranslate": "трамвай" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01d2" - }, - "group": 5, - "page": 18, - "word": "unsettle", - "image": "files/19_3379.jpg", - "audio": "files/19_3379.mp3", - "audioMeaning": "files/19_3379_meaning.mp3", - "audioExample": "files/19_3379_example.mp3", - "textMeaning": "To unsettle someone means to make them anxious or worried.", - "textExample": "The dark clouds in the sky unsettled Beth.", - "transcription": "[ʌnsétl]", - "__v": 0, - "textExampleTranslate": "Темные тучи в небе взволновали Бет", - "textMeaningTranslate": "Расстраивать кого-то - значит заставлять его беспокоиться или беспокоиться", - "wordTranslate": "выбивает из колеи" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01d3" - }, - "group": 5, - "page": 18, - "word": "warp", - "image": "files/19_3380.jpg", - "audio": "files/19_3380.mp3", - "audioMeaning": "files/19_3380_meaning.mp3", - "audioExample": "files/19_3380_example.mp3", - "textMeaning": "To warp means to become bent into the wrong shape.", - "textExample": "The woman put the clock above the fireplace, and the heat warped it.", - "transcription": "[wɔːrp]", - "__v": 0, - "textExampleTranslate": "Женщина поставила часы над камином, и жара исказила их", - "textMeaningTranslate": "Деформировать - значит согнуться в неправильной форме", - "wordTranslate": "перекос" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01d4" - }, - "group": 5, - "page": 19, - "word": "accumulate", - "image": "files/20_3381.jpg", - "audio": "files/20_3381.mp3", - "audioMeaning": "files/20_3381_meaning.mp3", - "audioExample": "files/20_3381_example.mp3", - "textMeaning": "To accumulate something is to collect a lot of it over time.", - "textExample": "The mail accumulated in their mailbox while they were on vacation.", - "transcription": "[əkjúːmjulèit]", - "__v": 0, - "textExampleTranslate": "Почта накапливалась в их почтовом ящике, когда они были в отпуске", - "textMeaningTranslate": "Накопить что-то - значит собрать много со временем", - "wordTranslate": "аккумулируют" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01d5" - }, - "group": 5, - "page": 19, - "word": "aerial", - "image": "files/20_3382.jpg", - "audio": "files/20_3382.mp3", - "audioMeaning": "files/20_3382_meaning.mp3", - "audioExample": "files/20_3382_example.mp3", - "textMeaning": "When something is aerial, it relates to being in the air or flying.", - "textExample": "The aerial photographer took pictures from the air balloon.", - "transcription": "[έəriəl]", - "__v": 0, - "textExampleTranslate": "Аэрофотосъемка сделала снимки с воздушного шара", - "textMeaningTranslate": "Когда что-то воздушное, это связано с пребыванием в воздухе или полетом", - "wordTranslate": "антенна" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01d6" - }, - "group": 5, - "page": 19, - "word": "apparatus", - "image": "files/20_3383.jpg", - "audio": "files/20_3383.mp3", - "audioMeaning": "files/20_3383_meaning.mp3", - "audioExample": "files/20_3383_example.mp3", - "textMeaning": "An apparatus is a device used for a particular purpose.", - "textExample": "The campers had an apparatus that showed them their exact location.", - "transcription": "[ӕpərǽtəs]", - "__v": 0, - "textExampleTranslate": "У отдыхающих был аппарат, который показывал им их точное местоположение", - "textMeaningTranslate": "Устройство - это устройство, используемое для определенной цели", - "wordTranslate": "устройство" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01d7" - }, - "group": 5, - "page": 19, - "word": "discharge", - "image": "files/20_3386.jpg", - "audio": "files/20_3386.mp3", - "audioMeaning": "files/20_3386_meaning.mp3", - "audioExample": "files/20_3386_example.mp3", - "textMeaning": "To discharge someone is to allow them to leave from a place, usually a hospital.", - "textExample": "I was discharged from the hospital after three days.", - "transcription": "[distʃɑ́ːrdʒ]", - "__v": 0, - "textExampleTranslate": "Я был выписан из больницы через три дня", - "textMeaningTranslate": "Выписать кого-либо - значит позволить ему уйти из места, обычно из больницы", - "wordTranslate": "разрядка" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01d8" - }, - "group": 5, - "page": 19, - "word": "avalanche", - "image": "files/20_3384.jpg", - "audio": "files/20_3384.mp3", - "audioMeaning": "files/20_3384_meaning.mp3", - "audioExample": "files/20_3384_example.mp3", - "textMeaning": "An avalanche is a large amount of snow, ice, and rock falling of a mountain.", - "textExample": "The avalanche destroyed the mountain village.", - "transcription": "[ǽvəlæ̀ntʃ]", - "__v": 0, - "textExampleTranslate": "Лавина разрушила горную деревню", - "textMeaningTranslate": "Лавина - это большое количество снега, льда и камнепадов", - "wordTranslate": "лавина" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01d9" - }, - "group": 5, - "page": 19, - "word": "intact", - "image": "files/20_3388.jpg", - "audio": "files/20_3388.mp3", - "audioMeaning": "files/20_3388_meaning.mp3", - "audioExample": "files/20_3388_example.mp3", - "textMeaning": "When something is intact, it is complete and not damaged.", - "textExample": "Despite being over 30 years old, my father’s model ship is still intact.", - "transcription": "[intǽkt]", - "__v": 0, - "textExampleTranslate": "Несмотря на то, что мне более 30 лет, модель корабля моего отца все еще не повреждена", - "textMeaningTranslate": "Когда что-то не повреждено, оно полно и не повреждено", - "wordTranslate": "нетронутый" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01da" - }, - "group": 5, - "page": 19, - "word": "consistency", - "image": "files/20_3385.jpg", - "audio": "files/20_3385.mp3", - "audioMeaning": "files/20_3385_meaning.mp3", - "audioExample": "files/20_3385_example.mp3", - "textMeaning": "Consistency is the state of always behaving in the same way.", - "textExample": "Her consistency in archery meant that our team had a chance to win.", - "transcription": "[kənsístənsi]", - "__v": 0, - "textExampleTranslate": "Ее последовательность в стрельбе из лука означала, что у нашей команды был шанс победить", - "textMeaningTranslate": "Согласованность - это состояние всегда вести себя одинаково", - "wordTranslate": "согласованность" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01db" - }, - "group": 5, - "page": 19, - "word": "episode", - "image": "files/20_3387.jpg", - "audio": "files/20_3387.mp3", - "audioMeaning": "files/20_3387_meaning.mp3", - "audioExample": "files/20_3387_example.mp3", - "textMeaning": "An episode is something that happens as part of a series of events.", - "textExample": "We watched the final exciting episode of the TV series.", - "transcription": "[épəsòud]", - "__v": 0, - "textExampleTranslate": "Мы смотрели финальный захватывающий эпизод сериала", - "textMeaningTranslate": "Эпизод - это то, что происходит как часть серии событий", - "wordTranslate": "эпизод" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01dc" - }, - "group": 5, - "page": 19, - "word": "mortal", - "image": "files/20_3389.jpg", - "audio": "files/20_3389.mp3", - "audioMeaning": "files/20_3389_meaning.mp3", - "audioExample": "files/20_3389_example.mp3", - "textMeaning": "When a person is mortal, they cannot live forever.", - "textExample": "All people are mortal.", - "transcription": "[mɔ́ːrtl]", - "__v": 0, - "textExampleTranslate": "Все люди смертны", - "textMeaningTranslate": "Когда люди смертны, они не могут жить вечно", - "wordTranslate": "смертный" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01dd" - }, - "group": 5, - "page": 19, - "word": "poignant", - "image": "files/20_3392.jpg", - "audio": "files/20_3392.mp3", - "audioMeaning": "files/20_3392_meaning.mp3", - "audioExample": "files/20_3392_example.mp3", - "textMeaning": "When something is poignant, it causes a very strong feeling of sadness.", - "textExample": "The girls cried at the end of the poignant movie.", - "transcription": "[pɔ́injənt]", - "__v": 0, - "textExampleTranslate": "Девушки плакали в конце острого фильма", - "textMeaningTranslate": "Когда что-то острое, это вызывает очень сильное чувство грусти", - "wordTranslate": "горький" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01de" - }, - "group": 5, - "page": 19, - "word": "omen", - "image": "files/20_3390.jpg", - "audio": "files/20_3390.mp3", - "audioMeaning": "files/20_3390_meaning.mp3", - "audioExample": "files/20_3390_example.mp3", - "textMeaning": "An omen is a sign of what will happen in the future.", - "textExample": "He thought that seeing a black cat in the street was an omen of bad luck.", - "transcription": "[óumən]", - "__v": 0, - "textExampleTranslate": "Он думал, что видеть черного кота на улице - предзнаменование неудачи", - "textMeaningTranslate": "Предзнаменование является признаком того, что произойдет в будущем", - "wordTranslate": "предзнаменование" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01df" - }, - "group": 5, - "page": 19, - "word": "overcast", - "image": "files/20_3391.jpg", - "audio": "files/20_3391.mp3", - "audioMeaning": "files/20_3391_meaning.mp3", - "audioExample": "files/20_3391_example.mp3", - "textMeaning": "When the sky is overcast, it is full of clouds and is not sunny.", - "textExample": "The sky was overcast in the morning, but by noon it was bright again.", - "transcription": "[óuvərkæst]", - "__v": 0, - "textExampleTranslate": "Утром было пасмурное небо, но к полудню оно снова стало ярким", - "textMeaningTranslate": "Когда небо пасмурное, оно полно облаков и не солнечно", - "wordTranslate": "пасмурная погода" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01e0" - }, - "group": 5, - "page": 19, - "word": "ranger", - "image": "files/20_3393.jpg", - "audio": "files/20_3393.mp3", - "audioMeaning": "files/20_3393_meaning.mp3", - "audioExample": "files/20_3393_example.mp3", - "textMeaning": "A ranger is a person who protects forests or parks.", - "textExample": "Peter wanted to be a ranger because he liked spending time outside.", - "transcription": "[réindʒər]", - "__v": 0, - "textExampleTranslate": "Питер хотел быть рейнджером, потому что ему нравилось проводить время на улице", - "textMeaningTranslate": "Рейнджер - это человек, который защищает леса или парки", - "wordTranslate": "следопыт" -},{ - "_id": { - "$oid": "5e9f5ee35eb9e72bc21b01e1" - }, - "group": 5, - "page": 19, - "word": "rubble", - "image": "files/20_3394.jpg", - "audio": "files/20_3394.mp3", - "audioMeaning": "files/20_3394_meaning.mp3", - "audioExample": "files/20_3394_example.mp3", - "textMeaning": "Rubble is piles of broken stone and wood created after a building is destroyed.", - "textExample": "There was rubble all over the city after the earthquake.", - "transcription": "[rʌ́bəl]", - "__v": 0, - "textExampleTranslate": "После землетрясения по всему городу были обломки", - "textMeaningTranslate": "Щебень - это груды битого камня и дерева, созданные после разрушения здания", - "wordTranslate": "щебень" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01e2" - }, - "group": 5, - "page": 19, - "word": "sideways", - "image": "files/20_3396.jpg", - "audio": "files/20_3396.mp3", - "audioMeaning": "files/20_3396_meaning.mp3", - "audioExample": "files/20_3396_example.mp3", - "textMeaning": "If something moves sideways, then it moves to or from the side.", - "textExample": "Jim turned sideways in order to slow down and stop his snowboard.", - "transcription": "[sáidwèiz]", - "__v": 0, - "textExampleTranslate": "Джим повернулся в сторону, чтобы замедлить и остановить свой сноуборд", - "textMeaningTranslate": "Если что-то движется в сторону, то оно движется в сторону или из стороны", - "wordTranslate": "боком" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01e3" - }, - "group": 5, - "page": 19, - "word": "sob", - "image": "files/20_3397.jpg", - "audio": "files/20_3397.mp3", - "audioMeaning": "files/20_3397_meaning.mp3", - "audioExample": "files/20_3397_example.mp3", - "textMeaning": "To sob is to cry loudly.", - "textExample": "I sobbed when my youngest daughter got married.", - "transcription": "[sɑb]", - "__v": 0, - "textExampleTranslate": "Я рыдала, когда моя младшая дочь вышла замуж", - "textMeaningTranslate": "Рыдать - это плакать громко", - "wordTranslate": "рыдать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01e4" - }, - "group": 5, - "page": 19, - "word": "seclude", - "image": "files/20_3395.jpg", - "audio": "files/20_3395.mp3", - "audioMeaning": "files/20_3395_meaning.mp3", - "audioExample": "files/20_3395_example.mp3", - "textMeaning": "To seclude someone means to keep them away from other people.", - "textExample": "She was secluded on an island for over a year.", - "transcription": "[siklúːd]", - "__v": 0, - "textExampleTranslate": "Она была уединена на острове больше года", - "textMeaningTranslate": "Уединять кого-то - значит держать его подальше от других людей", - "wordTranslate": "уединиться" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01e5" - }, - "group": 5, - "page": 19, - "word": "sober", - "image": "files/20_3398.jpg", - "audio": "files/20_3398.mp3", - "audioMeaning": "files/20_3398_meaning.mp3", - "audioExample": "files/20_3398_example.mp3", - "textMeaning": "When something or someone is sober, they are serious and calm.", - "textExample": "After the funeral, everybody felt very sober.", - "transcription": "[sóubər]", - "__v": 0, - "textExampleTranslate": "После похорон все чувствовали себя очень трезво", - "textMeaningTranslate": "Когда кто-то или кто-то трезв, они серьезны и спокойны", - "wordTranslate": "трезвый" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01e6" - }, - "group": 5, - "page": 19, - "word": "speck", - "image": "files/20_3399.jpg", - "audio": "files/20_3399.mp3", - "audioMeaning": "files/20_3399_meaning.mp3", - "audioExample": "files/20_3399_example.mp3", - "textMeaning": "A speck is a very small mark or amount.", - "textExample": "A speck of blood appeared where the mosquito had bit him.", - "transcription": "[spek]", - "__v": 0, - "textExampleTranslate": "Пятно крови появилось там, где его укусил комар", - "textMeaningTranslate": "Пятнышко - это очень маленькая отметка или количество", - "wordTranslate": "пятнышко" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01e7" - }, - "group": 5, - "page": 19, - "word": "upbringing", - "image": "files/20_3400.jpg", - "audio": "files/20_3400.mp3", - "audioMeaning": "files/20_3400_meaning.mp3", - "audioExample": "files/20_3400_example.mp3", - "textMeaning": "An upbringing is the way that someone is taught to behave by their parents.", - "textExample": "He had a strict upbringing and was never allowed to watch television.", - "transcription": "[ʌ́pbrìŋiŋ]", - "__v": 0, - "textExampleTranslate": "У него было строгое воспитание, и ему никогда не разрешали смотреть телевизор", - "textMeaningTranslate": "Воспитание - это способ, которым кого-то учат вести себя со своими родителями", - "wordTranslate": "воспитание" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01e8" - }, - "group": 5, - "page": 20, - "word": "butler", - "image": "files/21_3402.jpg", - "audio": "files/21_3402.mp3", - "audioMeaning": "files/21_3402_meaning.mp3", - "audioExample": "files/21_3402_example.mp3", - "textMeaning": "A butler is the most important male servant in a wealthy house.", - "textExample": "Whenever he needed something, he rang a bell, and the butler appeared.", - "transcription": "[bΛtlər]", - "__v": 0, - "textExampleTranslate": "Всякий раз, когда ему что-то было нужно, он звонил, и появлялся дворецкий", - "textMeaningTranslate": "Дворецкий - самый важный слуга мужского пола в богатом доме", - "wordTranslate": "дворецкий" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01e9" - }, - "group": 5, - "page": 20, - "word": "bliss", - "image": "files/21_3401.jpg", - "audio": "files/21_3401.mp3", - "audioMeaning": "files/21_3401_meaning.mp3", - "audioExample": "files/21_3401_example.mp3", - "textMeaning": "Bliss is a state of complete happiness.", - "textExample": "Every time he sees his girlfriend, he feels a sense of bliss.", - "transcription": "[blis]", - "__v": 0, - "textExampleTranslate": "Каждый раз, когда он видит свою девушку, он испытывает чувство блаженства", - "textMeaningTranslate": "Блаженство - это состояние полного счастья", - "wordTranslate": "блаженство" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01ea" - }, - "group": 5, - "page": 20, - "word": "cramp", - "image": "files/21_3403.jpg", - "audio": "files/21_3403.mp3", - "audioMeaning": "files/21_3403_meaning.mp3", - "audioExample": "files/21_3403_example.mp3", - "textMeaning": "A cramp is a strong pain caused by a muscle after a lot of physical use.", - "textExample": "After the marathon, Jenny got a terrible cramp in her calf muscle.", - "transcription": "[kræmp]", - "__v": 0, - "textExampleTranslate": "После марафона у Дженни начались ужасные судороги в икроножных мышцах", - "textMeaningTranslate": "Судорога - это сильная боль, вызванная мышцами после большого физического использования", - "wordTranslate": "судорога" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01eb" - }, - "group": 5, - "page": 20, - "word": "decorate", - "image": "files/21_3404.jpg", - "audio": "files/21_3404.mp3", - "audioMeaning": "files/21_3404_meaning.mp3", - "audioExample": "files/21_3404_example.mp3", - "textMeaning": "When you decorate a room, you make it more attractive by adding beautiful things to it.", - "textExample": "Have you decorated the room for Christmas yet?", - "transcription": "[dékərèit]", - "__v": 0, - "textExampleTranslate": "Ты уже украсил комнату на Рождество?", - "textMeaningTranslate": "Когда вы украшаете комнату, вы делаете ее более привлекательной, добавляя в нее красивые вещи", - "wordTranslate": "украшают" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01ec" - }, - "group": 5, - "page": 20, - "word": "dilapidated", - "image": "files/21_3405.jpg", - "audio": "files/21_3405.mp3", - "audioMeaning": "files/21_3405_meaning.mp3", - "audioExample": "files/21_3405_example.mp3", - "textMeaning": "When a building is dilapidated, it is old and in bad condition.", - "textExample": "Paint peeled off of the old dilapidated apartment building.", - "transcription": "[dilǽpədèitid]", - "__v": 0, - "textExampleTranslate": "Очищенная краска от старого ветхого жилого дома", - "textMeaningTranslate": "Когда здание ветхое, оно старое и в плохом состоянии", - "wordTranslate": "ветхий" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01ef" - }, - "group": 5, - "page": 20, - "word": "faucet", - "image": "files/21_3408.jpg", - "audio": "files/21_3408.mp3", - "audioMeaning": "files/21_3408_meaning.mp3", - "audioExample": "files/21_3408_example.mp3", - "textMeaning": "A faucet is a device that controls the flow of a liquid or gas.", - "textExample": "Turn off the faucet when you are done brushing your teeth.", - "transcription": "[fɔ́ːsit]", - "__v": 0, - "textExampleTranslate": "Выключите кран, когда закончите чистить зубы", - "textMeaningTranslate": "Кран - это устройство, которое контролирует поток жидкости или газа", - "wordTranslate": "кран" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01f0" - }, - "group": 5, - "page": 20, - "word": "filth", - "image": "files/21_3409.jpg", - "audio": "files/21_3409.mp3", - "audioMeaning": "files/21_3409_meaning.mp3", - "audioExample": "files/21_3409_example.mp3", - "textMeaning": "Filth is dirt or dirty things that disgust you.", - "textExample": "There was tons of filth and trash on the shore of the river.", - "transcription": "[fílθ]", - "__v": 0, - "textExampleTranslate": "На берегу реки было много грязи и мусора", - "textMeaningTranslate": "Грязь - это грязь или грязные вещи, которые тебе противны", - "wordTranslate": "гадость" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01ee" - }, - "group": 5, - "page": 20, - "word": "farewell", - "image": "files/21_3407.jpg", - "audio": "files/21_3407.mp3", - "audioMeaning": "files/21_3407_meaning.mp3", - "audioExample": "files/21_3407_example.mp3", - "textMeaning": "A farewell is an instance of saying goodbye or a way to say it.", - "textExample": "She got on the plane after we said our farewells.", - "transcription": "[fεərwél]", - "__v": 0, - "textExampleTranslate": "Она села в самолет после того, как мы попрощались", - "textMeaningTranslate": "Прощание - это пример прощания или способ сказать это", - "wordTranslate": "прощальный привет" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01ed" - }, - "group": 5, - "page": 20, - "word": "evoke", - "image": "files/21_3406.jpg", - "audio": "files/21_3406.mp3", - "audioMeaning": "files/21_3406_meaning.mp3", - "audioExample": "files/21_3406_example.mp3", - "textMeaning": "To evoke a memory or emotion means to make it occur.", - "textExample": "The picture evoked memories of when she was a young girl.", - "transcription": "[ivóuk]", - "__v": 0, - "textExampleTranslate": "Картина вызывает воспоминания о том, когда она была маленькой девочкой", - "textMeaningTranslate": "Пробуждать память или эмоцию - значит делать это", - "wordTranslate": "вызвать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01f1" - }, - "group": 5, - "page": 20, - "word": "flaw", - "image": "files/21_3410.jpg", - "audio": "files/21_3410.mp3", - "audioMeaning": "files/21_3410_meaning.mp3", - "audioExample": "files/21_3410_example.mp3", - "textMeaning": "A flaw is a mistake in something that causes it to be less effective or correct.", - "textExample": "We discovered a major flaw in the metal chain.", - "transcription": "[flɔː]", - "__v": 0, - "textExampleTranslate": "Мы обнаружили большой недостаток в металлической цепи", - "textMeaningTranslate": "Недостаток - это ошибка в чем-то, что делает его менее эффективным или правильным", - "wordTranslate": "недостаток" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01f2" - }, - "group": 5, - "page": 20, - "word": "grin", - "image": "files/21_3411.jpg", - "audio": "files/21_3411.mp3", - "audioMeaning": "files/21_3411_meaning.mp3", - "audioExample": "files/21_3411_example.mp3", - "textMeaning": "To grin means to smile broadly.", - "textExample": "That joke makes me grin every time I hear it.", - "transcription": "[grin]", - "__v": 0, - "textExampleTranslate": "Эта шутка заставляет меня улыбаться каждый раз, когда я ее слышу", - "textMeaningTranslate": "Усмехаться значит широко улыбаться", - "wordTranslate": "оскал" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01f3" - }, - "group": 5, - "page": 20, - "word": "housekeeping", - "image": "files/21_3412.jpg", - "audio": "files/21_3412.mp3", - "audioMeaning": "files/21_3412_meaning.mp3", - "audioExample": "files/21_3412_example.mp3", - "textMeaning": "Housekeeping is the maintenance of a house or an establishment like a hotel.", - "textExample": "Housekeeping is not much fun, but it has to be done.", - "transcription": "[háuskìːpiŋ]", - "__v": 0, - "textExampleTranslate": "Домашнее хозяйство не очень весело, но это должно быть сделано", - "textMeaningTranslate": "Домашнее хозяйство - это обслуживание дома или заведения, подобного отелю", - "wordTranslate": "домашнее хозяйство" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01f4" - }, - "group": 5, - "page": 20, - "word": "mound", - "image": "files/21_3413.jpg", - "audio": "files/21_3413.mp3", - "audioMeaning": "files/21_3413_meaning.mp3", - "audioExample": "files/21_3413_example.mp3", - "textMeaning": "A mound of something is a large pile of it.", - "textExample": "There was a mound of clothes on the teenager’s messy floor.", - "transcription": "[maund]", - "__v": 0, - "textExampleTranslate": "На грязном полу подростка была куча одежды", - "textMeaningTranslate": "Куча чего-то - большая куча этого", - "wordTranslate": "курган" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01f6" - }, - "group": 5, - "page": 20, - "word": "reckless", - "image": "files/21_3415.jpg", - "audio": "files/21_3415.mp3", - "audioMeaning": "files/21_3415_meaning.mp3", - "audioExample": "files/21_3415_example.mp3", - "textMeaning": "When people are reckless, they act in an unsafe way.", - "textExample": "The reckless driver posed a threat to everyone else on the road.", - "transcription": "[réklis]", - "__v": 0, - "textExampleTranslate": "Безрассудный водитель представлял угрозу для всех остальных на дороге", - "textMeaningTranslate": "Когда люди безрассудны, они действуют небезопасно", - "wordTranslate": "безрассудный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01f5" - }, - "group": 5, - "page": 20, - "word": "numb", - "image": "files/21_3414.jpg", - "audio": "files/21_3414.mp3", - "audioMeaning": "files/21_3414_meaning.mp3", - "audioExample": "files/21_3414_example.mp3", - "textMeaning": "When a body part is numb, it does not have any feeling.", - "textExample": "After holding my hand under the icy water, my fingers were numb.", - "transcription": "[nʌm]", - "__v": 0, - "textExampleTranslate": "Держа мою руку под ледяной водой, мои пальцы онемели", - "textMeaningTranslate": "Когда часть тела онемела, у нее нет никаких ощущений", - "wordTranslate": "онемевший" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01f7" - }, - "group": 5, - "page": 20, - "word": "slate", - "image": "files/21_3416.jpg", - "audio": "files/21_3416.mp3", - "audioMeaning": "files/21_3416_meaning.mp3", - "audioExample": "files/21_3416_example.mp3", - "textMeaning": "Slate is a dark grey rock that can easily be split into layers.", - "textExample": "The roof of the church is made of slate.", - "transcription": "[sleit]", - "__v": 0, - "textExampleTranslate": "Крыша церкви выполнена из шифера", - "textMeaningTranslate": "Сланец - это темно-серая скала, которая легко разбивается на слои", - "wordTranslate": "шифер" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01f8" - }, - "group": 5, - "page": 20, - "word": "stool", - "image": "files/21_3417.jpg", - "audio": "files/21_3417.mp3", - "audioMeaning": "files/21_3417_meaning.mp3", - "audioExample": "files/21_3417_example.mp3", - "textMeaning": "A stool is a seat with legs but no support for a person’s arms and back.", - "textExample": "I don’t find stools very comfortable to sit on.", - "transcription": "[stuːl]", - "__v": 0, - "textExampleTranslate": "Мне не очень удобно сидеть на стуле", - "textMeaningTranslate": "Табурет - это сиденье с ногами, но без поддержки рук и спины человека", - "wordTranslate": "стул" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01f9" - }, - "group": 5, - "page": 20, - "word": "testament", - "image": "files/21_3418.jpg", - "audio": "files/21_3418.mp3", - "audioMeaning": "files/21_3418_meaning.mp3", - "audioExample": "files/21_3418_example.mp3", - "textMeaning": "A testament to something shows that it exists or is true.", - "textExample": "The beautiful performance was a testament to the singer’s natural talents.", - "transcription": "[téstəmənt]", - "__v": 0, - "textExampleTranslate": "Прекрасное выступление было свидетельством природных талантов певца", - "textMeaningTranslate": "Завещание к чему-то показывает, что оно существует или истинно", - "wordTranslate": "завещание" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01fb" - }, - "group": 5, - "page": 20, - "word": "valve", - "image": "files/21_3420.jpg", - "audio": "files/21_3420.mp3", - "audioMeaning": "files/21_3420_meaning.mp3", - "audioExample": "files/21_3420_example.mp3", - "textMeaning": "A valve is a device attached to a pipe and controls the flow of liquid or air.", - "textExample": "The mechanic removed the dirt to clear the engine valve.", - "transcription": "[vælv]", - "__v": 0, - "textExampleTranslate": "Механик удалил грязь, чтобы очистить клапан двигателя", - "textMeaningTranslate": "Клапан - это устройство, прикрепленное к трубе и контролирующее поток жидкости или воздуха", - "wordTranslate": "клапан" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01fa" - }, - "group": 5, - "page": 20, - "word": "timber", - "image": "files/21_3419.jpg", - "audio": "files/21_3419.mp3", - "audioMeaning": "files/21_3419_meaning.mp3", - "audioExample": "files/21_3419_example.mp3", - "textMeaning": "Timber is wood that is used for building houses and making furniture.", - "textExample": "Trees in this area are grown specifically to be used for timber.", - "transcription": "[tímbər]", - "__v": 0, - "textExampleTranslate": "Деревья в этой области выращиваются специально для использования в качестве древесины", - "textMeaningTranslate": "Древесина - это древесина, которая используется для строительства домов и изготовления мебели", - "wordTranslate": "древесина" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01fc" - }, - "group": 5, - "page": 21, - "word": "camouflage", - "image": "files/22_3421.jpg", - "audio": "files/22_3421.mp3", - "audioMeaning": "files/22_3421_meaning.mp3", - "audioExample": "files/22_3421_example.mp3", - "textMeaning": "Camouflage is something used to hide people and things.", - "textExample": "The green and brown camouflage was best used for hiding in forests and jungles.", - "transcription": "[kǽməflὰːʒ]", - "__v": 0, - "textExampleTranslate": "Зелено-коричневый камуфляж лучше всего использовать для укрытия в лесах и джунглях", - "textMeaningTranslate": "Камуфляж - это то, что скрывает людей и вещи", - "wordTranslate": "камуфляж" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01fd" - }, - "group": 5, - "page": 21, - "word": "confront", - "image": "files/22_3422.jpg", - "audio": "files/22_3422.mp3", - "audioMeaning": "files/22_3422_meaning.mp3", - "audioExample": "files/22_3422_example.mp3", - "textMeaning": "When you confront someone, you meet them face to face to deal with a problem.", - "textExample": "I confronted him as he left the meeting and told him I thought he was wrong.", - "transcription": "[kənfrΛnt]", - "__v": 0, - "textExampleTranslate": "Я столкнулся с ним, когда он выходил из собрания, и сказал, что я думаю, что он неправ", - "textMeaningTranslate": "Когда вы сталкиваетесь с кем-то, вы встречаетесь с ним лицом к лицу, чтобы справиться с проблемой", - "wordTranslate": "конфронт" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01fe" - }, - "group": 5, - "page": 21, - "word": "contemplate", - "image": "files/22_3423.jpg", - "audio": "files/22_3423.mp3", - "audioMeaning": "files/22_3423_meaning.mp3", - "audioExample": "files/22_3423_example.mp3", - "textMeaning": "To contemplate something means to think about it.", - "textExample": "Mark took a moment to contemplate the math problem before solving it.", - "transcription": "[kɑ́ntəmplèit]", - "__v": 0, - "textExampleTranslate": "Марку потребовалось время, чтобы обдумать математическую задачу, прежде чем ее решить", - "textMeaningTranslate": "Размышлять о чем-то значит думать об этом", - "wordTranslate": "созерцательный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0200" - }, - "group": 5, - "page": 21, - "word": "cot", - "image": "files/22_3425.jpg", - "audio": "files/22_3425.mp3", - "audioMeaning": "files/22_3425_meaning.mp3", - "audioExample": "files/22_3425_example.mp3", - "textMeaning": "A cot is a small portable bed.", - "textExample": "At the camp, the boys’ cabin was lined with cots.", - "transcription": "[kɑt]", - "__v": 0, - "textExampleTranslate": "В лагере в хижине для мальчиков стояли детские кроватки", - "textMeaningTranslate": "Детская кроватка - это маленькая переносная кровать", - "wordTranslate": "раскладушка" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b01ff" - }, - "group": 5, - "page": 21, - "word": "contend", - "image": "files/22_3424.jpg", - "audio": "files/22_3424.mp3", - "audioMeaning": "files/22_3424_meaning.mp3", - "audioExample": "files/22_3424_example.mp3", - "textMeaning": "To contend with something means to struggle to overcome it.", - "textExample": "Stacy had to contend with a learning disability throughout high school.", - "transcription": "[kənténd]", - "__v": 0, - "textExampleTranslate": "Стейси пришлось бороться с неспособностью к обучению в старшей школе", - "textMeaningTranslate": "Бороться с чем-либо - значит бороться за его преодоление", - "wordTranslate": "бороться" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0201" - }, - "group": 5, - "page": 21, - "word": "enlist", - "image": "files/22_3426.jpg", - "audio": "files/22_3426.mp3", - "audioMeaning": "files/22_3426_meaning.mp3", - "audioExample": "files/22_3426_example.mp3", - "textMeaning": "To enlist means to join the military.", - "textExample": "In their final year at school, the students were asked to enlist in the military.", - "transcription": "[inlíst]", - "__v": 0, - "textExampleTranslate": "В последний год в школе студентов попросили записаться в армию", - "textMeaningTranslate": "Заручиться значит вступить в армию", - "wordTranslate": "завербовать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0202" - }, - "group": 5, - "page": 21, - "word": "frontier", - "image": "files/22_3427.jpg", - "audio": "files/22_3427.mp3", - "audioMeaning": "files/22_3427_meaning.mp3", - "audioExample": "files/22_3427_example.mp3", - "textMeaning": "A frontier is a border between two regions or countries.", - "textExample": "A fence was built along the frontier where the river curved.", - "transcription": "[frʌntíər]", - "__v": 0, - "textExampleTranslate": "Забор был построен вдоль границы, где изгибалась река", - "textMeaningTranslate": "Граница - это граница между двумя регионами или странами", - "wordTranslate": "граница" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0203" - }, - "group": 5, - "page": 21, - "word": "guerilla", - "image": "files/22_3428.jpg", - "audio": "files/22_3428.mp3", - "audioMeaning": "files/22_3428_meaning.mp3", - "audioExample": "files/22_3428_example.mp3", - "textMeaning": "A guerilla is a person who fights as part of an unofficial army.", - "textExample": "Guerilla warfare involves a lot of hit-and-run fighting.", - "transcription": "[gərílə]", - "__v": 0, - "textExampleTranslate": "Партизанская война включает в себя множество боев с налетами", - "textMeaningTranslate": "Партизан - это человек, который сражается как часть неофициальной армии", - "wordTranslate": "партизанская" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0204" - }, - "group": 5, - "page": 21, - "word": "handbook", - "image": "files/22_3429.jpg", - "audio": "files/22_3429.mp3", - "audioMeaning": "files/22_3429_meaning.mp3", - "audioExample": "files/22_3429_example.mp3", - "textMeaning": "A handbook is material that gives specific information or instructions.", - "textExample": "If you look at the handbook, it will tell you which wires to connect to the TV.", - "transcription": "[hǽndbùk]", - "__v": 0, - "textExampleTranslate": "Если вы посмотрите на справочник, он скажет вам, какие провода подключить к телевизору", - "textMeaningTranslate": "Справочник - это материал, который дает конкретную информацию или инструкции", - "wordTranslate": "руководство" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0205" - }, - "group": 5, - "page": 21, - "word": "hesitant", - "image": "files/22_3430.jpg", - "audio": "files/22_3430.mp3", - "audioMeaning": "files/22_3430_meaning.mp3", - "audioExample": "files/22_3430_example.mp3", - "textMeaning": "If someone is hesitant, then they are not sure or are slow to act or speak.", - "textExample": "Although he knew the answer, he was hesitant to say it because he might be wrong.", - "transcription": "[hézətənt]", - "__v": 0, - "textExampleTranslate": "Хотя он знал ответ, он не решался сказать его, потому что он мог ошибаться", - "textMeaningTranslate": "Если кто-то колеблется, то он не уверен или не спешит действовать или говорить", - "wordTranslate": "колеблющийся" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0206" - }, - "group": 5, - "page": 21, - "word": "lush", - "image": "files/22_3431.jpg", - "audio": "files/22_3431.mp3", - "audioMeaning": "files/22_3431_meaning.mp3", - "audioExample": "files/22_3431_example.mp3", - "textMeaning": "If something is lush, then it is full of a variety of large, healthy plants.", - "textExample": "The lush jungle was filled with plants, trees, and vines.", - "transcription": "[lʌʃ]", - "__v": 0, - "textExampleTranslate": "Пышные джунгли были заполнены растениями, деревьями и виноградными лозами", - "textMeaningTranslate": "Если что-то пышное, то оно полно разнообразных здоровых растений", - "wordTranslate": "пышный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0207" - }, - "group": 5, - "page": 21, - "word": "outfit", - "image": "files/22_3432.jpg", - "audio": "files/22_3432.mp3", - "audioMeaning": "files/22_3432_meaning.mp3", - "audioExample": "files/22_3432_example.mp3", - "textMeaning": "An outfit is a set of clothes worn together, often for a certain job or event.", - "textExample": "Kelly’s new outfit made her look so glamourous.", - "transcription": "[áutfìt]", - "__v": 0, - "textExampleTranslate": "Новый наряд Келли заставил ее выглядеть так гламурно", - "textMeaningTranslate": "Одежда - это набор одежды, который часто надевают вместе для определенной работы или мероприятия", - "wordTranslate": "снаряжение" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0208" - }, - "group": 5, - "page": 21, - "word": "paw", - "image": "files/22_3433.jpg", - "audio": "files/22_3433.mp3", - "audioMeaning": "files/22_3433_meaning.mp3", - "audioExample": "files/22_3433_example.mp3", - "textMeaning": "A paw is an animal’s foot that has claws or soft pads.", - "textExample": "The kitten cleaned its paws with its tongue.", - "transcription": "[pɔː]", - "__v": 0, - "textExampleTranslate": "Котенок чистил лапы языком", - "textMeaningTranslate": "Лапа - это нога животного с когтями или мягкими подушками", - "wordTranslate": "лапа" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0209" - }, - "group": 5, - "page": 21, - "word": "splendid", - "image": "files/22_3434.jpg", - "audio": "files/22_3434.mp3", - "audioMeaning": "files/22_3434_meaning.mp3", - "audioExample": "files/22_3434_example.mp3", - "textMeaning": "If something or someone is splendid, then they are very good.", - "textExample": "From his head down to his shoes, his clothes looked splendid.", - "transcription": "[spléndid]", - "__v": 0, - "textExampleTranslate": "От его головы до ботинок, его одежда выглядела великолепно", - "textMeaningTranslate": "Если что-то или кто-то великолепен, то они очень хороши", - "wordTranslate": "великолепно" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b020a" - }, - "group": 5, - "page": 21, - "word": "stray", - "image": "files/22_3435.jpg", - "audio": "files/22_3435.mp3", - "audioMeaning": "files/22_3435_meaning.mp3", - "audioExample": "files/22_3435_example.mp3", - "textMeaning": "To stray means to go in a wrong direction and become lost.", - "textExample": "He found himself lost because he had strayed from the tour group.", - "transcription": "[strei]", - "__v": 0, - "textExampleTranslate": "Он оказался потерян, потому что он отклонился от тур группы", - "textMeaningTranslate": "Заблудиться - значит пойти в неправильном направлении и потеряться", - "wordTranslate": "сбиваться" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b020b" - }, - "group": 5, - "page": 21, - "word": "substantial", - "image": "files/22_3436.jpg", - "audio": "files/22_3436.mp3", - "audioMeaning": "files/22_3436_meaning.mp3", - "audioExample": "files/22_3436_example.mp3", - "textMeaning": "If something is substantial, then it is of great importance, size, or value.", - "textExample": "The bank said that he owed it a substantial amount of money.", - "transcription": "[səbstǽnʃəl]", - "__v": 0, - "textExampleTranslate": "Банк сказал, что он должен ему значительную сумму денег", - "textMeaningTranslate": "Если что-то существенное, то это имеет большое значение, размер или ценность", - "wordTranslate": "существенный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b020c" - }, - "group": 5, - "page": 21, - "word": "torch", - "image": "files/22_3437.jpg", - "audio": "files/22_3437.mp3", - "audioMeaning": "files/22_3437_meaning.mp3", - "audioExample": "files/22_3437_example.mp3", - "textMeaning": "A torch is a stick with one end on fire that can be carried in order to give light.", - "textExample": "He grabbed a piece of wood and stuck it in the fire in order to make a torch.", - "transcription": "[tɔːrtʃ]", - "__v": 0, - "textExampleTranslate": "Он схватил кусок дерева и сунул его в огонь, чтобы сделать факел", - "textMeaningTranslate": "Факел - это палка с одним концом в огне, которую можно носить, чтобы светить", - "wordTranslate": "факел" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b020d" - }, - "group": 5, - "page": 21, - "word": "tract", - "image": "files/22_3438.jpg", - "audio": "files/22_3438.mp3", - "audioMeaning": "files/22_3438_meaning.mp3", - "audioExample": "files/22_3438_example.mp3", - "textMeaning": "A tract is a large area of land.", - "textExample": "On the other side of the mountains, there was a long tract of forest.", - "transcription": "[trækt]", - "__v": 0, - "textExampleTranslate": "На другой стороне гор был длинный лесной массив", - "textMeaningTranslate": "Урочище - это большая территория", - "wordTranslate": "тракт" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b020e" - }, - "group": 5, - "page": 21, - "word": "vigil", - "image": "files/22_3439.jpg", - "audio": "files/22_3439.mp3", - "audioMeaning": "files/22_3439_meaning.mp3", - "audioExample": "files/22_3439_example.mp3", - "textMeaning": "A vigil is a period of watchful attention at night for a specific purpose.", - "textExample": "He had a vigil in front of the tomb for three days.", - "transcription": "[vídʒəl]", - "__v": 0, - "textExampleTranslate": "У него было бдение перед могилой в течение трех дней", - "textMeaningTranslate": "Бдение - это период внимательного внимания ночью для определенной цели", - "wordTranslate": "бдение" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b020f" - }, - "group": 5, - "page": 21, - "word": "weary", - "image": "files/22_3440.jpg", - "audio": "files/22_3440.mp3", - "audioMeaning": "files/22_3440_meaning.mp3", - "audioExample": "files/22_3440_example.mp3", - "textMeaning": "If someone is weary, then they are tired.", - "textExample": "Jane was weary after a long day of work.", - "transcription": "[wíəri:]", - "__v": 0, - "textExampleTranslate": "Джейн устала после долгого рабочего дня", - "textMeaningTranslate": "Если кто-то устал, значит, он устал", - "wordTranslate": "уставший" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0210" - }, - "group": 5, - "page": 22, - "word": "amid", - "image": "files/23_3441.jpg", - "audio": "files/23_3441.mp3", - "audioMeaning": "files/23_3441_meaning.mp3", - "audioExample": "files/23_3441_example.mp3", - "textMeaning": "If something is amid something else, then it is in the middle of it.", - "textExample": "The bee was busily flying amid the flowers in the garden.", - "transcription": "[əmíd]", - "__v": 0, - "textExampleTranslate": "Пчела летела среди цветов в саду", - "textMeaningTranslate": "Если что-то находится среди чего-то другого, то оно в середине", - "wordTranslate": "на фоне" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0211" - }, - "group": 5, - "page": 22, - "word": "backstage", - "image": "files/23_3442.jpg", - "audio": "files/23_3442.mp3", - "audioMeaning": "files/23_3442_meaning.mp3", - "audioExample": "files/23_3442_example.mp3", - "textMeaning": "If something happens backstage, it occurs behind a theater’s stage.", - "textExample": "After the show, the director went backstage and thanked the actors.", - "transcription": "[bǽkstéidʒ]", - "__v": 0, - "textExampleTranslate": "После спектакля режиссер вышел за кулисы и поблагодарил актеров", - "textMeaningTranslate": "Если что-то происходит за кулисами, это происходит за сценой театра", - "wordTranslate": "кулисы" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0212" - }, - "group": 5, - "page": 22, - "word": "billionaire", - "image": "files/23_3443.jpg", - "audio": "files/23_3443.mp3", - "audioMeaning": "files/23_3443_meaning.mp3", - "audioExample": "files/23_3443_example.mp3", - "textMeaning": "A billionaire is someone who has at least one billion dollars.", - "textExample": "The sale of his inventions made the inventor a billionaire.", - "transcription": "[bìljənέər]", - "__v": 0, - "textExampleTranslate": "Продажа его изобретений сделала изобретателя миллиардером", - "textMeaningTranslate": "Миллиардер - это тот, у кого есть хотя бы один миллиард долларов", - "wordTranslate": "миллиардер" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0213" - }, - "group": 5, - "page": 22, - "word": "brute", - "image": "files/23_3444.jpg", - "audio": "files/23_3444.mp3", - "audioMeaning": "files/23_3444_meaning.mp3", - "audioExample": "files/23_3444_example.mp3", - "textMeaning": "A brute is someone who behaves or looks like a violent animal.", - "textExample": "My older brother can act like a brute when he doesn’t get his way.", - "transcription": "[bruːt]", - "__v": 0, - "textExampleTranslate": "Мой старший брат может вести себя как скотина, когда ему не удается", - "textMeaningTranslate": "Скотина - это тот, кто ведет себя или выглядит как жестокое животное", - "wordTranslate": "скотина" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0214" - }, - "group": 5, - "page": 22, - "word": "clumsy", - "image": "files/23_3445.jpg", - "audio": "files/23_3445.mp3", - "audioMeaning": "files/23_3445_meaning.mp3", - "audioExample": "files/23_3445_example.mp3", - "textMeaning": "If someone is clumsy, then they are awkward in handling things.", - "textExample": "The businessman was clumsy and dropped his work files.", - "transcription": "[klʌ́mzi]", - "__v": 0, - "textExampleTranslate": "Бизнесмен был неуклюжим и уронил свои рабочие файлы", - "textMeaningTranslate": "Если кто-то неуклюж, то ему неловко обращаться с вещами", - "wordTranslate": "неуклюжий" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0215" - }, - "group": 5, - "page": 22, - "word": "collide", - "image": "files/23_3446.jpg", - "audio": "files/23_3446.mp3", - "audioMeaning": "files/23_3446_meaning.mp3", - "audioExample": "files/23_3446_example.mp3", - "textMeaning": "To collide with something means to hit it while moving.", - "textExample": "The two cars collided with each other because their drivers were not careful.", - "transcription": "[kəláid]", - "__v": 0, - "textExampleTranslate": "Две машины столкнулись друг с другом, потому что их водители не были осторожны", - "textMeaningTranslate": "Столкнуться с чем-то - значит ударить по нему во время движения", - "wordTranslate": "столкнуться" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0216" - }, - "group": 5, - "page": 22, - "word": "culprit", - "image": "files/23_3447.jpg", - "audio": "files/23_3447.mp3", - "audioMeaning": "files/23_3447_meaning.mp3", - "audioExample": "files/23_3447_example.mp3", - "textMeaning": "A culprit is someone who has committed a crime or other bad deed.", - "textExample": "The police were still searching for the culprit from the robbery.", - "transcription": "[kʌ́lprit]", - "__v": 0, - "textExampleTranslate": "Полиция все еще разыскивает виновника грабежа", - "textMeaningTranslate": "Виновником является тот, кто совершил преступление или другой плохой поступок", - "wordTranslate": "виновник" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0217" - }, - "group": 5, - "page": 22, - "word": "evacuate", - "image": "files/23_3448.jpg", - "audio": "files/23_3448.mp3", - "audioMeaning": "files/23_3448_meaning.mp3", - "audioExample": "files/23_3448_example.mp3", - "textMeaning": "To evacuate means to leave a place of danger to a place of safety.", - "textExample": "During the flood, many families were evacuated to higher ground.", - "transcription": "[ivǽkjuèit]", - "__v": 0, - "textExampleTranslate": "Во время наводнения многие семьи были эвакуированы на более высокий уровень", - "textMeaningTranslate": "Эвакуировать - значит оставить опасное место безопасным", - "wordTranslate": "эвакуируюсь" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0218" - }, - "group": 5, - "page": 22, - "word": "flammable", - "image": "files/23_3449.jpg", - "audio": "files/23_3449.mp3", - "audioMeaning": "files/23_3449_meaning.mp3", - "audioExample": "files/23_3449_example.mp3", - "textMeaning": "If something is flammable, then it is able to catch on fire.", - "textExample": "Be careful with that blanket near the candle. It is extremely flammable.", - "transcription": "[fǽməbl]", - "__v": 0, - "textExampleTranslate": "Будьте осторожны с этим одеялом возле свечи. Это очень легко воспламеняется", - "textMeaningTranslate": "Если что-то огнеопасно, то оно может загореться", - "wordTranslate": "воспламеняется" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0219" - }, - "group": 5, - "page": 22, - "word": "mob", - "image": "files/23_3450.jpg", - "audio": "files/23_3450.mp3", - "audioMeaning": "files/23_3450_meaning.mp3", - "audioExample": "files/23_3450_example.mp3", - "textMeaning": "A mob is a large crowd of people that often wants to cause violence.", - "textExample": "The copier was destroyed by a mob of angry workers.", - "transcription": "[mɑb]", - "__v": 0, - "textExampleTranslate": "Копир был уничтожен толпой разгневанных рабочих", - "textMeaningTranslate": "Толпа - это большая толпа людей, которая часто хочет вызвать насилие", - "wordTranslate": "чернь" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b021a" - }, - "group": 5, - "page": 22, - "word": "premature", - "image": "files/23_3451.jpg", - "audio": "files/23_3451.mp3", - "audioMeaning": "files/23_3451_meaning.mp3", - "audioExample": "files/23_3451_example.mp3", - "textMeaning": "If something is premature, then it is done too early or before the proper time.", - "textExample": "Mark’s celebration was premature because the ball hadn’t fallen in the hole.", - "transcription": "[prìːməʧúər]", - "__v": 0, - "textExampleTranslate": "Празднование Марка было преждевременным, потому что мяч не упал в лунку", - "textMeaningTranslate": "Если что-то преждевременно, то это делается слишком рано или раньше времени", - "wordTranslate": "преждевременный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b021b" - }, - "group": 5, - "page": 22, - "word": "resent", - "image": "files/23_3452.jpg", - "audio": "files/23_3452.mp3", - "audioMeaning": "files/23_3452_meaning.mp3", - "audioExample": "files/23_3452_example.mp3", - "textMeaning": "To resent something means to have bad feelings about it.", - "textExample": "He resented the fact that he had never been able to play an instrument.", - "transcription": "[rizént]", - "__v": 0, - "textExampleTranslate": "Он возмущался тем, что никогда не умел играть на инструменте", - "textMeaningTranslate": "Обижаться на что-то значит иметь плохие чувства по этому поводу", - "wordTranslate": "возмущаться" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b021c" - }, - "group": 5, - "page": 22, - "word": "satire", - "image": "files/23_3453.jpg", - "audio": "files/23_3453.mp3", - "audioMeaning": "files/23_3453_meaning.mp3", - "audioExample": "files/23_3453_example.mp3", - "textMeaning": "A satire is a work of art that uses humor and irony to make fun of something.", - "textExample": "This book is a satire of what life was like in the army.", - "transcription": "[sǽtaiər]", - "__v": 0, - "textExampleTranslate": "Эта книга - сатира о том, какой была жизнь в армии", - "textMeaningTranslate": "Сатира - это произведение искусства, которое использует юмор и иронию, чтобы высмеять что-то", - "wordTranslate": "сатира" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b021d" - }, - "group": 5, - "page": 22, - "word": "scrutiny", - "image": "files/23_3454.jpg", - "audio": "files/23_3454.mp3", - "audioMeaning": "files/23_3454_meaning.mp3", - "audioExample": "files/23_3454_example.mp3", - "textMeaning": "Scrutiny is the careful examination of something.", - "textExample": "A scientist should always practice scrutiny with their work.", - "transcription": "[skrúːtəni:]", - "__v": 0, - "textExampleTranslate": "Ученый должен всегда внимательно изучать свою работу", - "textMeaningTranslate": "Проверка - это тщательное изучение чего-либо", - "wordTranslate": "исследование" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b021e" - }, - "group": 5, - "page": 22, - "word": "segregate", - "image": "files/23_3455.jpg", - "audio": "files/23_3455.mp3", - "audioMeaning": "files/23_3455_meaning.mp3", - "audioExample": "files/23_3455_example.mp3", - "textMeaning": "To segregate something means to place it in a group apart from other things.", - "textExample": "In gym class, the children were segregated into two groups: boys and girls.", - "transcription": "[ségrigèit]", - "__v": 0, - "textExampleTranslate": "В классе гимнастики дети были разделены на две группы: мальчики и девочки", - "textMeaningTranslate": "Разделять что-либо означает помещать это в группу отдельно от других вещей", - "wordTranslate": "отделить" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b021f" - }, - "group": 5, - "page": 22, - "word": "subject", - "image": "files/23_3456.jpg", - "audio": "files/23_3456.mp3", - "audioMeaning": "files/23_3456_meaning.mp3", - "audioExample": "files/23_3456_example.mp3", - "textMeaning": "To subject someone to something means to force them to do or experience it.", - "textExample": "The officers subjected everyone to a careful search before they left the plane.", - "transcription": "[sΛbdʒikt]", - "__v": 0, - "textExampleTranslate": "Офицеры подвергли всех тщательному обыску, прежде чем покинуть самолет", - "textMeaningTranslate": "Подчинять кого-то чему-либо, значит заставлять его делать или испытывать это", - "wordTranslate": "тема" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0220" - }, - "group": 5, - "page": 22, - "word": "testify", - "image": "files/23_3457.jpg", - "audio": "files/23_3457.mp3", - "audioMeaning": "files/23_3457_meaning.mp3", - "audioExample": "files/23_3457_example.mp3", - "textMeaning": "To testify means to give evidence as a witness.", - "textExample": "The judge listened while the victim testified about the robbery.", - "transcription": "[téstəfài]", - "__v": 0, - "textExampleTranslate": "Судья слушал, пока жертва давала показания о грабеже", - "textMeaningTranslate": "Свидетельствовать - значит давать показания в качестве свидетеля", - "wordTranslate": "свидетельствуют" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0221" - }, - "group": 5, - "page": 22, - "word": "tumult", - "image": "files/23_3458.jpg", - "audio": "files/23_3458.mp3", - "audioMeaning": "files/23_3458_meaning.mp3", - "audioExample": "files/23_3458_example.mp3", - "textMeaning": "A tumult is a loud and confused noise made by a large crowd of people.", - "textExample": "She couldn’t hear her friend over the tumult of the other excited guests.", - "transcription": "[təməlt]", - "__v": 0, - "textExampleTranslate": "Она не могла слышать своего друга из-за шума других возбужденных гостей", - "textMeaningTranslate": "Беспорядки - это громкий и запутанный шум, производимый большой толпой людей", - "wordTranslate": "переполох" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0222" - }, - "group": 5, - "page": 22, - "word": "underestimate", - "image": "files/23_3459.jpg", - "audio": "files/23_3459.mp3", - "audioMeaning": "files/23_3459_meaning.mp3", - "audioExample": "files/23_3459_example.mp3", - "textMeaning": "To underestimate something or someone means to think less of them than they really are.", - "textExample": "We lost the game because we underestimated the other team’s skill.", - "transcription": "[ʌ̀ndəréstəmèit]", - "__v": 0, - "textExampleTranslate": "Мы проиграли, потому что недооценили мастерство другой команды", - "textMeaningTranslate": "Недооценивать что-то или кого-то значит думать о них меньше, чем они есть на самом деле", - "wordTranslate": "занижена" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0223" - }, - "group": 5, - "page": 22, - "word": "uproar", - "image": "files/23_3460.jpg", - "audio": "files/23_3460.mp3", - "audioMeaning": "files/23_3460_meaning.mp3", - "audioExample": "files/23_3460_example.mp3", - "textMeaning": "Uproar is loud noise caused by people who are very angry or upset.", - "textExample": "The fans made a great uproar when their team lost the game.", - "transcription": "[Λprɔ̀ːr]", - "__v": 0, - "textExampleTranslate": "Фанаты подняли шум, когда их команда проиграла", - "textMeaningTranslate": "Возмущение - это громкий шум, вызванный людьми, которые очень злы или расстроены", - "wordTranslate": "шум" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0224" - }, - "group": 5, - "page": 23, - "word": "accelerate", - "image": "files/24_3461.jpg", - "audio": "files/24_3461.mp3", - "audioMeaning": "files/24_3461_meaning.mp3", - "audioExample": "files/24_3461_example.mp3", - "textMeaning": "To accelerate means to increase in speed.", - "textExample": "When he stepped on the gas pedal, the motorcycle accelerated.", - "transcription": "[æksélərèit]", - "__v": 0, - "textExampleTranslate": "Когда он наступил на педаль газа, мотоцикл ускорился", - "textMeaningTranslate": "Ускорить означает увеличить скорость", - "wordTranslate": "ускорить" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0225" - }, - "group": 5, - "page": 23, - "word": "anew", - "image": "files/24_3462.jpg", - "audio": "files/24_3462.mp3", - "audioMeaning": "files/24_3462_meaning.mp3", - "audioExample": "files/24_3462_example.mp3", - "textMeaning": "If you do something anew, you do it again, possibly in a different way.", - "textExample": "Although he had failed his driving test, he decided to try it anew.", - "transcription": "[ənjúː]", - "__v": 0, - "textExampleTranslate": "Хотя он не сдал экзамен по вождению, он решил попробовать его заново", - "textMeaningTranslate": "Если вы делаете что-то заново, вы делаете это снова, возможно, по-другому", - "wordTranslate": "заново" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0226" - }, - "group": 5, - "page": 23, - "word": "defect", - "image": "files/24_3463.jpg", - "audio": "files/24_3463.mp3", - "audioMeaning": "files/24_3463_meaning.mp3", - "audioExample": "files/24_3463_example.mp3", - "textMeaning": "A defect is a part of something that is wrong or missing.", - "textExample": "All these bottles have a defect and must be sent back to the warehouse.", - "transcription": "[dí:fekt]", - "__v": 0, - "textExampleTranslate": "Все эти бутылки имеют дефект и должны быть отправлены обратно на склад", - "textMeaningTranslate": "Дефект - это часть чего-то неправильного или отсутствующего", - "wordTranslate": "дефект" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0227" - }, - "group": 5, - "page": 23, - "word": "dreary", - "image": "files/24_3464.jpg", - "audio": "files/24_3464.mp3", - "audioMeaning": "files/24_3464_meaning.mp3", - "audioExample": "files/24_3464_example.mp3", - "textMeaning": "If something is dreary, then it is dull, dark, and lifeless.", - "textExample": "After the fire, this section of forest is rather dreary.", - "transcription": "[dríəri:]", - "__v": 0, - "textExampleTranslate": "После пожара этот участок леса довольно тоскливый", - "textMeaningTranslate": "Если что-то тоскливо, то это скучно, мрачно и безжизненно", - "wordTranslate": "муторно" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0228" - }, - "group": 5, - "page": 23, - "word": "duplicate", - "image": "files/24_3465.jpg", - "audio": "files/24_3465.mp3", - "audioMeaning": "files/24_3465_meaning.mp3", - "audioExample": "files/24_3465_example.mp3", - "textMeaning": "To duplicate something means to copy it.", - "textExample": "She duplicated her friend’s movements like she was in front of a mirror.", - "transcription": "[djúːplikət]", - "__v": 0, - "textExampleTranslate": "Она дублировала движения своей подруги, как будто она была перед зеркалом", - "textMeaningTranslate": "Дублировать что-то означает копировать это", - "wordTranslate": "дубликат" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0229" - }, - "group": 5, - "page": 23, - "word": "electromagnetic", - "image": "files/24_3466.jpg", - "audio": "files/24_3466.mp3", - "audioMeaning": "files/24_3466_meaning.mp3", - "audioExample": "files/24_3466_example.mp3", - "textMeaning": "If something is electromagnetic, it is related to electricity and magnetic fields.", - "textExample": "Different colors of light come from different levels of electromagnetic energy.", - "transcription": "[ilèktroumægnétik]", - "__v": 0, - "textExampleTranslate": "Различные цвета света происходят от разных уровней электромагнитной энергии", - "textMeaningTranslate": "Если что-то электромагнитное, это связано с электричеством и магнитными полями", - "wordTranslate": "электромагнитный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b022a" - }, - "group": 5, - "page": 23, - "word": "electron", - "image": "files/24_3467.jpg", - "audio": "files/24_3467.mp3", - "audioMeaning": "files/24_3467_meaning.mp3", - "audioExample": "files/24_3467_example.mp3", - "textMeaning": "An electron is a particle in all atoms that has a negative electric charge.", - "textExample": "The number of electrons in an atom determines its charge.", - "transcription": "[iléktrɑn]", - "__v": 0, - "textExampleTranslate": "Количество электронов в атоме определяет его заряд", - "textMeaningTranslate": "Электрон - это частица во всех атомах, которая имеет отрицательный электрический заряд", - "wordTranslate": "электрон" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b022b" - }, - "group": 5, - "page": 23, - "word": "glide", - "image": "files/24_3468.jpg", - "audio": "files/24_3468.mp3", - "audioMeaning": "files/24_3468_meaning.mp3", - "audioExample": "files/24_3468_example.mp3", - "textMeaning": "To glide means to fly on extended wings with little or no effort.", - "textExample": "When the wind is blowing, birds can glide easily through the sky.", - "transcription": "[glaid]", - "__v": 0, - "textExampleTranslate": "Когда дует ветер, птицы могут легко скользить по небу", - "textMeaningTranslate": "Плавать - значит летать на расправленных крыльях практически без усилий", - "wordTranslate": "скользят" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b022c" - }, - "group": 5, - "page": 23, - "word": "ingenious", - "image": "files/24_3469.jpg", - "audio": "files/24_3469.mp3", - "audioMeaning": "files/24_3469_meaning.mp3", - "audioExample": "files/24_3469_example.mp3", - "textMeaning": "If someone is ingenious, then they are very smart.", - "textExample": "Charles was the only person ingenious enough to repair the plane’s engines.", - "transcription": "[indʒíːnjəs]", - "__v": 0, - "textExampleTranslate": "Чарльз был единственным человеком, достаточно гениальным для ремонта двигателей самолета", - "textMeaningTranslate": "Если кто-то гениален, то он очень умный", - "wordTranslate": "гениальный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b022d" - }, - "group": 5, - "page": 23, - "word": "innovation", - "image": "files/24_3470.jpg", - "audio": "files/24_3470.mp3", - "audioMeaning": "files/24_3470_meaning.mp3", - "audioExample": "files/24_3470_example.mp3", - "textMeaning": "An innovation is a product, or an idea, that is new or very original.", - "textExample": "Mrs. Johnson made a great innovation to the company’s business plan.", - "transcription": "[ìnəvéiʃən]", - "__v": 0, - "textExampleTranslate": "Миссис Джонсон сделала большое новшество в бизнес-план компании", - "textMeaningTranslate": "Инновация - это продукт или идея, которая является новой или очень оригинальной", - "wordTranslate": "инновация" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b022e" - }, - "group": 5, - "page": 23, - "word": "innovative", - "image": "files/24_3471.jpg", - "audio": "files/24_3471.mp3", - "audioMeaning": "files/24_3471_meaning.mp3", - "audioExample": "files/24_3471_example.mp3", - "textMeaning": "If something or someone is innovative, they can think in creative ways.", - "textExample": "Since Peter was so innovative, he was chosen to lead the science team.", - "transcription": "[ínəvèitiv]", - "__v": 0, - "textExampleTranslate": "Поскольку Питер был настолько новаторским, его выбрали руководителем научной группы", - "textMeaningTranslate": "Если что-то или кто-то новаторский, они могут мыслить творчески", - "wordTranslate": "инновационный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b022f" - }, - "group": 5, - "page": 23, - "word": "launch", - "image": "files/24_3472.jpg", - "audio": "files/24_3472.mp3", - "audioMeaning": "files/24_3472_meaning.mp3", - "audioExample": "files/24_3472_example.mp3", - "textMeaning": "To launch something means to make it go into motion.", - "textExample": "The boat launched from the dock and foated down the river.", - "transcription": "[lɔːntʃ]", - "__v": 0, - "textExampleTranslate": "Лодка спущена на воду с причала и спущена на воду по реке", - "textMeaningTranslate": "Запустить что-то значит заставить его двигаться", - "wordTranslate": "запуск" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0230" - }, - "group": 5, - "page": 23, - "word": "meteorological", - "image": "files/24_3473.jpg", - "audio": "files/24_3473.mp3", - "audioMeaning": "files/24_3473_meaning.mp3", - "audioExample": "files/24_3473_example.mp3", - "textMeaning": "If something is meteorological, it is concerned with the science of weather.", - "textExample": "The thunderstorm was so large that it became a great meteorological event.", - "transcription": "[mìːtiərəlɑ́dʒikəl]", - "__v": 0, - "textExampleTranslate": "Гроза была настолько сильна, что стала великим метеорологическим событием", - "textMeaningTranslate": "Если что-то метеорологическое, оно связано с наукой о погоде", - "wordTranslate": "метеорологический" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0231" - }, - "group": 5, - "page": 23, - "word": "meteorology", - "image": "files/24_3474.jpg", - "audio": "files/24_3474.mp3", - "audioMeaning": "files/24_3474_meaning.mp3", - "audioExample": "files/24_3474_example.mp3", - "textMeaning": "Meteorology is the science that studies the weather.", - "textExample": "In order to understand the weather better, you should study meteorology.", - "transcription": "[mìːtiərɑ́lədʒi]", - "__v": 0, - "textExampleTranslate": "Чтобы лучше понимать погоду, нужно изучать метеорологию", - "textMeaningTranslate": "Метеорология - это наука, которая изучает погоду", - "wordTranslate": "метеорология" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0232" - }, - "group": 5, - "page": 23, - "word": "penetrate", - "image": "files/24_3475.jpg", - "audio": "files/24_3475.mp3", - "audioMeaning": "files/24_3475_meaning.mp3", - "audioExample": "files/24_3475_example.mp3", - "textMeaning": "To penetrate something means to enter into it.", - "textExample": "The knife easily penetrated the surface of the orange.", - "transcription": "[pénətrèit]", - "__v": 0, - "textExampleTranslate": "Нож легко проникает сквозь поверхность апельсина", - "textMeaningTranslate": "Проникнуть во что-то - значит войти в это", - "wordTranslate": "проникнуть" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0233" - }, - "group": 5, - "page": 23, - "word": "persistent", - "image": "files/24_3476.jpg", - "audio": "files/24_3476.mp3", - "audioMeaning": "files/24_3476_meaning.mp3", - "audioExample": "files/24_3476_example.mp3", - "textMeaning": "A persistent person does not give up and keeps on working.", - "textExample": "They made persistent attempts to get him to eat.", - "transcription": "[pərsístənt]", - "__v": 0, - "textExampleTranslate": "Они предпринимали настойчивые попытки заставить его есть", - "textMeaningTranslate": "Настойчивый человек не сдается и продолжает работать", - "wordTranslate": "стойкие" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0234" - }, - "group": 5, - "page": 23, - "word": "propulsion", - "image": "files/24_3477.jpg", - "audio": "files/24_3477.mp3", - "audioMeaning": "files/24_3477_meaning.mp3", - "audioExample": "files/24_3477_example.mp3", - "textMeaning": "Propulsion is the force that moves something forward.", - "textExample": "The propulsion lifted the rocket into the sky.", - "transcription": "[prəpʌ́lʃən]", - "__v": 0, - "textExampleTranslate": "Движитель поднял ракету в небо", - "textMeaningTranslate": "Движение - это сила, которая движет что-то вперед", - "wordTranslate": "двигательная" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0235" - }, - "group": 5, - "page": 23, - "word": "simulate", - "image": "files/24_3478.jpg", - "audio": "files/24_3478.mp3", - "audioMeaning": "files/24_3478_meaning.mp3", - "audioExample": "files/24_3478_example.mp3", - "textMeaning": "To simulate something means to copy its actions or characteristics.", - "textExample": "The French language teacher could simulate the accent of a French citizen.", - "transcription": "[símjəlèit]", - "__v": 0, - "textExampleTranslate": "Учитель французского языка может имитировать акцент французского гражданина", - "textMeaningTranslate": "Имитировать что-либо означает копировать его действия или характеристики", - "wordTranslate": "имитировать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0236" - }, - "group": 5, - "page": 23, - "word": "spur", - "image": "files/24_3479.jpg", - "audio": "files/24_3479.mp3", - "audioMeaning": "files/24_3479_meaning.mp3", - "audioExample": "files/24_3479_example.mp3", - "textMeaning": "To spur someone means to urge them into action.", - "textExample": "The coach’s speech spurred her team into playing the best game of their lives.", - "transcription": "[spəːr]", - "__v": 0, - "textExampleTranslate": "Речь тренера подтолкнула ее команду играть лучшую игру в своей жизни", - "textMeaningTranslate": "Подстегнуть кого-то - значит побудить его к действию", - "wordTranslate": "шпоры" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0237" - }, - "group": 5, - "page": 23, - "word": "stimulate", - "image": "files/24_3480.jpg", - "audio": "files/24_3480.mp3", - "audioMeaning": "files/24_3480_meaning.mp3", - "audioExample": "files/24_3480_example.mp3", - "textMeaning": "To stimulate something means to cause or to increase activity in it.", - "textExample": "Doctors sometimes use electric shock to stimulate a patient’s heartbeat.", - "transcription": "[stímjəlèit]", - "__v": 0, - "textExampleTranslate": "Врачи иногда используют удар током, чтобы стимулировать сердцебиение пациента", - "textMeaningTranslate": "Стимулировать что-либо означает вызывать или усиливать активность в этом", - "wordTranslate": "стимулировать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0238" - }, - "group": 5, - "page": 24, - "word": "beforehand", - "image": "files/25_3481.jpg", - "audio": "files/25_3481.mp3", - "audioMeaning": "files/25_3481_meaning.mp3", - "audioExample": "files/25_3481_example.mp3", - "textMeaning": "If something is done beforehand, then it is done in advance.", - "textExample": "He packed his luggage beforehand, so he was able to leave right away.", - "transcription": "[bifɔ́ːrhӕnd]", - "__v": 0, - "textExampleTranslate": "Он заранее упаковал свой багаж, чтобы он мог сразу же уехать", - "textMeaningTranslate": "Если что-то сделано заранее, то это делается заранее", - "wordTranslate": "заранее" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0239" - }, - "group": 5, - "page": 24, - "word": "blurred", - "image": "files/25_3482.jpg", - "audio": "files/25_3482.mp3", - "audioMeaning": "files/25_3482_meaning.mp3", - "audioExample": "files/25_3482_example.mp3", - "textMeaning": "Something blurred is not seen clearly.", - "textExample": "There was blurred photographs of what was supposed to be a flying saucer.", - "transcription": "[bləːrd]", - "__v": 0, - "textExampleTranslate": "Там были размытые фотографии того, что должно было быть летающей тарелкой", - "textMeaningTranslate": "Что-то размытое не видно четко", - "wordTranslate": "размытый" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b023a" - }, - "group": 5, - "page": 24, - "word": "centigrade", - "image": "files/25_3483.jpg", - "audio": "files/25_3483.mp3", - "audioMeaning": "files/25_3483_meaning.mp3", - "audioExample": "files/25_3483_example.mp3", - "textMeaning": "If a temperature is given in centigrade, it is the same as the temperature in Celsius.", - "textExample": "During the spring time, the temperature gets as warm as 26 degrees centigrade.", - "transcription": "[séntəgrèid]", - "__v": 0, - "textExampleTranslate": "В весеннее время температура становится такой же высокой, как 26 градусов по Цельсию", - "textMeaningTranslate": "Если температура указана в градусах Цельсия, она равна температуре в градусах Цельсия", - "wordTranslate": "стоградусно" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b023b" - }, - "group": 5, - "page": 24, - "word": "chatter", - "image": "files/25_3484.jpg", - "audio": "files/25_3484.mp3", - "audioMeaning": "files/25_3484_meaning.mp3", - "audioExample": "files/25_3484_example.mp3", - "textMeaning": "To chatter means to talk quickly about unimportant things.", - "textExample": "The children chattered in the back of the classroom.", - "transcription": "[ʧǽtər]", - "__v": 0, - "textExampleTranslate": "Дети болтали в задней части класса", - "textMeaningTranslate": "Болтать - значит быстро говорить о неважных вещах", - "wordTranslate": "болтовня" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b023c" - }, - "group": 5, - "page": 24, - "word": "deteriorate", - "image": "files/25_3487.jpg", - "audio": "files/25_3487.mp3", - "audioMeaning": "files/25_3487_meaning.mp3", - "audioExample": "files/25_3487_example.mp3", - "textMeaning": "To deteriorate means to become steadily worse.", - "textExample": "The nation’s economy continued to deteriorate despite the politicians’ efforts.", - "transcription": "[ditíəriərèit]", - "__v": 0, - "textExampleTranslate": "Экономика страны продолжала ухудшаться, несмотря на усилия политиков", - "textMeaningTranslate": "Ухудшаться - значит становиться все хуже и хуже", - "wordTranslate": "портится" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b023d" - }, - "group": 5, - "page": 24, - "word": "condense", - "image": "files/25_3486.jpg", - "audio": "files/25_3486.mp3", - "audioMeaning": "files/25_3486_meaning.mp3", - "audioExample": "files/25_3486_example.mp3", - "textMeaning": "To condense a gas means to make it a liquid.", - "textExample": "The cool air made tiny drops of water condense on the tops of the grass.", - "transcription": "[kəndéns]", - "__v": 0, - "textExampleTranslate": "Из-за холодного воздуха крошечные капли воды конденсировались на верхушках травы", - "textMeaningTranslate": "Конденсировать газ - значит сделать его жидким", - "wordTranslate": "уплотняют" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b023f" - }, - "group": 5, - "page": 24, - "word": "degree", - "image": "files/25_3488.jpg", - "audio": "files/25_3488.mp3", - "audioMeaning": "files/25_3488_meaning.mp3", - "audioExample": "files/25_3488_example.mp3", - "textMeaning": "Degree is a unit for measuring temperature.", - "textExample": "The thermometer recorded a temperature of 38 degrees Celsius.", - "transcription": "[digríː]", - "__v": 0, - "textExampleTranslate": "Термометр зафиксировал температуру 38 градусов по Цельсию", - "textMeaningTranslate": "Степень - это единица измерения температуры", - "wordTranslate": "степень" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b023e" - }, - "group": 5, - "page": 24, - "word": "concerto", - "image": "files/25_3485.jpg", - "audio": "files/25_3485.mp3", - "audioMeaning": "files/25_3485_meaning.mp3", - "audioExample": "files/25_3485_example.mp3", - "textMeaning": "A concerto is music played with an orchestra but features a solo instrument.", - "textExample": "The piano concerto has a section in which only the piano plays.", - "transcription": "[kənʧέərtou]", - "__v": 0, - "textExampleTranslate": "Концерт для фортепиано имеет секцию, в которой играет только фортепиано", - "textMeaningTranslate": "Концерт - это музыка, исполняемая с оркестром, но с сольным инструментом", - "wordTranslate": "концерт" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0240" - }, - "group": 5, - "page": 24, - "word": "exterior", - "image": "files/25_3489.jpg", - "audio": "files/25_3489.mp3", - "audioMeaning": "files/25_3489_meaning.mp3", - "audioExample": "files/25_3489_example.mp3", - "textMeaning": "An exterior is the outside surface of something.", - "textExample": "The exterior of the nut was hard and woody, but the inside was soft and delicious.", - "transcription": "[ikstíəriər]", - "__v": 0, - "textExampleTranslate": "Внешность ореха была твердой и древесной, но внутри была мягкой и вкусной", - "textMeaningTranslate": "Экстерьер - это внешняя поверхность чего-то", - "wordTranslate": "внешний вид" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0241" - }, - "group": 5, - "page": 24, - "word": "hearty", - "image": "files/25_3490.jpg", - "audio": "files/25_3490.mp3", - "audioMeaning": "files/25_3490_meaning.mp3", - "audioExample": "files/25_3490_example.mp3", - "textMeaning": "If someone or something is hearty, then they are loud and happy.", - "textExample": "The grandmother ended her story with a hearty laugh that pleased her grandchild.", - "transcription": "[hάːrti:]", - "__v": 0, - "textExampleTranslate": "Бабушка закончила свой рассказ сердечным смехом, который порадовал ее внука", - "textMeaningTranslate": "Если кто-то или что-то сердечное, то они громкие и счастливые", - "wordTranslate": "сердечный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0242" - }, - "group": 5, - "page": 24, - "word": "manor", - "image": "files/25_3493.jpg", - "audio": "files/25_3493.mp3", - "audioMeaning": "files/25_3493_meaning.mp3", - "audioExample": "files/25_3493_example.mp3", - "textMeaning": "A manor is a large house with many rooms.", - "textExample": "The manor had over forty rooms and beautiful gardens.", - "transcription": "[mǽnər]", - "__v": 0, - "textExampleTranslate": "В усадьбе было более сорока комнат и прекрасных садов", - "textMeaningTranslate": "Усадьба - это большой дом с множеством комнат", - "wordTranslate": "усадьба" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0243" - }, - "group": 5, - "page": 24, - "word": "hospitable", - "image": "files/25_3491.jpg", - "audio": "files/25_3491.mp3", - "audioMeaning": "files/25_3491_meaning.mp3", - "audioExample": "files/25_3491_example.mp3", - "textMeaning": "If someone is hospitable, they are friendly to strangers.", - "textExample": "At dinner, my dad was very hospitable to my friends.", - "transcription": "[hάspitəbl]", - "__v": 0, - "textExampleTranslate": "За ужином мой папа был очень гостеприимен с моими друзьями", - "textMeaningTranslate": "Если кто-то гостеприимный, он дружелюбен с незнакомцами", - "wordTranslate": "гостеприимный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0244" - }, - "group": 5, - "page": 24, - "word": "humor", - "image": "files/25_3492.jpg", - "audio": "files/25_3492.mp3", - "audioMeaning": "files/25_3492_meaning.mp3", - "audioExample": "files/25_3492_example.mp3", - "textMeaning": "Humor can be something that makes you laugh, and it can also refer to your feelings.", - "textExample": "He woke up in an ill humor, angry at everyone.", - "transcription": "[hjúːmər]", - "__v": 0, - "textExampleTranslate": "Он проснулся в плохом настроении, злой на всех", - "textMeaningTranslate": "Юмор может быть чем-то, что заставляет вас смеяться, и это также может относиться к вашим чувствам", - "wordTranslate": "юмор" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0245" - }, - "group": 5, - "page": 24, - "word": "monastery", - "image": "files/25_3494.jpg", - "audio": "files/25_3494.mp3", - "audioMeaning": "files/25_3494_meaning.mp3", - "audioExample": "files/25_3494_example.mp3", - "textMeaning": "A monastery is a building in which monks live.", - "textExample": "The monks at this monastery are famous for their bread and music.", - "transcription": "[mάnəstèri]", - "__v": 0, - "textExampleTranslate": "Монахи в этом монастыре славятся своим хлебом и музыкой", - "textMeaningTranslate": "Монастырь - это здание, в котором живут монахи", - "wordTranslate": "монастырь" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0246" - }, - "group": 5, - "page": 24, - "word": "nursery", - "image": "files/25_3495.jpg", - "audio": "files/25_3495.mp3", - "audioMeaning": "files/25_3495_meaning.mp3", - "audioExample": "files/25_3495_example.mp3", - "textMeaning": "A nursery is a room where babies and children sleep, play, or are cared for.", - "textExample": "The children kissed their parents goodnight and went upstairs to the nursery.", - "transcription": "[nə́ːrsəri:]", - "__v": 0, - "textExampleTranslate": "Дети поцеловали родителей спокойной ночи и пошли наверх в детскую", - "textMeaningTranslate": "Детская комната - это комната, где дети и дети спят, играют или находятся под присмотром", - "wordTranslate": "питомник" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0247" - }, - "group": 5, - "page": 24, - "word": "parcel", - "image": "files/25_3497.jpg", - "audio": "files/25_3497.mp3", - "audioMeaning": "files/25_3497_meaning.mp3", - "audioExample": "files/25_3497_example.mp3", - "textMeaning": "A parcel is a package of things to be carried or mailed somewhere.", - "textExample": "The parcel looked like it had been stepped on by someone.", - "transcription": "[pɑ́ːrsəl]", - "__v": 0, - "textExampleTranslate": "Посылка выглядела так, будто на нее кто-то наступил", - "textMeaningTranslate": "Посылка - это пакет вещей, которые нужно куда-то перевезти или отправить по почте", - "wordTranslate": "посылка" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0248" - }, - "group": 5, - "page": 24, - "word": "outstretched", - "image": "files/25_3496.jpg", - "audio": "files/25_3496.mp3", - "audioMeaning": "files/25_3496_meaning.mp3", - "audioExample": "files/25_3496_example.mp3", - "textMeaning": "If something is outstretched, then it is extended to its full length.", - "textExample": "The cat stood on its back legs with its front legs outstretched.", - "transcription": "[àutstrétʃt]", - "__v": 0, - "textExampleTranslate": "Кот стоял на задних лапах с вытянутыми передними ногами", - "textMeaningTranslate": "Если что-то вытянуто, то оно расширяется до полной длины", - "wordTranslate": "вытянуты" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0249" - }, - "group": 5, - "page": 24, - "word": "profile", - "image": "files/25_3498.jpg", - "audio": "files/25_3498.mp3", - "audioMeaning": "files/25_3498_meaning.mp3", - "audioExample": "files/25_3498_example.mp3", - "textMeaning": "A profile is an outline of a face, usually as seen from the side.", - "textExample": "The drawing of Olivia’s profile came out very well.", - "transcription": "[próufail]", - "__v": 0, - "textExampleTranslate": "Рисунок профиля Оливии получился очень хорошим", - "textMeaningTranslate": "Профиль - это контур лица, обычно видимый сбоку", - "wordTranslate": "профиль" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b024a" - }, - "group": 5, - "page": 24, - "word": "winding", - "image": "files/25_3499.jpg", - "audio": "files/25_3499.mp3", - "audioMeaning": "files/25_3499_meaning.mp3", - "audioExample": "files/25_3499_example.mp3", - "textMeaning": "If something is winding, then it follows a twisting course.", - "textExample": "The winding river turned and looped around the hills.", - "transcription": "[wáindiŋ]", - "__v": 0, - "textExampleTranslate": "Извилистая река повернулась и обвилась вокруг холмов", - "textMeaningTranslate": "Если что-то извилистое, то оно следует извилистому курсу", - "wordTranslate": "обмотка" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b024b" - }, - "group": 5, - "page": 24, - "word": "zip", - "image": "files/25_3500.jpg", - "audio": "files/25_3500.mp3", - "audioMeaning": "files/25_3500_meaning.mp3", - "audioExample": "files/25_3500_example.mp3", - "textMeaning": "To zip something means to close it with a zipper.", - "textExample": "She zipped her backpack closed after putting her books inside it.", - "transcription": "[zip]", - "__v": 0, - "textExampleTranslate": "Она застегнула молнию на своем рюкзаке, положив в нее свои книги", - "textMeaningTranslate": "Застегнуть молнию означает закрыть ее на молнии", - "wordTranslate": "молния" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b024c" - }, - "group": 5, - "page": 25, - "word": "abolish", - "image": "files/26_3501.jpg", - "audio": "files/26_3501.mp3", - "audioMeaning": "files/26_3501_meaning.mp3", - "audioExample": "files/26_3501_example.mp3", - "textMeaning": "To abolish something means to put an end to it, such as a system or law.", - "textExample": "President Lincoln abolished slavery in the US.", - "transcription": "[əbɑ́liʃ]", - "__v": 0, - "textExampleTranslate": "Президент Линкольн отменил рабство в США", - "textMeaningTranslate": "Отменить что-то - значит положить конец этому, например, систему или закон", - "wordTranslate": "отменить" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b024d" - }, - "group": 5, - "page": 25, - "word": "amend", - "image": "files/26_3502.jpg", - "audio": "files/26_3502.mp3", - "audioMeaning": "files/26_3502_meaning.mp3", - "audioExample": "files/26_3502_example.mp3", - "textMeaning": "To amend something means to change it to improve or make it accurate.", - "textExample": "The countries were in agreement that the treaty needed to be amended.", - "transcription": "[əménd]", - "__v": 0, - "textExampleTranslate": "Страны согласились с тем, что в договор необходимо внести изменения", - "textMeaningTranslate": "Исправить что-либо означает изменить это, чтобы улучшить или сделать это точным", - "wordTranslate": "изменить" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0251" - }, - "group": 5, - "page": 25, - "word": "constitution", - "image": "files/26_3506.jpg", - "audio": "files/26_3506.mp3", - "audioMeaning": "files/26_3506_meaning.mp3", - "audioExample": "files/26_3506_example.mp3", - "textMeaning": "A constitution is a document of principles for a government.", - "textExample": "The country’s constitution said a prime minister could only serve three terms.", - "transcription": "[kὰnstətjúːʃən]", - "__v": 0, - "textExampleTranslate": "Конституция страны гласит, что премьер-министр может служить только три срока", - "textMeaningTranslate": "Конституция - это документ принципов для правительства", - "wordTranslate": "конституция" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0252" - }, - "group": 5, - "page": 25, - "word": "disseminate", - "image": "files/26_3508.jpg", - "audio": "files/26_3508.mp3", - "audioMeaning": "files/26_3508_meaning.mp3", - "audioExample": "files/26_3508_example.mp3", - "textMeaning": "To disseminate information or knowledge means to distribute it.", - "textExample": "The organization disseminates information about the dangers of smoking.", - "transcription": "[disémənèit]", - "__v": 0, - "textExampleTranslate": "Организация распространяет информацию о вреде курения", - "textMeaningTranslate": "Распространять информацию или знания - значит распространять их", - "wordTranslate": "распространять" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b024f" - }, - "group": 5, - "page": 25, - "word": "censor", - "image": "files/26_3504.jpg", - "audio": "files/26_3504.mp3", - "audioMeaning": "files/26_3504_meaning.mp3", - "audioExample": "files/26_3504_example.mp3", - "textMeaning": "To censor information means to remove it if it is dangerous, rude, or rebellious.", - "textExample": "To protect innocent people, the location of the bomb was censored.", - "transcription": "[sénsər]", - "__v": 0, - "textExampleTranslate": "Чтобы защитить невинных людей, местоположение бомбы было подвергнуто цензуре", - "textMeaningTranslate": "Цензировать информацию - значит удалять ее, если она опасна, груба или мятежна", - "wordTranslate": "цензор" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0250" - }, - "group": 5, - "page": 25, - "word": "charter", - "image": "files/26_3505.jpg", - "audio": "files/26_3505.mp3", - "audioMeaning": "files/26_3505_meaning.mp3", - "audioExample": "files/26_3505_example.mp3", - "textMeaning": "A charter is a document that describes the rights of an organization or group.", - "textExample": "The company charter explained that all employees had to pay a tax.", - "transcription": "[ʧάːrtər]", - "__v": 0, - "textExampleTranslate": "В уставе компании объясняется, что все сотрудники должны платить налог", - "textMeaningTranslate": "Устав - это документ, который описывает права организации или группы", - "wordTranslate": "устав" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b024e" - }, - "group": 5, - "page": 25, - "word": "aspire", - "image": "files/26_3503.jpg", - "audio": "files/26_3503.mp3", - "audioMeaning": "files/26_3503_meaning.mp3", - "audioExample": "files/26_3503_example.mp3", - "textMeaning": "To aspire means to have a strong desire to achieve or do something.", - "textExample": "George aspired to be a doctor from a young age.", - "transcription": "[əspáiər]", - "__v": 0, - "textExampleTranslate": "Джордж с юных лет стремился стать врачом", - "textMeaningTranslate": "Стремиться означает иметь сильное желание чего-то достичь или сделать", - "wordTranslate": "стремиться" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0253" - }, - "group": 5, - "page": 25, - "word": "cosmopolitan", - "image": "files/26_3507.jpg", - "audio": "files/26_3507.mp3", - "audioMeaning": "files/26_3507_meaning.mp3", - "audioExample": "files/26_3507_example.mp3", - "textMeaning": "When a place is cosmopolitan, it is full of people from many different places.", - "textExample": "There are dozens of different types of restaurants in a cosmopolitan city.", - "transcription": "[kɑ̀zməpɑ́lətən]", - "__v": 0, - "textExampleTranslate": "В многонациональном городе есть десятки ресторанов разных типов", - "textMeaningTranslate": "Когда место космополитическое, оно полно людей из разных мест", - "wordTranslate": "космополит" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0256" - }, - "group": 5, - "page": 25, - "word": "lame", - "image": "files/26_3511.jpg", - "audio": "files/26_3511.mp3", - "audioMeaning": "files/26_3511_meaning.mp3", - "audioExample": "files/26_3511_example.mp3", - "textMeaning": "If one is lame, they cannot walk properly due to an injury to the leg or foot.", - "textExample": "The terrible accident left many people dead and several others lame.", - "transcription": "[leim]", - "__v": 0, - "textExampleTranslate": "Ужасная авария привела к гибели многих людей и еще нескольких хромых", - "textMeaningTranslate": "Если кто-то хромает, он не может нормально ходить из-за травмы ноги или ступни", - "wordTranslate": "ламе" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0254" - }, - "group": 5, - "page": 25, - "word": "flatter", - "image": "files/26_3509.jpg", - "audio": "files/26_3509.mp3", - "audioMeaning": "files/26_3509_meaning.mp3", - "audioExample": "files/26_3509_example.mp3", - "textMeaning": "To fatter people means to praise them in an effort to please them.", - "textExample": "He was just flattering me when he said that my new dress looked gorgeous.", - "transcription": "[flǽtər]", - "__v": 0, - "textExampleTranslate": "Он мне просто льстил, когда говорил, что мое новое платье выглядит великолепно", - "textMeaningTranslate": "Толстеть людей - значит хвалить их, чтобы угодить им", - "wordTranslate": "льстить" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0257" - }, - "group": 5, - "page": 25, - "word": "limp", - "image": "files/26_3512.jpg", - "audio": "files/26_3512.mp3", - "audioMeaning": "files/26_3512_meaning.mp3", - "audioExample": "files/26_3512_example.mp3", - "textMeaning": "To limp means to walk with difficulty because someone’s leg or foot is hurt.", - "textExample": "After the injury, the player limped off of the field.", - "transcription": "[imp]", - "__v": 0, - "textExampleTranslate": "После травмы игрок хромал с поля", - "textMeaningTranslate": "Хромать - значит ходить с трудом, потому что у кого-то болит нога или нога", - "wordTranslate": "хромать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0255" - }, - "group": 5, - "page": 25, - "word": "infamous", - "image": "files/26_3510.jpg", - "audio": "files/26_3510.mp3", - "audioMeaning": "files/26_3510_meaning.mp3", - "audioExample": "files/26_3510_example.mp3", - "textMeaning": "When someone is infamous, they are well known for something bad.", - "textExample": "That news channel is infamous for presenting biased information.", - "transcription": "[ínfəməs]", - "__v": 0, - "textExampleTranslate": "Этот новостной канал печально известен представлением необъективной информации", - "textMeaningTranslate": "Когда кто-то печально известен, они известны чем-то плохим", - "wordTranslate": "позорный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0258" - }, - "group": 5, - "page": 25, - "word": "outburst", - "image": "files/26_3513.jpg", - "audio": "files/26_3513.mp3", - "audioMeaning": "files/26_3513_meaning.mp3", - "audioExample": "files/26_3513_example.mp3", - "textMeaning": "An outburst is a sudden, strong expression of an emotion.", - "textExample": "There was an outburst of cheers when the comedian took the stage.", - "transcription": "[áutbə̀ːrst]", - "__v": 0, - "textExampleTranslate": "Был взрыв аплодисментов, когда комик вышел на сцену", - "textMeaningTranslate": "Вспышка - это внезапное сильное выражение эмоции", - "wordTranslate": "взрыв" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0259" - }, - "group": 5, - "page": 25, - "word": "pathological", - "image": "files/26_3514.jpg", - "audio": "files/26_3514.mp3", - "audioMeaning": "files/26_3514_meaning.mp3", - "audioExample": "files/26_3514_example.mp3", - "textMeaning": "When a behavior is pathological, it is extreme, unacceptable, and sometimes a symptom of disease.", - "textExample": "The pathological liar could not even tell the truth about unimportant matters.", - "transcription": "[pæ̀θəlɑ́dʒikəl]", - "__v": 0, - "textExampleTranslate": "Патологический лжец не мог даже сказать правду о неважных делах", - "textMeaningTranslate": "Когда поведение является патологическим, оно является крайним, неприемлемым, а иногда и симптомом заболевания", - "wordTranslate": "патологическое" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b025a" - }, - "group": 5, - "page": 25, - "word": "phenomenal", - "image": "files/26_3515.jpg", - "audio": "files/26_3515.mp3", - "audioMeaning": "files/26_3515_meaning.mp3", - "audioExample": "files/26_3515_example.mp3", - "textMeaning": "When something is phenomenal, it is unusually great.", - "textExample": "The child’s ability to play the piano is nothing short of phenomenal.", - "transcription": "[finάmənl]", - "__v": 0, - "textExampleTranslate": "Способность ребенка играть на пианино - не что иное, как феноменальное", - "textMeaningTranslate": "Когда что-то феноменально, это необычайно здорово", - "wordTranslate": "феноменальный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b025c" - }, - "group": 5, - "page": 25, - "word": "remorse", - "image": "files/26_3517.jpg", - "audio": "files/26_3517.mp3", - "audioMeaning": "files/26_3517_meaning.mp3", - "audioExample": "files/26_3517_example.mp3", - "textMeaning": "Remorse is a strong feeling of sadness and regret.", - "textExample": "When I realized what I had done, I felt remorse for my actions.", - "transcription": "[rimɔ́ːrs]", - "__v": 0, - "textExampleTranslate": "Когда я понял, что я сделал, я почувствовал раскаяние за свои действия", - "textMeaningTranslate": "Раскаяние - это сильное чувство грусти и сожаления", - "wordTranslate": "угрызения совести" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b025b" - }, - "group": 5, - "page": 25, - "word": "poll", - "image": "files/26_3516.jpg", - "audio": "files/26_3516.mp3", - "audioMeaning": "files/26_3516_meaning.mp3", - "audioExample": "files/26_3516_example.mp3", - "textMeaning": "A poll is a survey in which people give their opinions about important things.", - "textExample": "The poll showed that many people support the plan to stop gang violence.", - "transcription": "[poul]", - "__v": 0, - "textExampleTranslate": "Опрос показал, что многие люди поддерживают план по прекращению насилия со стороны банд", - "textMeaningTranslate": "Опрос - это опрос, в котором люди высказывают свое мнение о важных вещах", - "wordTranslate": "голосование" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b025d" - }, - "group": 5, - "page": 25, - "word": "secrecy", - "image": "files/26_3518.jpg", - "audio": "files/26_3518.mp3", - "audioMeaning": "files/26_3518_meaning.mp3", - "audioExample": "files/26_3518_example.mp3", - "textMeaning": "Secrecy is the behavior of keeping things secret.", - "textExample": "The secrecy of the big organization made the government nervous.", - "transcription": "[síːkrisi:]", - "__v": 0, - "textExampleTranslate": "Секретность большой организации заставила правительство нервничать", - "textMeaningTranslate": "Секретность - это поведение, которое хранит вещи в секрете", - "wordTranslate": "секретность" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b025e" - }, - "group": 5, - "page": 25, - "word": "tackle", - "image": "files/26_3519.jpg", - "audio": "files/26_3519.mp3", - "audioMeaning": "files/26_3519_meaning.mp3", - "audioExample": "files/26_3519_example.mp3", - "textMeaning": "To tackle something means to deal with it in a determined and efficient way.", - "textExample": "Such social problems need to be tackled right away.", - "transcription": "[tǽkl]", - "__v": 0, - "textExampleTranslate": "Такие социальные проблемы нужно решать немедленно", - "textMeaningTranslate": "Заниматься чем-то - значит действовать решительно и эффективно", - "wordTranslate": "снасти" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b025f" - }, - "group": 5, - "page": 25, - "word": "trance", - "image": "files/26_3520.jpg", - "audio": "files/26_3520.mp3", - "audioMeaning": "files/26_3520_meaning.mp3", - "audioExample": "files/26_3520_example.mp3", - "textMeaning": "A trance is a state where people seem asleep and have no control of themselves.", - "textExample": "The woman’s powerful eyes often put men in a trance.", - "transcription": "[træns]", - "__v": 0, - "textExampleTranslate": "Мощные глаза женщины часто приводят мужчин в транс", - "textMeaningTranslate": "Транс - это состояние, когда люди кажутся спящими и не могут контролировать себя", - "wordTranslate": "транс" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0261" - }, - "group": 5, - "page": 26, - "word": "delete", - "image": "files/27_3522.jpg", - "audio": "files/27_3522.mp3", - "audioMeaning": "files/27_3522_meaning.mp3", - "audioExample": "files/27_3522_example.mp3", - "textMeaning": "To delete something means to remove or erase written material.", - "textExample": "Several lines had been deleted from her speech.", - "transcription": "[dilíːt]", - "__v": 0, - "textExampleTranslate": "Несколько строк были удалены из ее речи", - "textMeaningTranslate": "Удалить что-либо означает удалить или стереть письменный материал", - "wordTranslate": "удалять" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0260" - }, - "group": 5, - "page": 26, - "word": "coward", - "image": "files/27_3521.jpg", - "audio": "files/27_3521.mp3", - "audioMeaning": "files/27_3521_meaning.mp3", - "audioExample": "files/27_3521_example.mp3", - "textMeaning": "A coward is a person who lacks courage to do risky or dangerous things.", - "textExample": "A firefighter cannot be a coward. They have to be able to act quickly.", - "transcription": "[káuərd]", - "__v": 0, - "textExampleTranslate": "Пожарный не может быть трусом. Он должен действовать быстро", - "textMeaningTranslate": "Трус - это человек, которому не хватает смелости совершать рискованные или опасные поступки", - "wordTranslate": "трус" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0262" - }, - "group": 5, - "page": 26, - "word": "earnest", - "image": "files/27_3523.jpg", - "audio": "files/27_3523.mp3", - "audioMeaning": "files/27_3523_meaning.mp3", - "audioExample": "files/27_3523_example.mp3", - "textMeaning": "If someone is earnest, then they are honest.", - "textExample": "The child was very earnest when she told her mother how she broke the dish.", - "transcription": "[ə́ːrnist]", - "__v": 0, - "textExampleTranslate": "Ребенок был очень серьезным, когда она рассказала своей матери, как она разбила блюдо", - "textMeaningTranslate": "Если кто-то серьезен, то он честен", - "wordTranslate": "всерьез" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0263" - }, - "group": 5, - "page": 26, - "word": "ethnic", - "image": "files/27_3524.jpg", - "audio": "files/27_3524.mp3", - "audioMeaning": "files/27_3524_meaning.mp3", - "audioExample": "files/27_3524_example.mp3", - "textMeaning": "If something is ethnic, then it is related to a group with a similar culture.", - "textExample": "Many sections of the city are home to different ethnic communities.", - "transcription": "[éθnik]", - "__v": 0, - "textExampleTranslate": "Во многих районах города проживают разные этнические общины", - "textMeaningTranslate": "Если что-то этническое, то это связано с группой с похожей культурой", - "wordTranslate": "этнический" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0264" - }, - "group": 5, - "page": 26, - "word": "exclude", - "image": "files/27_3525.jpg", - "audio": "files/27_3525.mp3", - "audioMeaning": "files/27_3525_meaning.mp3", - "audioExample": "files/27_3525_example.mp3", - "textMeaning": "To exclude someone means to not accept them into a group.", - "textExample": "Carol was excluded from the contest because her friend was a judge.", - "transcription": "[iksklúːd]", - "__v": 0, - "textExampleTranslate": "Кэрол была исключена из конкурса, потому что ее подруга была судьей", - "textMeaningTranslate": "Исключить кого-либо означает не принимать его в группу", - "wordTranslate": "исключить" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0265" - }, - "group": 5, - "page": 26, - "word": "firsthand", - "image": "files/27_3526.jpg", - "audio": "files/27_3526.mp3", - "audioMeaning": "files/27_3526_meaning.mp3", - "audioExample": "files/27_3526_example.mp3", - "textMeaning": "If something is firsthand, then it is from an original source.", - "textExample": "If you want firsthand knowledge, ask someone who saw it.", - "transcription": "[fə́ːrsthǽnd]", - "__v": 0, - "textExampleTranslate": "Если вы хотите узнать из первых рук, спросите кого-то, кто его видел", - "textMeaningTranslate": "Если что-то из первых рук, то это из первоисточника", - "wordTranslate": "из первых рук" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0266" - }, - "group": 5, - "page": 26, - "word": "fluent", - "image": "files/27_3527.jpg", - "audio": "files/27_3527.mp3", - "audioMeaning": "files/27_3527_meaning.mp3", - "audioExample": "files/27_3527_example.mp3", - "textMeaning": "If someone is fluent in a language, then they are able to speak it very well.", - "textExample": "She was so fluent in German that you’d have thought she was from Germany.", - "transcription": "[flúːənt]", - "__v": 0, - "textExampleTranslate": "Она так свободно говорила по-немецки, что вы подумали, что она из Германии", - "textMeaningTranslate": "Если кто-то свободно говорит на каком-либо языке, он может говорить на нем очень хорошо", - "wordTranslate": "свободно" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0267" - }, - "group": 5, - "page": 26, - "word": "imperial", - "image": "files/27_3528.jpg", - "audio": "files/27_3528.mp3", - "audioMeaning": "files/27_3528_meaning.mp3", - "audioExample": "files/27_3528_example.mp3", - "textMeaning": "If something is imperial, then it is related to an empire.", - "textExample": "These old imperial coins were once used in the Roman Empire.", - "transcription": "[impíəriəl]", - "__v": 0, - "textExampleTranslate": "Эти старые императорские монеты когда-то использовались в Римской империи", - "textMeaningTranslate": "Если что-то имперское, то это связано с империей", - "wordTranslate": "имперский" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0268" - }, - "group": 5, - "page": 26, - "word": "inclusive", - "image": "files/27_3529.jpg", - "audio": "files/27_3529.mp3", - "audioMeaning": "files/27_3529_meaning.mp3", - "audioExample": "files/27_3529_example.mp3", - "textMeaning": "If something is inclusive, then it is open to all groups and people in society.", - "textExample": "A more inclusive event would have allowed children to attend.", - "transcription": "[inklúːsiv]", - "__v": 0, - "textExampleTranslate": "Более инклюзивное мероприятие позволило бы детям присутствовать", - "textMeaningTranslate": "Если что-то является инклюзивным, то оно открыто для всех групп и людей в обществе", - "wordTranslate": "включено" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0269" - }, - "group": 5, - "page": 26, - "word": "legislature", - "image": "files/27_3530.jpg", - "audio": "files/27_3530.mp3", - "audioMeaning": "files/27_3530_meaning.mp3", - "audioExample": "files/27_3530_example.mp3", - "textMeaning": "A legislature is the section of a government that makes laws.", - "textExample": "The senator had served ten years in the national legislature.", - "transcription": "[lédʒislèitʃər]", - "__v": 0, - "textExampleTranslate": "Сенатор прослужил десять лет в национальном законодательном органе", - "textMeaningTranslate": "Законодательная власть - это часть правительства, которая разрабатывает законы", - "wordTranslate": "законодательная власть" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b026a" - }, - "group": 5, - "page": 26, - "word": "linguistic", - "image": "files/27_3531.jpg", - "audio": "files/27_3531.mp3", - "audioMeaning": "files/27_3531_meaning.mp3", - "audioExample": "files/27_3531_example.mp3", - "textMeaning": "If something is linguistic, then it is concerned with language.", - "textExample": "A linguistic way of studying culture focuses on words within that culture.", - "transcription": "[liŋgwístik]", - "__v": 0, - "textExampleTranslate": "Лингвистический способ изучения культуры фокусируется на словах в этой культуре", - "textMeaningTranslate": "Если что-то лингвистическое, то это касается языка", - "wordTranslate": "лингвистический" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b026b" - }, - "group": 5, - "page": 26, - "word": "monolingual", - "image": "files/27_3532.jpg", - "audio": "files/27_3532.mp3", - "audioMeaning": "files/27_3532_meaning.mp3", - "audioExample": "files/27_3532_example.mp3", - "textMeaning": "If someone is monolingual, then they speak only one language.", - "textExample": "In today’s global economy, being monolingual limits your opportunities.", - "transcription": "[mɑ̀nəlíŋgwəl]", - "__v": 0, - "textExampleTranslate": "В сегодняшней мировой экономике монолингвальность ограничивает ваши возможности", - "textMeaningTranslate": "Если кто-то говорит на одном языке, то он говорит только на одном языке", - "wordTranslate": "одноязычных" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b026c" - }, - "group": 5, - "page": 26, - "word": "patriot", - "image": "files/27_3534.jpg", - "audio": "files/27_3534.mp3", - "audioMeaning": "files/27_3534_meaning.mp3", - "audioExample": "files/27_3534_example.mp3", - "textMeaning": "A patriot is someone who loves, supports, and defends their country.", - "textExample": "Every year, young patriots join their countries’ militaries.", - "transcription": "[péitriət]", - "__v": 0, - "textExampleTranslate": "Каждый год молодые патриоты вступают в армию своих стран", - "textMeaningTranslate": "Патриот - это тот, кто любит, поддерживает и защищает свою страну", - "wordTranslate": "патриот" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b026d" - }, - "group": 5, - "page": 26, - "word": "nationality", - "image": "files/27_3533.jpg", - "audio": "files/27_3533.mp3", - "audioMeaning": "files/27_3533_meaning.mp3", - "audioExample": "files/27_3533_example.mp3", - "textMeaning": "Nationality is an identity based on the nation from which you come.", - "textExample": "His nationality is German, but he speaks French, Spanish, and Korean.", - "transcription": "[nӕʃənǽləti]", - "__v": 0, - "textExampleTranslate": "Его национальность - немец, но он говорит по-французски, по-испански и по-корейски", - "textMeaningTranslate": "Национальность - это идентичность, основанная на нации, из которой вы родом", - "wordTranslate": "национальность" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b026e" - }, - "group": 5, - "page": 26, - "word": "prosecute", - "image": "files/27_3535.jpg", - "audio": "files/27_3535.mp3", - "audioMeaning": "files/27_3535_meaning.mp3", - "audioExample": "files/27_3535_example.mp3", - "textMeaning": "To prosecute someone means to take legal action against them.", - "textExample": "They were prosecuted for fishing in the river without a permit.", - "transcription": "[prάsikjùːt]", - "__v": 0, - "textExampleTranslate": "Их преследовали за ловлю рыбы в реке без разрешения", - "textMeaningTranslate": "Привлекать к ответственности кого-либо - значит подавать в суд на него", - "wordTranslate": "преследовать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b026f" - }, - "group": 5, - "page": 26, - "word": "racial", - "image": "files/27_3536.jpg", - "audio": "files/27_3536.mp3", - "audioMeaning": "files/27_3536_meaning.mp3", - "audioExample": "files/27_3536_example.mp3", - "textMeaning": "If something is racial, then it is related to a race or races.", - "textExample": "The differences between racial groups are physical characteristics and culture.", - "transcription": "[réiʃəl]", - "__v": 0, - "textExampleTranslate": "Различия между расовыми группами - это физические характеристики и культура", - "textMeaningTranslate": "Если что-то является расовым, то это связано с расой или расами", - "wordTranslate": "расовый" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0270" - }, - "group": 5, - "page": 26, - "word": "solemn", - "image": "files/27_3537.jpg", - "audio": "files/27_3537.mp3", - "audioMeaning": "files/27_3537_meaning.mp3", - "audioExample": "files/27_3537_example.mp3", - "textMeaning": "If something is solemn, then it is serious and honest.", - "textExample": "The professor preferred a solemn relationship between him and his students.", - "transcription": "[sɑ́ləm]", - "__v": 0, - "textExampleTranslate": "Профессор предпочитал торжественные отношения между ним и его учениками", - "textMeaningTranslate": "Если что-то торжественное, то это серьезно и честно", - "wordTranslate": "торжественное" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0271" - }, - "group": 5, - "page": 26, - "word": "tact", - "image": "files/27_3539.jpg", - "audio": "files/27_3539.mp3", - "audioMeaning": "files/27_3539_meaning.mp3", - "audioExample": "files/27_3539_example.mp3", - "textMeaning": "Tact is the ability to avoid offending people when dealing with problems.", - "textExample": "Since both sides would not agree, it required someone with tact to make peace.", - "transcription": "[tækt]", - "__v": 0, - "textExampleTranslate": "Поскольку обе стороны не согласятся, для того, чтобы заключить мир, требуется кто-то тактичный", - "textMeaningTranslate": "Такт - это способность избегать оскорблений людей при решении проблем", - "wordTranslate": "тактичность" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0272" - }, - "group": 5, - "page": 26, - "word": "solidarity", - "image": "files/27_3538.jpg", - "audio": "files/27_3538.mp3", - "audioMeaning": "files/27_3538_meaning.mp3", - "audioExample": "files/27_3538_example.mp3", - "textMeaning": "Solidarity is a union formed from common responsibilities or interests.", - "textExample": "All the citizens came together in a show of solidarity to create change.", - "transcription": "[sɑ̀lədǽrəti:]", - "__v": 0, - "textExampleTranslate": "Все граждане собрались вместе в знак солидарности, чтобы добиться перемен", - "textMeaningTranslate": "Солидарность - это союз, сформированный из общих обязанностей или интересов", - "wordTranslate": "солидарность" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0273" - }, - "group": 5, - "page": 26, - "word": "undermine", - "image": "files/27_3540.jpg", - "audio": "files/27_3540.mp3", - "audioMeaning": "files/27_3540_meaning.mp3", - "audioExample": "files/27_3540_example.mp3", - "textMeaning": "To undermine someone means to betray them or weaken their efforts or authority.", - "textExample": "The documents helped to undermine the workers’ trust in their bosses’ honesty.", - "transcription": "[ʌ̀ndərmáin]", - "__v": 0, - "textExampleTranslate": "Документы помогли подорвать доверие рабочих к честности своих начальников", - "textMeaningTranslate": "Подорвать кого-либо - значит предать его или ослабить его усилия или авторитет", - "wordTranslate": "подорвать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0274" - }, - "group": 5, - "page": 27, - "word": "constrain", - "image": "files/28_3541.jpg", - "audio": "files/28_3541.mp3", - "audioMeaning": "files/28_3541_meaning.mp3", - "audioExample": "files/28_3541_example.mp3", - "textMeaning": "To constrain something means to limit its development.", - "textExample": "Jim cannot join us because he is constrained by previous plans.", - "transcription": "[kənstréin]", - "__v": 0, - "textExampleTranslate": "Джим не может присоединиться к нам, потому что он ограничен предыдущими планами", - "textMeaningTranslate": "Ограничивать что-либо - значит ограничивать его развитие", - "wordTranslate": "сдерживать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0275" - }, - "group": 5, - "page": 27, - "word": "depot", - "image": "files/28_3542.jpg", - "audio": "files/28_3542.mp3", - "audioMeaning": "files/28_3542_meaning.mp3", - "audioExample": "files/28_3542_example.mp3", - "textMeaning": "A depot is a bus or train station.", - "textExample": "He waited for his mother to arrive at the depot.", - "transcription": "[díːpou]", - "__v": 0, - "textExampleTranslate": "Он ждал, когда его мать прибудет в депо", - "textMeaningTranslate": "Депо - это автобусная или железнодорожная станция", - "wordTranslate": "депо" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0276" - }, - "group": 5, - "page": 27, - "word": "forefinger", - "image": "files/28_3544.jpg", - "audio": "files/28_3544.mp3", - "audioMeaning": "files/28_3544_meaning.mp3", - "audioExample": "files/28_3544_example.mp3", - "textMeaning": "The forefinger is the finger between one’s thumb and middle finger.", - "textExample": "He shouted, “There it is!” and pointed with his forefinger.", - "transcription": "[fɔ́ːrfìŋgər]", - "__v": 0, - "textExampleTranslate": "Он крикнул: 'Вот оно!' и указал указательным пальцем ", - "textMeaningTranslate": "Указательный палец - это палец между большим и средним пальцем", - "wordTranslate": "указательный палец" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0277" - }, - "group": 5, - "page": 27, - "word": "emulate", - "image": "files/28_3543.jpg", - "audio": "files/28_3543.mp3", - "audioMeaning": "files/28_3543_meaning.mp3", - "audioExample": "files/28_3543_example.mp3", - "textMeaning": "To emulate people means to imitate them because they are greatly admired.", - "textExample": "As a small boy, he always tried to emulate his big brother.", - "transcription": "[émjəlèit]", - "__v": 0, - "textExampleTranslate": "Будучи маленьким мальчиком, он всегда пытался подражать своему старшему брату", - "textMeaningTranslate": "Подражать людям - значит подражать им, потому что ими восхищаются", - "wordTranslate": "эмулировать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0278" - }, - "group": 5, - "page": 27, - "word": "guts", - "image": "files/28_3545.jpg", - "audio": "files/28_3545.mp3", - "audioMeaning": "files/28_3545_meaning.mp3", - "audioExample": "files/28_3545_example.mp3", - "textMeaning": "The guts are all the organs inside a person or animal.", - "textExample": "The doctor can tell you every process that happens in one’s guts.", - "transcription": "[gʌts]", - "__v": 0, - "textExampleTranslate": "Врач может рассказать вам о каждом процессе, который происходит у вас в животе", - "textMeaningTranslate": "Кишки - это все органы внутри человека или животного", - "wordTranslate": "внутренности" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0279" - }, - "group": 5, - "page": 27, - "word": "inherent", - "image": "files/28_3546.jpg", - "audio": "files/28_3546.mp3", - "audioMeaning": "files/28_3546_meaning.mp3", - "audioExample": "files/28_3546_example.mp3", - "textMeaning": "When something is inherent, it is a natural part of something else.", - "textExample": "Sweating is an inherent bodily function when exercising.", - "transcription": "[inhíərənt]", - "__v": 0, - "textExampleTranslate": "Потение является неотъемлемой функцией организма при занятиях спортом", - "textMeaningTranslate": "Когда что-то присуще, это естественная часть чего-то другого", - "wordTranslate": "присущий" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b027a" - }, - "group": 5, - "page": 27, - "word": "intimidate", - "image": "files/28_3547.jpg", - "audio": "files/28_3547.mp3", - "audioMeaning": "files/28_3547_meaning.mp3", - "audioExample": "files/28_3547_example.mp3", - "textMeaning": "To intimidate means to frighten others.", - "textExample": "My dad intimidates my friends whenever they visit.", - "transcription": "[intímədèit]", - "__v": 0, - "textExampleTranslate": "Мой папа пугает моих друзей, когда они посещают", - "textMeaningTranslate": "Запугивать - значит пугать других", - "wordTranslate": "запугивание" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b027b" - }, - "group": 5, - "page": 27, - "word": "janitor", - "image": "files/28_3548.jpg", - "audio": "files/28_3548.mp3", - "audioMeaning": "files/28_3548_meaning.mp3", - "audioExample": "files/28_3548_example.mp3", - "textMeaning": "A janitor is a person who makes repairs and takes care of a building.", - "textExample": "The school janitor cleaned up the messy cafeteria.", - "transcription": "[dʒǽnitər]", - "__v": 0, - "textExampleTranslate": "Дворник школы убрал грязную столовую", - "textMeaningTranslate": "Дворник - это человек, который делает ремонт и ухаживает за зданием", - "wordTranslate": "дворник" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b027c" - }, - "group": 5, - "page": 27, - "word": "moist", - "image": "files/28_3549.jpg", - "audio": "files/28_3549.mp3", - "audioMeaning": "files/28_3549_meaning.mp3", - "audioExample": "files/28_3549_example.mp3", - "textMeaning": "When something is moist, it is slightly wet.", - "textExample": "The ground is still moist from the rain last night.", - "transcription": "[mɔist]", - "__v": 0, - "textExampleTranslate": "Земля все еще влажная от дождя прошлой ночью", - "textMeaningTranslate": "Когда что-то влажное, оно слегка влажное", - "wordTranslate": "влажный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b027d" - }, - "group": 5, - "page": 27, - "word": "nope", - "image": "files/28_3550.jpg", - "audio": "files/28_3550.mp3", - "audioMeaning": "files/28_3550_meaning.mp3", - "audioExample": "files/28_3550_example.mp3", - "textMeaning": "Nope is an informal way of saying “no.”", - "textExample": "He asked if I had any money, and I had to say, “Nope.”", - "transcription": "[noup]", - "__v": 0, - "textExampleTranslate": "Он спросил, есть ли у меня деньги, и я должен был сказать 'Нет'", - "textMeaningTranslate": "'Неа', это неформальный способ сказать 'нет'", - "wordTranslate": "нет" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b027e" - }, - "group": 5, - "page": 27, - "word": "prod", - "image": "files/28_3551.jpg", - "audio": "files/28_3551.mp3", - "audioMeaning": "files/28_3551_meaning.mp3", - "audioExample": "files/28_3551_example.mp3", - "textMeaning": "To prod means to push someone or something with a finger or pointed object.", - "textExample": "The bully prodded me in the chest with her finger.", - "transcription": "[prɑd]", - "__v": 0, - "textExampleTranslate": "Хулиган ткнул меня пальцем в грудь", - "textMeaningTranslate": "Продвигать означает толкать кого-то или что-то пальцем или острым предметом", - "wordTranslate": "прод" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b027f" - }, - "group": 5, - "page": 27, - "word": "ransom", - "image": "files/28_3552.jpg", - "audio": "files/28_3552.mp3", - "audioMeaning": "files/28_3552_meaning.mp3", - "audioExample": "files/28_3552_example.mp3", - "textMeaning": "A ransom is a sum of money paid to a kidnapper to set the person free.", - "textExample": "He kidnapped the prince and demanded $1 million as a ransom.", - "transcription": "[rǽnsəm]", - "__v": 0, - "textExampleTranslate": "Он похитил принца и потребовал 1 миллион долларов в качестве выкупа", - "textMeaningTranslate": "Выкуп - это сумма денег, выплачиваемая похитителю, чтобы освободить человека", - "wordTranslate": "выкуп" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0280" - }, - "group": 5, - "page": 27, - "word": "restrain", - "image": "files/28_3553.jpg", - "audio": "files/28_3553.mp3", - "audioMeaning": "files/28_3553_meaning.mp3", - "audioExample": "files/28_3553_example.mp3", - "textMeaning": "To restrain someone or something means to use physical strength to stop them.", - "textExample": "Mike restrained Allen from reaching the door.", - "transcription": "[ristréin]", - "__v": 0, - "textExampleTranslate": "Майк удержал Аллена от доступа к двери", - "textMeaningTranslate": "Обуздать кого-то или что-то - значит использовать физическую силу, чтобы остановить их", - "wordTranslate": "сдерживать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0281" - }, - "group": 5, - "page": 27, - "word": "saliva", - "image": "files/28_3554.jpg", - "audio": "files/28_3554.mp3", - "audioMeaning": "files/28_3554_meaning.mp3", - "audioExample": "files/28_3554_example.mp3", - "textMeaning": "Saliva is the watery liquid in people’s mouths that helps in digestion.", - "textExample": "The baby could not keep the saliva from dripping out of its mouth.", - "transcription": "[səláivə]", - "__v": 0, - "textExampleTranslate": "Ребенок не мог удержать слюну от капель изо рта", - "textMeaningTranslate": "Слюна - водянистая жидкость во рту людей, которая помогает пищеварению", - "wordTranslate": "слюна" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0282" - }, - "group": 5, - "page": 27, - "word": "spit", - "image": "files/28_3555.jpg", - "audio": "files/28_3555.mp3", - "audioMeaning": "files/28_3555_meaning.mp3", - "audioExample": "files/28_3555_example.mp3", - "textMeaning": "To spit means to force liquid from one’s mouth.", - "textExample": "He emerged from the pool and spit water from his mouth.", - "transcription": "[spit]", - "__v": 0, - "textExampleTranslate": "Он вышел из бассейна и выплюнул воду изо рта", - "textMeaningTranslate": "Плевать - значит выбить жидкость изо рта", - "wordTranslate": "вертел" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0283" - }, - "group": 5, - "page": 27, - "word": "sprint", - "image": "files/28_3556.jpg", - "audio": "files/28_3556.mp3", - "audioMeaning": "files/28_3556_meaning.mp3", - "audioExample": "files/28_3556_example.mp3", - "textMeaning": "To sprint means to run very fast over a short distance.", - "textExample": "The kids didn’t want to be late to class, so they sprinted to the bus stop.", - "transcription": "[sprint]", - "__v": 0, - "textExampleTranslate": "Дети не хотели опаздывать на занятия, поэтому они побежали к автобусной остановке", - "textMeaningTranslate": "Спринт означает бегать очень быстро на короткое расстояние", - "wordTranslate": "спринт" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0284" - }, - "group": 5, - "page": 27, - "word": "stunt", - "image": "files/28_3557.jpg", - "audio": "files/28_3557.mp3", - "audioMeaning": "files/28_3557_meaning.mp3", - "audioExample": "files/28_3557_example.mp3", - "textMeaning": "A stunt is something that is done in order to get attention or publicity.", - "textExample": "The man jumped over the cars as a promotional stunt.", - "transcription": "[stʌnt]", - "__v": 0, - "textExampleTranslate": "Человек перепрыгнул через машины как рекламный трюк", - "textMeaningTranslate": "Трюк - это то, что делается для того, чтобы привлечь внимание или рекламу", - "wordTranslate": "трюк" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0285" - }, - "group": 5, - "page": 27, - "word": "tolerant", - "image": "files/28_3558.jpg", - "audio": "files/28_3558.mp3", - "audioMeaning": "files/28_3558_meaning.mp3", - "audioExample": "files/28_3558_example.mp3", - "textMeaning": "When people are tolerant, they are respectful of others’ rights and beliefs.", - "textExample": "The tolerant leader thought that everyone was equal regardless of race.", - "transcription": "[tɑ́lərənt]", - "__v": 0, - "textExampleTranslate": "Толерантный лидер думал, что все равны, независимо от расы", - "textMeaningTranslate": "Когда люди терпимы, они уважают права и убеждения других", - "wordTranslate": "толерантный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0286" - }, - "group": 5, - "page": 27, - "word": "vampire", - "image": "files/28_3559.jpg", - "audio": "files/28_3559.mp3", - "audioMeaning": "files/28_3559_meaning.mp3", - "audioExample": "files/28_3559_example.mp3", - "textMeaning": "A vampire is a fictional monster that sleeps in a coffin and sucks people’s blood.", - "textExample": "The vampire snuck up on the woman and bit her neck.", - "transcription": "[vǽmpaiər]", - "__v": 0, - "textExampleTranslate": "Вампир подкрался к женщине и укусил ее в шею", - "textMeaningTranslate": "Вампир - вымышленный монстр, который спит в гробу и сосет кровь людей", - "wordTranslate": "вампир" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0287" - }, - "group": 5, - "page": 27, - "word": "yawn", - "image": "files/28_3560.jpg", - "audio": "files/28_3560.mp3", - "audioMeaning": "files/28_3560_meaning.mp3", - "audioExample": "files/28_3560_example.mp3", - "textMeaning": "To yawn means to open one’s mouth wide and breathe in air.", - "textExample": "The child yawned and stretched her arms before going to bed for the night.", - "transcription": "[jɔːn]", - "__v": 0, - "textExampleTranslate": "Ребенок зевнул и вытянул руки перед сном на ночь", - "textMeaningTranslate": "Зевать - значит широко раскрывать рот и дышать воздухом", - "wordTranslate": "зевок" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0288" - }, - "group": 5, - "page": 28, - "word": "adjoining", - "image": "files/29_3561.jpg", - "audio": "files/29_3561.mp3", - "audioMeaning": "files/29_3561_meaning.mp3", - "audioExample": "files/29_3561_example.mp3", - "textMeaning": "If something is adjoining, it is next to or joined with a building or room.", - "textExample": "I couldn’t sleep because the people in the adjoining room were loud.", - "transcription": "[ədʒɔ́iniŋ]", - "__v": 0, - "textExampleTranslate": "Я не мог спать, потому что люди в соседней комнате были громкими", - "textMeaningTranslate": "Если что-то примыкает, оно рядом или соединено со зданием или комнатой", - "wordTranslate": "примыкающий" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0289" - }, - "group": 5, - "page": 28, - "word": "allege", - "image": "files/29_3562.jpg", - "audio": "files/29_3562.mp3", - "audioMeaning": "files/29_3562_meaning.mp3", - "audioExample": "files/29_3562_example.mp3", - "textMeaning": "To allege something is to say that it is true without offering proof.", - "textExample": "The little girl had alleged that her older brother hid her favorite doll.", - "transcription": "[əlédʒ]", - "__v": 0, - "textExampleTranslate": "Маленькая девочка утверждала, что ее старший брат спрятал свою любимую куклу", - "textMeaningTranslate": "Утверждать что-то - значит говорить, что это правда, не предлагая доказательств", - "wordTranslate": "утверждают" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b028a" - }, - "group": 5, - "page": 28, - "word": "arch", - "image": "files/29_3563.jpg", - "audio": "files/29_3563.mp3", - "audioMeaning": "files/29_3563_meaning.mp3", - "audioExample": "files/29_3563_example.mp3", - "textMeaning": "An arch is a curved opening formed under a structure such as a bridge or doorway.", - "textExample": "The arch of the bridge was not high enough for the tall boat to pass underneath.", - "transcription": "[aːrʧ]", - "__v": 0, - "textExampleTranslate": "Арочный мост был недостаточно высок, чтобы высокая лодка могла пройти под ним", - "textMeaningTranslate": "Арка - это изогнутое отверстие, образованное под такой структурой, как мост или дверной проем", - "wordTranslate": "арка" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b028b" - }, - "group": 5, - "page": 28, - "word": "assemble", - "image": "files/29_3564.jpg", - "audio": "files/29_3564.mp3", - "audioMeaning": "files/29_3564_meaning.mp3", - "audioExample": "files/29_3564_example.mp3", - "textMeaning": "To assemble means to get together in one place.", - "textExample": "The parents assembled to discuss ways to improve their children’s education.", - "transcription": "[əsémbl]", - "__v": 0, - "textExampleTranslate": "Родители собрались, чтобы обсудить пути улучшения образования своих детей", - "textMeaningTranslate": "Собрать - значит собраться в одном месте", - "wordTranslate": "собрать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b028c" - }, - "group": 5, - "page": 28, - "word": "casualty", - "image": "files/29_3565.jpg", - "audio": "files/29_3565.mp3", - "audioMeaning": "files/29_3565_meaning.mp3", - "audioExample": "files/29_3565_example.mp3", - "textMeaning": "A casualty is a person killed or injured in a war or an accident.", - "textExample": "The only casualty in the car accident was a woman who broke her arm.", - "transcription": "[kǽʒuəlti:]", - "__v": 0, - "textExampleTranslate": "Единственной жертвой в автомобильной аварии была женщина, которая сломала ей руку", - "textMeaningTranslate": "Пострадавший - это человек, убитый или раненый на войне или в результате несчастного случая", - "wordTranslate": "несчастный случай" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b028d" - }, - "group": 5, - "page": 28, - "word": "erect", - "image": "files/29_3566.jpg", - "audio": "files/29_3566.mp3", - "audioMeaning": "files/29_3566_meaning.mp3", - "audioExample": "files/29_3566_example.mp3", - "textMeaning": "To erect something means to build it.", - "textExample": "The king erected two towers on the north and south sides of his castle.", - "transcription": "[irékt]", - "__v": 0, - "textExampleTranslate": "Король воздвиг две башни на северной и южной сторонах своего замка", - "textMeaningTranslate": "Возвести что-то значит построить это", - "wordTranslate": "эрегированный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b028e" - }, - "group": 5, - "page": 28, - "word": "foul", - "image": "files/29_3567.jpg", - "audio": "files/29_3567.mp3", - "audioMeaning": "files/29_3567_meaning.mp3", - "audioExample": "files/29_3567_example.mp3", - "textMeaning": "If something is foul, then it is very unpleasant.", - "textExample": "He wouldn’t let his dog drink from the water because it had a foul smell.", - "transcription": "[faul]", - "__v": 0, - "textExampleTranslate": "Он не позволил бы своей собаке пить из воды, потому что она имела неприятный запах", - "textMeaningTranslate": "Если что-то нечестно, то это очень неприятно", - "wordTranslate": "фол" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b028f" - }, - "group": 5, - "page": 28, - "word": "hectare", - "image": "files/29_3568.jpg", - "audio": "files/29_3568.mp3", - "audioMeaning": "files/29_3568_meaning.mp3", - "audioExample": "files/29_3568_example.mp3", - "textMeaning": "A hectare is a unit of measure equal to 10,000 square meters.", - "textExample": "His family farm covered many hectares.", - "transcription": "[héktɛər]", - "__v": 0, - "textExampleTranslate": "Его семейная ферма занимала много гектаров", - "textMeaningTranslate": "Гектар - это единица измерения, равная 10000 квадратных метров ", - "wordTranslate": "га" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0290" - }, - "group": 5, - "page": 28, - "word": "heighten", - "image": "files/29_3569.jpg", - "audio": "files/29_3569.mp3", - "audioMeaning": "files/29_3569_meaning.mp3", - "audioExample": "files/29_3569_example.mp3", - "textMeaning": "To heighten an emotion means to increase the intensity of it.", - "textExample": "The pleasant music heightened their enjoyment of the wonderful dinner.", - "transcription": "[háitn]", - "__v": 0, - "textExampleTranslate": "Приятная музыка усилила их удовольствие от чудесного ужина", - "textMeaningTranslate": "Усилить эмоцию означает увеличить ее интенсивность", - "wordTranslate": "пущего" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0291" - }, - "group": 5, - "page": 28, - "word": "hospitality", - "image": "files/29_3570.jpg", - "audio": "files/29_3570.mp3", - "audioMeaning": "files/29_3570_meaning.mp3", - "audioExample": "files/29_3570_example.mp3", - "textMeaning": "Hospitality is friendly behavior and entertainment, shown to guests or strangers.", - "textExample": "The travelers were amazed at the hospitality given them by the hotel’s staf.", - "transcription": "[hὰspətǽləti:]", - "__v": 0, - "textExampleTranslate": "Путешественники были поражены гостеприимством, оказанным им сотрудниками отеля", - "textMeaningTranslate": "Гостеприимство - это дружелюбное поведение и развлечение, которое показывают гостям или незнакомцам", - "wordTranslate": "гостеприимство" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0292" - }, - "group": 5, - "page": 28, - "word": "mansion", - "image": "files/29_3571.jpg", - "audio": "files/29_3571.mp3", - "audioMeaning": "files/29_3571_meaning.mp3", - "audioExample": "files/29_3571_example.mp3", - "textMeaning": "A mansion is a large and expensive home.", - "textExample": "The mansion had thirty bedrooms, two kitchens, and a pool.", - "transcription": "[mǽnʃən]", - "__v": 0, - "textExampleTranslate": "В особняке было тридцать спален, две кухни и бассейн", - "textMeaningTranslate": "Особняк - это большой и дорогой дом", - "wordTranslate": "особняк" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0293" - }, - "group": 5, - "page": 28, - "word": "outnumber", - "image": "files/29_3572.jpg", - "audio": "files/29_3572.mp3", - "audioMeaning": "files/29_3572_meaning.mp3", - "audioExample": "files/29_3572_example.mp3", - "textMeaning": "To outnumber a group means to have a greater number than it.", - "textExample": "The girls outnumbered the boys at the school by four to one.", - "transcription": "[àutnʌ́mbər]", - "__v": 0, - "textExampleTranslate": "Девочек в школе было больше, чем мальчиков, четыре к одному", - "textMeaningTranslate": "Численно превосходить группу - значит иметь большее число, чем она", - "wordTranslate": "превосходит количество" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0294" - }, - "group": 5, - "page": 28, - "word": "overjoyed", - "image": "files/29_3573.jpg", - "audio": "files/29_3573.mp3", - "audioMeaning": "files/29_3573_meaning.mp3", - "audioExample": "files/29_3573_example.mp3", - "textMeaning": "If someone is overjoyed, then they are extremely happy.", - "textExample": "He was overjoyed by the news of his promotion.", - "transcription": "[óuvərdʒɔ:id]", - "__v": 0, - "textExampleTranslate": "Он был в восторге от новостей о его продвижении", - "textMeaningTranslate": "Если кто-то обрадован, значит, он очень счастлив", - "wordTranslate": "обрадовалась" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0295" - }, - "group": 5, - "page": 28, - "word": "pasture", - "image": "files/29_3574.jpg", - "audio": "files/29_3574.mp3", - "audioMeaning": "files/29_3574_meaning.mp3", - "audioExample": "files/29_3574_example.mp3", - "textMeaning": "A pasture is an area of land covered with grass for animals to use as food.", - "textExample": "The sheep were taken to a pasture where there was more grass.", - "transcription": "[pǽsʧər]", - "__v": 0, - "textExampleTranslate": "Овец отвезли на пастбище, где было больше травы", - "textMeaningTranslate": "Пастбище - это участок земли, покрытый травой, которую животные могут использовать в качестве пищи", - "wordTranslate": "пастбище" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0296" - }, - "group": 5, - "page": 28, - "word": "petition", - "image": "files/29_3575.jpg", - "audio": "files/29_3575.mp3", - "audioMeaning": "files/29_3575_meaning.mp3", - "audioExample": "files/29_3575_example.mp3", - "textMeaning": "A petition is a written request asking an authority to do something.", - "textExample": "The citizens all signed a petition asking the mayor to repair the sidewalks.", - "transcription": "[pitíʃən]", - "__v": 0, - "textExampleTranslate": "Все граждане подписали петицию с просьбой мэра отремонтировать тротуары", - "textMeaningTranslate": "Петиция - это письменный запрос, требующий от властей что-то сделать", - "wordTranslate": "ходатайство" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0297" - }, - "group": 5, - "page": 28, - "word": "renovate", - "image": "files/29_3576.jpg", - "audio": "files/29_3576.mp3", - "audioMeaning": "files/29_3576_meaning.mp3", - "audioExample": "files/29_3576_example.mp3", - "textMeaning": "To renovate a building means to repair it, or to build new structures on it.", - "textExample": "The old fire station was renovated into an apartment building.", - "transcription": "[rénəvèit]", - "__v": 0, - "textExampleTranslate": "Старая пожарная часть была реконструирована в жилой дом", - "textMeaningTranslate": "Отремонтировать здание - значит отремонтировать его или построить на нем новые конструкции", - "wordTranslate": "ремонт" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0298" - }, - "group": 5, - "page": 28, - "word": "revise", - "image": "files/29_3577.jpg", - "audio": "files/29_3577.mp3", - "audioMeaning": "files/29_3577_meaning.mp3", - "audioExample": "files/29_3577_example.mp3", - "textMeaning": "To revise something means to change it, or update it to make it better.", - "textExample": "When the editor discovered certain facts were wrong, he revised the book.", - "transcription": "[riváiz]", - "__v": 0, - "textExampleTranslate": "Когда редактор обнаружил, что некоторые факты были неправильными, он пересмотрел книгу", - "textMeaningTranslate": "Пересмотреть что-то означает изменить это или обновить, чтобы сделать это лучше", - "wordTranslate": "пересмотреть" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b0299" - }, - "group": 5, - "page": 28, - "word": "slab", - "image": "files/29_3578.jpg", - "audio": "files/29_3578.mp3", - "audioMeaning": "files/29_3578_meaning.mp3", - "audioExample": "files/29_3578_example.mp3", - "textMeaning": "A slab is a large, thick, flat piece of stone, concrete, metal, or wood.", - "textExample": "I looked at various slabs of stone to decorate my house.", - "transcription": "[slæb]", - "__v": 0, - "textExampleTranslate": "Я смотрел на различные каменные плиты, чтобы украсить свой дом", - "textMeaningTranslate": "Плита - это большой, толстый, плоский кусок камня, бетона, металла или дерева", - "wordTranslate": "плита" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b029a" - }, - "group": 5, - "page": 28, - "word": "terrace", - "image": "files/29_3579.jpg", - "audio": "files/29_3579.mp3", - "audioMeaning": "files/29_3579_meaning.mp3", - "audioExample": "files/29_3579_example.mp3", - "textMeaning": "A terrace is an open area that is connected to a house or an apartment.", - "textExample": "In the afternoons, she liked to sit on the terrace and check her email.", - "transcription": "[térəs]", - "__v": 0, - "textExampleTranslate": "Днем она любила сидеть на террасе и проверять свою электронную почту", - "textMeaningTranslate": "Терраса - это открытая площадка, которая связана с домом или квартирой", - "wordTranslate": "терраса" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b029b" - }, - "group": 5, - "page": 28, - "word": "turf", - "image": "files/29_3580.jpg", - "audio": "files/29_3580.mp3", - "audioMeaning": "files/29_3580_meaning.mp3", - "audioExample": "files/29_3580_example.mp3", - "textMeaning": "Turf is a section of grass and the dirt in which it grows.", - "textExample": "After the game, the turf looked ragged.", - "transcription": "[təːrf]", - "__v": 0, - "textExampleTranslate": "После игры газон выглядел рваным", - "textMeaningTranslate": "Газон - это участок травы и грязи, в которой он растет", - "wordTranslate": "дерн" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b029c" - }, - "group": 5, - "page": 29, - "word": "analogous", - "image": "files/30_3581.jpg", - "audio": "files/30_3581.mp3", - "audioMeaning": "files/30_3581_meaning.mp3", - "audioExample": "files/30_3581_example.mp3", - "textMeaning": "If something is analogous to another thing, then it is like it in certain ways.", - "textExample": "The relationship with his teacher was analogous to that of a son and mother.", - "transcription": "[ənǽləgəs]", - "__v": 0, - "textExampleTranslate": "Отношения с его учителем были аналогичны отношениям сына и матери", - "textMeaningTranslate": "Если что-то аналогично другой вещи, то это похоже на это определенным образом", - "wordTranslate": "аналогичный" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b029d" - }, - "group": 5, - "page": 29, - "word": "binoculars", - "image": "files/30_3582.jpg", - "audio": "files/30_3582.mp3", - "audioMeaning": "files/30_3582_meaning.mp3", - "audioExample": "files/30_3582_example.mp3", - "textMeaning": "Binoculars are a device used for seeing things that are far away.", - "textExample": "He could see the ship on the horizon only if he used his binoculars.", - "transcription": "[bənɑ́kjələrz]", - "__v": 0, - "textExampleTranslate": "Он мог видеть корабль на горизонте, только если бы он использовал свой бинокль", - "textMeaningTranslate": "Бинокль - это устройство, которое используется для наблюдения за отдаленными вещами", - "wordTranslate": "бинокль" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b029e" - }, - "group": 5, - "page": 29, - "word": "bulk", - "image": "files/30_3583.jpg", - "audio": "files/30_3583.mp3", - "audioMeaning": "files/30_3583_meaning.mp3", - "audioExample": "files/30_3583_example.mp3", - "textMeaning": "The bulk of something is its size.", - "textExample": "The large elephant moved its bulk with legs as strong as tree trunks.", - "transcription": "[bʌlk]", - "__v": 0, - "textExampleTranslate": "Большой слон двигал своей массой с такими же сильными ногами, как стволы деревьев", - "textMeaningTranslate": "Основная масса чего-то - это его размер", - "wordTranslate": "основной" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b029f" - }, - "group": 5, - "page": 29, - "word": "comprise", - "image": "files/30_3584.jpg", - "audio": "files/30_3584.mp3", - "audioMeaning": "files/30_3584_meaning.mp3", - "audioExample": "files/30_3584_example.mp3", - "textMeaning": "If something comprises something else, it consists of or is made up of it.", - "textExample": "Our school’s football team is mostly comprised with seniors.", - "transcription": "[kəmpráiz]", - "__v": 0, - "textExampleTranslate": "Футбольная команда нашей школы в основном состоит из пожилых людей", - "textMeaningTranslate": "Если что-то включает в себя что-то другое, оно состоит из этого или состоит из него", - "wordTranslate": "включать" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02a0" - }, - "group": 5, - "page": 29, - "word": "depict", - "image": "files/30_3585.jpg", - "audio": "files/30_3585.mp3", - "audioMeaning": "files/30_3585_meaning.mp3", - "audioExample": "files/30_3585_example.mp3", - "textMeaning": "To depict something means to show or portray it, often using art.", - "textExample": "The statue’s face depicted the general’s determination and courage.", - "transcription": "[dipíkt]", - "__v": 0, - "textExampleTranslate": "Лицо статуи изображало решимость и смелость генерала", - "textMeaningTranslate": "Изобразить что-то означает показать или изобразить это, часто используя искусство", - "wordTranslate": "изображают" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02a1" - }, - "group": 5, - "page": 29, - "word": "Fahrenheit", - "image": "files/30_3587.jpg", - "audio": "files/30_3587.mp3", - "audioMeaning": "files/30_3587_meaning.mp3", - "audioExample": "files/30_3587_example.mp3", - "textMeaning": "Fahrenheit is a temperature scale where water freezes at 32° and boils at 212°.", - "textExample": "When the temperature dropped to 32° Fahrenheit, it started snowing.", - "transcription": "[fǽrənhàit]", - "__v": 0, - "textExampleTranslate": "Когда температура упала до 32 ° по Фаренгейту, пошел снег", - "textMeaningTranslate": "Фаренгейт - это температурная шкала, где вода замерзает при 32 ° и кипит при 212 °", - "wordTranslate": "фаренгейт" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02a2" - }, - "group": 5, - "page": 29, - "word": "grove", - "image": "files/30_3589.jpg", - "audio": "files/30_3589.mp3", - "audioMeaning": "files/30_3589_meaning.mp3", - "audioExample": "files/30_3589_example.mp3", - "textMeaning": "A grove is a small group of trees.", - "textExample": "All the trees in this grove are apple trees.", - "transcription": "[grouv]", - "__v": 0, - "textExampleTranslate": "Все деревья в этой роще - яблони", - "textMeaningTranslate": "Роща - это небольшая группа деревьев", - "wordTranslate": "роща" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02a3" - }, - "group": 5, - "page": 29, - "word": "ore", - "image": "files/30_3590.jpg", - "audio": "files/30_3590.mp3", - "audioMeaning": "files/30_3590_meaning.mp3", - "audioExample": "files/30_3590_example.mp3", - "textMeaning": "Ore is the raw form of rock or material from which a valuable metal is taken.", - "textExample": "The factory melted the ore and used it to make iron products.", - "transcription": "[ɔːr]", - "__v": 0, - "textExampleTranslate": "Завод плавил руду и использовал ее для производства железных изделий", - "textMeaningTranslate": "Руда - это необработанная форма породы или материала, из которого извлекается ценный металл", - "wordTranslate": "руда" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02a5" - }, - "group": 5, - "page": 29, - "word": "fulfill", - "image": "files/30_3588.jpg", - "audio": "files/30_3588.mp3", - "audioMeaning": "files/30_3588_meaning.mp3", - "audioExample": "files/30_3588_example.mp3", - "textMeaning": "To fulfill something means to achieve or finish it.", - "textExample": "The professor did not fulfill his promise not to miss a single class.", - "transcription": "[fulfíl]", - "__v": 0, - "textExampleTranslate": "Профессор не выполнил свое обещание не пропустить ни одного занятия", - "textMeaningTranslate": "Выполнить что-либо - значит достичь или закончить это", - "wordTranslate": "выполнить" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02a4" - }, - "group": 5, - "page": 29, - "word": "dual", - "image": "files/30_3586.jpg", - "audio": "files/30_3586.mp3", - "audioMeaning": "files/30_3586_meaning.mp3", - "audioExample": "files/30_3586_example.mp3", - "textMeaning": "If something is dual, then it is made up of two parts.", - "textExample": "The room had a dual function. It was a living room, but at night it was a bedroom.", - "transcription": "[djúːəl]", - "__v": 0, - "textExampleTranslate": "Комната имела двойную функцию. Это была гостиная, но ночью это была спальня", - "textMeaningTranslate": "Если что-то двойственное, то оно состоит из двух частей", - "wordTranslate": "двойной" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02a6" - }, - "group": 5, - "page": 29, - "word": "outback", - "image": "files/30_3591.jpg", - "audio": "files/30_3591.mp3", - "audioMeaning": "files/30_3591_meaning.mp3", - "audioExample": "files/30_3591_example.mp3", - "textMeaning": "The outback is the wild inland region of Australia where very few people live.", - "textExample": "Many Australian farmers use the outback to raise cattle.", - "transcription": "[áutbæ̀k]", - "__v": 0, - "textExampleTranslate": "Многие австралийские фермеры используют сельское хозяйство, чтобы разводить скот", - "textMeaningTranslate": "Провинция - дикий внутренний район Австралии, где живет очень мало людей", - "wordTranslate": "необжитой местности" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02a7" - }, - "group": 5, - "page": 29, - "word": "shortcut", - "image": "files/30_3595.jpg", - "audio": "files/30_3595.mp3", - "audioMeaning": "files/30_3595_meaning.mp3", - "audioExample": "files/30_3595_example.mp3", - "textMeaning": "A shortcut is a route that is shorter than the main route.", - "textExample": "We got to the house early because we took a shortcut through the forest.", - "transcription": "[ʃɔ́ːrtkʌ̀t]", - "__v": 0, - "textExampleTranslate": "Мы добрались до дома рано, потому что мы пошли по лесу", - "textMeaningTranslate": "Ярлык - это маршрут, который короче основного маршрута", - "wordTranslate": "ярлык" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02a8" - }, - "group": 5, - "page": 29, - "word": "pier", - "image": "files/30_3594.jpg", - "audio": "files/30_3594.mp3", - "audioMeaning": "files/30_3594_meaning.mp3", - "audioExample": "files/30_3594_example.mp3", - "textMeaning": "A pier is a structure that extends into a body of water.", - "textExample": "If you want to catch bigger fish, then go to the far end of the pier.", - "transcription": "[piər]", - "__v": 0, - "textExampleTranslate": "Если вы хотите поймать большую рыбу, то идите в дальний конец пирса", - "textMeaningTranslate": "Пирс - это структура, которая простирается в водоем", - "wordTranslate": "пир" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02aa" - }, - "group": 5, - "page": 29, - "word": "paradox", - "image": "files/30_3593.jpg", - "audio": "files/30_3593.mp3", - "audioMeaning": "files/30_3593_meaning.mp3", - "audioExample": "files/30_3593_example.mp3", - "textMeaning": "A paradox is a true statement or real event that seems illogical.", - "textExample": "The paradox of her work was that the less she worked, the more she got done.", - "transcription": "[pǽrədɑ̀ks]", - "__v": 0, - "textExampleTranslate": "Парадокс ее работы заключался в том, что чем меньше она работала, тем больше она делала", - "textMeaningTranslate": "Парадокс - это истинное утверждение или реальное событие, которое кажется нелогичным", - "wordTranslate": "парадокс" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02a9" - }, - "group": 5, - "page": 29, - "word": "outweigh", - "image": "files/30_3592.jpg", - "audio": "files/30_3592.mp3", - "audioMeaning": "files/30_3592_meaning.mp3", - "audioExample": "files/30_3592_example.mp3", - "textMeaning": "To outweigh something means to exceed it in value, amount, or importance.", - "textExample": "Finding a warm place to sleep outweighed the need to find something to eat.", - "transcription": "[àutwéi]", - "__v": 0, - "textExampleTranslate": "Найти теплое место для сна перевесило необходимость найти что-нибудь поесть", - "textMeaningTranslate": "Перевесить что-либо означает превзойти это по стоимости, количеству или значимости", - "wordTranslate": "перевешивают" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02ab" - }, - "group": 5, - "page": 29, - "word": "tariff", - "image": "files/30_3596.jpg", - "audio": "files/30_3596.mp3", - "audioMeaning": "files/30_3596_meaning.mp3", - "audioExample": "files/30_3596_example.mp3", - "textMeaning": "A tarif is a tax or fee paid on certain imports or exports.", - "textExample": "Our tarif on imported wool makes foreign wool more expensive.", - "transcription": "[tǽrif]", - "__v": 0, - "textExampleTranslate": "Наш тариф на импортную шерсть делает иностранную шерсть дороже", - "textMeaningTranslate": "Тариф - это налог или пошлина, уплачиваемая за определенный импорт или экспорт", - "wordTranslate": "тариф" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02ac" - }, - "group": 5, - "page": 29, - "word": "tilt", - "image": "files/30_3598.jpg", - "audio": "files/30_3598.mp3", - "audioMeaning": "files/30_3598_meaning.mp3", - "audioExample": "files/30_3598_example.mp3", - "textMeaning": "To tilt something means to tip it into a sloping position.", - "textExample": "She tilted her glass and almost spilled some of the wine inside.", - "transcription": "[tilt]", - "__v": 0, - "textExampleTranslate": "Она наклонила бокал и чуть не пролила немного вина внутрь", - "textMeaningTranslate": "Наклонить что-либо означает опрокинуть его в наклонную позицию", - "wordTranslate": "наклон" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02ad" - }, - "group": 5, - "page": 29, - "word": "whereabouts", - "image": "files/30_3600.jpg", - "audio": "files/30_3600.mp3", - "audioMeaning": "files/30_3600_meaning.mp3", - "audioExample": "files/30_3600_example.mp3", - "textMeaning": "The whereabouts of someone or something is the place where they are.", - "textExample": "The police looked for the lost dog, but its whereabouts were still unknown.", - "transcription": "[hwɛə́rəbàuts]", - "__v": 0, - "textExampleTranslate": "Полиция искала потерянную собаку, но ее местонахождение до сих пор неизвестно", - "textMeaningTranslate": "Местонахождение кого-то или чего-то - это место, где они находятся", - "wordTranslate": "местонахождение" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02ae" - }, - "group": 5, - "page": 29, - "word": "thermometer", - "image": "files/30_3597.jpg", - "audio": "files/30_3597.mp3", - "audioMeaning": "files/30_3597_meaning.mp3", - "audioExample": "files/30_3597_example.mp3", - "textMeaning": "A thermometer is a device that measures temperature.", - "textExample": "The thermometer outside the window indicated that it was a hot day today.", - "transcription": "[θərmάmətər]", - "__v": 0, - "textExampleTranslate": "Термометр за окном показал, что сегодня был жаркий день", - "textMeaningTranslate": "Термометр - это устройство, которое измеряет температуру", - "wordTranslate": "термометр" -},{ - "_id": { - "$oid": "5e9f5ee45eb9e72bc21b02af" - }, - "group": 5, - "page": 29, - "word": "vice versa", - "image": "files/30_3599.jpg", - "audio": "files/30_3599.mp3", - "audioMeaning": "files/30_3599_meaning.mp3", - "audioExample": "files/30_3599_example.mp3", - "textMeaning": "If a statement is vice versa, then its two main ideas are switched with one another.", - "textExample": "Students learn from their teachers, and vice versa.", - "transcription": "[váisə və́ːrsə]", - "__v": 0, - "textExampleTranslate": "Ученики учатся у своих учителей, и наоборот", - "textMeaningTranslate": "Если утверждение наоборот, то две его основные идеи связаны друг с другом", - "wordTranslate": "наоборот" -}] \ No newline at end of file